1//===----------------------------------------------------------------------===// 2// 3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4// See https://llvm.org/LICENSE.txt for license information. 5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6// 7//===----------------------------------------------------------------------===// 8 9#ifndef _LIBCPP___CONFIG_SITE 10#define _LIBCPP___CONFIG_SITE 11 12#define _LIBCPP_ABI_VERSION 1 13#define _LIBCPP_ABI_NAMESPACE __1 14/* #undef _LIBCPP_ABI_FORCE_ITANIUM */ 15/* #undef _LIBCPP_ABI_FORCE_MICROSOFT */ 16/* #undef _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT */ 17/* #undef _LIBCPP_HAS_NO_THREADS */ 18/* #undef _LIBCPP_HAS_NO_MONOTONIC_CLOCK */ 19/* #undef _LIBCPP_HAS_MUSL_LIBC */ 20/* #undef _LIBCPP_HAS_THREAD_API_PTHREAD */ 21/* #undef _LIBCPP_HAS_THREAD_API_EXTERNAL */ 22/* #undef _LIBCPP_HAS_THREAD_API_WIN32 */ 23/* #undef _LIBCPP_HAS_THREAD_LIBRARY_EXTERNAL */ 24/* #undef _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS */ 25#define _LIBCPP_HAS_NO_VENDOR_AVAILABILITY_ANNOTATIONS 26/* #undef _LIBCPP_NO_VCRUNTIME */ 27/* #undef _LIBCPP_TYPEINFO_COMPARISON_IMPLEMENTATION */ 28/* #undef _LIBCPP_HAS_NO_FILESYSTEM_LIBRARY */ 29/* #undef _LIBCPP_HAS_PARALLEL_ALGORITHMS */ 30/* #undef _LIBCPP_HAS_NO_RANDOM_DEVICE */ 31/* #undef _LIBCPP_HAS_NO_LOCALIZATION */ 32/* #undef _LIBCPP_HAS_NO_WIDE_CHARACTERS */ 33/* #undef _LIBCPP_HAS_NO_INCOMPLETE_FORMAT */ 34/* #undef _LIBCPP_HAS_NO_INCOMPLETE_RANGES */ 35#define _LIBCPP_ENABLE_ASSERTIONS_DEFAULT 0 36/* #undef _LIBCPP_ENABLE_DEBUG_MODE */ 37 38// __USE_MINGW_ANSI_STDIO gets redefined on MinGW 39#ifdef __clang__ 40# pragma clang diagnostic push 41# pragma clang diagnostic ignored "-Wmacro-redefined" 42#endif 43 44 45 46 47#ifdef __clang__ 48# pragma clang diagnostic pop 49#endif 50 51#endif // _LIBCPP___CONFIG_SITE 52