7 lines
No EOL
170 B
Bash
7 lines
No EOL
170 B
Bash
set -e
|
|
|
|
nasm -f elf64 ./src/assembly/syscalls.asm -o ./build/syscalls.o
|
|
|
|
gcc -nostdlib -static ./build/syscalls.o ./src/main.c -o ./build/main
|
|
|
|
echo "Built: ./build/main" |