mirror of
https://github.com/ziglang/zig.git
synced 2026-01-25 00:35:20 +00:00
release/18.x branch, commit 78b99c73ee4b96fe9ce0e294d4632326afb2db42 This adds the flag `-D_LIBCPP_HARDENING_MODE` which is determined based on the Zig optimization mode. This commit also fixes libunwind, libcxx, and libcxxabi to properly report sub compilation errors.
35 lines
1.3 KiB
C
Vendored
35 lines
1.3 KiB
C
Vendored
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP_SRC_INCLUDE_APPLE_AVAILABILITY_H
|
|
#define _LIBCPP_SRC_INCLUDE_APPLE_AVAILABILITY_H
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
# if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__)
|
|
# if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101500
|
|
# define _LIBCPP_USE_ULOCK
|
|
# endif
|
|
# elif defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__)
|
|
# if __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 130000
|
|
# define _LIBCPP_USE_ULOCK
|
|
# endif
|
|
# elif defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__)
|
|
# if __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 130000
|
|
# define _LIBCPP_USE_ULOCK
|
|
# endif
|
|
# elif defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__)
|
|
# if __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ >= 60000
|
|
# define _LIBCPP_USE_ULOCK
|
|
# endif
|
|
# endif // __ENVIRONMENT_.*_VERSION_MIN_REQUIRED__
|
|
|
|
#endif // __APPLE__
|
|
|
|
#endif // _LIBCPP_SRC_INCLUDE_APPLE_AVAILABILITY_H
|