mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-26 22:30:58 +00:00
7210cfac2f
* [Audio 6/?] Build Soundfonts and the Soundfont Table * Fix bss * Maybe fix warnings * Improve lots of error messages * Suggested changes from OoT PR * Suggested changes * Make soundfont_table.h generation depend on the samplebank xmls since they are read, report from which soundfont the invalid pointer indirect warning originates from
20 lines
285 B
Plaintext
20 lines
285 B
Plaintext
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/ :
|
|
{
|
|
*(*);
|
|
}
|
|
}
|