Run Scheme in batch mode in the scripts in src/etc/.
authorTaylor R Campbell <campbell@mumble.net>
Sat, 16 Apr 2011 00:40:37 +0000 (00:40 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Sat, 16 Apr 2011 00:40:37 +0000 (00:40 +0000)
src/etc/build-boot-compiler.sh
src/etc/compile-svm.sh
src/etc/make-native.sh

index 298b3854826448b03eec910c752b2e8bc7e80f98..6791ca744e1be4a0a27ee0a3b0ff5b67e1c6e894 100755 (executable)
@@ -29,7 +29,7 @@ set -e
 FASL=`get_fasl_file`
 
 run_cmd_in_dir runtime ../microcode/scheme --library ../lib \
-    --fasl "${FASL}" --heap 6000 <<EOF
+    --fasl "${FASL}" --heap 6000 --batch-mode <<EOF
 (begin
   (load-option (quote compiler))
   (load-option (quote cref))
index a3e49536dbea7be8af88093f62df319479855d3f..d2ed1cc952bf2586a101f7c6d1401d8ecda5c069 100755 (executable)
@@ -112,7 +112,7 @@ EOF
 
 # Finish the cross-compilation with the new machine.
 run_cmd_in_dir runtime \
-    ../microcode/scheme --library ../lib --fasl make.bin <<EOF
+    ../microcode/scheme --library ../lib --fasl make.bin --batch-mode <<EOF
 (begin
   (load "../compiler/base/crsend")
   (finish-cross-compilation:directory ".."))
index 401cc2460cb9409339338124e5f6fcaada824071..8a169c7cd7da065a0a5e38075440c83bf94fcad2 100755 (executable)
@@ -105,7 +105,7 @@ run_cmd etc/native-prepare.sh "${MIT_SCHEME_EXE}"
 run_make compile-microcode
 
 run_cmd_in_dir runtime ../microcode/scheme --library ../lib \
-    --fasl make.bin --heap 6000 <<EOF
+    --fasl make.bin --heap 6000 --batch-mode <<EOF
 (begin
   (load "../compiler/base/crsend")
   (finish-cross-compilation:directory ".."))