c++.wxwindows - scw integral debugger
- "chris elliott" <biol75 york.ac.uk> Oct 22 2003
- "Walter" <walter digitalmars.com> Oct 22 2003
Hi How do I get the intgrated debugger to work with a 32 bit app? I've started following Arjan's outline of setting up the IDDE, but could not find how to debug the 32 bit exe sc AUTOTXtdlg.cpp -HO -mn -C -WA -S -3 -a8 -c -H -HD\wxw24b\d_mars -gf -D__WXMS W__ -D__WXDEBUG__ -I\wxw24b\include -I\wxw24b\lib\_sc -I\wxw24b\contrib\incl ude -oAUTOTXtdlg.obj Warning: c:\wx\wxhatch\autotxtdlg.cpp(9): different configuration for precompiled header ....lines omitted sc wxhcombo.cpp -HO -mn -C -WA -S -3 -a8 -c -H -HD\wxw24b\d_mars -gf -D__WXMSW_ _ -D__WXDEBUG__ -I\wxw24b\include -I\wxw24b\lib\_sc -I\wxw24b\contrib\includ e -owxhcombo.obj Warning: c:\wx\wxhatch\wxhcombo.cpp(32): different configuration for precompiled header link /CO /NOI /DE /XN /NT /ENTRY:WinMainCRTStartup /BAS:4194304 /A:512 WXHATCH.LNK; ren .\$SCW$.EXE WXHATCH.EXE .\WXHATCH.EXE built WXHATCH.EXE done Lines Processed: 2507359 Errors: 0 Warnings: 19 Successful build Warning: This debugger can only debug 16-bit Windows applications.
Oct 22 2003
1) use scw32 to deal with 32 bit files. 2) when you get "different configuration for precompiled header", that means delete the precompiled header file! (don't worry, it will be regenerated). "chris elliott" <biol75 york.ac.uk> wrote in message news:bn5ssg$2uv1$1 digitaldaemon.com...Hi How do I get the intgrated debugger to work with a 32 bit app? I've
following Arjan's outline of setting up the IDDE, but could not find how
debug the 32 bit exe sc
ude -oAUTOTXtdlg.obj Warning: c:\wx\wxhatch\autotxtdlg.cpp(9): different configuration for precompiled header ....lines omitted sc
e -owxhcombo.obj Warning: c:\wx\wxhatch\wxhcombo.cpp(32): different configuration for precompiled header link /CO /NOI /DE /XN /NT /ENTRY:WinMainCRTStartup /BAS:4194304 /A:512 WXHATCH.LNK; ren .\$SCW$.EXE WXHATCH.EXE .\WXHATCH.EXE built WXHATCH.EXE done Lines Processed: 2507359 Errors: 0 Warnings: 19 Successful build Warning: This debugger can only debug 16-bit Windows applications.
Oct 22 2003








"Walter" <walter digitalmars.com>