Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d1278fa1 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

add directories of custom install in LD_LIBRARY_PATH for running tests

parent 4bc44075
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,20 @@ ...@@ -5,11 +5,20 @@
# these paths may depend on the runner used, please be careful and add # these paths may depend on the runner used, please be careful and add
# the necessary if blocks depending on the machine # the necessary if blocks depending on the machine
# too noisy
export STARPU_SILENT=1 export STARPU_SILENT=1
# if simgrid change the default starpu dir to use
if [ "$1" == "simu" ]; then if [ "$1" == "simu" ]; then
export STARPU_DIR=/builds/install/starpu-simgrid export STARPU_DIR=$STARPUSIMGRID_DIR
fi fi
# for build: better to rely on pkg-config than to guess libraries with the env. var.
export PKG_CONFIG_PATH=$PARSEC_DIR/lib/pkgconfig:$PKG_CONFIG_PATH export PKG_CONFIG_PATH=$PARSEC_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=$STARPU_DIR/lib/pkgconfig:$PKG_CONFIG_PATH export PKG_CONFIG_PATH=$STARPU_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
# for ctest: we need this at runtime
export LD_LIBRARY_PATH=$PARSEC_DIR/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$QUARK_DIR/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$STARPU_DIR/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$SIMGRID_DIR/lib:$LD_LIBRARY_PATH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment