From 85c925744739fec5a06aef65b5302d41337452d4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 9 May 2002 21:37:30 +0000 Subject: 2001-05-09 Joel Sherrill * startup/linkcmds: In support of gcc 3.1, added one of more of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections and direction of segments to memory regions may also have been addressed. This was a sweep across all BSPs. --- c/src/lib/libbsp/m68k/mvme167/ChangeLog | 8 ++++++++ c/src/lib/libbsp/m68k/mvme167/startup/linkcmds | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'c/src/lib/libbsp/m68k/mvme167') diff --git a/c/src/lib/libbsp/m68k/mvme167/ChangeLog b/c/src/lib/libbsp/m68k/mvme167/ChangeLog index f3070d596e..99256e6517 100644 --- a/c/src/lib/libbsp/m68k/mvme167/ChangeLog +++ b/c/src/lib/libbsp/m68k/mvme167/ChangeLog @@ -1,3 +1,11 @@ +2001-05-09 Joel Sherrill + + * startup/linkcmds: In support of gcc 3.1, added one of more + of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*, + .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*. Spacing corrections + and direction of segments to memory regions may also have been + addressed. This was a sweep across all BSPs. + 2002-05-01 Eric Norum * console/console.c, fatal/bspfatal.c, startup/bspclean.c, diff --git a/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds b/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds index fc1733c069..0ff2af973b 100644 --- a/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds +++ b/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds @@ -109,8 +109,8 @@ SECTIONS * Read-only data */ . = ALIGN (16); - PROVIDE(_rodata_start = . ); - *(.rodata) + _rodata_start = .; + *(.rodata*) *(.gnu.linkonce.r*) PROVIDE(_erodata = . ); @@ -123,6 +123,7 @@ SECTIONS *(.data) *(.gnu.linkonce.d*) *(.gcc_except_table) + *(.jcr) . = ALIGN (16); PROVIDE (_edata = .); PROVIDE (_copy_end = .); -- cgit v1.2.3