Well, I just got it to test it and... lovely, lovely crash.
Program received signal SIGSEGV, Segmentation fault.
0x01e6cc2e in CompilerGCC::AddOutputLine (this=0x1d158b8, output=@0x22fa70,
forceErrorColor=false) at plugins/compilergcc/compilergcc.cpp:1849
1849 CompilerLineType clt = compiler->CheckForWarningsAndErrors(output);
(gdb) bt
#0 0x01e6cc2e in CompilerGCC::AddOutputLine (this=0x1d06390,
output=@0x22f9f8, forceErrorColor=false)
at plugins/compilergcc/compilergcc.cpp:1849
#1 0x01e6c876 in CompilerGCC::OnGCCError (this=0x1d06390, event=@0x22bc018)
at plugins/compilergcc/compilergcc.cpp:1829
#2 0x100a8ff8 in wxEvtHandler::ProcessEventIfMatches ()
from E:\WINDOWS\system32\wxmsw26_gcc_custom.dll
:cry:
[edit]
Ok, got something more that could maybe help:
(gdb) p clt
$1 = 2090035912
(gdb) p compiler
$2 = (class Compiler *) 0x2180738
(gdb) p output
$3 = (const wxString &) @0x22f9f8: {<wxStringBase> = {
static npos = 4294967295,
m_pchData = 0x22a3ec4 "mingw32-g++.exe: E:\\Documents: No such file or directory"}, <No data fields>}
That problem is because the compiler couldn't find the file 'cause its path has spaces.
Just tried with another file in the root of a drive and... crash!
(gdb) p output
$4 = (const wxString &) @0x22f9f8: {<wxStringBase> = {
static npos = 4294967295,
m_pchData = 0x22c2dec "D:\\port.o(.text+0x3a):port.c: undefined reference to `outportb'"}, <No data fields>}
So it's more like the plugin isn't handling the errors correctly and crashing because of them.
Changed the code of the program so it wouldn't have compile/link problems (just noticed it was an old DOS program) and it worked!
[/edit]