linux64.h (LIB_SPEC): Add missing -lc and correct -lthread to -lpthread.
* config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct -lthread to -lpthread. From-SVN: r66981
This commit is contained in:
parent
cee8d9ff4d
commit
fb9fc9f977
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-05-19 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct
|
||||
-lthread to -lpthread.
|
||||
|
||||
2003-05-19 Neil Booth <neil@daikokuya.co.uk>
|
||||
|
||||
* c-opts.c (c_common_decode_option): Don't accept dollars
|
||||
|
|
|
@ -46,11 +46,13 @@ Boston, MA 02111-1307, USA. */
|
|||
|
||||
#undef LIB_SPEC
|
||||
#define LIB_SPEC "\
|
||||
%{shared: -lc} \
|
||||
%{!static: \
|
||||
%{mabi=n32:-rpath-link %R/lib32:%R/usr/lib32} \
|
||||
%{mabi=64:-rpath-link %R/lib64:%R/usr/lib64} \
|
||||
%{mabi=32:-rpath-link %R/lib:%R/usr/lib}} \
|
||||
%{!shared: %{pthread:-lthread} %{profile:-lc_p} %{!profile: -lc}}"
|
||||
%{!shared: %{pthread:-lpthread} \
|
||||
%{profile:-lc_p} %{!profile: -lc}}"
|
||||
|
||||
#undef LINK_SPEC
|
||||
#define LINK_SPEC "\
|
||||
|
|
Loading…
Add table
Reference in a new issue