Temporary (?) solution to linking the loader: generate symbols needed by the unwinding code, which should actually not be used since we disable exceptions...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32239 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2009-08-11 03:21:29 +00:00
parent bad4d0ccdc
commit e3db8e35e3
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ SECTIONS
__bss_start = .;
.bss : { *(.bss) }
/* exception unwinding - should really not be needed! */
__exidx_start = .;
.ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
__exidx_end = .;
. = ALIGN(0x1000);
_end = . ;
/* Stabs debugging sections. */