onelf 0.2.8

Packer CLI for creating onelf single-binary packages
1
2
3
4
5
6
7
8
9
10
/* Linker script for flat binary output.
   Places .text first, everything contiguous. */
SECTIONS {
    . = 0;
    .text : { *(.text*) }
    .rodata : { *(.rodata*) }
    .data : { *(.data*) }
    .bss : { *(.bss*) }
    /DISCARD/ : { *(.comment) *(.note*) *(.eh_frame*) }
}