LazDebuggerFp: Version to 0.9 and Makefile

git-svn-id: trunk@62348 -
This commit is contained in:
martin 2019-12-08 02:37:50 +00:00
parent e3313cf793
commit 479ccecb1d
5 changed files with 3426 additions and 2 deletions

3
.gitattributes vendored
View File

@ -2624,6 +2624,9 @@ components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.lpk svneol=nativ
components/lazdebuggers/cmdlinedebuggerbase/cmdlinedebuggerbase.pas svneol=native#text/plain
components/lazdebuggers/cmdlinedebuggerbase/debuginstructions.pas svneol=native#text/plain
components/lazdebuggers/cmdlinedebuggerbase/debugprocess.pas svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/Makefile svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/Makefile.compiled svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/Makefile.fpc svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/fpdebugdebugger.pas svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/lazdebuggerfp.lpk svneol=native#text/plain
components/lazdebuggers/lazdebuggerfp/lazdebuggerfp.pas svneol=native#text/plain

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Makefile Value="2"/>
<Params Value=" -Fu../../../packager/units/$(CPU_TARGET)-$(OS_TARGET);../../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET);../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET);../../debuggerintf/lib/$(CPU_TARGET)-$(OS_TARGET);../../fpdebug/lib/$(CPU_TARGET)-$(OS_TARGET);. -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -Si- lazdebuggerfp.pas"/>
</CONFIG>

View File

@ -0,0 +1,64 @@
# File generated automatically by Lazarus Package Manager
#
# Makefile.fpc for LazDebuggerFp 0.9
#
# This file was generated on 08/12/2019
[package]
name=lazdebuggerfp
version=0.9
[compiler]
unittargetdir=lib/$(CPU_TARGET)-$(OS_TARGET)
unitdir=../../../packager/units/$(CPU_TARGET)-$(OS_TARGET) ../../lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) ../../../lcl/units/$(CPU_TARGET)-$(OS_TARGET) ../../debuggerintf/lib/$(CPU_TARGET)-$(OS_TARGET) ../../fpdebug/lib/$(CPU_TARGET)-$(OS_TARGET) .
options= -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -Si- $(DBG_OPTIONS)
[target]
units=lazdebuggerfp.pas
[clean]
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.res) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) \
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
[prerules]
# LCL Platform
ifndef LCL_PLATFORM
ifeq ($(OS_TARGET),win32)
LCL_PLATFORM=win32
else
ifeq ($(OS_TARGET),win64)
LCL_PLATFORM=win32
else
ifeq ($(OS_TARGET),darwin)
LCL_PLATFORM=carbon
else
LCL_PLATFORM=gtk2
endif
endif
endif
endif
export LCL_PLATFORM
DBG_OPTIONS=
ifeq ($(OS_TARGET),darwin)
DBG_OPTIONS=-gw
endif
[rules]
.PHONY: cleartarget compiled all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/lazdebuggerfp$(PPUEXT)
compiled:
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/LazDebuggerFp.compiled
all: cleartarget $(COMPILER_UNITTARGETDIR) lazdebuggerfp$(PPUEXT) compiled
distclean: clean
${DELTREE} lib/*

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="4">
<Package Version="5">
<Name Value="LazDebuggerFp"/>
<Type Value="RunAndDesignTime"/>
<Author Value="Joost van der Sluis"/>
@ -13,8 +13,12 @@
<CustomOptions Value="$(IDEBuildOptions)"/>
</Other>
</CompilerOptions>
<Description Value="This package adds a stand-alone debugger to the IDE. For now it is only a proof-of-concept. Evaluating data is not (yet) possible."/>
<Description Value="This package is a debugger backend for the Lazarus-IDE.
- It is based on FpDebug and requires no external debugger executable.
- It currently supports Windows and Linux.
"/>
<License Value="GPLv2"/>
<Version Minor="9"/>
<Files Count="1">
<Item1>
<Filename Value="fpdebugdebugger.pas"/>