Compare commits

..

No commits in common. "2742a2c858ff2b7565eb6b79152a4f507581cc89" and "0ac5486b46836b9030d2b551eb5878cccaff34ec" have entirely different histories.

1 changed files with 4 additions and 3 deletions

View File

@ -151,12 +151,12 @@ if [ "${rnrs}" = "r6rs" ]; then
;;
"guile")
scheme_cmd="guile --r6rs -x .sls -L \"${venvpath}/lib/.akku/lib\" -s \"\${IF}\""
scheme_version_cmd="guile --version | head -n 1 | awk '{print(\$4);}'"
scheme_version_cmd="guile --version | head -n 1 | awk '{print($4);}'"
scheme_repl_cmd="guile --r6rs -x .sls -L \"${venvpath}/lib/.akku/lib\""
;;
"ikarus")
scheme_cmd="IKARUS_LIBRARY_PATH=\"${venvpath}/lib/.akku/lib\" ikarus --r6rs-script \"\${IF}\""
scheme_version_cmd="ikarus -v 2>&1 | head -n 1 | awk '{print(\$4);}' | sed 's/,//'"
scheme_version_cmd="ikarus -v 2>&1 | head -n 1 | awk '{print($4);}' | sed 's/,//'"
scheme_repl_cmd="IKARUS_LIBRARY_PATH=\"${venvpath}/lib/.akku/lib\" ikarus"
;;
"ironscheme")
@ -165,7 +165,7 @@ if [ "${rnrs}" = "r6rs" ]; then
;;
"larceny")
scheme_cmd="larceny -nobanner -quiet -utf8 -r6 -I \"${venvpath}/lib/.akku/lib\" \"\${IF}\""
scheme_version_cmd="larceny --version | awk '{print(\$2);}'"
scheme_version_cmd="larceny --version | awk '{print($2);}'"
scheme_repl_cmd="larceny -nobanner -quiet -utf8 -r6 -I \"${venvpath}/lib/.akku/lib\""
;;
"loko")
@ -252,6 +252,7 @@ else
scheme_cmd="guile --r7rs -x .sld -C \"${venvpath}/lib\" -L \"${venvpath}/lib\" -s \"\${IF}\""
scheme_repl_cmd="guile --r7rs -x .sld -C \"${venvpath}/lib\" -L \"${venvpath}/lib\""
scheme_version_cmd="guile --version | head -n 1 | awk '{print(\$4);}'"
scheme_compile_cmd="echo \"Guile compiler not supported\" && exit 1"
;;
"kawa")
kawa_library_path=$(kawa -e "(display (get-environment-variable \"CLASSPATH\"))" | awk -F'kawa.jar' '{print $1}')