This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch binutils-2_45-branch in repository binutils-gdb.
from 52da327213b Automatic date update in version.in new b0fe5c23780 x86: Add GLIBC_ABI_GNU2_TLS version dependency new 71c1de4b0c8 x86-64: Add GLIBC_ABI_DT_X86_64_PLT version dependency new 4df2be75910 i386: Add GLIBC_ABI_GNU_TLS version dependency
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: bfd/elf-bfd.h | 4 +- bfd/elf-linker-x86.h | 17 +++ bfd/elf32-i386.c | 54 +++++++- bfd/elf64-x86-64.c | 54 ++++++-- bfd/elflink.c | 136 ++++++++++++--------- bfd/elfxx-x86.c | 2 + bfd/elfxx-x86.h | 7 ++ ld/NEWS | 11 ++ ld/config.in | 8 ++ ld/configure | 53 +++++++- ld/configure.ac | 38 ++++++ ld/emulparams/elf32_x86_64.sh | 2 +- ld/emulparams/elf_i386.sh | 2 +- ld/emulparams/elf_i386_fbsd.sh | 1 + ld/emulparams/elf_i386_haiku.sh | 1 + ld/emulparams/elf_x86_64.sh | 2 +- ld/emulparams/elf_x86_64_cloudabi.sh | 1 + ld/emulparams/elf_x86_64_fbsd.sh | 1 + ld/emulparams/elf_x86_64_haiku.sh | 1 + ld/emultempl/elf-i386-glibc.em | 77 ++++++++++++ ld/emultempl/{netbsd.em => elf-x86-64-glibc.em} | 27 ++-- ld/emultempl/{elf-x86.em => elf-x86-64.em} | 56 +-------- ld/emultempl/elf-x86-glibc.em | 70 +++++++++++ ld/emultempl/elf-x86.em | 58 --------- .../{solaris2-x86.em => solaris2-x86-64.em} | 4 +- ld/ld.texi | 28 +++++ ld/ldlex.h | 6 + ld/testsuite/ld-i386/gnu-tls-1.s | 9 ++ .../mark-plt-1b.rd => ld-i386/gnu-tls-1a.rd} | 4 +- ld/testsuite/ld-i386/gnu-tls-1b.rd | 4 + .../{ld-elf/pr28158-2.S => ld-i386/gnu2-tls-1.s} | 11 +- .../dt-relr-glibc-1b.rd => ld-i386/gnu2-tls-1a.rd} | 2 +- ld/testsuite/ld-i386/gnu2-tls-1b.rd | 4 + ld/testsuite/ld-i386/i386.exp | 39 ++++++ .../{ld-elf/pr28158-2.S => ld-x86-64/gnu2-tls-1.s} | 11 +- .../gnu2-tls-1a.rd} | 2 +- ld/testsuite/ld-x86-64/gnu2-tls-1b.rd | 4 + ld/testsuite/ld-x86-64/mark-plt-1a.rd | 2 +- .../mark-plt-2.rd} | 2 +- ld/testsuite/ld-x86-64/mark-plt-2.s | 13 ++ ld/testsuite/ld-x86-64/x86-64.exp | 26 +++- 41 files changed, 636 insertions(+), 218 deletions(-) create mode 100644 ld/emultempl/elf-i386-glibc.em copy ld/emultempl/{netbsd.em => elf-x86-64-glibc.em} (53%) copy ld/emultempl/{elf-x86.em => elf-x86-64.em} (66%) create mode 100644 ld/emultempl/elf-x86-glibc.em copy ld/emultempl/{solaris2-x86.em => solaris2-x86-64.em} (89%) create mode 100644 ld/testsuite/ld-i386/gnu-tls-1.s copy ld/testsuite/{ld-x86-64/mark-plt-1b.rd => ld-i386/gnu-tls-1a.rd} (53%) create mode 100644 ld/testsuite/ld-i386/gnu-tls-1b.rd copy ld/testsuite/{ld-elf/pr28158-2.S => ld-i386/gnu2-tls-1.s} (59%) copy ld/testsuite/{ld-elf/dt-relr-glibc-1b.rd => ld-i386/gnu2-tls-1a.rd} (73%) create mode 100644 ld/testsuite/ld-i386/gnu2-tls-1b.rd copy ld/testsuite/{ld-elf/pr28158-2.S => ld-x86-64/gnu2-tls-1.s} (59%) copy ld/testsuite/{ld-elf/dt-relr-glibc-1b.rd => ld-x86-64/gnu2-tls-1a.rd} (73%) create mode 100644 ld/testsuite/ld-x86-64/gnu2-tls-1b.rd copy ld/testsuite/{ld-elf/dt-relr-glibc-1b.rd => ld-x86-64/mark-plt-2.rd} (68%) create mode 100644 ld/testsuite/ld-x86-64/mark-plt-2.s