mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 10:59:29 +02:00
LazDebuggerFpLldb: allow external dwarf symbols on Mac
git-svn-id: branches/fixes_2_0@60170 -
This commit is contained in:
parent
fa637c6909
commit
ce95a8b81d
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user