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?
Problems with release with debugging info
- Maarten Sarens
- Posts: 7
- Joined: Sat Oct 10, 2015 11:34 am
- Michael Sherman
- Posts: 807
- Joined: Fri Apr 01, 2005 6:05 pm
Re: Problems with release with debugging info
Looks like you might have installed 64 bit OpenSim on a 32 bit Windows machine?
- Ayman Habib
- Posts: 2248
- Joined: Fri Apr 01, 2005 12:24 pm
Re: Problems with release with debugging info
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
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
- Maarten Sarens
- Posts: 7
- Joined: Sat Oct 10, 2015 11:34 am
Re: Problems with release with debugging info
I have been able to solve the problem.
Thank you very much for your help.
Thank you very much for your help.