Created
October 3, 2015 02:23
-
-
Save EricWF/515a8ef9b94e372799b8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| //===----------------------------------------------------------------------===// | |
| // | |
| // The LLVM Compiler Infrastructure | |
| // | |
| // This file is dual licensed under the MIT and the University of Illinois Open | |
| // Source Licenses. See LICENSE.TXT for details. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| #ifndef _LIBCPP_CONFIG_SITE | |
| #define _LIBCPP_CONFIG_SITE | |
| /* #undef _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE */ | |
| /* #undef _LIBCPP_HAS_NO_STDIN */ | |
| /* #undef _LIBCPP_HAS_NO_STDOUT */ | |
| #define _LIBCPP_HAS_NO_THREADS | |
| /* #undef _LIBCPP_HAS_NO_MONOTONIC_CLOCK */ | |
| /* #undef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS */ | |
| #endif | |
| // -*- C++ -*- | |
| //===--------------------------- __config ---------------------------------===// | |
| // | |
| // The LLVM Compiler Infrastructure | |
| // | |
| // This file is dual licensed under the MIT and the University of Illinois Open | |
| // Source Licenses. See LICENSE.TXT for details. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| #ifndef _LIBCPP_CONFIG | |
| #define _LIBCPP_CONFIG | |
| #if !defined(_MSC_VER) || defined(__clang__) | |
| #pragma GCC system_header | |
| #endif | |
| #ifdef __GNUC__ | |
| #define _GNUC_VER (__GNUC__ * 100 + __GNUC_MINOR__) | |
| #else |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment