summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornrootconauto <nrootconauto@gmail.com>2022-02-28 13:07:53 -0500
committernrootconauto <nrootconauto@gmail.com>2022-02-28 13:07:53 -0500
commitcfe9d3bb9c5b61211016792b0a6d186df5cf6870 (patch)
tree4c81e8fd5d8be4140331e0872bce3df8f82b2df4
parentfbd8a0d1795a3c3993bb97d960ed638737d92607 (diff)
Updated builder.tcsh to use the "-c" flag to compile the runtime.v0.0.99
-rwxr-xr-xbuilder.tcsh6
-rwxr-xr-xfilelist.tcsh1
2 files changed, 3 insertions, 4 deletions
diff --git a/builder.tcsh b/builder.tcsh
index dc918d1..8b6a1eb 100755
--- a/builder.tcsh
+++ b/builder.tcsh
@@ -55,11 +55,11 @@ end
./proot -R chroot/ apk add gcc sdl2-dev tcsh yasm musl-dev
./proot -r chroot/ -w /3Days tcsh "make.tcsh"
-./proot -r chroot -w /3Days ./3d_loader --noruntime MAKE_HCRT.HC
-cp chroot/3Days/REPL.VBIN ./HCRT/HCRT.BIN
+./proot -r chroot -w /3Days ./3d_loader --noruntime -c REPL.VBIN2 --binheader HCRT/HCRT.HH FULL_RUNTIME.HC
+cp chroot/3Days/REPL.VBIN2 ./HCRT/HCRT.BIN
source make.tcsh
echo "Recompiling HCRT/HCRT.BIN for non-chroot's SDL2"
-./3d_loader --noruntime FULL_RUNTIME.HC
+./3d_loader --noruntime -c HCRT/HCRT.BIN --binheader HCRT/HCRT.HH FULL_RUNTIME.HC
echo "Congradulations,you compiled a runtime and loader."
diff --git a/filelist.tcsh b/filelist.tcsh
index 892cf12..1aab19e 100755
--- a/filelist.tcsh
+++ b/filelist.tcsh
@@ -38,7 +38,6 @@ set HolyCFiles = ( \
"./HCRT/HCRT.HC" \
"./HCRT/LEXER.HC" \
"./HCRT/PRINT.HC" \
- "./MAKE_HCRT.HC" \
"./VECTOR.HC" \
"./HolyEd/EDITOR.HC" \
"./HolyEd/ROPE.HC" \