Merge pull request #430 from nakst/master

New Essence OS layer; cross-compiling improvements
This commit is contained in:
gingerBill
2019-09-09 14:39:35 +01:00
committed by GitHub
6 changed files with 1414 additions and 244 deletions
+1334 -164
View File
File diff suppressed because it is too large Load Diff
-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)
}
}
+2
View File
@@ -0,0 +1,2 @@
package time
IS_SUPPORTED :: false;