Hi,
On ubuntu gcc-4.4.3 has an issue with strncmp() in source/Plugins/SymbolFile/DWARFDWARFDefines.cpp.
The quick fix is to add #include <string.h> in addtion to the #include <string> .
Better way might be to avoid the strncmp() and use string::compare()
Thanks,
Pawel
-------------------------cut here K