Add .rodata.str1.1 to the text segment, and discard the .comment section.

This commit is contained in:
he 2003-10-30 22:21:56 +00:00
parent a2498bfff8
commit da61544d69

View File

@ -14,6 +14,7 @@ SECTIONS
CREATE_OBJECT_SYMBOLS
*(.text)
*(.rodata)
*(.rodata.str1.1)
/* The next six sections are for SunOS dynamic linking. The order
is important. */
*(.dynrel)
@ -46,5 +47,5 @@ SECTIONS
end = ALIGN(4) ;
_end = ALIGN(4) ;
}
/DISCARD/ : { *(.ident) *(.stab) *(.stabstr) }
/DISCARD/ : { *(.ident) *(.stab) *(.stabstr) *(.comment) }
}