aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Shebs <shebs@apple.com>2001-05-15 02:17:14 +0000
committerStan Shebs <shebs@gcc.gnu.org>2001-05-15 02:17:14 +0000
commit5fa5a27ccef40a0872626e4de224512ba8cf2337 (patch)
tree5b478f609ca40ae5717f7c638429b9f68b70c26c
parentc64688ae797cb3ed06f9403cd20cfc51e0b6276a (diff)
downloadgcc-5fa5a27ccef40a0872626e4de224512ba8cf2337.zip
gcc-5fa5a27ccef40a0872626e4de224512ba8cf2337.tar.gz
gcc-5fa5a27ccef40a0872626e4de224512ba8cf2337.tar.bz2
darwin.h (LIB_SPEC): Just use -lSystem.
* config/darwin.h (LIB_SPEC): Just use -lSystem. (LIBGCC_SPEC): Don't define. From-SVN: r42094
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/darwin.h7
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 50b2de5..66f6e49 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-14 Stan Shebs <shebs@apple.com>
+
+ * config/darwin.h (LIB_SPEC): Just use -lSystem.
+ (LIBGCC_SPEC): Don't define.
+
2001-05-14 Richard Henderson <rth@redhat.com>
* configure.in (gcc_cv_as_eh_frame): New test.
diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h
index 4de7078..8415f8f 100644
--- a/gcc/config/darwin.h
+++ b/gcc/config/darwin.h
@@ -106,12 +106,7 @@ Boston, MA 02111-1307, USA. */
/* Machine dependent libraries. */
#undef LIB_SPEC
-#define LIB_SPEC \
- "%{!static:%{!pg:-framework System}%{pg:-framework System,_profile}}"
-
-#undef LIBGCC_SPEC
-#define LIBGCC_SPEC "%{!shared:%{static:-lcc} \
- %{!static:-lcc_dynamic}}"
+#define LIB_SPEC "%{!static:-lSystem}"
/* We specify crt0.o as -lcrt0.o so that ld will search the library path. */