diff options
author | Ben Elliston <bje@au.ibm.com> | 2009-01-13 11:53:41 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2009-01-13 22:53:41 +1100 |
commit | bcf4713becbac465319095c1c42fa91d60190f30 (patch) | |
tree | fe89acc3828c535587fa5f4df1d5c8ff7eed97c4 /libgcc/config | |
parent | 616ea7ac83af09857863c91efa2e0379dfa6f152 (diff) | |
download | gcc-bcf4713becbac465319095c1c42fa91d60190f30.tar.gz |
t-softfp: New file.
* config/t-softfp: New file.
* config.host (powerpc64-*-linux*, powerpc64-*-gnu*): Add t-softfp.
(powerpc-*-linux*spe*, powerpc-*-linux*): Likewise.
From-SVN: r143334
Diffstat (limited to 'libgcc/config')
-rw-r--r-- | libgcc/config/t-softfp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libgcc/config/t-softfp b/libgcc/config/t-softfp new file mode 100644 index 00000000000..5d67da01780 --- /dev/null +++ b/libgcc/config/t-softfp @@ -0,0 +1,14 @@ +# Disable missing prototype and type limit warnings. The prototypes +# for the functions in the soft-fp files have not been brought across +# from glibc. + +# cfr. srcdirify in gcc/Makefile.in +soft-fp-files = $(filter $(gcc_srcdir)/config/soft-fp/%, $(LIB2ADD)) \ + $(filter $(gcc_objdir)/config/soft-fp/%, $(LIB2ADD)) + +soft-fp-objects-base = $(basename $(notdir $(soft-fp-files))) + +soft-fp-objects = $(addsuffix $(objext), $(soft-fp-objects-base)) \ + $(addsuffix _s$(objext), $(soft-fp-objects-base)) + +$(soft-fp-objects) : INTERNAL_CFLAGS += -Wno-missing-prototypes -Wno-type-limits |