mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-12-14 23:38:28 +00:00
Support old GCC exception and rtti detection macros
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@273383 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b5fb8c9e39
commit
8905b11d2d
@ -71,11 +71,13 @@
|
||||
#define TEST_NOEXCEPT
|
||||
#endif
|
||||
|
||||
#if !TEST_HAS_FEATURE(cpp_rtti) && !defined(__cpp_rtti)
|
||||
#if !TEST_HAS_FEATURE(cpp_rtti) && !defined(__cpp_rtti) \
|
||||
&& !defined(__GXX_RTTI)
|
||||
#define TEST_HAS_NO_RTTI
|
||||
#endif
|
||||
|
||||
#if !TEST_HAS_FEATURE(cpp_exceptions) && !defined(__cpp_exceptions)
|
||||
#if !TEST_HAS_FEATURE(cpp_exceptions) && !defined(__cpp_exceptions) \
|
||||
&& !defined(__EXCEPTIONS)
|
||||
#define TEST_HAS_NO_EXCEPTIONS
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user