diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2007-01-18 19:29:48 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-01-18 19:29:48 +0000 |
commit | 47b41fa34abeff893fb1358c8154e681e68fdddd (patch) | |
tree | c1ce496cc8ad1aab36c512fa6b5b52749444b6b7 /gcc/config.gcc | |
parent | a96533d5e5ec94af81be2c74a41d8f67fb809cfe (diff) | |
download | gcc-47b41fa34abeff893fb1358c8154e681e68fdddd.zip gcc-47b41fa34abeff893fb1358c8154e681e68fdddd.tar.gz gcc-47b41fa34abeff893fb1358c8154e681e68fdddd.tar.bz2 |
200x-xx-xx Nathan Sidwell <nathan@codesourcery.com>
gcc/
200x-xx-xx Nathan Sidwell <nathan@codesourcery.com>
* config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
(m68k-*-uclinuxoldabi, m68k-*-uclinux*, m68k-*-rtems*): Add t-floatlib
to $tmake_file.
* config/m68k/t-floatlib: New file, extracting common code from...
* config/m68k/t-m68kbare, config/m68k/t-m68kelf,
* config/m68k/t-uclinux: Here.
* config/m68k/fpgnulib.c: Do not compile extendeed precision
routines on ColdFire targets.
From-SVN: r120917
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 7a911ff..b55f3b5 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1479,12 +1479,12 @@ m68hc12-*-*|m6812-*-*) ;; m68k-*-aout*) default_m68k_cpu=68020 - tmake_file=m68k/t-m68kbare + tmake_file="m68k/t-floatlib m68k/t-m68kbare" tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h" ;; m68k-*-coff*) default_m68k_cpu=68020 - tmake_file=m68k/t-m68kbare + tmake_file="m68k/t-floatlib m68k/t-m68kbare" tm_defines="${tm_defines} MOTOROLA=1 USE_GAS" tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h" use_fixproto=yes @@ -1493,7 +1493,7 @@ m68020-*-elf* | m68k-*-elf*) default_m68k_cpu=68020 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h" tm_defines="${tm_defines} MOTOROLA=1 USE_GAS" - tmake_file=m68k/t-m68kelf + tmake_file="m68k/t-floatlib m68k/t-m68kelf" extra_parts="crtbegin.o crtend.o" ;; m68010-*-netbsdelf* | m68k*-*-netbsdelf*) @@ -1516,7 +1516,7 @@ m68k-*-uclinuxoldabi*) # Motorola m68k/ColdFire running uClinux default_m68k_cpu=68020 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux-oldabi.h" tm_defines="${tm_defines} MOTOROLA=1 USE_GAS" - tmake_file=m68k/t-uclinux + tmake_file="m68k/t-floatlib m68k/t-uclinux" use_fixproto=no ;; m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux @@ -1526,7 +1526,7 @@ m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h flat.h m68k/linux.h m68k/uclinux.h" tm_defines="${tm_defines} MOTOROLA=1 USE_GAS UCLIBC_DEFAULT=1" extra_options="${extra_options} linux.opt" - tmake_file=m68k/t-uclinux + tmake_file="m68k/t-floatlib m68k/t-uclinux" use_fixproto=no ;; m68k-*-linux*) # Motorola m68k's running GNU/Linux @@ -1544,7 +1544,7 @@ m68k-*-linux*) # Motorola m68k's running GNU/Linux ;; m68k-*-rtems*) default_m68k_cpu=68020 - tmake_file="m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems" + tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems" tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h" tm_defines="${tm_defines} MOTOROLA=1 USE_GAS" extra_parts="crtbegin.o crtend.o" |