This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/build.sh
2025-05-22 19:45:02 +02:00

22 lines
339 B
Bash
Executable File

#!/bin/bash
set -e
mkdir -p out
echo "setup..."
dotnet publish -c Release src/compiler/Nub.Lang
echo "compiling..."
nub example out/out.qbe
nasm -g -felf64 src/runtime/runtime.asm -o out/runtime.o
qbe out/out.qbe > out/out.s
gcc -c -g out/out.s -o out/out.o
gcc -nostartfiles -o out/program out/runtime.o out/out.o
echo "done..."