mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
Fix bug with previous patch for unresolved TLS symbol.
We need to check that the output is executable before assuming that we can replace the reference with zero. 2015-02-02 Cary Coutant <ccoutant@google.com> gold/ * x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for executable output file.
This commit is contained in:
parent
aa3de2670f
commit
24dd580891
@ -1,3 +1,8 @@
|
||||
2015-02-02 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* x86_64.cc (Target_x86_64::Relocate::relocate_tls): Check for
|
||||
executable output file.
|
||||
|
||||
2015-01-22 Han Shen <shenhan@google.com>
|
||||
|
||||
* arm.cc (Target_arm::Target_arm): Add initialization for new members.
|
||||
|
@ -3784,7 +3784,9 @@ Target_x86_64<size>::Relocate::relocate_tls(
|
||||
break;
|
||||
|
||||
case elfcpp::R_X86_64_GOTTPOFF: // Initial-exec
|
||||
if (gsym != NULL && gsym->is_undefined())
|
||||
if (gsym != NULL
|
||||
&& gsym->is_undefined()
|
||||
&& parameters->options().output_is_executable())
|
||||
{
|
||||
Target_x86_64<size>::Relocate::tls_ie_to_le(relinfo, relnum,
|
||||
NULL, rela,
|
||||
|
Loading…
Reference in New Issue
Block a user