mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 15:58:07 +02:00
Debuggers: Add define FORCE_LAZLOGGER_DUMMY
This commit is contained in:
parent
2f4ead8848
commit
e183ea0b5f
@ -10,7 +10,7 @@ uses
|
||||
FpdMemoryTools,
|
||||
FpDbgDwarfDataClasses,
|
||||
FpDbgDwarf,
|
||||
FpDbgClasses, FpErrorMessages, FpDbgUtil, LazLoggerBase, LazClasses;
|
||||
FpDbgClasses, FpErrorMessages, FpDbgUtil, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazClasses;
|
||||
|
||||
type
|
||||
|
||||
|
@ -42,7 +42,7 @@ uses
|
||||
SysUtils,
|
||||
// LazUtils
|
||||
Maps,
|
||||
LazLogger,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
|
||||
// DebuggerIntf
|
||||
DbgIntfBaseTypes,
|
||||
// FpDebug
|
||||
|
@ -12,7 +12,7 @@ uses
|
||||
{$ifdef windows}
|
||||
Windows, // After LCLType
|
||||
{$endif}
|
||||
fgl, LazFglHash, LazFileUtils, LazLoggerBase,
|
||||
fgl, LazFglHash, LazFileUtils, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
|
||||
fpDbgSymTable,
|
||||
Classes, SysUtils, DbgIntfBaseTypes, contnrs,
|
||||
FpDbgCommon, crc;
|
||||
|
@ -7,7 +7,7 @@ interface
|
||||
|
||||
uses
|
||||
FpDbgInfo, FpPascalBuilder, FpdMemoryTools, FpErrorMessages, FpDbgDwarf,
|
||||
FpDbgDwarfDataClasses, DbgIntfBaseTypes, LazClasses, LazLoggerBase, fgl, Math,
|
||||
FpDbgDwarfDataClasses, DbgIntfBaseTypes, LazClasses, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, fgl, Math,
|
||||
SysUtils, LazDebuggerIntf;
|
||||
|
||||
type
|
||||
|
@ -43,7 +43,7 @@ uses
|
||||
// LCL
|
||||
Forms,
|
||||
// LazUtils
|
||||
LazLoggerBase, UTF8Process,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, UTF8Process,
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase,
|
||||
// LazDebuggerGdbmi
|
||||
|
@ -37,7 +37,7 @@ interface
|
||||
uses
|
||||
Classes,
|
||||
// LazUtils
|
||||
LazLoggerBase, LazUTF8,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazUTF8,
|
||||
// DebuggerIntf
|
||||
DbgIntfBaseTypes;
|
||||
|
||||
|
@ -58,7 +58,7 @@ uses
|
||||
// LCL
|
||||
Controls, Dialogs, Forms,
|
||||
// LazUtils
|
||||
FileUtil, LazUTF8, LazClasses, LazLoggerBase, LazStringUtils, LazFileUtils, Maps,
|
||||
FileUtil, LazUTF8, LazClasses, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazStringUtils, LazFileUtils, Maps,
|
||||
// IdeIntf
|
||||
BaseIDEIntf, PropEdits, MacroIntf,
|
||||
// DebuggerIntf
|
||||
|
@ -7,7 +7,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, StrUtils, Math,
|
||||
// LazUtils
|
||||
LazLoggerBase, LazClasses, LazStringUtils,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazClasses, LazStringUtils,
|
||||
// LazDebuggerGdbmi
|
||||
CmdLineDebugger, GDBMIMiscClasses;
|
||||
|
||||
|
@ -36,7 +36,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, math,
|
||||
// LazUtils
|
||||
LazLoggerBase, LazStringUtils,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazStringUtils,
|
||||
// DebuggerIntf
|
||||
DbgIntfBaseTypes, DbgIntfDebuggerBase,
|
||||
// LazDebuggerGdbmi
|
||||
|
@ -4,7 +4,7 @@ unit DebugInstructions;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LazClasses, LazLoggerBase, debugprocess;
|
||||
Classes, SysUtils, LazClasses, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, debugprocess;
|
||||
|
||||
type
|
||||
|
||||
|
@ -38,7 +38,7 @@ interface
|
||||
|
||||
uses
|
||||
Classes, sysutils, AsyncProcess, LCLIntf, InterfaceBase, process,
|
||||
Pipes, LazLoggerBase, UTF8Process;
|
||||
Pipes, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, UTF8Process;
|
||||
|
||||
type
|
||||
|
||||
|
@ -35,7 +35,7 @@ interface
|
||||
uses
|
||||
Classes, {$IfDef WIN64}windows,{$EndIf} SysUtils, fgl, math, process,
|
||||
Forms, Dialogs, syncobjs,
|
||||
Maps, LazLoggerBase, LazUTF8, lazCollections,
|
||||
Maps, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazUTF8, lazCollections,
|
||||
DbgIntfDebuggerBase, LazDebuggerIntfBaseTypes,
|
||||
FpDebugDebuggerUtils, FpDebugDebuggerWorkThreads, FpDebugDebuggerBase, LazDebuggerIntf,
|
||||
// FpDebug
|
||||
|
@ -8,7 +8,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, fgl, Math, FPDbgController, FpdMemoryTools, FpDbgClasses,
|
||||
FpDbgUtil, FpDbgInfo, FpDbgCallContextInfo, DbgIntfDebuggerBase,
|
||||
DbgIntfBaseTypes, LazLoggerBase, FpDebugDebuggerUtils,
|
||||
DbgIntfBaseTypes, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, FpDebugDebuggerUtils,
|
||||
LazDebuggerIntfBaseTypes;
|
||||
|
||||
type
|
||||
|
@ -14,8 +14,8 @@ uses
|
||||
{$ENDIF}
|
||||
Classes, sysutils, math, FpdMemoryTools, FpDbgInfo, FpDbgClasses,
|
||||
GDBMIDebugger, DbgIntfBaseTypes, DbgIntfDebuggerBase, GDBMIMiscClasses,
|
||||
GDBTypeInfo, LCLProc, Forms, FpDbgLoader, FpDbgDwarf, LazLoggerBase,
|
||||
LazLoggerProfiling, LazClasses, FpPascalParser, FpPascalBuilder,
|
||||
GDBTypeInfo, LCLProc, Forms, FpDbgLoader, FpDbgDwarf, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
|
||||
LazClasses, FpPascalParser, FpPascalBuilder,
|
||||
FpErrorMessages, FpDbgDwarfDataClasses, FpDbgDwarfFreePascal, FpDbgCommon,
|
||||
FpWatchResultData, MenuIntf, LazDebuggerIntf, LazDebuggerIntfBaseTypes;
|
||||
|
||||
|
@ -27,7 +27,7 @@ uses
|
||||
{$ENDIF}
|
||||
Classes, sysutils, math, FpdMemoryTools, FpDbgInfo, LldbDebugger,
|
||||
LldbInstructions, LldbHelper, LazDebuggerIntf, DbgIntfBaseTypes, LazDebuggerIntfBaseTypes,
|
||||
DbgIntfDebuggerBase, LCLProc, Forms, FpDbgLoader, FpDbgDwarf, LazLoggerBase,
|
||||
DbgIntfDebuggerBase, LCLProc, Forms, FpDbgLoader, FpDbgDwarf, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
|
||||
LazClasses, FpPascalParser, FpPascalBuilder, FpErrorMessages,
|
||||
FpDbgDwarfDataClasses, FpDbgDwarfFreePascal, FpDbgCommon, FpWatchResultData;
|
||||
|
||||
|
@ -7,7 +7,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, fgl, math, process,
|
||||
Forms, Dialogs, syncobjs,
|
||||
Maps, LazLogger, LazUTF8, lazCollections,
|
||||
Maps, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazUTF8, lazCollections,
|
||||
DbgIntfBaseTypes, DbgIntfDebuggerBase,
|
||||
FpDebugDebugger, FpDebugDebuggerUtils, FpDebugDebuggerWorkThreads,
|
||||
// FpDebug
|
||||
|
@ -24,7 +24,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, strutils, math,
|
||||
// LazUtils
|
||||
LazClasses, LazFileUtils, LazLoggerBase, LazStringUtils, Maps,
|
||||
LazClasses, LazFileUtils, {$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif}, LazStringUtils, Maps,
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase, DbgIntfBaseTypes,
|
||||
// CmdLineDebuggerBase
|
||||
|
@ -20,7 +20,7 @@ interface
|
||||
uses
|
||||
SysUtils, Classes, strutils,
|
||||
// LazUtils
|
||||
LazLoggerBase,
|
||||
{$ifdef FORCE_LAZLOGGER_DUMMY} LazLoggerDummy {$else} LazLoggerBase {$endif},
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase, DbgIntfBaseTypes,
|
||||
// CmdLineDebuggerBase
|
||||
|
Loading…
Reference in New Issue
Block a user