mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
98d9571f51
* [Audio 5/?] Build the Samplebank Table * OoT suggested changes * Fix format specifier * Moved linker_scripts files used in final linker to linker_scripts/final * Populate OTHER_DIRS with linker_scripts subdirs * Unhide the partial link command
18 lines
197 B
Plaintext
18 lines
197 B
Plaintext
OUTPUT_ARCH (mips)
|
|
|
|
/* Audio Table Linker Script, maps data into rodata */
|
|
|
|
SECTIONS {
|
|
|
|
.rodata :
|
|
{
|
|
*(.data*)
|
|
*(.rodata*)
|
|
}
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(*);
|
|
}
|
|
}
|