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/example/compile.sh
nub31 dd6a491ccb ...
2025-06-27 15:55:32 +02:00

9 lines
167 B
Bash
Executable File

#!/bin/bash
object_files=$(dotnet run --project ../src/compiler/CLI/CLI.csproj src/main.nub src/c.nub)
echo $object_files
mkdir -p bin
gcc -o bin/out $object_files