oops, accidently committed the Hydra setpath.sh script

metadata
Wenzel Jakob 2011-11-19 23:11:37 -05:00
parent 93214e4cc2
commit 642892c7e3
1 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,9 @@
#!/bin/bash #!/bin/bash
export PATH=`pwd`/dist:/hydra/S1/local/bin:/hydra/S1/local/python271/bin:$PATH unamestr=`uname`
export LD_LIBRARY_PATH=`pwd`/dist:/hydra/S1/local/gcc461/lib64:`pwd`/dist:/hydra/S1/local/gcc461/lib:/hydra/S1/local/python271/lib/:/hydra/S1/local/mitsuba/lib/:/hydra/S1/local/mitsuba/lib64/:$LD_LIBRARY_PATH if [[ "$unamestr" == 'Darwin' ]]; then
export PATH=`pwd`/Mitsuba.app/Contents/MacOS:$PATH
else
export LD_LIBRARY_PATH=`pwd`/dist
export PATH=`pwd`/dist:$PATH
ulimit -c 1000000000
fi