mk-standalone

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

fcc (230B)


      1 #!/bin/sh
      2 
      3 INC=$(/usr/bin/cc -print-file-name=include)
      4 
      5 exec /usr/bin/cc -c \
      6   -fstack-protector-all \
      7   -mstack-protector-guard=global \
      8   -nostdlib \
      9   -nostdinc \
     10   -ffreestanding \
     11   -fno-builtin \
     12   -isystem "$INC" \
     13   "$@"