LazDebuggerFpLldb: allow external dwarf symbols on Mac

git-svn-id: branches/fixes_2_0@60170 -
This commit is contained in:
mattias 2019-01-24 09:33:20 +00:00
parent fa637c6909
commit ce95a8b81d

View File

@ -1557,11 +1557,15 @@ end;
class function TFpLldbDebugger.RequiredCompilerOpts(ATargetCPU, ATargetOS: String): TDebugCompilerRequirements;
begin
{$IFDEF MacOs}
{$ifdef CD_Cocoa}
Result:=[dcrDwarfOnly];
{$ELSE}
{$IFDEF DARWIN}
Result:=[dcrDwarfOnly];
{$ELSE}
Result:=[dcrNoExternalDbgInfo, dcrDwarfOnly];
{$ENDIF}
{$ENDIF}
end;
constructor TFpLldbDebugger.Create(const AExternalDebugger: String);