This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/build.sh
nub31 955869a3cf ...
2025-05-26 19:16:56 +02:00

17 lines
305 B
Bash
Executable File

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