Added a gnu make compatible Makefile to armsrc for compiling on Linux

This commit is contained in:
edouard@lafargue.name
2009-04-21 17:24:42 +00:00
parent 1c38843b3f
commit b1d0de0a08
2 changed files with 97 additions and 0 deletions

14
armsrc/ldscript-full Normal file
View File

@@ -0,0 +1,14 @@
SECTIONS
{
. = 0x00002000;
.fpga : { obj/fpgaimg.o(.rodata) }
. = 0x00010000;
.start : { obj/start.o(.text) }
.text : { *(.text) }
.rodata : { *(.rodata) }
. = 0x00200000;
.data : { *(.data) }
__bss_start__ = .;
.bss : { *(.bss) }
__bss_end__ = .;
}