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
Is the patch below ok for trunk? i.e. openbsd-oldgas.h is only used on i?86-*-openbsd2.*|i?86-*openbsd3.[0123] so is right on spot it seems. Alternatively remove openbsd <= 3.3 support altogether since openbsd-3.3 was released May 1, 2003. This probably needs a deprecation announcement from Release Managers or something. gcc/ChangeLog: 2015-04-10 Bernhard Reutner-Fischer <al...@gcc.gnu.org> PR target/47098 * config/openbsd-oldgas.h (OBSD_LIB_SPEC): Add. --- gcc/config/openbsd-oldgas.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/config/openbsd-oldgas.h b/gcc/config/openbsd-oldgas.h index 04a4d37..5cef1eb 100644 --- a/gcc/config/openbsd-oldgas.h +++ b/gcc/config/openbsd-oldgas.h @@ -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}}" + -- 1.7.10.4