From: Mike Frysinger Date: Thu, 28 May 2015 13:59:58 +0000 (+0000) Subject: nios2-linux: add missing cpp specs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52d0089ecaab81fc9cecca26822a3e69193dd715;p=gcc.git nios2-linux: add missing cpp specs Define CPP_SPEC for nios2 linux targets so that -posix & -pthread work like on all other linux targets. Discovered via Gentoo bug https://bugs.gentoo.org/543114 From-SVN: r223823 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8aae429ca47..b66ba2fee62 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-05-28 Mike Frysinger + + * config/nios2/linux.h (CPP_SPEC): Define. + 2015-05-28 Mike Frysinger * config/microblaze/linux.h (CPP_SPEC): Define. diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h index 41cad943c2c..f43f655e860 100644 --- a/gcc/config/nios2/linux.h +++ b/gcc/config/nios2/linux.h @@ -26,6 +26,9 @@ } \ while (0) +#undef CPP_SPEC +#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}" + #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1" #undef LINK_SPEC