raw-c/build.sh

8 lines
No EOL
190 B
Bash

#!/usr/bin/env 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"