X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=756d17396b02b71bd6934994fbb94735befb6444;hb=8dc064d2296902f01afd9107e89a81146e3771fe;hp=4d338db3154717a8d4cb5e548db216dcacaeda8d;hpb=ce02ab2ecd9c6ae2e570abd8c93ebf3be55bbdad;p=sbcl.git diff --git a/make.sh b/make.sh index 4d338db..756d173 100755 --- a/make.sh +++ b/make.sh @@ -2,7 +2,6 @@ # "When we build software, it's a good idea to have a reliable method # 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 Queinnec, in _Lisp In Small Pieces_, p. 313 @@ -19,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 @@ -42,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 @@ -75,3 +79,4 @@ sh make-host-1.sh || exit 1 sh make-target-1.sh || exit 1 sh make-host-2.sh || exit 1 sh make-target-2.sh || exit 1 +date