mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 14:58:30 +00:00
Release Cosmopolitan v3.6.0
This release is an atomic upgrade to GCC 14.1.0 with C23 and C++23
This commit is contained in:
parent
62ace3623a
commit
5660ec4741
1585 changed files with 117353 additions and 271644 deletions
159
third_party/libcxx/__configuration/abi.h
vendored
Normal file
159
third_party/libcxx/__configuration/abi.h
vendored
Normal file
|
@ -0,0 +1,159 @@
|
|||
// -*- C++ -*-
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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___CONFIGURATION_ABI_H
|
||||
#define _LIBCPP___CONFIGURATION_ABI_H
|
||||
|
||||
#include <__config_site>
|
||||
#include <__configuration/compiler.h>
|
||||
#include <__configuration/platform.h>
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#if _LIBCPP_ABI_VERSION >= 2
|
||||
// Change short string representation so that string data starts at offset 0,
|
||||
// improving its alignment in some cases.
|
||||
# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
|
||||
// Fix deque iterator type in order to support incomplete types.
|
||||
# define _LIBCPP_ABI_INCOMPLETE_TYPES_IN_DEQUE
|
||||
// Fix undefined behavior in how std::list stores its linked nodes.
|
||||
# define _LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB
|
||||
// Fix undefined behavior in how __tree stores its end and parent nodes.
|
||||
# define _LIBCPP_ABI_TREE_REMOVE_NODE_POINTER_UB
|
||||
// Fix undefined behavior in how __hash_table stores its pointer types.
|
||||
# define _LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB
|
||||
# define _LIBCPP_ABI_FORWARD_LIST_REMOVE_NODE_POINTER_UB
|
||||
# define _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE
|
||||
// Override the default return value of exception::what() for bad_function_call::what()
|
||||
// with a string that is specific to bad_function_call (see http://wg21.link/LWG2233).
|
||||
// This is an ABI break on platforms that sign and authenticate vtable function pointers
|
||||
// because it changes the mangling of the virtual function located in the vtable, which
|
||||
// changes how it gets signed.
|
||||
# define _LIBCPP_ABI_BAD_FUNCTION_CALL_GOOD_WHAT_MESSAGE
|
||||
// Enable optimized version of __do_get_(un)signed which avoids redundant copies.
|
||||
# define _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET
|
||||
// Give reverse_iterator<T> one data member of type T, not two.
|
||||
// Also, in C++17 and later, don't derive iterator types from std::iterator.
|
||||
# define _LIBCPP_ABI_NO_ITERATOR_BASES
|
||||
// Use the smallest possible integer type to represent the index of the variant.
|
||||
// Previously libc++ used "unsigned int" exclusively.
|
||||
# define _LIBCPP_ABI_VARIANT_INDEX_TYPE_OPTIMIZATION
|
||||
// Unstable attempt to provide a more optimized std::function
|
||||
# define _LIBCPP_ABI_OPTIMIZED_FUNCTION
|
||||
// All the regex constants must be distinct and nonzero.
|
||||
# define _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO
|
||||
// Re-worked external template instantiations for std::string with a focus on
|
||||
// performance and fast-path inlining.
|
||||
# define _LIBCPP_ABI_STRING_OPTIMIZED_EXTERNAL_INSTANTIATION
|
||||
// Enable clang::trivial_abi on std::unique_ptr.
|
||||
# define _LIBCPP_ABI_ENABLE_UNIQUE_PTR_TRIVIAL_ABI
|
||||
// Enable clang::trivial_abi on std::shared_ptr and std::weak_ptr
|
||||
# define _LIBCPP_ABI_ENABLE_SHARED_PTR_TRIVIAL_ABI
|
||||
// std::random_device holds some state when it uses an implementation that gets
|
||||
// entropy from a file (see _LIBCPP_USING_DEV_RANDOM). When switching from this
|
||||
// implementation to another one on a platform that has already shipped
|
||||
// std::random_device, one needs to retain the same object layout to remain ABI
|
||||
// compatible. This switch removes these workarounds for platforms that don't care
|
||||
// about ABI compatibility.
|
||||
# define _LIBCPP_ABI_NO_RANDOM_DEVICE_COMPATIBILITY_LAYOUT
|
||||
// Don't export the legacy __basic_string_common class and its methods from the built library.
|
||||
# define _LIBCPP_ABI_DO_NOT_EXPORT_BASIC_STRING_COMMON
|
||||
// Don't export the legacy __vector_base_common class and its methods from the built library.
|
||||
# define _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON
|
||||
// According to the Standard, `bitset::operator[] const` returns bool
|
||||
# define _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL
|
||||
// Fix the implementation of CityHash used for std::hash<fundamental-type>.
|
||||
// This is an ABI break because `std::hash` will return a different result,
|
||||
// which means that hashing the same object in translation units built against
|
||||
// different versions of libc++ can return inconsistent results. This is especially
|
||||
// tricky since std::hash is used in the implementation of unordered containers.
|
||||
//
|
||||
// The incorrect implementation of CityHash has the problem that it drops some
|
||||
// bits on the floor.
|
||||
# define _LIBCPP_ABI_FIX_CITYHASH_IMPLEMENTATION
|
||||
// Remove the base 10 implementation of std::to_chars from the dylib.
|
||||
// The implementation moved to the header, but we still export the symbols from
|
||||
// the dylib for backwards compatibility.
|
||||
# define _LIBCPP_ABI_DO_NOT_EXPORT_TO_CHARS_BASE_10
|
||||
// Define std::array/std::string_view iterators to be __wrap_iters instead of raw
|
||||
// pointers, which prevents people from relying on a non-portable implementation
|
||||
// detail. This is especially useful because enabling bounded iterators hardening
|
||||
// requires code not to make these assumptions.
|
||||
# define _LIBCPP_ABI_USE_WRAP_ITER_IN_STD_ARRAY
|
||||
# define _LIBCPP_ABI_USE_WRAP_ITER_IN_STD_STRING_VIEW
|
||||
// Dont' add an inline namespace for `std::filesystem`
|
||||
# define _LIBCPP_ABI_NO_FILESYSTEM_INLINE_NAMESPACE
|
||||
// std::basic_ios uses WEOF to indicate that the fill value is
|
||||
// uninitialized. However, on platforms where the size of char_type is
|
||||
// equal to or greater than the size of int_type and char_type is unsigned,
|
||||
// std::char_traits<char_type>::eq_int_type() cannot distinguish between WEOF
|
||||
// and WCHAR_MAX. This ABI setting determines whether we should instead track whether the fill
|
||||
// value has been initialized using a separate boolean, which changes the ABI.
|
||||
# define _LIBCPP_ABI_IOS_ALLOW_ARBITRARY_FILL_VALUE
|
||||
// Make a std::pair of trivially copyable types trivially copyable.
|
||||
// While this technically doesn't change the layout of pair itself, other types may decide to programatically change
|
||||
// their representation based on whether something is trivially copyable.
|
||||
# define _LIBCPP_ABI_TRIVIALLY_COPYABLE_PAIR
|
||||
#elif _LIBCPP_ABI_VERSION == 1
|
||||
# if !(defined(_LIBCPP_OBJECT_FORMAT_COFF) || defined(_LIBCPP_OBJECT_FORMAT_XCOFF))
|
||||
// Enable compiling copies of now inline methods into the dylib to support
|
||||
// applications compiled against older libraries. This is unnecessary with
|
||||
// COFF dllexport semantics, since dllexport forces a non-inline definition
|
||||
// of inline functions to be emitted anyway. Our own non-inline copy would
|
||||
// conflict with the dllexport-emitted copy, so we disable it. For XCOFF,
|
||||
// the linker will take issue with the symbols in the shared object if the
|
||||
// weak inline methods get visibility (such as from -fvisibility-inlines-hidden),
|
||||
// so disable it.
|
||||
# define _LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS
|
||||
# endif
|
||||
// Feature macros for disabling pre ABI v1 features. All of these options
|
||||
// are deprecated.
|
||||
# if defined(__FreeBSD__) && __FreeBSD__ < 14
|
||||
# define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// We had some bugs where we use [[no_unique_address]] together with construct_at,
|
||||
// which causes UB as the call on construct_at could write to overlapping subobjects
|
||||
//
|
||||
// https://github.com/llvm/llvm-project/issues/70506
|
||||
// https://github.com/llvm/llvm-project/issues/70494
|
||||
//
|
||||
// To fix the bug we had to change the ABI of some classes to remove [[no_unique_address]] under certain conditions.
|
||||
// The macro below is used for all classes whose ABI have changed as part of fixing these bugs.
|
||||
#define _LIBCPP_ABI_LLVM18_NO_UNIQUE_ADDRESS __attribute__((__abi_tag__("llvm18_nua")))
|
||||
|
||||
// Changes the iterator type of select containers (see below) to a bounded iterator that keeps track of whether it's
|
||||
// within the bounds of the original container and asserts it on every dereference.
|
||||
//
|
||||
// ABI impact: changes the iterator type of the relevant containers.
|
||||
//
|
||||
// Supported containers:
|
||||
// - `span`;
|
||||
// - `string_view`.
|
||||
// #define _LIBCPP_ABI_BOUNDED_ITERATORS
|
||||
|
||||
#if defined(_LIBCPP_COMPILER_CLANG_BASED)
|
||||
# if defined(__APPLE__)
|
||||
# if defined(__i386__) || defined(__x86_64__)
|
||||
// use old string layout on x86_64 and i386
|
||||
# elif defined(__arm__)
|
||||
// use old string layout on arm (which does not include aarch64/arm64), except on watch ABIs
|
||||
# if defined(__ARM_ARCH_7K__) && __ARM_ARCH_7K__ >= 2
|
||||
# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
|
||||
# endif
|
||||
# else
|
||||
# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#endif // _LIBCPP___CONFIGURATION_ABI_H
|
400
third_party/libcxx/__configuration/availability.h
vendored
Normal file
400
third_party/libcxx/__configuration/availability.h
vendored
Normal file
|
@ -0,0 +1,400 @@
|
|||
// -*- C++ -*-
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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___CONFIGURATION_AVAILABILITY_H
|
||||
#define _LIBCPP___CONFIGURATION_AVAILABILITY_H
|
||||
|
||||
#include <__configuration/compiler.h>
|
||||
#include <__configuration/language.h>
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
// Libc++ is shipped by various vendors. In particular, it is used as a system
|
||||
// library on macOS, iOS and other Apple platforms. In order for users to be
|
||||
// able to compile a binary that is intended to be deployed to an older version
|
||||
// of a platform, Clang provides availability attributes [1]. These attributes
|
||||
// can be placed on declarations and are used to describe the life cycle of a
|
||||
// symbol in the library.
|
||||
//
|
||||
// The main goal is to ensure a compile-time error if a symbol that hasn't been
|
||||
// introduced in a previously released library is used in a program that targets
|
||||
// that previously released library. Normally, this would be a load-time error
|
||||
// when one tries to launch the program against the older library.
|
||||
//
|
||||
// For example, the filesystem library was introduced in the dylib in LLVM 9.
|
||||
// On Apple platforms, this corresponds to macOS 10.15. If a user compiles on
|
||||
// a macOS 10.15 host but targets macOS 10.13 with their program, the compiler
|
||||
// would normally not complain (because the required declarations are in the
|
||||
// headers), but the dynamic loader would fail to find the symbols when actually
|
||||
// trying to launch the program on macOS 10.13. To turn this into a compile-time
|
||||
// issue instead, declarations are annotated with when they were introduced, and
|
||||
// the compiler can produce a diagnostic if the program references something that
|
||||
// isn't available on the deployment target.
|
||||
//
|
||||
// This mechanism is general in nature, and any vendor can add their markup to
|
||||
// the library (see below). Whenever a new feature is added that requires support
|
||||
// in the shared library, two macros are added below to allow marking the feature
|
||||
// as unavailable:
|
||||
// 1. A macro named `_LIBCPP_AVAILABILITY_HAS_<feature>` which must be defined
|
||||
// to `_LIBCPP_INTRODUCED_IN_<version>` for the appropriate LLVM version.
|
||||
// 2. A macro named `_LIBCPP_AVAILABILITY_<feature>`, which must be defined to
|
||||
// `_LIBCPP_INTRODUCED_IN_<version>_MARKUP` for the appropriate LLVM version.
|
||||
//
|
||||
// When vendors decide to ship the feature as part of their shared library, they
|
||||
// can update the `_LIBCPP_INTRODUCED_IN_<version>` macro (and the markup counterpart)
|
||||
// based on the platform version they shipped that version of LLVM in. The library
|
||||
// will then use this markup to provide an optimal user experience on these platforms.
|
||||
//
|
||||
// Furthermore, many features in the standard library have corresponding
|
||||
// feature-test macros. The `_LIBCPP_AVAILABILITY_HAS_<feature>` macros
|
||||
// are checked by the corresponding feature-test macros generated by
|
||||
// generate_feature_test_macro_components.py to ensure that the library
|
||||
// doesn't announce a feature as being implemented if it is unavailable on
|
||||
// the deployment target.
|
||||
//
|
||||
// Note that this mechanism is disabled by default in the "upstream" libc++.
|
||||
// Availability annotations are only meaningful when shipping libc++ inside
|
||||
// a platform (i.e. as a system library), and so vendors that want them should
|
||||
// turn those annotations on at CMake configuration time.
|
||||
//
|
||||
// [1]: https://clang.llvm.org/docs/AttributeReference.html#availability
|
||||
|
||||
// For backwards compatibility, allow users to define _LIBCPP_DISABLE_AVAILABILITY
|
||||
// for a while.
|
||||
#if defined(_LIBCPP_DISABLE_AVAILABILITY)
|
||||
# if !defined(_LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS)
|
||||
# define _LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// Availability markup is disabled when building the library, or when a non-Clang
|
||||
// compiler is used because only Clang supports the necessary attributes.
|
||||
#if defined(_LIBCPP_BUILDING_LIBRARY) || defined(_LIBCXXABI_BUILDING_LIBRARY) || !defined(_LIBCPP_COMPILER_CLANG_BASED)
|
||||
# if !defined(_LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS)
|
||||
# define _LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// When availability annotations are disabled, we take for granted that features introduced
|
||||
// in all versions of the library are available.
|
||||
#if defined(_LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS)
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_19 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_19_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_18 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_18_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_17 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_17_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_16 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_16_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_15 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_15_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_14 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_14_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_13 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_13_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_12 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_12_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_11 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_11_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_10 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_10_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE /* nothing */
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_PUSH /* nothing */
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_POP /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_8 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_8_ATTRIBUTE /* nothing */
|
||||
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_4 1
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_4_ATTRIBUTE /* nothing */
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
|
||||
// clang-format off
|
||||
|
||||
// LLVM 19
|
||||
// TODO: Fill this in
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_19 0
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_19_ATTRIBUTE __attribute__((unavailable))
|
||||
|
||||
// LLVM 18
|
||||
// TODO: Fill this in
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_18 0
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_18_ATTRIBUTE __attribute__((unavailable))
|
||||
|
||||
// LLVM 17
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 140400) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 170400) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 170400) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 100400)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_17 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_17 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_17_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 14.4))) \
|
||||
__attribute__((availability(ios, strict, introduced = 17.4))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 17.4))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 10.4)))
|
||||
|
||||
// LLVM 16
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 140000) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 170000) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 170000) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 100000)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_16 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_16 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_16_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 14.0))) \
|
||||
__attribute__((availability(ios, strict, introduced = 17.0))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 17.0))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 10.0)))
|
||||
|
||||
// LLVM 15
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 130400) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 160500) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 160500) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 90500)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_15 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_15 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_15_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 13.4))) \
|
||||
__attribute__((availability(ios, strict, introduced = 16.5))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 16.5))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 9.5)))
|
||||
|
||||
// LLVM 14
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_14 _LIBCPP_INTRODUCED_IN_LLVM_15
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_14_ATTRIBUTE _LIBCPP_INTRODUCED_IN_LLVM_15_ATTRIBUTE
|
||||
|
||||
// LLVM 13
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 130000) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 160000) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 160000) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 90000)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_13 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_13 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_13_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 13.0))) \
|
||||
__attribute__((availability(ios, strict, introduced = 16.0))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 16.0))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 9.0)))
|
||||
|
||||
// LLVM 12
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 120300) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 150300) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 150300) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 80300)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_12 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_12 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_12_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 12.3))) \
|
||||
__attribute__((availability(ios, strict, introduced = 15.3))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 15.3))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 8.3)))
|
||||
|
||||
// LLVM 11
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 110000) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 140000) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 140000) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 70000)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_11 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_11 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_11_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 11.0))) \
|
||||
__attribute__((availability(ios, strict, introduced = 14.0))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 14.0))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 7.0)))
|
||||
|
||||
// LLVM 10
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_10 _LIBCPP_INTRODUCED_IN_LLVM_11
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_10_ATTRIBUTE _LIBCPP_INTRODUCED_IN_LLVM_11_ATTRIBUTE
|
||||
|
||||
// LLVM 9
|
||||
# if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101500) || \
|
||||
(defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ < 130000) || \
|
||||
(defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ < 130000) || \
|
||||
(defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 60000)
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE \
|
||||
__attribute__((availability(macos, strict, introduced = 10.15))) \
|
||||
__attribute__((availability(ios, strict, introduced = 13.0))) \
|
||||
__attribute__((availability(tvos, strict, introduced = 13.0))) \
|
||||
__attribute__((availability(watchos, strict, introduced = 6.0)))
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_PUSH \
|
||||
_Pragma("clang attribute push(__attribute__((availability(macos,strict,introduced=10.15))), apply_to=any(function,record))") \
|
||||
_Pragma("clang attribute push(__attribute__((availability(ios,strict,introduced=13.0))), apply_to=any(function,record))") \
|
||||
_Pragma("clang attribute push(__attribute__((availability(tvos,strict,introduced=13.0))), apply_to=any(function,record))") \
|
||||
_Pragma("clang attribute push(__attribute__((availability(watchos,strict,introduced=6.0))), apply_to=any(function,record))")
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_POP \
|
||||
_Pragma("clang attribute pop") \
|
||||
_Pragma("clang attribute pop") \
|
||||
_Pragma("clang attribute pop") \
|
||||
_Pragma("clang attribute pop")
|
||||
|
||||
// LLVM 4
|
||||
# if defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ < 50000
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_4 0
|
||||
# else
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_4 1
|
||||
# endif
|
||||
# define _LIBCPP_INTRODUCED_IN_LLVM_4_ATTRIBUTE __attribute__((availability(watchos, strict, introduced = 5.0)))
|
||||
|
||||
// clang-format on
|
||||
|
||||
#else
|
||||
|
||||
// ...New vendors can add availability markup here...
|
||||
|
||||
# error \
|
||||
"It looks like you're trying to enable vendor availability markup, but you haven't defined the corresponding macros yet!"
|
||||
|
||||
#endif
|
||||
|
||||
// These macros control the availability of std::bad_optional_access and
|
||||
// other exception types. These were put in the shared library to prevent
|
||||
// code bloat from every user program defining the vtable for these exception
|
||||
// types.
|
||||
//
|
||||
// Note that when exceptions are disabled, the methods that normally throw
|
||||
// these exceptions can be used even on older deployment targets, but those
|
||||
// methods will abort instead of throwing.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_BAD_OPTIONAL_ACCESS _LIBCPP_INTRODUCED_IN_LLVM_4
|
||||
#define _LIBCPP_AVAILABILITY_BAD_OPTIONAL_ACCESS _LIBCPP_INTRODUCED_IN_LLVM_4_ATTRIBUTE
|
||||
|
||||
#define _LIBCPP_AVAILABILITY_HAS_BAD_VARIANT_ACCESS _LIBCPP_INTRODUCED_IN_LLVM_4
|
||||
#define _LIBCPP_AVAILABILITY_BAD_VARIANT_ACCESS _LIBCPP_INTRODUCED_IN_LLVM_4_ATTRIBUTE
|
||||
|
||||
#define _LIBCPP_AVAILABILITY_HAS_BAD_ANY_CAST _LIBCPP_INTRODUCED_IN_LLVM_4
|
||||
#define _LIBCPP_AVAILABILITY_BAD_ANY_CAST _LIBCPP_INTRODUCED_IN_LLVM_4_ATTRIBUTE
|
||||
|
||||
// These macros control the availability of all parts of <filesystem> that
|
||||
// depend on something in the dylib.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_FILESYSTEM_LIBRARY _LIBCPP_INTRODUCED_IN_LLVM_9
|
||||
#define _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE
|
||||
#define _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY_PUSH _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_PUSH
|
||||
#define _LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY_POP _LIBCPP_INTRODUCED_IN_LLVM_9_ATTRIBUTE_POP
|
||||
|
||||
// This controls the availability of the C++20 synchronization library,
|
||||
// which requires shared library support for various operations
|
||||
// (see libcxx/src/atomic.cpp). This includes <barier>, <latch>,
|
||||
// <semaphore>, and notification functions on std::atomic.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_SYNC _LIBCPP_INTRODUCED_IN_LLVM_11
|
||||
#define _LIBCPP_AVAILABILITY_SYNC _LIBCPP_INTRODUCED_IN_LLVM_11_ATTRIBUTE
|
||||
|
||||
// Enable additional explicit instantiations of iostreams components. This
|
||||
// reduces the number of weak definitions generated in programs that use
|
||||
// iostreams by providing a single strong definition in the shared library.
|
||||
//
|
||||
// TODO: Enable additional explicit instantiations on GCC once it supports exclude_from_explicit_instantiation,
|
||||
// or once libc++ doesn't use the attribute anymore.
|
||||
// TODO: Enable them on Windows once https://llvm.org/PR41018 has been fixed.
|
||||
#if !defined(_LIBCPP_COMPILER_GCC) && !defined(_WIN32)
|
||||
# define _LIBCPP_AVAILABILITY_HAS_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1 _LIBCPP_INTRODUCED_IN_LLVM_12
|
||||
#else
|
||||
# define _LIBCPP_AVAILABILITY_HAS_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1 0
|
||||
#endif
|
||||
|
||||
// This controls the availability of floating-point std::to_chars functions.
|
||||
// These overloads were added later than the integer overloads.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_TO_CHARS_FLOATING_POINT _LIBCPP_INTRODUCED_IN_LLVM_14
|
||||
#define _LIBCPP_AVAILABILITY_TO_CHARS_FLOATING_POINT _LIBCPP_INTRODUCED_IN_LLVM_14_ATTRIBUTE
|
||||
|
||||
// This controls whether the library claims to provide a default verbose
|
||||
// termination function, and consequently whether the headers will try
|
||||
// to use it when the mechanism isn't overriden at compile-time.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_VERBOSE_ABORT _LIBCPP_INTRODUCED_IN_LLVM_15
|
||||
#define _LIBCPP_AVAILABILITY_VERBOSE_ABORT _LIBCPP_INTRODUCED_IN_LLVM_15_ATTRIBUTE
|
||||
|
||||
// This controls the availability of the C++17 std::pmr library,
|
||||
// which is implemented in large part in the built library.
|
||||
//
|
||||
// TODO: Enable std::pmr markup once https://github.com/llvm/llvm-project/issues/40340 has been fixed
|
||||
// Until then, it is possible for folks to try to use `std::pmr` when back-deploying to targets that don't support
|
||||
// it and it'll be a load-time error, but we don't have a good alternative because the library won't compile if we
|
||||
// use availability annotations until that bug has been fixed.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_PMR _LIBCPP_INTRODUCED_IN_LLVM_16
|
||||
#define _LIBCPP_AVAILABILITY_PMR
|
||||
|
||||
// These macros controls the availability of __cxa_init_primary_exception
|
||||
// in the built library, which std::make_exception_ptr might use
|
||||
// (see libcxx/include/__exception/exception_ptr.h).
|
||||
#define _LIBCPP_AVAILABILITY_HAS_INIT_PRIMARY_EXCEPTION _LIBCPP_INTRODUCED_IN_LLVM_18
|
||||
#define _LIBCPP_AVAILABILITY_INIT_PRIMARY_EXCEPTION _LIBCPP_INTRODUCED_IN_LLVM_18_ATTRIBUTE
|
||||
|
||||
// This controls the availability of C++23 <print>, which
|
||||
// has a dependency on the built library (it needs access to
|
||||
// the underlying buffer types of std::cout, std::cerr, and std::clog.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_PRINT _LIBCPP_INTRODUCED_IN_LLVM_18
|
||||
#define _LIBCPP_AVAILABILITY_PRINT _LIBCPP_INTRODUCED_IN_LLVM_18_ATTRIBUTE
|
||||
|
||||
// This controls the availability of the C++20 time zone database.
|
||||
// The parser code is built in the library.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_TZDB _LIBCPP_INTRODUCED_IN_LLVM_19
|
||||
#define _LIBCPP_AVAILABILITY_TZDB _LIBCPP_INTRODUCED_IN_LLVM_19_ATTRIBUTE
|
||||
|
||||
// These macros determine whether we assume that std::bad_function_call and
|
||||
// std::bad_expected_access provide a key function in the dylib. This allows
|
||||
// centralizing their vtable and typeinfo instead of having all TUs provide
|
||||
// a weak definition that then gets deduplicated.
|
||||
#define _LIBCPP_AVAILABILITY_HAS_BAD_FUNCTION_CALL_KEY_FUNCTION _LIBCPP_INTRODUCED_IN_LLVM_19
|
||||
#define _LIBCPP_AVAILABILITY_BAD_FUNCTION_CALL_KEY_FUNCTION _LIBCPP_INTRODUCED_IN_LLVM_19_ATTRIBUTE
|
||||
#define _LIBCPP_AVAILABILITY_HAS_BAD_EXPECTED_ACCESS_KEY_FUNCTION _LIBCPP_INTRODUCED_IN_LLVM_19
|
||||
#define _LIBCPP_AVAILABILITY_BAD_EXPECTED_ACCESS_KEY_FUNCTION _LIBCPP_INTRODUCED_IN_LLVM_19_ATTRIBUTE
|
||||
|
||||
// Define availability attributes that depend on _LIBCPP_HAS_NO_EXCEPTIONS.
|
||||
// Those are defined in terms of the availability attributes above, and
|
||||
// should not be vendor-specific.
|
||||
#if defined(_LIBCPP_HAS_NO_EXCEPTIONS)
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_ANY_CAST
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_VARIANT_ACCESS
|
||||
#else
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_ANY_CAST _LIBCPP_AVAILABILITY_BAD_ANY_CAST
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS _LIBCPP_AVAILABILITY_BAD_OPTIONAL_ACCESS
|
||||
# define _LIBCPP_AVAILABILITY_THROW_BAD_VARIANT_ACCESS _LIBCPP_AVAILABILITY_BAD_VARIANT_ACCESS
|
||||
#endif
|
||||
|
||||
// Define availability attributes that depend on both
|
||||
// _LIBCPP_HAS_NO_EXCEPTIONS and _LIBCPP_HAS_NO_RTTI.
|
||||
#if defined(_LIBCPP_HAS_NO_EXCEPTIONS) || defined(_LIBCPP_HAS_NO_RTTI)
|
||||
# undef _LIBCPP_AVAILABILITY_HAS_INIT_PRIMARY_EXCEPTION
|
||||
# undef _LIBCPP_AVAILABILITY_INIT_PRIMARY_EXCEPTION
|
||||
# define _LIBCPP_AVAILABILITY_HAS_INIT_PRIMARY_EXCEPTION 0
|
||||
# define _LIBCPP_AVAILABILITY_INIT_PRIMARY_EXCEPTION
|
||||
#endif
|
||||
|
||||
#endif // _LIBCPP___CONFIGURATION_AVAILABILITY_H
|
51
third_party/libcxx/__configuration/compiler.h
vendored
Normal file
51
third_party/libcxx/__configuration/compiler.h
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
// -*- C++ -*-
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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___CONFIGURATION_COMPILER_H
|
||||
#define _LIBCPP___CONFIGURATION_COMPILER_H
|
||||
|
||||
#include <__config_site>
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#if defined(__apple_build_version__)
|
||||
// Given AppleClang XX.Y.Z, _LIBCPP_APPLE_CLANG_VER is XXYZ (e.g. AppleClang 14.0.3 => 1403)
|
||||
# define _LIBCPP_COMPILER_CLANG_BASED
|
||||
# define _LIBCPP_APPLE_CLANG_VER (__apple_build_version__ / 10000)
|
||||
#elif defined(__clang__)
|
||||
# define _LIBCPP_COMPILER_CLANG_BASED
|
||||
# define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__)
|
||||
#elif defined(__GNUC__)
|
||||
# define _LIBCPP_COMPILER_GCC
|
||||
# define _LIBCPP_GCC_VER (__GNUC__ * 100 + __GNUC_MINOR__)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
// Warn if a compiler version is used that is not supported anymore
|
||||
// LLVM RELEASE Update the minimum compiler versions
|
||||
# if defined(_LIBCPP_CLANG_VER)
|
||||
# if _LIBCPP_CLANG_VER < 1700
|
||||
# warning "Libc++ only supports Clang 17 and later"
|
||||
# endif
|
||||
# elif defined(_LIBCPP_APPLE_CLANG_VER)
|
||||
# if _LIBCPP_APPLE_CLANG_VER < 1500
|
||||
# warning "Libc++ only supports AppleClang 15 and later"
|
||||
# endif
|
||||
# elif defined(_LIBCPP_GCC_VER)
|
||||
# if _LIBCPP_GCC_VER < 1400
|
||||
# warning "Libc++ only supports GCC 14 and later"
|
||||
# endif
|
||||
# endif
|
||||
|
||||
#endif
|
||||
|
||||
#endif // _LIBCPP___CONFIGURATION_COMPILER_H
|
46
third_party/libcxx/__configuration/language.h
vendored
Normal file
46
third_party/libcxx/__configuration/language.h
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
// -*- C++ -*-
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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___CONFIGURATION_LANGUAGE_H
|
||||
#define _LIBCPP___CONFIGURATION_LANGUAGE_H
|
||||
|
||||
#include <__config_site>
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
// NOLINTBEGIN(libcpp-cpp-version-check)
|
||||
#ifdef __cplusplus
|
||||
# if __cplusplus <= 201103L
|
||||
# define _LIBCPP_STD_VER 11
|
||||
# elif __cplusplus <= 201402L
|
||||
# define _LIBCPP_STD_VER 14
|
||||
# elif __cplusplus <= 201703L
|
||||
# define _LIBCPP_STD_VER 17
|
||||
# elif __cplusplus <= 202002L
|
||||
# define _LIBCPP_STD_VER 20
|
||||
# elif __cplusplus <= 202302L
|
||||
# define _LIBCPP_STD_VER 23
|
||||
# else
|
||||
// Expected release year of the next C++ standard
|
||||
# define _LIBCPP_STD_VER 26
|
||||
# endif
|
||||
#endif // __cplusplus
|
||||
// NOLINTEND(libcpp-cpp-version-check)
|
||||
|
||||
#if !defined(__cpp_rtti) || __cpp_rtti < 199711L
|
||||
# define _LIBCPP_HAS_NO_RTTI
|
||||
#endif
|
||||
|
||||
#if !defined(__cpp_exceptions) || __cpp_exceptions < 199711L
|
||||
# define _LIBCPP_HAS_NO_EXCEPTIONS
|
||||
#endif
|
||||
|
||||
#endif // _LIBCPP___CONFIGURATION_LANGUAGE_H
|
54
third_party/libcxx/__configuration/platform.h
vendored
Normal file
54
third_party/libcxx/__configuration/platform.h
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
// -*- C++ -*-
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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___CONFIGURATION_PLATFORM_H
|
||||
#define _LIBCPP___CONFIGURATION_PLATFORM_H
|
||||
|
||||
#include <__config_site>
|
||||
|
||||
#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
|
||||
# pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#if defined(__ELF__)
|
||||
# define _LIBCPP_OBJECT_FORMAT_ELF 1
|
||||
#elif defined(__MACH__)
|
||||
# define _LIBCPP_OBJECT_FORMAT_MACHO 1
|
||||
#elif defined(_WIN32)
|
||||
# define _LIBCPP_OBJECT_FORMAT_COFF 1
|
||||
#elif defined(__wasm__)
|
||||
# define _LIBCPP_OBJECT_FORMAT_WASM 1
|
||||
#elif defined(_AIX)
|
||||
# define _LIBCPP_OBJECT_FORMAT_XCOFF 1
|
||||
#else
|
||||
// ... add new file formats here ...
|
||||
#endif
|
||||
|
||||
// Need to detect which libc we're using if we're on Linux.
|
||||
#if defined(__linux__)
|
||||
# include <features.h>
|
||||
# if defined(__GLIBC_PREREQ)
|
||||
# define _LIBCPP_GLIBC_PREREQ(a, b) __GLIBC_PREREQ(a, b)
|
||||
# else
|
||||
# define _LIBCPP_GLIBC_PREREQ(a, b) 0
|
||||
# endif // defined(__GLIBC_PREREQ)
|
||||
#endif // defined(__linux__)
|
||||
|
||||
#ifndef __BYTE_ORDER__
|
||||
# error \
|
||||
"Your compiler doesn't seem to define __BYTE_ORDER__, which is required by libc++ to know the endianness of your target platform"
|
||||
#endif
|
||||
|
||||
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||
# define _LIBCPP_LITTLE_ENDIAN
|
||||
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
# define _LIBCPP_BIG_ENDIAN
|
||||
#endif // __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
|
||||
#endif // _LIBCPP___CONFIGURATION_PLATFORM_H
|
Loading…
Add table
Add a link
Reference in a new issue