SECTIONS { . = 0; .text : { *(.text) *(.text.*) } .rodata : { *(.rodata) *(.rodata.*) } .data : { *(.data) *(.data.*) } .bss : { PROVIDE(__bss_start = .); *(.bss) *(.bss.*) PROVIDE(__bss_end = .); } /DISCARD/ : { *(.comment) *(.note) *(.eh_frame) *(.eh_frame_hdr) *(.reloc) *(.debug*) } }