[GSoC] [ARM] Patch by Johannes Wischert.

This seems to work around the dynamic segment having a huge file size in headers, it must also be in the data segment...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32404 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2009-08-15 01:15:18 +00:00
parent 72dace9557
commit 639b8a4905

View File

@ -65,6 +65,9 @@ SECTIONS
__exidx_end = .;
.dynamic : { *(.dynamic) } :dynamic :data
/* writable data */
__data_start_rom = .; /* in one segment binaries, the rom data address is on top of the ram data address */
__data_start = .;
@ -77,7 +80,6 @@ SECTIONS
.dtors : { *(.dtors) }
__dtor_end = .;
.got : { *(.got.plt) *(.got) }
.dynamic : { *(.dynamic) }
__data_end = .;