diff options
| author | nakst <nakst@protonmail.com> | 2019-09-02 16:46:50 +0100 |
|---|---|---|
| committer | nakst <nakst@protonmail.com> | 2019-09-02 16:46:50 +0100 |
| commit | 22e982c8fbec797f2fb48a7df5ab28efc0ee16c9 (patch) | |
| tree | 2b790f3411ff65ba4b95a6acff78172139e773e8 /core/sys | |
| parent | 6d614ef07caf89939b1757bd225ebd0b8c88fa78 (diff) | |
New Essence OS layer; cross-compiling improvements
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/essence_linker_userland64.ld | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/core/sys/essence_linker_userland64.ld b/core/sys/essence_linker_userland64.ld deleted file mode 100644 index 5f6d92791..000000000 --- a/core/sys/essence_linker_userland64.ld +++ /dev/null @@ -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) - } -} |