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
Forcing the rpath to the devel space is causing problems when the packages are used from the install space. Especially on macOS this is a problem since DYLD_LIBRARY_PATH is no longer searched since SIP is enabled. Hence, having a correct rpath is essential.
Instead of hard coding the rpath value the cmake RPATH options should be respected: https://cmake.org/Wiki/CMake_RPATH_handling
I guess, ideally the qt_gui_cpp_sip target would be installed via the cmake install command which should take care of setting the correct RPATH.
The text was updated successfully, but these errors were encountered:
Forcing the rpath to the devel space is causing problems when the packages are used from the install space. Especially on macOS this is a problem since DYLD_LIBRARY_PATH is no longer searched since SIP is enabled. Hence, having a correct rpath is essential.
qt_gui_core/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
Lines 32 to 33 in 2333cb0
Instead of hard coding the rpath value the cmake
RPATH
options should be respected: https://cmake.org/Wiki/CMake_RPATH_handlingI guess, ideally the
qt_gui_cpp_sip
target would be installed via the cmakeinstall
command which should take care of setting the correct RPATH.The text was updated successfully, but these errors were encountered: