Skip to content

Commit

Permalink
set LIBRARY_PATH for cibuildwheel [wheel build]
Browse files Browse the repository at this point in the history
  • Loading branch information
shanedsnyder committed Apr 26, 2024
1 parent adaad2f commit ae062e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions darshan-util/pydarshan/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ before-all = [
"git submodule update --init",
"./prepare.sh",
"./configure --prefix=$PWD/darshan_install --disable-darshan-runtime --enable-apxc-mod --enable-apmpi-mod",
"make install"
"make install",
"export LD_LIBRARY_PATH=$PWD/darshan_install/lib"
]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"

Expand All @@ -104,7 +105,8 @@ before-all = [
"git submodule update --init",
"./prepare.sh",
"./configure --prefix=$PWD/darshan_install --disable-darshan-runtime --enable-apxc-mod --enable-apmpi-mod",
"make install"
"make install",
"export DYLD_FALLBACK_LIBRARY_PATH=$PWD/darshan_install/lib"
]
repair-wheel-command = [
"delocate-listdeps {wheel}",
Expand Down

0 comments on commit ae062e8

Please sign in to comment.