You've already forked sm64coopdx
mirror of
https://github.com/izzy2lost/sm64coopdx.git
synced 2026-03-26 16:56:02 -07:00
0627d6ab48
* Reduce the size of Windows builds by cleaning the debug info * Update IS_DEV_OR_DEBUG in Makefile
11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
/**
|
|
* 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;
|