diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-08-20 20:15:19 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-08-20 20:15:19 +0000 |
commit | 87c2399d8985816fef6925e743eb16c074d5bc7a (patch) | |
tree | e7757c8802d1e5b9a35203b3d0939b8de7752be2 /gcc/config.gcc | |
parent | d2294baa8bc194e9b4ba45eb0e5b06e50b15ca99 (diff) | |
download | gcc-87c2399d8985816fef6925e743eb16c074d5bc7a.zip gcc-87c2399d8985816fef6925e743eb16c074d5bc7a.tar.gz gcc-87c2399d8985816fef6925e743eb16c074d5bc7a.tar.bz2 |
config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile fragment.
* config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile
fragment.
* config/arm/bpabi.h (RENAME_LIBRARY_SET): Fix typo.
(SUBTARGET_EXTRA_ASM_SPEC): Pass -meabi=3 to the assembler.
* config/arm/symbian.h (SUBTARGET_CPU_DEFAULT): Assume ARMV5
architecture.
(SUBTARGET_ASM_FLOAT_SPEC): Default to -mfpu=vfp for hard-float
configurations.
* config/arm/t-symbian: New file.
From-SVN: r86338
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index b902324..0eacb5d 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -658,13 +658,14 @@ arm*-*-eabi* | arm*-*-symbianelf* ) # TImode. need_64bit_hwint=yes tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h" + tmake_file="t-slibgcc-elf-ver arm/t-arm arm/t-arm-elf arm/t-bpabi" case ${target} in arm*-*-symbianelf*) tm_file="${tm_file} arm/symbian.h" + tmake_file="${tmake_file} arm/t-symbian" ;; esac tm_file="${tm_file} arm/aout.h arm/arm.h" - tmake_file="t-slibgcc-elf-ver arm/t-arm arm/t-arm-elf arm/t-bpabi" ;; arm*-*-rtems*) tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/rtems-elf.h rtems.h" |