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 some C++ code in my project using multiple inheritance. The project had optimization set to -O2, I think this was imported from the Xcode settings. The linker gave me an error saying something like (I'm writing this from memory) "undefined reference to [thunk:] __thiscall MyClass::adjustor{4}".
This was solved by disabling optimization but I think this is a bug in the build system / compiler.
The text was updated successfully, but these errors were encountered:
I had some C++ code in my project using multiple inheritance. The project had optimization set to
-O2
, I think this was imported from the Xcode settings. The linker gave me an error saying something like (I'm writing this from memory)"undefined reference to [thunk:] __thiscall MyClass::adjustor{4}"
.This was solved by disabling optimization but I think this is a bug in the build system / compiler.
The text was updated successfully, but these errors were encountered: