Page 1 of 1

Problems with release with debugging info

Posted: Sun Nov 22, 2015 1:11 pm
by msarens
Hello ,

Is there someone who can help me with the release with debug info tool. I'm trying to use the release with debug info but get several errors. The errors I get are :

'exampleMain.exe' (Win32): Loaded 'D:\KUL\Thesis\C++\IGH1\Build\RelWithDebInfo\exampleMain.exe'. Symbols loaded.
'exampleMain.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'exampleMain.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'exampleMain.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimSimulation.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimActuators.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimCommon.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimAnalyses.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimTools.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\OpenSim_SimTKmath.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp120.dll'. Cannot find or open the PDB file.
'exampleMain.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcr120.dll'. Cannot find or open the PDB file.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\osimLepton.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\OpenSim_SimTKcommon.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\OpenSim_SimTKsimbody.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\liblapack.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\libblas.dll'. Module was built without symbols.
'exampleMain.exe' (Win32): Loaded 'C:\OpenSim 3.3\bin\pthreadVC2.dll'. Module was built without symbols.

Does anyone know how to solve this problem?

Re: Problems with release with debugging info

Posted: Sun Nov 22, 2015 1:57 pm
by sherm
Looks like you might have installed 64 bit OpenSim on a 32 bit Windows machine?

Re: Problems with release with debugging info

Posted: Sun Nov 22, 2015 5:55 pm
by aymanh
Hi Maarten,

Can you explain what is the specific problem you're running into? It looks like you're building your project ReleaseWithDebugInfo against release libraries of an OpenSim distribution. It's normal that you get messages about missing symbols since these are not built into release libraries. If there are other downstream problems please explain.

If you want to get full debugging then you should download the source zip and build the libraries with whatever debugging level you desire (ReleaseWithDebugInfo or Debug) and make sure you link with your libraries and then visual studio will not give you warnings regarding missing symbols.

Hope this helps,
-Ayman

Re: Problems with release with debugging info

Posted: Wed Dec 02, 2015 10:00 am
by msarens
I have been able to solve the problem.

Thank you very much for your help.