First issue I found is in wxWidgets realm (wxWidgets built with --enable-unicode), in custom plugin source.
char myText[80];
strcpy (myText, "Some message.\n");
wxString myString(myText, wxConvUTF8);
This constructor invokes FromWChar(char *dst, size_t dstLen, const wchar_t *src, size_t srcLen) const
... which causes SIGSEGV, not sure why exactly this should happen.
Custom plugin causing this problem was removed, then codeblocks 10.05 reconfigured with "--enable-debug", and re-installed (make distclean then re-run configure, then make, then sudo make install) and re-run in gdb.
...
Compiler plugin activated
Library finder plugin activated
Open files list plugin activated
Files extension handler plugin activated
Header Fixup plugin activated
BYO Games plugin activated
Keyboard shortcuts plugin activated
Class wizard plugin activated
DragScroll plugin activated
Regular expressions testbed plugin activated
Source code formatter (AStyle) plugin activated
Code completion plugin activated
Foreign projects importer plugin activated
IncrementalSearch plugin activated
Autosave plugin activated
Source Exporter plugin activated
Initializing plugins...
KeyBinder failed UpdateById on[2639][Edit startup script]
[New Thread 0xb17e9b70 (LWP 30699)]
[Thread 0xb7a5ab70 (LWP 30688) exited]
... and a pop-up message in codeblocks, saying, "Resource files must have the same version number!" [OK]
Is there something I should be editing or deleting, perhaps in /tmp ?