Solved Custom dll loading issues.
-
I'm trying to compile a custom node via the "Create C++ third-party node template". The base template works as expected and is loadable. As soon as I add a member to the C++ class (unique_ptr in this case)
the dll fails to load. The error message is rather limited, it says the file is missing, but is definitively there. what debug methods should I use to tackle the problem? Could this be a Linux issue? I can switch to Windows, but that PC is a lot slower.Empty template
With member
-
@tobante So the issue was a virtual destructor that I had defined. Both gcc & clang did not complain, but on Windows MSVC gave an error message. I guess that caused ABI problems. After removing said dtor it loads on all systems.
-
-