diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf64-x86-64.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index eebb219..aef9a44 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2011-01-18 H.J. Lu <hongjiu.lu@intel.com> + + * elf64-x86-64.c (elf_backend_static_tls_alignment): Undefine + after Solaris target. + (elf_backend_want_plt_sym): Redefine to 0 after Solaris target. + 2011-01-18 Pierre Muller <muller@ics.u-strasbg.fr> Fix compilation for mingw64. diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 9a3959a..0e44188 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -4719,6 +4719,12 @@ elf64_l1om_elf_object_p (bfd *abfd) #undef elf_backend_post_process_headers #undef elf_backend_static_tls_alignment +/* Undo Solaris damages. */ +#undef elf_backend_static_tls_alignment + +#undef elf_backend_want_plt_sym +#define elf_backend_want_plt_sym 0 + #include "elf64-target.h" /* FreeBSD L1OM support. */ |