bug-binutils
[Top][All Lists]
Advanced

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

[Bug gold/19278] load segment created outside memory section specified i


From: address@hidden
Subject: [Bug gold/19278] load segment created outside memory section specified in linker script
Date: Tue, 16 Jan 2018 22:31:09 +0000

https://sourceware.org/bugzilla/show_bug.cgi?id=19278

--- Comment #2 from Stefan BrĂ¼ns <address@hidden> ---
found a way to suppress at least the "outside of any MEMORY region"
error/warning:

---
PHDRS { 
  hdr PT_PHDR FILEHDR PHDRS;
  note PT_NOTE;
  text PT_LOAD;
  data PT_LOAD;
}

SECTIONS {
  .text : { ....
  } >rom :text

  ...
  .data : {
  } >ram AT >rom :data
}
---

-- 
You are receiving this mail because:
You are on the CC list for the bug.


reply via email to

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