Commit d09699dd by Richard Kenner

Allocate address areas for the "stab" and "stabstr" sections.

From-SVN: r10995
parent 7609251b
...@@ -28,7 +28,10 @@ SECTIONS ...@@ -28,7 +28,10 @@ SECTIONS
vfork = fork; /* I got tired of editing peoples sloppy code */ vfork = fork; /* I got tired of editing peoples sloppy code */
*(.fini) *(.fini)
} }
GROUP BIND( NEXT(0x400000) + (ADDR(.text) + (SIZEOF(.text)) % 0x1000)): .stab BIND(ADDR(.text) + SIZEOF(.text)): { }
.stabstr BIND(ADDR(.stab) + SIZEOF(.stab)): { }
GROUP BIND( NEXT(0x400000) +
(ADDR(.stabstr) + (SIZEOF(.stabstr)) % 0x1000)):
{ {
.data : { .data : {
__CTOR_LIST__ = . ; __CTOR_LIST__ = . ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment