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
nub31 77a49cb1b2 ...
2025-05-26 20:52:46 +02:00

15 lines
286 B
Bash
Executable File

#!/bin/bash
set -e
mkdir -p out
dotnet publish -c Release src/compiler/Nub.Lang
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