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 "$@"