diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2011-06-22 17:01:17 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2011-06-22 17:01:17 +0000 |
commit | 7cf13d1f46fcf4e5fe83e79f75fd943c0cc29295 (patch) | |
tree | 2bd17bf2c356648adc28a7f7a0f92887dc93226f /gcc/config.gcc | |
parent | 78a8eb4edcc2352b7af778d2a3563825d8d72b36 (diff) | |
download | gcc-7cf13d1f46fcf4e5fe83e79f75fd943c0cc29295.zip gcc-7cf13d1f46fcf4e5fe83e79f75fd943c0cc29295.tar.gz gcc-7cf13d1f46fcf4e5fe83e79f75fd943c0cc29295.tar.bz2 |
arm.h (OPTION_DEFAULT_SPECS): Fix -mtls-dialect typo.
* config/arm/arm.h (OPTION_DEFAULT_SPECS): Fix -mtls-dialect
typo.
* config.gcc (arm*-*-linux*): Default to gnu tls.
(arm*-*-*): Add --with-tls option.
(all_defaults): Add 'tls'.
From-SVN: r175298
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f5037b3..a1dbd1a 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -863,6 +863,7 @@ arm*-*-linux*) # ARM GNU/Linux with ELF tmake_file="$tmake_file arm/t-linux" ;; esac + with_tls=${with_tls:-gnu} tm_file="$tm_file arm/aout.h arm/arm.h" tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp" ;; @@ -3039,7 +3040,7 @@ case "${target}" in ;; arm*-*-*) - supported_defaults="arch cpu float tune fpu abi mode" + supported_defaults="arch cpu float tune fpu abi mode tls" for which in cpu tune; do # See if it matches any of the entries in arm-cores.def eval "val=\$with_$which" @@ -3122,6 +3123,17 @@ case "${target}" in ;; esac + case "$with_tls" in + "" \ + | gnu | gnu2) + # OK + ;; + *) + echo "Unknown TLS method used in --with-tls=$with_tls" 1>&2 + exit 1 + ;; + esac + if test "x$with_arch" != x && test "x$with_cpu" != x; then echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2 fi @@ -3601,7 +3613,7 @@ case ${target} in esac t= -all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu divide llsc mips-plt synci" +all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu divide llsc mips-plt synci tls" for option in $all_defaults do eval "val=\$with_"`echo $option | sed s/-/_/g` |