From f74578a2050ad2bcad608597ec53fc36c081586f Mon Sep 17 00:00:00 2001 From: Till Straumann Date: Mon, 4 Sep 2006 23:24:08 +0000 Subject: * startup/linkcmds: added *(.text.*) *(.data.*) *(.bss.*) --- c/src/lib/libbsp/i386/pc386/startup/linkcmds | 3 +++ 1 file changed, 3 insertions(+) (limited to 'c/src/lib/libbsp/i386/pc386/startup/linkcmds') diff --git a/c/src/lib/libbsp/i386/pc386/startup/linkcmds b/c/src/lib/libbsp/i386/pc386/startup/linkcmds index 46e5dc54cc..af70d53c27 100644 --- a/c/src/lib/libbsp/i386/pc386/startup/linkcmds +++ b/c/src/lib/libbsp/i386/pc386/startup/linkcmds @@ -46,6 +46,7 @@ SECTIONS . = ALIGN(4); *(.m_hdr) *(.text) + *(.text.*) . = ALIGN (16); /* @@ -92,6 +93,7 @@ SECTIONS { _data_start = . ; *(.data) + *(.data.*) *(.gnu.linkonce.d*) *(.gcc_except_table) _edata = ALIGN( 0x10 ) ; @@ -101,6 +103,7 @@ SECTIONS { _bss_start = . ; *(.bss) + *(.bss.*) *(COMMON) _end = . ; __end = . ; -- cgit v1.2.3