I am, for all intents and purposes, a 'new to linux' user. I am working with a fresh install of Ubuntu 14.04. I am working with Codelite 6.1 from the repository and have also installed build-dep packages using:
Code: Select all
sudo apt-get build-dep codelite
Following this tutorial brings up the following errors on compilation:
Code: Select all
/bin/sh -c '/usr/bin/make -j4 -e -f Makefile'
----------Building project:[ test - Debug ]----------
Warning: No config found to match: /usr/bin/wx-config --libs --debug
in /usr/lib/x86_64-linux-gnu/wx/config
If you require this configuration, please install the desired
library build. If this is part of an automated configuration
test and no other errors occur, you may safely ignore it.
You may use wx-config --list to see all configs available in
the default prefix.
Warning: No config found to match: /usr/bin/wx-config --cflags --debug
in /usr/lib/x86_64-linux-gnu/wx/config
If you require this configuration, please install the desired
library build. If this is part of an automated configuration
test and no other errors occur, you may safely ignore it.
You may use wx-config --list to see all configs available in
the default prefix.
make[1]: Entering directory `/home/warrior/Documents/Code/test'
/usr/bin/g++ -c "/home/warrior/Documents/Code/test/main.cpp" -g -O0 -Wall -o ./Debug/main.cpp.o -I. -I.
/usr/bin/g++ -c "/home/warrior/Documents/Code/test/wxcrafter.cpp" -g -O0 -Wall -o ./Debug/wxcrafter.cpp.o -I. -I.
/usr/bin/g++ -c "/home/warrior/Documents/Code/test/MainDialog.cpp" -g -O0 -Wall -o ./Debug/MainDialog.cpp.o -I. -I.
wxcrafter_bitmaps.cpp:16:20: error: missing binary operator before token "("
#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805
^
make[1]: *** [Debug/wxcrafter_bitmaps.cpp.o.d] Error 1
make[1]: *** Waiting for unfinished jobs....
/home/warrior/Documents/Code/test/main.cpp:1:20: fatal error: wx/app.h: No such file or directory
#include <wx/app.h>
^
compilation terminated.
In file included from /home/warriro/Documents/Code/test/wxcrafter.cpp:1:0:
/home/warrior/Documents/Code/test/wxcrafter.h:4:25: fatal error: wx/settings.h: No such file or directory
#include <wx/settings.h>
^
compilation terminated.
In file included from /home/warrior/Documents/Code/test/MainDialog.h:3:0,
from /home/warrior/Documents/Code/test/MainDialog.cpp:1:
/home/warrior/Documents/Code/test/wxcrafter.h:4:25: fatal error: wx/settings.h: No such file or directory
#include <wx/settings.h>
^
compilation terminated.
make[1]: *** [Debug/main.cpp.o] Error 1
make[1]: *** [Debug/wxcrafter.cpp.o] Error 1
make[1]: *** [Debug/MainDialog.cpp.o] Error 1
make[1]: Leaving directory `/home/warrior/Documents/Code/test'
make: *** [All] Error 2
5 errors, 2 warnings
Thank you in advance.