aboutsummaryrefslogtreecommitdiff
path: root/gold/script-sections.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2011-06-09 19:25:02 +0000
committerIan Lance Taylor <ian@airs.com>2011-06-09 19:25:02 +0000
commita94907d981327b5b17f0be51b6e0934b1add7bad (patch)
treef3764169cd4ce9bdcfc018f50a558454ade80b39 /gold/script-sections.cc
parent4fb3a1c35a8a796104f36e61ea465e94f27e2db8 (diff)
downloadfsf-binutils-gdb-a94907d981327b5b17f0be51b6e0934b1add7bad.zip
fsf-binutils-gdb-a94907d981327b5b17f0be51b6e0934b1add7bad.tar.gz
fsf-binutils-gdb-a94907d981327b5b17f0be51b6e0934b1add7bad.tar.bz2
* script-sections.cc
(Orphan_output_section::set_section_addresses): For a relocatable link set address to 0.
Diffstat (limited to 'gold/script-sections.cc')
-rw-r--r--gold/script-sections.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/gold/script-sections.cc b/gold/script-sections.cc
index 10af8e1..3bcc9e6 100644
--- a/gold/script-sections.cc
+++ b/gold/script-sections.cc
@@ -2846,6 +2846,17 @@ Orphan_output_section::set_section_addresses(Symbol_table*, Layout*,
uint64_t address = *dot_value;
address = align_address(address, this->os_->addralign());
+ // For a relocatable link, all orphan sections are put at
+ // address 0. In general we expect all sections to be at
+ // address 0 for a relocatable link, but we permit the linker
+ // script to override that for specific output sections.
+ if (parameters->options().relocatable())
+ {
+ address = 0;
+ *load_address = 0;
+ have_load_address = false;
+ }
+
if ((this->os_->flags() & elfcpp::SHF_ALLOC) != 0)
{
this->os_->set_address(address);