aboutsummaryrefslogtreecommitdiff
path: root/gcc/config.gcc
diff options
context:
space:
mode:
authorEric Christopher <echristo@redhat.com>2001-11-02 02:18:37 +0000
committerEric Christopher <echristo@gcc.gnu.org>2001-11-02 02:18:37 +0000
commit009da78551c8191873a18dd26f5cdedbe9ccb20e (patch)
treedc794b5a02209a6162dbb85797dbfca82c221c59 /gcc/config.gcc
parent9caea35c411e440b55c20ff5caafa40deb9de99f (diff)
downloadgcc-009da78551c8191873a18dd26f5cdedbe9ccb20e.zip
gcc-009da78551c8191873a18dd26f5cdedbe9ccb20e.tar.gz
gcc-009da78551c8191873a18dd26f5cdedbe9ccb20e.tar.bz2
config.gcc: Revert part of earlier patch.
2001-11-01 Eric Christopher <echristo@redhat.com> * config.gcc: Revert part of earlier patch. * config/mips/linux.h: Ditto. * df.c: Include tm_p.h to avoid warnings. * config/mips/mips.h (ABI_GAS_ASM_SPEC): Add defaults. Adjust #if/#endif. * config/mips/mips.c: Define mips_abi regardless. (mips_output_function_prologues): Add long casts for .frame output. (override_options): Allow use of ABI_32. From-SVN: r46707
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r--gcc/config.gcc20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 41f6f2f..41e2217 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -2261,17 +2261,17 @@ mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
;;
mips*-*-linux*) # Linux MIPS, either endian.
xmake_file=x-linux
+ tm_file="linux.h mips/linux.h"
case $machine in
- mipsisa32el-*)
- tm_file="elfos.h mips/elfl.h mips/linux.h mips/isa32-linux.h"
- target_cpu_default="MASK_SOFT_FLOAT"
- ;;
- mipsisa32-*)
- tm_file="elfos.h mips/elf.h mips/linux.h mips/isa32-linux.h"
- target_cpu_default="MASK_SOFT_FLOAT"
- ;;
- mips*el-*) tm_file="elfos.h mips/elfl.h mips/linux.h" ;;
- *) tm_file="elfos.h mips/elf.h mips/linux.h"
+ mipsisa32*-*)
+ tm_file="$tm_file mips/isa32-linux.h"
+ target_cpu_default="MASK_SOFT_FLOAT"
+ ;;
+ esac
+ case $machine in
+ mips*el-*)
+ tm_file="mips/little.h $tm_file"
+ ;;
esac
tmake_file="t-slibgcc-elf-ver t-linux"
extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"