Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 9d2590c0 by Raymond Toy at 2018-08-28T22:00:19Z Get rid of FPU_MODE
This was used to selecte whether we were building for x87 or sse2, but we dropped support for x87 a long while ago. Remove this var.
- - - - -
1 changed file:
- bin/build.sh
Changes:
===================================== bin/build.sh ===================================== @@ -144,12 +144,11 @@ buildit () fi $TOOLDIR/load-world.sh $TARGET "$VERSION" || { echo "Failed: $TOOLDIR/load-world.sh"; exit 1; }
- $TARGET/lisp/lisp -batch -noinit -nositeinit $FPU_MODE < /dev/null || { echo "Failed: $TARGET/lisp/lisp -batch -noinit $FPU_MODE"; exit 1; } + $TARGET/lisp/lisp -batch -noinit -nositeinit < /dev/null || { echo "Failed: $TARGET/lisp/lisp -batch -noinit $FPU_MODE"; exit 1; } return 0; fi }
-FPU_MODE= BUILDWORLD="$TOOLDIR/build-world.sh" BUILD_POT="yes" UPDATE_TRANS=
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/9d2590c07eb51011a23884c27c...