[ARM]
Move the unwind data out of the bss section, it broke bss init which ended up erasing real data and making dprintf do weird things... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32308 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -21,15 +21,15 @@ SECTIONS
|
|||||||
__data_start = .;
|
__data_start = .;
|
||||||
.data : { *(.data .gnu.linkonce.d.*) }
|
.data : { *(.data .gnu.linkonce.d.*) }
|
||||||
|
|
||||||
/* unintialized data (in same segment as writable data) */
|
|
||||||
__bss_start = .;
|
|
||||||
.bss : { *(.bss) }
|
|
||||||
|
|
||||||
/* exception unwinding - should really not be needed! */
|
/* exception unwinding - should really not be needed! */
|
||||||
__exidx_start = .;
|
__exidx_start = .;
|
||||||
.ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
|
.ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
|
||||||
__exidx_end = .;
|
__exidx_end = .;
|
||||||
|
|
||||||
|
/* unintialized data (in same segment as writable data) */
|
||||||
|
__bss_start = .;
|
||||||
|
.bss : { *(.bss) }
|
||||||
|
|
||||||
. = ALIGN(0x1000);
|
. = ALIGN(0x1000);
|
||||||
_end = . ;
|
_end = . ;
|
||||||
/* Stabs debugging sections. */
|
/* Stabs debugging sections. */
|
||||||
|
|||||||
Reference in New Issue
Block a user