
Thu, 02/09/2023 - 19:55
Forums:
hi,
may i ask for help?
when i debugging and check my variable it is hidden for me, how to display it?
Thank you
Piotr
myData[theIndex].entity->__vfptr[1]
myData[theIndex] = {entity=0x000001b317e85940 <Information not available, no symbols loaded for TKG2d.dll> }
Thu, 02/09/2023 - 20:24
Hello.
You try to debug OCCT project using DRAW or external project, which link OCCT dlls?
And can you share your OS and compiler.
Best regards, Dmitrii,
Fri, 02/10/2023 - 20:27
'No symbols loaded' means that this
.DLL
was build without Debug symbols, or these symbols (.pdb
files in case of Visual Studio compiler) are inaccessible. Make sure to build OCCT with Debug target (or withBUILD_FORCE_RelWithDebInfo=ON
option passed to CMake for Release target) and that your application is started with this debug build (%PATH%
to correct folder / copy proper libraries).