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
It might be my older qt5-qmake, but the code standard (c++2a) doesn't make its way into the compilation command-lines for GCC 9.2. I made it explicit with the following additions to src/vasc.pro:
It might be my older qt5-qmake, but the code standard (c++2a) doesn't make its way into the compilation command-lines for GCC 9.2. I made it explicit with the following additions to
src/vasc.pro
:Also, in order to use
std::bind
insrc/jobcontroller.h
, I had to#include <functional>
.Finally, GCC wants to explicitly mention pthreads on the link command line, so I modified
vasc.pro
to have:Now my only stumbling block is the old version of OpenVDB on my system. Let it be known that v4.0.2 is too old.
The text was updated successfully, but these errors were encountered: