+Thu Oct 26 14:11:26 1995 Ian Lance Taylor <ian@cygnus.com>
+
+ * scripttempl/aix.sc: Move special symbols inside sections.
+ Always start .data at 0.
+
Wed Oct 25 11:52:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
* Makefile.in (diststuff): Also make info.
SECTIONS
{
.pad 0 : { *(.pad) }
- ${RELOCATING+PROVIDE (_text = .);}
.text ${RELOCATING-0} : {
+ ${RELOCATING+PROVIDE (_text = .);}
*(.text)
*(.pr)
*(.ro)
*(.xo)
*(.ti)
*(.tb)
+ ${RELOCATING+PROVIDE (_etext = .);}
}
- ${RELOCATING+PROVIDE (_etext = .);}
- ${RELOCATING+PROVIDE (_data = .);}
- .data ${RELOCATING-0} : {
+ .data 0 : {
+ ${RELOCATING+PROVIDE (_data = .);}
*(.data)
*(.rw)
*(.sv)
*(.tc0)
*(.tc)
*(.td)
+ ${RELOCATING+PROVIDE (_edata = .);}
}
- ${RELOCATING+PROVIDE (_edata = .);}
.bss : {
*(.bss)
*(.bs)
*(.uc)
*(COMMON)
+ ${RELOCATING+PROVIDE (_end = .);}
+ ${RELOCATING+PROVIDE (end = .);}
}
- ${RELOCATING+PROVIDE (_end = .);}
- ${RELOCATING+PROVIDE (end = .);}
.loader 0 : {
*(.loader)
}