diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-24 19:35:22 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-24 19:35:22 +0000 |
commit | 01cdc5b2f2e68d1287ef682979445e01d83fbfc2 (patch) | |
tree | d7eaee6c037931d91c350f03308bfdf322017194 /libgcc | |
parent | cfdd67bc8fe28c8963caf559d097daa11c7c202c (diff) | |
download | gcc-01cdc5b2f2e68d1287ef682979445e01d83fbfc2.tar.gz |
* config/rs6000/t-linux64: Delete. Move..
* config/rs6000/t-ppc64-fp: ..softfp_wrap defines to here..
* config/rs6000/t-linux: ..and libgcc flags to here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183491 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 8 | ||||
-rw-r--r-- | libgcc/config/rs6000/t-linux | 2 | ||||
-rw-r--r-- | libgcc/config/rs6000/t-linux64 | 4 | ||||
-rw-r--r-- | libgcc/config/rs6000/t-ppc64-fp | 3 |
4 files changed, 11 insertions, 6 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 427533d8a18..1a85acabe65 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,7 +1,13 @@ +2012-01-25 Alan Modra <amodra@gmail.com> + + * config/rs6000/t-linux64: Delete. Move.. + * config/rs6000/t-ppc64-fp: ..softfp_wrap defines to here.. + * config/rs6000/t-linux: ..and libgcc flags to here. + 2012-01-22 Douglas B Rupp <rupp@gnat.com> * config.host (i[34567]86-*-interix3*): - Change triplet to i[34567]86-*-interix[3-9]*. + Change triplet to i[34567]86-*-interix[3-9]*. * configure: Regenerate. 2012-01-15 Chung-Lin Tang <cltang@codesourcery.com> diff --git a/libgcc/config/rs6000/t-linux b/libgcc/config/rs6000/t-linux index dcf7ffc255e..4f6d4c4a4d2 100644 --- a/libgcc/config/rs6000/t-linux +++ b/libgcc/config/rs6000/t-linux @@ -1,3 +1,3 @@ SHLIB_MAPFILES += $(srcdir)/config/rs6000/libgcc-glibc.ver -HOST_LIBGCC2_CFLAGS += -mlong-double-128 +HOST_LIBGCC2_CFLAGS += -mlong-double-128 -mno-minimal-toc diff --git a/libgcc/config/rs6000/t-linux64 b/libgcc/config/rs6000/t-linux64 deleted file mode 100644 index 2b60f1a1f43..00000000000 --- a/libgcc/config/rs6000/t-linux64 +++ /dev/null @@ -1,4 +0,0 @@ -HOST_LIBGCC2_CFLAGS += -mno-minimal-toc - -softfp_wrap_start := '\#ifndef __powerpc64__' -softfp_wrap_end := '\#endif' diff --git a/libgcc/config/rs6000/t-ppc64-fp b/libgcc/config/rs6000/t-ppc64-fp index 26d1730bcdb..1fac701fc44 100644 --- a/libgcc/config/rs6000/t-ppc64-fp +++ b/libgcc/config/rs6000/t-ppc64-fp @@ -1,2 +1,5 @@ # Can be used unconditionally, wrapped in __powerpc64__ || __64BIT__ __ppc64__. LIB2ADD += $(srcdir)/config/rs6000/ppc64-fp.c + +softfp_wrap_start := '\#ifndef __powerpc64__' +softfp_wrap_end := '\#endif' |