blob: 885b512e2702fff4cbb1bfdad00a4d66b151426e (
plain)
1
2
3
4
5
6
|
#!/bin/sh
exec x86_64-elf-gcc -ffreestanding -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
|