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
Just a suggestion.
Boost should be included in CMakeList.txt in a more generic way:
find_package( Boost COMPONENTS python system REQUIRED )
include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIR})
instead of set(BOOST_LIBS "-lboost_system -lboost_python3")
Otherwise on some systems it throws a linker error: /usr/bin/ld: cannot find -lboost_python3.
I'd create a pull request but sadly I still haven't solved problems with Boost.Numpy (ndarray/Boost.NumPy#43).
The text was updated successfully, but these errors were encountered:
Hello:
Just a suggestion.
Boost should be included in CMakeList.txt in a more generic way:
instead of
set(BOOST_LIBS "-lboost_system -lboost_python3")
Otherwise on some systems it throws a linker error:
/usr/bin/ld: cannot find -lboost_python3
.I'd create a pull request but sadly I still haven't solved problems with Boost.Numpy (ndarray/Boost.NumPy#43).
The text was updated successfully, but these errors were encountered: