aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-08-15 21:59:46 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-08-15 21:59:46 +0000
commitc86942dc6677ebeb68648466d2cb4ca30c362d9a (patch)
tree74cfd6a39b1e2a9c1bdfb9bdc033adbef53a1a5c
parentaecb0ebbac26c134110bf819c57b7f3b7907a52f (diff)
Notes
-rw-r--r--contrib/gcc/config/freebsd.h7
-rw-r--r--gnu/usr.bin/cc/cc_tools/freebsd-native.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h
index f23d6a398ac45..bf70d0925ff96 100644
--- a/contrib/gcc/config/freebsd.h
+++ b/contrib/gcc/config/freebsd.h
@@ -1,4 +1,4 @@
-/* $Id: freebsd.h,v 1.13 1999/06/28 09:05:56 obrien Exp $ */
+/* $Id: freebsd.h,v 1.15 1999/07/02 19:26:45 obrien Exp $ */
/* Base configuration file for all FreeBSD targets.
Copyright (C) 1999 Free Software Foundation, Inc.
@@ -57,11 +57,6 @@ Boston, MA 02111-1307, USA. */
#undef LIB_SPEC
#define LIB_SPEC "%{!shared:%{!pg:%{!pthread:%{!kthread:-lc}%{kthread:-lpthread -lc}}%{pthread:-lc_r}}%{pg:%{!pthread:%{!kthread:-lc_p}%{kthread:-lpthread_p -lc_p}}%{pthread:-lc_r_p}}}"
-/* Tell gcc to locate libgcc.a for us according to the -m rules. */
-#undef LIBGCC_SPEC
-#define LIBGCC_SPEC \
- "%{!shared:%{!pthread:%{!kthread:libgcc.a%s}}%{pthread|kthread:libgcc_r.a%s}}"
-
/* Code generation parameters. */
diff --git a/gnu/usr.bin/cc/cc_tools/freebsd-native.h b/gnu/usr.bin/cc/cc_tools/freebsd-native.h
index 6f5cc8f76560e..99bb829187fd1 100644
--- a/gnu/usr.bin/cc/cc_tools/freebsd-native.h
+++ b/gnu/usr.bin/cc/cc_tools/freebsd-native.h
@@ -1,4 +1,4 @@
-/* $Id: freebsd.h,v 1.8 1999/04/22 17:45:01 obrien Exp $ */
+/* $Id: freebsd-native.h,v 1.1 1999/04/28 18:48:05 obrien Exp $ */
/* FREEBSD_NATIVE is defined when gcc is integrated into the FreeBSD
source tree so it can be configured appropriately without using
@@ -38,3 +38,8 @@
/* FreeBSD is 4.4BSD derived */
#define bsd4_4
+
+/* Tell gcc to locate libgcc.a for us according to the -m rules. */
+#undef LIBGCC_SPEC
+#define LIBGCC_SPEC \
+ "%{!shared:%{!pthread:%{!kthread:libgcc.a%s}}%{pthread|kthread:libgcc_r.a%s}}"