mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-15 06:23:00 +02:00
98 lines
3.4 KiB
ObjectPascal
98 lines
3.4 KiB
ObjectPascal
{ $Id$ }
|
|
{
|
|
---------------------------------------------------------------------------
|
|
fpd - FP standalone windows debugger
|
|
---------------------------------------------------------------------------
|
|
|
|
fpwd is a concept Free Pascal Windows Debugger. It is mainly used to thest
|
|
the windebugger classes, but it may grow someday to a fully functional
|
|
debugger written in pascal.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
@created(Mon Apr 10th WET 2006)
|
|
@lastmod($Date$)
|
|
@author(Marc Weustink <marc@@dommelstein.nl>)
|
|
|
|
***************************************************************************
|
|
* *
|
|
* This source is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This code is distributed in the hope that it will be useful, but *
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* General Public License for more details. *
|
|
* *
|
|
* A copy of the GNU General Public License is available on the World *
|
|
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
|
|
* obtain it by writing to the Free Software Foundation, *
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
* *
|
|
***************************************************************************
|
|
}
|
|
program fpd;
|
|
{$mode objfpc}{$H+}
|
|
{$APPTYPE CONSOLE}
|
|
uses
|
|
{$ifdef unix}
|
|
cthreads,
|
|
{$endif}
|
|
SysUtils,
|
|
CustApp,
|
|
FpDbgDwarfFreePascal,
|
|
{$ifdef windows}
|
|
Windows,
|
|
FpDbgWinClasses,
|
|
{$endif}
|
|
FPDCommand,
|
|
FPDGlobal,
|
|
FPDLoop,
|
|
FpDbgClasses,
|
|
FpDbgDwarfConst,
|
|
FpDbgDwarf,
|
|
// The debug classes auto register with initialization, so include them somewhere
|
|
// The $ifdef below will not work for cross debugging of a remote target
|
|
{$ifdef DARWIN}FpDbgDarwinClasses,{$endif}
|
|
{$ifdef LINUX}FpDbgLinuxClasses,{$endif}
|
|
FpDbgAvrClasses,
|
|
FpDbgCommon;
|
|
|
|
{$ifdef windows}
|
|
function CtrlCHandler(CtrlType: Cardinal): BOOL; stdcall;
|
|
begin
|
|
Result := False;
|
|
case CtrlType of
|
|
CTRL_C_EVENT,
|
|
CTRL_BREAK_EVENT: begin
|
|
if GController.MainProcess = nil then Exit;
|
|
TDbgWinProcess(GController.MainProcess).Interrupt;
|
|
|
|
Result := True;
|
|
end;
|
|
CTRL_CLOSE_EVENT: begin
|
|
if (GController.MainProcess <> nil)
|
|
then TerminateProcess(GController.MainProcess.Handle, 0);
|
|
end;
|
|
end;
|
|
end;
|
|
{$endif}
|
|
|
|
begin
|
|
Write('FPDebugger on ', {$I %FPCTARGETOS%}, ' for ', {$I %FPCTARGETCPU%});
|
|
WriteLn(' (', {$I %DATE%}, ' ', {$I %TIME%}, ' FPC: ', {$I %FPCVERSION%}, ')' );
|
|
WriteLn('Copyright (c) 2006-2009 by Marc Weustink');
|
|
WriteLN('starting....');
|
|
|
|
{$ifdef windows}
|
|
SetConsoleCtrlHandler(@CtrlCHandler, True);
|
|
{$endif}
|
|
CustomApplication.Initialize;
|
|
CustomApplication.Run;
|
|
{$ifdef windows}
|
|
SetConsoleCtrlHandler(@CtrlCHandler, False);
|
|
{$endif}
|
|
end.
|