2002-09-29 10:38:40 +00:00
|
|
|
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
|
|
|
# Local configure fragment for sysdeps/x86_64/elf.
|
|
|
|
|
|
|
|
# Check for support of thread-local storage handling in assembler and linker.
|
|
|
|
AC_CACHE_CHECK(for x86-64 TLS support, libc_cv_x86_64_tls, [dnl
|
|
|
|
cat > conftest.s <<\EOF
|
|
|
|
.section ".tdata", "awT", @progbits
|
|
|
|
.globl foo
|
|
|
|
foo: .quad 1
|
|
|
|
.section ".tbss", "awT", @nobits
|
|
|
|
.globl bar
|
|
|
|
bar: .skip 8
|
|
|
|
.text
|
|
|
|
baz: leaq bar@TLSLD(%rip), %rdi
|
|
|
|
leaq bar@DTPOFF(%rax), %rcx
|
|
|
|
addq foo@GOTTPOFF(%rip), %rax
|
|
|
|
movq $bar@TPOFF, %rdx
|
|
|
|
EOF
|
|
|
|
dnl
|
2002-10-18 20:28:09 +00:00
|
|
|
if AC_TRY_COMMAND(${CC-cc} -c $CFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
|
2002-09-29 10:38:40 +00:00
|
|
|
libc_cv_x86_64_tls=yes
|
|
|
|
else
|
|
|
|
libc_cv_x86_64_tls=no
|
|
|
|
fi
|
|
|
|
rm -f conftest*])
|
2011-09-11 19:02:01 +00:00
|
|
|
if test $libc_cv_x86_64_tls = no; then
|
|
|
|
AC_MSG_ERROR([the assembler must support TLS])
|
2002-09-29 10:38:40 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
dnl It is always possible to access static and hidden symbols in an
|
|
|
|
dnl position independent way.
|
|
|
|
AC_DEFINE(PI_STATIC_AND_HIDDEN)
|
2011-02-17 06:26:07 +00:00
|
|
|
# work around problem with autoconf and empty lines at the end of files
|