This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/runtimes/c/elf.ld
2020-09-19 14:53:29 -04:00

22 lines
No EOL
450 B
Text

OUTPUT_FORMAT(elf32-i386)
OUTPUT_ARCH(i386)
ENTRY(__pcrt_entry)
MEMORY {
kernel (!a) : ORIGIN = 0x00000000, LENGTH = 0x08000000
user (awx) : ORIGIN = 0x08000000, LENGTH = 0xf8000000
}
SECTIONS {
.__pcrt_before_main : {
__pcrt_before_main_start = .;
*(.__pcrt_before_main)
__pcrt_before_main_end = .;
}
.__pcrt_before_quit : {
__pcrt_before_quit_start = .;
*(.__pcrt_before_quit)
__pcrt_before_quit_end = .;
}
}