diff options
Diffstat (limited to 'libcxxabi/src/config.h')
-rw-r--r-- | libcxxabi/src/config.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libcxxabi/src/config.h b/libcxxabi/src/config.h index 72a05e0c32c..f2710c0c63b 100644 --- a/libcxxabi/src/config.h +++ b/libcxxabi/src/config.h @@ -16,18 +16,4 @@ #include <unistd.h> -// Set this in the CXXFLAGS when you need it, because otherwise we'd have to -// #if !defined(__linux__) && !defined(__APPLE__) && ... -// and so-on for *every* platform. -#ifndef LIBCXXABI_BAREMETAL -# define LIBCXXABI_BAREMETAL 0 -#endif - -// The default terminate handler attempts to demangle uncaught exceptions, which -// causes extra I/O and demangling code to be pulled in. -// Set this to make the terminate handler default to a silent alternative. -#ifndef LIBCXXABI_SILENT_TERMINATE -# define LIBCXXABI_SILENT_TERMINATE 0 -#endif - #endif // LIBCXXABI_CONFIG_H |