//===----------------------------------------------------------------------===// // // 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___CONFIG_SITE #define _LIBCPP___CONFIG_SITE #define _LIBCPP_ABI_VERSION 1 #define _LIBCPP_ABI_NAMESPACE __1 #define _LIBCPP_ABI_FORCE_ITANIUM 0 #define _LIBCPP_ABI_FORCE_MICROSOFT 0 #define _LIBCPP_HAS_THREADS 1 #define _LIBCPP_HAS_MONOTONIC_CLOCK 1 #define _LIBCPP_HAS_TERMINAL 1 #define _LIBCPP_HAS_MUSL_LIBC 0 #define _LIBCPP_HAS_THREAD_API_PTHREAD 0 #define _LIBCPP_HAS_THREAD_API_EXTERNAL 0 #define _LIBCPP_HAS_THREAD_API_WIN32 0 #define _LIBCPP_HAS_THREAD_API_C11 0 // FIXME: Is this guarding dead code? /* #undef _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS */ #define _LIBCPP_HAS_VENDOR_AVAILABILITY_ANNOTATIONS 1 /* #undef _LIBCPP_NO_VCRUNTIME */ /* #undef _LIBCPP_TYPEINFO_COMPARISON_IMPLEMENTATION */ #define _LIBCPP_HAS_FILESYSTEM 1 #define _LIBCPP_HAS_RANDOM_DEVICE 1 #define _LIBCPP_HAS_LOCALIZATION 1 #define _LIBCPP_HAS_UNICODE 1 #define _LIBCPP_HAS_WIDE_CHARACTERS 1 /* #undef _LIBCPP_HAS_NO_STD_MODULES */ #define _LIBCPP_HAS_TIME_ZONE_DATABASE 0 #define _LIBCPP_INSTRUMENTED_WITH_ASAN 0 // PSTL backends /* #undef _LIBCPP_PSTL_BACKEND_SERIAL */ /* #undef _LIBCPP_PSTL_BACKEND_STD_THREAD */ #define _LIBCPP_PSTL_BACKEND_LIBDISPATCH // Hardening. #define _LIBCPP_HARDENING_MODE_DEFAULT 2 #define _LIBCPP_ASSERTION_SEMANTIC_DEFAULT 2 // __USE_MINGW_ANSI_STDIO gets redefined on MinGW #ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wmacro-redefined" #endif #ifdef __clang__ # pragma clang diagnostic pop #endif #endif // _LIBCPP___CONFIG_SITE