diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-08-25 19:02:56 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-08-25 19:02:56 +0000 |
commit | 769cf6cd9d267369dc8fb959a84813f620f5cf54 (patch) | |
tree | 677876922d99a4c6483c142cbe246dbb60c2cbd8 /gcc | |
parent | bbbb79d42a793c2328535b09ffaa71422353f851 (diff) | |
download | gcc-769cf6cd9d267369dc8fb959a84813f620f5cf54.zip gcc-769cf6cd9d267369dc8fb959a84813f620f5cf54.tar.gz gcc-769cf6cd9d267369dc8fb959a84813f620f5cf54.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: r86565
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/arm/t-symbian | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config/arm/t-symbian b/gcc/config/arm/t-symbian new file mode 100644 index 0000000..0c616c5 --- /dev/null +++ b/gcc/config/arm/t-symbian @@ -0,0 +1,7 @@ +# Create a multilib for processors with VFP floating-point, and a +# multilib for those without -- using the soft-float ABI in both +# cases. Symbian OS object should be compiled with interworking +# enabled, so there are no separate thumb-mode libraries. +MULTILIB_OPTIONS = mfloat-abi=hard +MULTILIB_DIRNAMES = hard + |