Fixed linker scripts on broken crt0.S path

This commit is contained in:
Bahadir Balban
2009-08-29 15:07:12 +03:00
parent 763d4c7012
commit 5892fba52a
5 changed files with 7 additions and 100 deletions

View File

@@ -26,7 +26,7 @@ SECTIONS
{
. = virtual_base;
_start_text = .;
.text : AT (ADDR(.text) - offset) { crt0.o(.text) *(.text) }
.text : AT (ADDR(.text) - offset) { *(.text.head) *(.text) }
/* rodata is needed else your strings will link at physical! */
.rodata : AT (ADDR(.rodata) - offset) { *(.rodata) }
.rodata1 : AT (ADDR(.rodata1) - offset) { *(.rodata1) }