From e06af40803db2200f11eab81f4ec45122f1bc38a Mon Sep 17 00:00:00 2001 From: Baitinq Date: Mon, 14 Jul 2025 23:33:50 +0200 Subject: Misc: Add boostrap script --- bootstrap.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bootstrap.sh diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..6bcfacd --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +zig build run -- src/bootstrap/main.pry && cc $(llvm-config --libs) output.o -o stage1 && ./stage1 src/bootstrap/main.pry && cc $(llvm-config --libs) bootstrap_output.o -o stage2 && ./stage2 src/bootstrap/main.pry && cc $(llvm-config --libs) bootstrap_output.o -o stage3 -- cgit 1.4.1