diff options
author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-15 02:17:14 +0000 |
---|---|---|
committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-15 02:17:14 +0000 |
commit | b4358140c7586988b7e96b6acb509a970c50861b (patch) | |
tree | 5b478f609ca40ae5717f7c638429b9f68b70c26c /gcc/config/darwin.h | |
parent | c3f311c4228469099c9ec4c5545d0a7e006f9a2d (diff) | |
download | gcc-b4358140c7586988b7e96b6acb509a970c50861b.tar.gz |
* config/darwin.h (LIB_SPEC): Just use -lSystem.
(LIBGCC_SPEC): Don't define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42094 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/darwin.h')
-rw-r--r-- | gcc/config/darwin.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 4de7078ed2c..8415f8f6459 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. */ |