(Arne Babenhauserheide)
2014-01-22: add precompilation of the wisp language spec to bootstrap. add precompilation of the wisp language spec to bootstrap.
diff --git a/bootstrap.sh b/bootstrap.sh --- a/bootstrap.sh +++ b/bootstrap.sh @@ -14,7 +14,10 @@ if [[ ! x"${diff}" == x"success" ]]; the fi echo "successfully bootstrapped wisp.scm" echo preparing the reader: wisp at the REPL +echo parsing the spec file... mkdir -p language/wisp guile wisp.scm ${srcdir}/wisp-reader.w 2>/dev/null > language/wisp/spec.scm \ + && ...precompiling the spec file... + && guile -L . -s language/wisp/spec.scm \ && echo ...succeeded \ - && echo 'to use wisp at the REPL, run `guile -L` . and then in guile `,L wisp`' + && echo 'to use wisp at the REPL, run `guile -L . --language=wisp'