You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test suite fails to run on macOS, because the test programs are trying to use the not-yet-installed libminc library. Here's one example:
Dyld Error Message:
Library not loaded: /opt/local/lib/libminc2.5.2.0.dylib
Referenced from: /Users/USER/*/minc_tst
Reason: image not found
In order to be able to do that on macOS, the DYLD_LIBRARY_PATH environment variable must be set to the path where the not-yet-installed libraries reside.
The text was updated successfully, but these errors were encountered:
i think you are building without RPATH during build. MACOSX's security features (SIP) will prevent subprocesses to use shared libraries specified in DYLD_LIBRARY_PATH
The test suite fails to run on macOS, because the test programs are trying to use the not-yet-installed libminc library. Here's one example:
In order to be able to do that on macOS, the
DYLD_LIBRARY_PATH
environment variable must be set to the path where the not-yet-installed libraries reside.The text was updated successfully, but these errors were encountered: