Hi, I'm quite new to Linux and CB.
I managed to install CB in Ubuntu. I also compiled and installed wxWidgets from sources. But when compiling my app. I do not know which wxWidgets library version is CB using for linking with my code. Where is CB instructed about libraries to link?
In project options I have 'wx-config --version=2.8 --static=no --unicode=yes --debug=yes --libs' but I don't know where is this pointing, either to my my wxWidgets libraries or to some wxWidgets libraries installed with CB
Any help for a Linux beginner?
On the terminal try this command:
which wx-config
Thank you.
the command answer is : usr/bin/wx-config
But, where are the wxWidgets libraries CB is using?
codeblocks should be build against wxWidgets 2.8.4
I don't know if there is an official repository for Ubuntu,
if not you can take one of these:
http://apt.tt-solutions.com/ubuntu/ dapper main
http://apt.tt-solutions.com/ubuntu/ edgy main
http://apt.tt-solutions.com/ubuntu/ feisty main
key-import to apt's trusted keys:
wget -q http://www.tt-solutions.com/vz/key.asc -O- | sudo apt-key add -
to see which version wx-config normally uses you can try wx-config --version and to see which configuration it selects use wx-config --selected-config
all options of wx-config with wx-config --help
thank you