From db538d8bcaaf6cbbc0923e8dd025dbfe7fbdd311 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 22 Oct 1998 17:28:38 +0000 Subject: Added missing .rodata and *(.gnu.linkonce.r*) section. --- c/src/lib/libbsp/i386/i386ex/startup/linkcmds | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/c/src/lib/libbsp/i386/i386ex/startup/linkcmds b/c/src/lib/libbsp/i386/i386ex/startup/linkcmds index 983e3993f5..8a944cdeac 100644 --- a/c/src/lib/libbsp/i386/i386ex/startup/linkcmds +++ b/c/src/lib/libbsp/i386/i386ex/startup/linkcmds @@ -113,6 +113,10 @@ SECTIONS *(.dtors) LONG(0) __DTOR_END__ = .; + _rodata_start 5 . ; + *(.rodata) + *(.gnu.linkonce.r*) + _erodata = ALIGN( 0x10 ) ; _etext = ALIGN( 0x10 ); _endtext = . ; } -- cgit v1.2.3