Morozov Sergey
Morozov Sergey
I'm having the same issue on OCIO 2.2.1
I was able to eventually build OIIO statically with these flags: ``` CMAKE_POSITION_INDEPENDENT_CODE=ON BUILD_SHARED_LIBS=OFF EMBEDPLUGINS=0 PYTHON_VERSION=3.7 # Also works for 3.9 USE_PYTHON=1 OIIO_BUILD_TESTS=0 ENABLE_OpenColorIO=1 ENABLE_LibRaw=1 ENABLE_OpenVDB=1 Boost_USE_STATIC_LIBS=1 Boost_ROOT=$BOOST_ROOT Boost_NO_WARN_NEW_VERSIONS=1 LINKSTATIC=1...
Yes, I still have those symbols undefined in libOpenColorIO.a ```bash $ nm libOpenColorIO.a | grep XML_ErrorString U XML_ErrorString U XML_ErrorString U XML_ErrorString ``` I guess, this is how it supposed...
I don't link them explicitly, but I have all the libraries installed in the same place and the path is included to CMAKE_PREFIX_PATH, so I think cmake/gcc can find and...