Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: Pecan on June 22, 2008, 01:06:40 am

Title: How do you specify WXDEBUG for the nightly
Post by: Pecan on June 22, 2008, 01:06:40 am
The ./configure has an option:

 --with-wx-config=CONFIG wx-config script to use (optional)

How do you use it to specify the equivalent of:
`wx-config --cflags --debug=yes` and
`wx-config --libs --debug=yes`

so that the nightly runs in debug mode and uses the debug
version of wxwidgets.
Title: Re: How do you specify WXDEBUG for the nightly
Post by: Biplab on June 24, 2008, 05:27:22 pm
The ./configure has an option:

 --with-wx-config=CONFIG wx-config script to use (optional)

How do you use it to specify the equivalent of:
`wx-config --cflags --debug=yes` and
`wx-config --libs --debug=yes`

so that the nightly runs in debug mode and uses the debug
version of wxwidgets.


Configure as -
Code
../configure --with-wx-config=<path_to_debug_wx-config>/wx-config
Title: Re: How do you specify WXDEBUG for the nightly
Post by: Pecan on June 24, 2008, 07:46:54 pm
Thanks, that works perfectly.