diff --git a/tools/asdf-tools b/tools/asdf-tools index 5ca7ff46faa1f25ed600c24f81af877a0bc21a36..76b2a4ca0db76a1aee29f06c88841ffcb96980e7 100755 --- a/tools/asdf-tools +++ b/tools/asdf-tools @@ -1,9 +1,9 @@ -":" ; exec ${CCL:-ccl} --load "$0" -- "$@" ; exit # -*- Lisp -*- +":" ; exec ${CCL:-ccl} --no-init --load "$0" -- "$@" ; exit # -*- Lisp -*- #| asdf-tools could also run on SBCL, or on any decent Common Lisp implementation, including using cl-launch, but CCL is the single implementation that has decent portable support on all of Windows, Linux (x64, x86, ARM), MacOS X -":" ; exec ${SBCL:-sbcl} --script "$0" "$@" ; exit +":" ; exec ${SBCL:-sbcl} --no-userinit --no-sysinit --script "$0" "$@" ; exit ":" ; cl-launch -l ccl -Q -sp asdf-tools -r entry-point -- "$@" |# diff --git a/tools/asdf-tools.bat b/tools/asdf-tools.bat index 83b9d495d453c4aea44c6f67db65703eba0115be..59b2ef1745d4c822cda3dc9def4f1fa52013eae5 100644 --- a/tools/asdf-tools.bat +++ b/tools/asdf-tools.bat @@ -1,3 +1,3 @@ @echo off if "%CCL%" == "" set CCL=ccl -%CCL% --load %~dp0\asdf-tools -- %* +%CCL% --no-init --load %~dp0\asdf-tools -- %*