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
I had been struggling with some link errors of the Coin test suite with CMake installed by Vcpkg on Windows, but recently figured out the cause.
CMake was installed with <boost/config/user.hpp> that implicitly defines BOOST_ALL_DYN_LINK, which causes link errors in the test suite. To avoid the problem with those problematic definitions, we need to define BOOST_NO_USER_CONFIG on the command line.
I wish it had been documented clearly in the build instructions or, hopefully, detected automatically by the build scripts.
The text was updated successfully, but these errors were encountered:
I had been struggling with some link errors of the Coin test suite with CMake installed by Vcpkg on Windows, but recently figured out the cause.
CMake was installed with
<boost/config/user.hpp>
that implicitly definesBOOST_ALL_DYN_LINK
, which causes link errors in the test suite. To avoid the problem with those problematic definitions, we need to defineBOOST_NO_USER_CONFIG
on the command line.I wish it had been documented clearly in the build instructions or, hopefully, detected automatically by the build scripts.
The text was updated successfully, but these errors were encountered: