forked from OSchip/llvm-project
Revert "Define _GNU_SOURCE for rtems c++"
This reverts commit r305399. This breaks a build in libcxx: libcxx/src/system_error.cpp:90:16: error: assigning to 'int' from incompatible type 'char *' if ((ret = ::strerror_r(ev, buffer, strerror_buff_size)) != 0) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. Which makes sense according to: https://linux.die.net/man/3/strerror_r Not entirely sure how this needs to be fixed. llvm-svn: 305456
This commit is contained in:
parent
d9299293ad
commit
d078254049
|
@ -4734,9 +4734,6 @@ protected:
|
|||
|
||||
Builder.defineMacro("__rtems__");
|
||||
Builder.defineMacro("__ELF__");
|
||||
// Required by the libc++ locale support.
|
||||
if (Opts.CPlusPlus)
|
||||
Builder.defineMacro("_GNU_SOURCE");
|
||||
}
|
||||
|
||||
public:
|
||||
|
|
|
@ -8779,7 +8779,6 @@
|
|||
// KFREEBSDI686-DEFINE:#define __GLIBC__ 1
|
||||
//
|
||||
// RUN: %clang_cc1 -x c++ -triple i686-pc-linux-gnu -fobjc-runtime=gcc -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix GNUSOURCE %s
|
||||
// RUN: %clang_cc1 -x c++ -triple sparc-rtems-elf -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix GNUSOURCE %s
|
||||
// GNUSOURCE:#define _GNU_SOURCE 1
|
||||
//
|
||||
// RUN: %clang_cc1 -x c++ -std=c++98 -fno-rtti -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix NORTTI %s
|
||||
|
|
Loading…
Reference in New Issue