diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2011-08-06 18:41:36 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2011-08-06 18:41:36 +0000 |
commit | ed39fbad9a2b8c314b9f04814a69fca5c289309f (patch) | |
tree | 110782dd2f39872a8abeb0c15bce2783549d5901 /libgcc | |
parent | 1e46eb2a1b9cf45590ab0444ce03dbb3b7bd8856 (diff) | |
download | gcc-ed39fbad9a2b8c314b9f04814a69fca5c289309f.zip gcc-ed39fbad9a2b8c314b9f04814a69fca5c289309f.tar.gz gcc-ed39fbad9a2b8c314b9f04814a69fca5c289309f.tar.bz2 |
libgcc/
* config.host (*-*-darwin*, *-*-freebsd*, *-*-linux*, frv-*-*linux*)
(*-*-kfreebsd*-gnu, *-*-knetbsd*-gnu, *-*-gnu*, *-*-kopensolaris*-gnu):
Add to tmake_file rather than overriding it.
From-SVN: r177533
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 6 | ||||
-rw-r--r-- | libgcc/config.host | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index b26254f..7902002 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,9 @@ +2011-08-06 Richard Sandiford <rdsandiford@googlemail.com> + + * config.host (*-*-darwin*, *-*-freebsd*, *-*-linux*, frv-*-*linux*) + (*-*-kfreebsd*-gnu, *-*-knetbsd*-gnu, *-*-gnu*, *-*-kopensolaris*-gnu): + Add to tmake_file rather than overriding it. + 2011-08-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * config/t-softfp: Remove. diff --git a/libgcc/config.host b/libgcc/config.host index be6d720..d35ee3a 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -163,7 +163,7 @@ esac case ${host} in *-*-darwin*) asm_hidden_op=.private_extern - tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin" + tmake_file="$tmake_file t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin" extra_parts=crt3.o ;; *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*) @@ -179,10 +179,10 @@ case ${host} in # This is the generic ELF configuration of FreeBSD. Later # machine-specific sections may refine and add to this # configuration. - tmake_file=t-eh-dw2-dip + tmake_file="$tmake_file t-eh-dw2-dip" ;; *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu) - tmake_file=t-eh-dw2-dip + tmake_file="$tmake_file t-eh-dw2-dip" extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" ;; *-*-netbsd*) |