shithub: sl

Download patch

ref: 7459444667124c01b706234db28baeb05bdc4135
parent: e963f1d6d81f1adb050e99b6fd7f92387765f4a4
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sat Mar 25 20:49:23 EDT 2023

bootstrap: rebuild before making a stage 1 boot file

--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -5,11 +5,13 @@
 
 echo "Creating stage 0 boot file..."
 ./flisp gen.lsp
-./flisp mkboot0.lsp instructions.lsp builtins.lsp system.lsp compiler.lsp > flisp.boot.new
-mv flisp.boot.new flisp.boot
+./flisp mkboot0.lsp instructions.lsp builtins.lsp system.lsp compiler.lsp > flisp.boot
 
 echo "Creating stage 1 boot file..."
+make clean
+make -j8
 ./flisp mkboot1.lsp
+make -j8
 
 echo "Testing..."
 make test