mk-standalone

standalone mk from 9base
git clone git://git.evenfri.duckdns.org/mk-standalone.git
Log | Files | Refs | README

fld (124B)


      1 #!/bin/sh
      2 
      3 libc="$LIBC/libc.a"
      4 
      5 exec /usr/bin/ld -m elf_x86_64 \
      6   -nostdlib \
      7   -static \
      8   -e _start \
      9   "$@" \
     10   "$libc"