mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 09:00:58 +02:00
FpDebug: fix compile on Mac
git-svn-id: trunk@62771 -
This commit is contained in:
parent
f867f60b13
commit
57dc078ec5
@ -718,8 +718,8 @@ end;
|
||||
class function TDbgDarwinProcess.isSupported(ATargetInfo: TTargetDescriptor
|
||||
): boolean;
|
||||
begin
|
||||
result := (target.OS = osDarwin) and
|
||||
(target.machineType = mtX86_64);
|
||||
result := (ATargetInfo.OS = osDarwin) and
|
||||
(ATargetInfo.machineType = mtX86_64);
|
||||
end;
|
||||
|
||||
function TDbgDarwinProcess.ReadData(const AAdress: TDbgPtr;
|
||||
|
Loading…
Reference in New Issue
Block a user