Developer forums (C::B DEVELOPMENT STRICTLY!) > Development
Help reading codeblocks.RPT
daniloz:
--- Quote from: xunxun on June 13, 2012, 11:53:35 am ---You can see your config.gcc
USE_XRC=1 is the default option.
--- End quote ---
Oh, I see. Thanks @xunxun
MortenMacFly:
--- Quote from: daniloz on June 13, 2012, 11:12:00 am ---So, the question: is USE_XRC=1 required or not?
--- End quote ---
Adjusted the WiKi accordingly...
daniloz:
I just got another crash and even after compiling everything (wxWidgets included) with gcc tdm 4.6.1 SJLJ, I cannot get any information from the RPT file.
Below is my file and the output from Addr2LineUI.
Any ideas of what the problem could be?
Note: Although I'm running from the output folder, it's just a copy from the devel folder, so with ALL debug information...
Edit: codeblocks.dll also gives no information, why?
Edit 2: the RPT file used to work on the past, giving me the right information
Edit 3: something is very wrong here, since looking at the codeblocks.dll file, I can find the function _ZN6wxFontC1EiiiibRK8wxString14wxFontEncoding, but the entry point is completely different (the RPT file shows something at 01472EF4, see below:
--- Code: ---002D2E5Ch 7859 _ZN6wxFontC1EiiiibRK8wxString14wxFontEncoding
--- End code ---
--- Code: ---Error occured on Wednesday, June 13, 2012 at 16:13:40.
C:\Work\codeblocks_trunk\src\output\codeblocks.exe caused an Access Violation at location 76ebe3be in module C:\Windows\SysWOW64\ntdll.dll Reading from location 79839ca9.
Registers:
eax=0049005f ebx=1a55a288 ecx=00390000 edx=1a55a288 esi=79839ca5 edi=1a55a280
eip=76ebe3be esp=0028ed20 ebp=0028ed54 iopl=0 nv up ei pl nz na po nc
cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010206
Call stack:
76EBE3BE C:\Windows\SysWOW64\ntdll.dll:76EBE3BE RtlInitUnicodeString
76EBE023 C:\Windows\SysWOW64\ntdll.dll:76EBE023 RtlFreeHeap
749098CD C:\Windows\syswow64\msvcrt.dll:749098CD free
62753D36 C:\Work\codeblocks_trunk\src\output\wxmsw28u_gcc_custom.dll:62753D36 _ZN13wxArrayString4FreeEv
01472EF4 C:\Work\codeblocks_trunk\src\output\codeblocks.dll:01472EF4 _ZN6wxFontC1EiiiibRK8wxString14wxFontEncoding
012206D2 C:\Work\codeblocks_trunk\src\output\codeblocks.dll:012206D2 _ZN8cbEditor36InternalSetEditorStyleBeforeFileOpenEP16cbStyledTextCtrl
01220404 C:\Work\codeblocks_trunk\src\output\codeblocks.dll:01220404 _ZN8cbEditor11ApplyStylesEP16cbStyledTextCtrl
0CC463EC C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll:0CC463EC
0CC5C74E C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll:0CC5C74E
0CC47912 C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll:0CC47912
--- End code ---
--- Code: ---******************************
* Found (another) call stack *
******************************
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Windows\SysWOW64\ntdll.dll 76EBE3BE:
C:\Windows\SysWOW64\ntdll.dll[76EBE3BE]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Windows\SysWOW64\ntdll.dll 76EBE023:
C:\Windows\SysWOW64\ntdll.dll[76EBE023]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Windows\syswow64\msvcrt.dll 749098CD:
C:\Windows\syswow64\msvcrt.dll[749098CD]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\wxmsw28u_gcc_custom.dll 62753D36:
C:\Work\codeblocks_trunk\src\output\wxmsw28u_gcc_custom.dll[62753D36]:
string.cpp:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\codeblocks.dll 01472EF4:
C:\Work\codeblocks_trunk\src\output\codeblocks.dll[01472EF4]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\codeblocks.dll 012206D2:
C:\Work\codeblocks_trunk\src\output\codeblocks.dll[012206D2]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\codeblocks.dll 01220404:
C:\Work\codeblocks_trunk\src\output\codeblocks.dll[01220404]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll 0CC463EC:
C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll[0CC463EC]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll 0CC5C74E:
C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll[0CC5C74E]:
??:0
----------------------------------------
C:\MinGW32_tdm_461\bin\addr2line.exe -e C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll 0CC47912:
C:\Work\codeblocks_trunk\src\output\share\codeblocks\plugins\ThreadSearch.dll[0CC47912]:
??:0
----------------------------------------
--- End code ---
xunxun:
Can you use Code::Blocks + GDB to debug your Code::Blocks and see gdb's backtrace?
Alpha:
--- Quote from: daniloz on June 13, 2012, 04:34:56 pm ---Edit: codeblocks.dll also gives no information, why?
Edit 2: the RPT file used to work on the past, giving me the right information
--- End quote ---
Since you completely rebuilt, it is possible exchndl.dll was not copied due to:
--- Code: ---http://svn.berlios.de/wsvn/codeblocks?op=comp&compare[]=/trunk/src/update.bat@7660&compare[]=/trunk/src/update.bat@7661
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version