diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-06 18:41:36 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-06 18:41:36 +0000 |
commit | ab3bed335309161d2fda47852eb623fb2b1942cb (patch) | |
tree | 110782dd2f39872a8abeb0c15bce2783549d5901 /libgcc | |
parent | 0d25d8c268a038d356bb775b99394f1e896fac01 (diff) | |
download | gcc-ab3bed335309161d2fda47852eb623fb2b1942cb.tar.gz |
libgcc/
* config.host (*-*-darwin*, *-*-freebsd*, *-*-linux*, frv-*-*linux*)
(*-*-kfreebsd*-gnu, *-*-knetbsd*-gnu, *-*-gnu*, *-*-kopensolaris*-gnu):
Add to tmake_file rather than overriding it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177533 138bc75d-0d04-0410-961f-82ee72b054a4
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 b26254f20d6..79020025415 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 be6d720ac28..d35ee3a4a61 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*) |