There are 2 problems here:
1.
*** Error: Unrecognised option: '--rcflags'
this one is an error which is simple to fix created by codelite. To fix this one:
Right click on the project icon in the tree view, and select 'Settings...'
In the dialog that opened, select the 'Resource' tab, and then check 'Resource is not required for this project'
2. The second problem here:
redixe wrote:Warning: No config found to match: /usr/local/bin/wx-config --debug=yes --libs --unicode=yes
You are trying to build 'Debug' version of wx, but you dont have it installed on your machine
You need to install wx debug version:
Code: Select all
sudo apt-get install libwxgtk2.8-dbg
Once installed, try it again.
Another possible option is to build the release configuration instead of the debug one.
- Open 'Build -> Cofiguration manager...'
- In the dialog that just opened, you should have 'Workspace Configuration' drop down and another drop down with the project name.
- In the 'Workspace Configuration' drop down, select 'New' and create new configuration and named it 'Release', click OK now you should see it in the
drop down. Select it.
- Select the "Release' in the Workspace Configuration, and in the bottom drop down select 'ReleaseUnicode'
- Click OK
And try to build again
have a look at this tutorial:
http://codelite.org/docs/VideoTutorials/wxConsole.html
Eran