mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
MEMORY
|
|
{
|
|
ram : ORIGIN = 0x80000000, LENGTH = 128K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.start*) ; *(.text*) } > ram
|
|
.bss : { *(.bss*) } > ram
|
|
.data : { *(.data*) ; *(.rodata*) } > ram
|
|
/DISCARD/ : { *(.swift_modhash*) }
|
|
}
|