diff options
author | Marius Kintel <marius@kintel.net> | 2012-07-05 13:41:15 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-07-05 13:41:15 (GMT) |
commit | 694382bba9d1645547afc3ece9920e48f8767295 (patch) | |
tree | 9fb4c3e7f198a764472b7fa95a2e2600320ff04b /scripts/setenv-linbuild.sh | |
parent | 197a4e4d364fbdd0aca8fb9027476ee1c48652e3 (diff) | |
parent | 329295f17fe1b3d2d6b218c762201214f431b70a (diff) |
Merge branch 'master' into value
Conflicts:
src/parsersettings.cc
Diffstat (limited to 'scripts/setenv-linbuild.sh')
-rw-r--r-- | scripts/setenv-linbuild.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/setenv-linbuild.sh b/scripts/setenv-linbuild.sh new file mode 100644 index 0000000..9719533 --- /dev/null +++ b/scripts/setenv-linbuild.sh @@ -0,0 +1,23 @@ +# setup env variables for building OpenSCAD against custom built +# dependency libraries from linux-build-dependencies.sh + +# run this file with 'source setenv-linbuild.sh' + +# BASEDIR and DEPLOYDIR must be the same as in linux-build-dependencies.sh +BASEDIR=$HOME/openscad_deps +DEPLOYDIR=$BASEDIR + +export PATH=$BASEDIR/bin:$PATH +export LD_LIBRARY_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 +export LD_RUN_PATH=$DEPLOYDIR/lib:$DEPLOYDIR/lib64 +export OPENSCAD_LIBRARIES=$DEPLOYDIR +export GLEWDIR=$DEPLOYDIR + +echo BASEDIR: $BASEDIR +echo DEPLOYDIR: $DEPLOYDIR +echo PATH modified +echo LD_LIBRARY_PATH modified +echo LD_RUN_PATH modified +echo OPENSCAD_LIBRARIES modified +echo GLEWDIR modified + |