diff options
author | Ian Bolton <ian.bolton@arm.com> | 2012-10-23 17:35:16 +0000 |
---|---|---|
committer | Marcus Shawcroft <mshawcroft@gcc.gnu.org> | 2012-10-23 17:35:16 +0000 |
commit | 24034425f50001b28e63fcd9ca6f1d080d342b4f (patch) | |
tree | 890a04cfb16ec2b68f4f32713818c790d0e3ee56 /gcc/configure | |
parent | 597ee90168fa3a39d9546ad1a5c50657329d549a (diff) | |
download | gcc-24034425f50001b28e63fcd9ca6f1d080d342b4f.zip gcc-24034425f50001b28e63fcd9ca6f1d080d342b4f.tar.gz gcc-24034425f50001b28e63fcd9ca6f1d080d342b4f.tar.bz2 |
AArch64 [1/10]
2012-10-23 Ian Bolton <ian.bolton@arm.com>
James Greenhalgh <james.greenhalgh@arm.com>
Jim MacArthur <jim.macarthur@arm.com>
Marcus Shawcroft <marcus.shawcroft@arm.com>
Nigel Stephens <nigel.stephens@arm.com>
Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
Richard Earnshaw <rearnsha@arm.com>
Sofiane Naci <sofiane.naci@arm.com>
Stephen Thomas <stephen.thomas@arm.com>
Tejas Belagod <tejas.belagod@arm.com>
Yufeng Zhang <yufeng.zhang@arm.com>
* config.gcc: Add AArch64.
* configure.ac: Add AArch64 TLS support detection.
* configure: Regenerate.
Co-Authored-By: James Greenhalgh <james.greenhalgh@arm.com>
Co-Authored-By: Jim MacArthur <jim.macarthur@arm.com>
Co-Authored-By: Marcus Shawcroft <marcus.shawcroft@arm.com>
Co-Authored-By: Nigel Stephens <nigel.stephens@arm.com>
Co-Authored-By: Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
Co-Authored-By: Richard Earnshaw <rearnsha@arm.com>
Co-Authored-By: Sofiane Naci <sofiane.naci@arm.com>
Co-Authored-By: Stephen Thomas <stephen.thomas@arm.com>
Co-Authored-By: Tejas Belagod <tejas.belagod@arm.com>
Co-Authored-By: Yufeng Zhang <yufeng.zhang@arm.com>
From-SVN: r192732
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/configure b/gcc/configure index a223c60..4c90e9b 100755 --- a/gcc/configure +++ b/gcc/configure @@ -23189,6 +23189,19 @@ foo: tls_first_minor=19 tls_as_opt='--fatal-warnings' ;; + aarch64*-*-*) + conftest_s=' + .section ".tdata","awT",%progbits +foo: .long 25 + .text + adrp x0, :tlsgd:x + add x0, x0, #:tlsgd_lo12:x + bl __tls_get_addr + nop' + tls_first_major=2 + tls_first_minor=20 + tls_as_opt='--fatal-warnings' + ;; powerpc-*-*) conftest_s=' .section ".tdata","awT",@progbits |