diff options
author | Alan Modra <amodra@gmail.com> | 2013-03-21 04:52:55 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2013-03-21 04:52:55 +0000 |
commit | ebacd51e16144e7e88e8c010b571d94a9d7ea232 (patch) | |
tree | bd709cefa8bf2781135021d92405d3de432a8e71 /gold/layout.cc | |
parent | 117be58fad705e4df95c2e0bb2f3d46aa132eb20 (diff) | |
download | binutils-gdb-ebacd51e16144e7e88e8c010b571d94a9d7ea232.tar.gz |
* layout.cc (Layout::set_segment_offsets): Accept writable .text
segment when omagic.
Diffstat (limited to 'gold/layout.cc')
-rw-r--r-- | gold/layout.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/layout.cc b/gold/layout.cc index 4c48c3c4bb6..8b88deaa43d 100644 --- a/gold/layout.cc +++ b/gold/layout.cc @@ -3353,7 +3353,8 @@ Layout::set_segment_offsets(const Target* target, Output_segment* load_seg, addr = (*p)->paddr(); } else if (parameters->options().user_set_Ttext() - && ((*p)->flags() & elfcpp::PF_W) == 0) + && (parameters->options().omagic() + || ((*p)->flags() & elfcpp::PF_W) == 0)) { are_addresses_set = true; } |