diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-12-15 02:32:24 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-12-15 02:32:24 +0000 |
commit | 56fb2b3625d4e32d019024e9c5f8a5d07e185f38 (patch) | |
tree | 94634d846c443f1d9929fcfc2549d63712558d15 /gcc | |
parent | 0dcc5c98ecb8d9f91fb748f0f42388441b2afbee (diff) | |
download | gcc-56fb2b3625d4e32d019024e9c5f8a5d07e185f38.zip gcc-56fb2b3625d4e32d019024e9c5f8a5d07e185f38.tar.gz gcc-56fb2b3625d4e32d019024e9c5f8a5d07e185f38.tar.bz2 |
arc.h (LIB_SPEC): Define.
* config/arc/arc.h (LIB_SPEC): Define.
* config.gcc (arc-*-elf*): Don't use svr4.h.
From-SVN: r167840
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 2 | ||||
-rw-r--r-- | gcc/config/arc/arc.h | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a58fde..1519ede 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-12-14 Joseph Myers <joseph@codesourcery.com> + * config/arc/arc.h (LIB_SPEC): Define. + * config.gcc (arc-*-elf*): Don't use svr4.h. + +2010-12-14 Joseph Myers <joseph@codesourcery.com> + * config/sh/elf.h (LIB_SPEC): Define. * config.gcc (sh-*-elf* | sh[12346l]*-*-elf* | sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | sh-*-linux* | sh[2346lbe]*-*-linux* | diff --git a/gcc/config.gcc b/gcc/config.gcc index 273819a..93ad309 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -761,7 +761,7 @@ alpha*-dec-*vms*) extra_options="${extra_options} vms/vms.opt" ;; arc-*-elf*) - tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}" + tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}" extra_parts="crtinit.o crtfini.o" ;; arm-wrs-vxworks) diff --git a/gcc/config/arc/arc.h b/gcc/config/arc/arc.h index 8a08818..0f2b99c 100644 --- a/gcc/config/arc/arc.h +++ b/gcc/config/arc/arc.h @@ -29,6 +29,7 @@ along with GCC; see the file COPYING3. If not see #undef ASM_SPEC #undef LINK_SPEC +#undef LIB_SPEC #undef STARTFILE_SPEC #undef ENDFILE_SPEC #undef SIZE_TYPE @@ -66,6 +67,8 @@ along with GCC; see the file COPYING3. If not see #define LINK_SPEC "%{v} %{EB} %{EL}" +#define LIB_SPEC "-lc" + #define STARTFILE_SPEC "%{!shared:crt0.o%s} crtinit.o%s" #define ENDFILE_SPEC "crtfini.o%s" |