wip swift in kernel
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
ENTRY(_start)
|
||||
|
||||
SECTIONS {
|
||||
. = 0;
|
||||
|
||||
.text : {
|
||||
*(.text.boot)
|
||||
*(.text*)
|
||||
}
|
||||
|
||||
.rodata : { *(.rodata*) }
|
||||
.data : { *(.data*) }
|
||||
.bss : { *(.bss*) *(COMMON) }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user