mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-18 07:05:15 -04:00
8cc9fc069c
* Create chraicommands.c * Move include to src/include * Use .o files next to each .c file
23 lines
348 B
Plaintext
23 lines
348 B
Plaintext
/*OUTPUT_FORMAT ("elf32-bigmips")*/
|
|
OUTPUT_ARCH (mips)
|
|
|
|
SECTIONS
|
|
{
|
|
.text 0x70200000 : AT(0x0000) {
|
|
src/rarezip/rarezip.o (.text);
|
|
src/rarezip/rarezip.o (.data);
|
|
}
|
|
|
|
/DISCARD/ : {
|
|
* (.MIPS.abiflags);
|
|
* (.options);
|
|
* (.gnu.attributes);
|
|
* (.pdr);
|
|
* (.mdebug);
|
|
* (.gptab.bss);
|
|
* (.gptab.data);
|
|
* (.reginfo);
|
|
}
|
|
}
|
|
|