bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug ld/10749] Linker failed to build working ia64 kernel


From: hjl dot tools at gmail dot com
Subject: [Bug ld/10749] Linker failed to build working ia64 kernel
Date: 11 Oct 2009 02:03:39 -0000

------- Additional Comments From hjl dot tools at gmail dot com  2009-10-11 
02:03 -------
(In reply to comment #17)
> Exactly.  The reason is that .text is made a unique section, so doesn't match
> the .text in the script.  See unique_section_p, in particular the one in
> output_section_callback.  So .text is treated as an orphan, and orphans have
> their vma set to zero.

Linker script has

---
SECTIONS
{
  . = 0x800000;
  .text : { *(.text) }
  . = 0x900000;
  .data : { *(.data) }
  /DISCARD/ : { *(.*) }
}
---

Shouldn't the orphaned sections be discarded?


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10749

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]