X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=3fe25119075f682d7dbe730c21716739ebb27d6a;hb=a18f0a95bc9a457e4d2d00c702b746f29c2662b1;hp=426075e6f13f5e9f062877f55df374e671c8cb06;hpb=8fc5fda05f92d69c95b47e4ad7561d91dab18c3e;p=sbcl.git diff --git a/make.sh b/make.sh index 426075e..3fe2511 100755 --- a/make.sh +++ b/make.sh @@ -4,7 +4,7 @@ # for getting an executable from it. We want any two reconstructions # starting from the same source to end up in the same result. That's # just a basic intellectual premise." -# -- Christian Quinnec, in _Lisp In Small Pieces_, p. 313 +# -- Christian Queinnec, in _Lisp In Small Pieces_, p. 313 # This software is part of the SBCL system. See the README file for # more information. @@ -18,13 +18,18 @@ # The value of SBCL_XC_HOST should be a command to invoke the # cross-compilation Lisp system in such a way that it reads commands # from standard input, and terminates when it reaches end of file on -# standard input. Suitable values are: +# standard input. Some suitable values are: # "sbcl" to use an existing SBCL binary as a cross-compilation host # "sbcl --sysinit /dev/null --userinit /dev/null" # to use an existing SBCL binary as a cross-compilation host # even though you have stuff in your initialization files # which makes it behave in such a non-standard way that # it keeps the build from working +# "sbcl --noprogrammer" +# to use an existing SBCL binary as a cross-compilation host +# and tell it to handle errors as best it can by itself, +# without trying to use *DEBUG-IO* to ask for help from +# the programmer # "lisp -batch" to use an existing CMU CL binary as a cross-compilation host # "lisp -noinit -batch" # to use an existing CMU CL binary as a cross-compilation host @@ -41,7 +46,7 @@ # require a second pass, just testing at build-the-cross-compiler time # whether the cross-compilation host returns suitable values from # UPGRADED-ARRAY-ELEMENT-TYPE?) -export SBCL_XC_HOST="${1:-sbcl}" +export SBCL_XC_HOST="${1:-sbcl --noprogrammer}" echo //SBCL_XC_HOST=\"$SBCL_XC_HOST\" # If you're cross-compiling, you should probably just walk through the