FpDebug, CmdLineDebuggerBase: Remove "design time".... / Add missing changes in packagefile

This commit is contained in:
Martin 2021-11-25 21:01:06 +01:00
parent df1cac999f
commit ad58ebedf8
2 changed files with 9 additions and 20 deletions

View File

@ -8,20 +8,15 @@ unit fpdebug;
interface
uses
FpDbgClasses, FpDbgDisasX86, FpDbgDwarf, FpDbgDwarfConst, FpDbgLoader, FpDbgPETypes, FpDbgSymbols,
FpDbgUtil, FpImgReaderWinPE, FpImgReaderElf, FpImgReaderElfTypes, FpImgReaderBase, FpPascalParser,
macho, FpImgReaderMachoFile, FpImgReaderMacho, FpPascalBuilder, FpDbgInfo, FpdMemoryTools,
FpErrorMessages, FPDbgController, FpDbgDwarfVerbosePrinter, FpDbgDwarfDataClasses,
FpDbgDwarfFreePascal, fpDbgSymTableContext, fpDbgSymTable, FpDbgAvrClasses, FpDbgDisasAvr,
FpDbgRsp, FpDbgCommon, FpImgReaderWinPETypes, FpDbgHardcodedFreepascalInfo, FpDbgCallContextInfo,
LazarusPackageIntf;
FpDbgClasses, FpDbgDisasX86, FpDbgDwarf, FpDbgDwarfConst, FpDbgLoader,
FpDbgPETypes, FpDbgSymbols, FpDbgUtil, FpImgReaderWinPE, FpImgReaderElf,
FpImgReaderElfTypes, FpImgReaderBase, FpPascalParser, macho,
FpImgReaderMachoFile, FpImgReaderMacho, FpPascalBuilder, FpDbgInfo,
FpdMemoryTools, FpErrorMessages, FPDbgController, FpDbgDwarfVerbosePrinter,
FpDbgDwarfDataClasses, FpDbgDwarfFreePascal, fpDbgSymTableContext,
fpDbgSymTable, FpDbgAvrClasses, FpDbgDisasAvr, FpDbgRsp, FpDbgCommon,
FpImgReaderWinPETypes, FpDbgHardcodedFreepascalInfo, FpDbgCallContextInfo;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('fpdebug', @Register);
end.

View File

@ -8,14 +8,8 @@ unit CmdLineDebuggerBase;
interface
uses
DebugProcess, DebugInstructions, DebuggerPropertiesBase, LazarusPackageIntf;
DebugProcess, DebugInstructions, DebuggerPropertiesBase;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('CmdLineDebuggerBase', @Register);
end.