I am using the GNU GCC compiler that was included right out of the box when you install Code::Blocks. I'm sorry I don't know the exact version number.
The build log is where the solution lies so thank you for showing me how to create that and view it. Here is the log.
Build started on: 19-04-2016 at 12:13.10
Build ended on: 19-04-2016 at 12:13.10
-------------- Build: Debug in AutoHarp ---------------
g++ -Wall -I/usr/lib/x86_64-linux-gnu/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -g -I/usr/lib/x86_64-linux-gnu/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -D__WXDEBUG__ -Wall -c "/home/davidklecker/AutoHarp Suite/trunk/AutoHARP/src/AboutDlg.cpp" -o Debug/src/AboutDlg.o
In file included from /home/davidklecker/AutoHarp Suite/trunk/AutoHARP/src/AboutDlg.cpp:37:0:
/home/davidklecker/AutoHarp Suite/trunk/AutoHARP/src/AboutDlg.h:31:24: fatal error: wx/webview.h: No such file or directory
compilation terminated.
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 0 warnings
The error can be noticed when I show you the results of wx-config --cxxflags
-I/usr/local/lib/wx/include/gtk2-unicode-static-3.0 -I/usr/local/include/wx-3.0 -D_FILE_OFFSET_BITS=64 -D__WXGTK__ -pthread
So obviously I have the wrong libraries being linked in Code::Blocks. So I guess my call to wx-config --cxxflags is returning something different to what it returns from the console. How can I make sure the config call in Code::Blocks is returning the proper and correct information?
Thanks