Page 1 of 1

Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Fri Dec 24, 2010 12:36 am
by evstevemd
Hi,
How do I do that? I have successfully compiled 29 and I have wx 28 from repos
Thanks!

Re: Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Fri Dec 24, 2010 11:55 am
by eranif
In your project settings, make sure that the 'wx-config' tool used in the 'Linker' / 'Compiler' pages points to the correct one (for example: '/usr/local/wx29/bin/wx-config' rather than just 'wx-config')

Other than that, I would also recommend that in your wx29 project, right click on your project and select 'Settings | Environment' under the "Debugger 'PreDefiend types' set to use" you choose wxWIdgets-29

Eran

Re: Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Fri Dec 24, 2010 4:26 pm
by evstevemd
thanks Eran

Re: Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Fri Dec 24, 2010 4:54 pm
by evstevemd
yes it works!
Another off topic question, do you know how to compile debug version of wx29 on Linux? I see it can only compile release!

Re: Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Fri Dec 24, 2010 11:29 pm
by eranif
Never tried it, just do:
configure --help and see that the options are?

Eran

Re: Using wxWidgets 28 and 29 - Ubuntu 10.04

Posted: Sat Dec 25, 2010 4:00 pm
by DavidGH
Another off topic question, do you know how to compile debug version of wx29 on Linux? I see it can only compile release!
There's less difference in wx2.9 between debug/release builds, and debug libs are no longer labelled libwx_<foo>ud-2.9.so; they're all just libwx_<foo>u-2.9.so. I still configure with --enable-debug though.

Regards,

David