New Essence OS layer; cross-compiling improvements

This commit is contained in:
nakst
2019-09-02 16:46:50 +01:00
parent 6d614ef07c
commit 22e982c8fb
6 changed files with 1414 additions and 244 deletions
-24
View File
@@ -1,24 +0,0 @@
ENTRY(_start)
SECTIONS
{
. = 0x100000;
.text BLOCK(4K) : ALIGN(4K)
{
*(.text)
}
.rodata BLOCK(4K) : ALIGN(4K)
{
*(.rodata)
}
.data BLOCK(4K) : ALIGN(4K)
{
*(.data)
}
.bss BLOCK(4K) : ALIGN(4K)
{
*(COMMON)
*(.bss)
}
}