1.0.20.20: fix gencgc on 32 bit platforms with 2gb< heap
[sbcl/pkhuong.git] / sbcl-pwd.sh
bloba835689758ec6c99058ef53680a4cdcfbeac8955
1 #!/bin/false
2 # Not a shell script, but something intended to be sourced from shell scripts
4 # This ensures that SBCL_PWD is a path understandable to SBCL.
6 sbcl_pwd() {
7 if [ "$OSTYPE" = "cygwin" ] ; then
8 SBCL_PWD="`cygpath -m \"$(pwd)\"`"
9 else
10 SBCL_PWD="`pwd`"
12 export SBCL_PWD