Newer
Older
Atmosphere / libraries / libstratosphere / discard-ehframe.ld
@Michael Scire Michael Scire on 13 Jan 2021 161 bytes stratosphere: discard unnecessary .eh_frame segment
SECTIONS
{
	/* Discard .eh_frame section */
	/DISCARD/ : { *(.group .comment .note .interp)
        EXCLUDE_FILE(*crtbegin.o) *(.eh_frame_hdr .eh_frame)
    }
}