Browse Source
The idea is to avoid depending to n locations for n dependencies. Install everything into a $PREFIX, and depend to $PREFIX only. simple.pull/23/head

5 changed files with 16 additions and 39 deletions
@ -1,10 +1,10 @@ |
|||
#!/usr/bin/env bash |
|||
|
|||
ENGINE_LIB_PATH=$HOME/local-default/lib |
|||
PREFIX=$HOME/local |
|||
|
|||
export HOME=../resources/per-user-dirs/alice |
|||
export LD_LIBRARY_PATH=$ENGINE_LIB_PATH |
|||
export DYLD_LIBRARY_PATH=$ENGINE_LIB_PATH |
|||
export LD_LIBRARY_PATH=$PREFIX/lib |
|||
export DYLD_LIBRARY_PATH=$PREFIX/lib |
|||
|
|||
cd ../../../../../ |
|||
java -enableassertions -Xcheck:jni -cp .:../../src -Djava.library.path=.:../../src foundation.pEp.jniadapter.test.speedtest.SpeedTest $@ |
|||
|
Loading…
Reference in new issue