mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
20 lines
285 B
Text
20 lines
285 B
Text
|
OUTPUT_ARCH (mips)
|
||
|
|
||
|
/* Soundfont Linker Script, maps data into rodata and adds a file length symbol */
|
||
|
|
||
|
SECTIONS {
|
||
|
|
||
|
.rodata :
|
||
|
{
|
||
|
*(.data*)
|
||
|
*(.rodata*)
|
||
|
. = ALIGN(16);
|
||
|
__LEN__ = . - ADDR(.rodata);
|
||
|
}
|
||
|
|
||
|
/DISCARD/ :
|
||
|
{
|
||
|
*(*);
|
||
|
}
|
||
|
}
|