PR target/47098 OBSD_LIB_SPEC on i686-openbsd3 missing
authorBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Wed, 22 Apr 2015 08:41:13 +0000 (10:41 +0200)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Wed, 22 Apr 2015 08:41:13 +0000 (10:41 +0200)
config-list.mk for i686-*-openbsd3.0 failed with:

gcc/config/openbsd.h:143:18: error: ‘OBSD_LIB_SPEC’ was not declared in this scope
 #define LIB_SPEC OBSD_LIB_SPEC
                  ^
gcc/gcc.c:879:31: note:
in expansion of macro ‘LIB_SPEC’
 static const char *lib_spec = LIB_SPEC;
                               ^
make[2]: *** [gcc.o] Error 1

i.e. openbsd-oldgas.h is only used on
i?86-*-openbsd2.*|i?86-*openbsd3.[0123] so add the OBSD_LIB_SPEC there

From-SVN: r222315

gcc/ChangeLog
gcc/config/openbsd-oldgas.h

index bfab007f1deaf3007180346eceae0cb1e30dfdb4..2e70a87153fa8f10be01db48a08039f799c507e9 100644 (file)
@@ -1,3 +1,8 @@
+2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
+
+       PR target/47098
+       * config/openbsd-oldgas.h (OBSD_LIB_SPEC): Add.
+
 2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
 
        PR target/47122
index 04a4d370baca95f09f2355123b5815e3a0378106..5cef1eb0b9d2969ba909bc7251f96701434f2926 100644 (file)
@@ -20,3 +20,7 @@ along with GCC; see the file COPYING3.  If not see
 
 
 #define OBSD_OLD_GAS
+
+/* OpenBSD3.0 had no libpthread, pthreads lived in -lc_r */
+#define OBSD_LIB_SPEC "%{!shared:-lc%{pthread:_r}}"
+