Page 1 of 1

Debug with FW 8.09

Posted: Tue Sep 23, 2008 9:32 am
by Maurizio
Antonio ,

Debug with Fw 8.09 dosn't work ( xHarbour and BCC )

I test ALTD.PRG with FW 8.03 and works .

Regards Maurizio

Posted: Tue Sep 23, 2008 10:13 am
by Antonio Linares
Maurizio,

Have you linked gtwin.lib instead of gtgui.lib ? (just for debug)

Posted: Tue Sep 23, 2008 10:27 am
by Maurizio
Antonio ,

yes I have linked gtwin.lib

Maurizio

Posted: Tue Sep 23, 2008 2:13 pm
by Antonio Linares
Maurizio,

We should try the debugger in console mode, without FWH, to check if it is working or if it is broken.

We are going to make a test asap. If you can try it there, we appreciate it, thanks.

Posted: Tue Sep 23, 2008 3:13 pm
by Maurizio
Antonio

I try in consol mode without FWH and debug works .

Regards Maurizio

Posted: Tue Sep 23, 2008 5:44 pm
by Antonio Linares
Maurizio,

What GT... library have you used for console mode, GTWIN.lib ?

Posted: Wed Sep 24, 2008 6:42 am
by Maurizio
Antonio


I use GTWIN.LIB ( xHarbour from CVS)

ImageImage

Posted: Wed Sep 24, 2008 7:18 am
by Antonio Linares
Maurizio,

With Harbour is working fine.

It seems something has changed in xHarbour. The text console needs to be created or the debugger will not be seen.

For your console test I guess that you have linked gtwin.lib and removed -aa flag for ilink32, right ?

Posted: Wed Sep 24, 2008 7:42 am
by Antonio Linares
Maurizio,

Have you use the xHarbour that we publish for your text mode test ?

Posted: Wed Sep 24, 2008 7:52 am
by Antonio Linares
Maurizio,

Solved :-)

You have to add these lines at the top of FWH\samples\AltD.prg

Code: Select all

REQUEST HB_GT_WIN 
REQUEST HB_GT_WIN_DEFAULT

function Main()
...

Posted: Wed Sep 24, 2008 9:55 am
by Maurizio
Antonio,

Thank ,now works.

Maurizio