Added a gnu make compatible Makefile to armsrc for compiling on Linux
This commit is contained in:
14
armsrc/ldscript-full
Normal file
14
armsrc/ldscript-full
Normal 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__ = .;
|
||||
}
|
||||
Reference in New Issue
Block a user