diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-04 08:38:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-04 08:38:52 +0000 |
commit | 67ddea92542c12f2099a89dbc58a045a65bb7771 (patch) | |
tree | 202823f6ce59a8115367fb711da7317b09ce3ec0 /sysdeps/i386/elf | |
parent | e23f8d206d85154a99c3f91d58a35227a279c479 (diff) | |
download | glibc-67ddea92542c12f2099a89dbc58a045a65bb7771.tar.gz |
Update.
2002-02-04 Ulrich Drepper <drepper@redhat.com>
* sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Move
dl_cpuclock_offset initialization to _dl_start_final.
(_dl_show_auxv): Avoid unnecessary sign extension.
* elf/rtld.c (_dl_start_final): Initialize dl_cpuclock_offset.
Diffstat (limited to 'sysdeps/i386/elf')
-rw-r--r-- | sysdeps/i386/elf/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/i386/elf/configure.in b/sysdeps/i386/elf/configure.in index d7e1704540..6352e69aa3 100644 --- a/sysdeps/i386/elf/configure.in +++ b/sysdeps/i386/elf/configure.in @@ -7,9 +7,11 @@ GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. AC_CACHE_CHECK(for i386 TLS support, libc_cv_386_tls, [dnl cat > conftest.s <<\EOF .section ".tdata", "awT", @progbits + .globl foo foo: .long 1 .section ".tbss", "awT", @nobits - .comm bar,4,4 + .globl bar +bar: .skip 4 .text baz: leal bar@TLSLDM(%ebx), %eax leal bar@DTPOFF(%eax), %edx |