16 lines · plain
1SECTIONS {2 .interp : { *(.interp) }3 4 . = ALIGN(CONSTANT(MAXPAGESIZE));5 .fini_array :6 {7 PROVIDE_HIDDEN (__fini_array_start = .);8 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))9 PROVIDE_HIDDEN (__fini_array_end = .);10 }11 12 . = . + 128;13 14 .text : { *(.text) }15}16