mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 08:58:23 +02:00
LazDebuggerLldb: Add default lldb exe path (*nix)
git-svn-id: trunk@60404 -
This commit is contained in:
parent
f5f55eaf16
commit
4bb5c5ff41
@ -333,7 +333,7 @@ type
|
||||
public
|
||||
// class function CreateProperties: TDebuggerProperties; override; // Creates debuggerproperties
|
||||
class function Caption: String; override;
|
||||
// class function ExePaths: String; override;
|
||||
class function ExePaths: String; override;
|
||||
|
||||
constructor Create(const AExternalDebugger: String); override;
|
||||
destructor Destroy; override;
|
||||
@ -2824,6 +2824,15 @@ begin
|
||||
Result := 'LLDB Debugger (Alpha)';
|
||||
end;
|
||||
|
||||
class function TLldbDebugger.ExePaths: String;
|
||||
begin
|
||||
{$IFdef MSWindows}
|
||||
Result := '';
|
||||
{$ELSE}
|
||||
Result := '/usr/bin/lldb';
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
constructor TLldbDebugger.Create(const AExternalDebugger: String);
|
||||
begin
|
||||
inherited Create(AExternalDebugger);
|
||||
|
Loading…
Reference in New Issue
Block a user