summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-22 17:28:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-22 17:28:38 +0000
commitdb538d8bcaaf6cbbc0923e8dd025dbfe7fbdd311 (patch)
treee1b55212ad5f5a55b1a0bc2d5a3f679f6efe9dd8
parentPatch from Ian Lance Taylor <ian@airs.com>: (diff)
downloadrtems-db538d8bcaaf6cbbc0923e8dd025dbfe7fbdd311.tar.bz2
Added missing .rodata and *(.gnu.linkonce.r*) section.
-rw-r--r--c/src/lib/libbsp/i386/i386ex/startup/linkcmds4
1 files changed, 4 insertions, 0 deletions
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 = . ;
}