mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-01-22 07:32:07 -05:00
11 lines
257 B
Text
11 lines
257 B
Text
|
/**
|
||
|
* Removes the spam of ".ident" strings (around 50 KB), such as:
|
||
|
* "GCC: (Rev3, Built by MSYS2 project) 14.1.0",
|
||
|
* found in every compiled object file (and some static libraries).
|
||
|
*/
|
||
|
SECTIONS
|
||
|
{
|
||
|
/DISCARD/ : { *(.rdata$zzz) }
|
||
|
}
|
||
|
INSERT BEFORE .rdata;
|