From 6cf08a2d901eb625c327b534cc53f58e34bd471b Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Sat, 7 Aug 1999 07:28:43 +0000 Subject: [PATCH] Debugger() extern symbol requested when compiling using /b --- harbour/source/compiler/harbour.y | 3 +++ 1 file changed, 3 insertions(+) diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index 81be84b6f6..9f711b2a64 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -3028,6 +3028,9 @@ void GenExterns( void ) /* generates the symbols for the EXTERN names */ { PEXTERN pDelete; + if( _bDebugInfo ) + AddExtern( yy_strdup( "DEBUGGER" ) ); + while( pExterns ) { if( GetSymbol( pExterns->szName, NULL ) )