From 113cc6e50907f97bda0cb331c710b262de4226c9 Mon Sep 17 00:00:00 2001 From: joost Date: Sat, 12 Jul 2014 15:40:00 +0000 Subject: [PATCH] FpDebugger (pure): Show warning when there is no Dwarf-debug information available git-svn-id: trunk@45843 - --- components/fpdebug/fpdbgclasses.pp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/fpdebug/fpdbgclasses.pp b/components/fpdebug/fpdbgclasses.pp index 21655e83cd..ed2243b8a7 100644 --- a/components/fpdebug/fpdbgclasses.pp +++ b/components/fpdebug/fpdbgclasses.pp @@ -949,7 +949,9 @@ begin inherited LoadInfo; if DbgInfo.HasInfo then - FSymInstances.Add(Self); + FSymInstances.Add(Self) + else + Log('No Dwarf-debug information available. The debugger will not function properly.',dllInfo); end; function TDbgProcess.GetLastEventProcessIdentifier: THandle;