Author Topic: How do you specify WXDEBUG for the nightly  (Read 3874 times)

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2778
How do you specify WXDEBUG for the nightly
« 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.

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: How do you specify WXDEBUG for the nightly
« Reply #1 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
Be a part of the solution, not a part of the problem.

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2778
Re: How do you specify WXDEBUG for the nightly
« Reply #2 on: June 24, 2008, 07:46:54 pm »
Thanks, that works perfectly.