diff options
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index 17e1d86..f629d15 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2965,6 +2965,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 |