diff options
author | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-28 18:00:52 +0000 |
---|---|---|
committer | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-28 18:00:52 +0000 |
commit | baf4cf5310846a1da0f3910ed31066f42b7dd905 (patch) | |
tree | 1fd76f70c3ed927fadddf9f51f4f06edf0cc3426 | |
parent | 1adb179a2fc30cb48f7247d34a264bf32c12a2f8 (diff) | |
download | ppe42-gcc-baf4cf5310846a1da0f3910ed31066f42b7dd905.tar.gz ppe42-gcc-baf4cf5310846a1da0f3910ed31066f42b7dd905.zip |
* config/mips/linux.h (LIB_SPEC): Add missing -lc and correct
-lthread to -lpthread.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67208 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8d9e7991a4..21c12d1e784 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-28 Daniel Jacobowitz <drow@mvista.com> + + * config/mips/linux.h (LIB_SPEC): Add missing -lc and correct + -lthread to -lpthread. + 2003-05-28 Eric Botcazou <ebotcazou@libertysurf.fr> Bruce Korb <bkorb@gnu.org> Arno Klaassen <arno@heho.snv.jussieu.fr> diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index 2461ac34292..8f81bc4497a 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -254,6 +254,7 @@ void FN () \ #undef LIB_SPEC #define LIB_SPEC "\ +%{shared: -lc} \ %{!static:-rpath-link %R/lib:%R/usr/lib} \ -%{!shared: %{pthread:-lthread} \ +%{!shared: %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" |