-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to a current version of libcxx and libcxxabi
This also updates the engine's minimum required version of macOS to 10.12
- Loading branch information
1 parent
6af51ff
commit a331a4b
Showing
5 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#ifndef _LIBCPP_CONFIG_SITE | ||
#define _LIBCPP_CONFIG_SITE | ||
|
||
/* #undef _LIBCPP_ABI_VERSION */ | ||
/* #undef _LIBCPP_ABI_UNSTABLE */ | ||
/* #undef _LIBCPP_ABI_FORCE_ITANIUM */ | ||
/* #undef _LIBCPP_ABI_FORCE_MICROSOFT */ | ||
/* #undef _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT */ | ||
/* #undef _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE */ | ||
/* #undef _LIBCPP_HAS_NO_STDIN */ | ||
/* #undef _LIBCPP_HAS_NO_STDOUT */ | ||
/* #undef _LIBCPP_HAS_NO_THREADS */ | ||
/* #undef _LIBCPP_HAS_NO_MONOTONIC_CLOCK */ | ||
/* #undef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS */ | ||
/* #undef _LIBCPP_HAS_MUSL_LIBC */ | ||
/* #undef _LIBCPP_HAS_THREAD_API_PTHREAD */ | ||
/* #undef _LIBCPP_HAS_THREAD_API_EXTERNAL */ | ||
/* #undef _LIBCPP_HAS_THREAD_API_WIN32 */ | ||
/* #undef _LIBCPP_HAS_THREAD_LIBRARY_EXTERNAL */ | ||
/* #undef _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS */ | ||
#define _LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS | ||
/* #undef _LIBCPP_NO_VCRUNTIME */ | ||
/* #undef _LIBCPP_TYPEINFO_COMPARISON_IMPLEMENTATION */ | ||
/* #undef _LIBCPP_ABI_NAMESPACE */ | ||
/* #undef _LIBCPP_HAS_NO_FILESYSTEM_LIBRARY */ | ||
/* #undef _LIBCPP_HAS_PARALLEL_ALGORITHMS */ | ||
/* #undef _LIBCPP_HAS_NO_RANDOM_DEVICE */ | ||
/* #undef _LIBCPP_HAS_NO_LOCALIZATION */ | ||
|
||
// This is a workaround for BoringSSL, which is compiled in C11 mode | ||
// and includes stdatomic.h. Defining this macro will cause stdatomic.h | ||
// to redirect to the next version of that header in the include path. | ||
#if !defined(__cplusplus) && defined(__clang__) | ||
#define _LIBCPP_COMPILER_CLANG_BASED | ||
#endif | ||
|
||
#endif // _LIBCPP_CONFIG_SITE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters