blob: 8f9a8c076effdc99e66983101624444f95cdded3 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
exec x86_64-camellia-gcc -fPIE \
-nostdlib -Wl,-pie -Wl,-no-dynamic-linker -T $REPO/src/user/linker.ld \
-I$REPO/src/ -I$REPO/src/shared/include/ -I$REPO/src/user/lib/include/ \
$* \
-L$REPO/out/ -lc -lgcc
|