Skip to content

Commit

Permalink
add LD_LIBRARY_PATH for getting dependencies (linux)
Browse files Browse the repository at this point in the history
  • Loading branch information
f-kretschmer authored Mar 19, 2024
1 parent 1894afe commit c206543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_utils/ldd_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mkdir dependencies

# write dependencies to temp file
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
ldd *.so | grep -v 'not found' | grep -v ':' > lddout
LD_LIBRARY_PATH=../tmap/ogdf-conda/src ldd *.so | grep -v 'not found' | grep -v ':' > lddout
elif [[ "$OSTYPE" == "msys" ]]; then
ldd *.dll | grep -v 'not found' | grep -v ':' > lddout
elif [[ "$OSTYPE" == "darwin"* ]]; then
Expand Down

0 comments on commit c206543

Please sign in to comment.