mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-12 00:38:13 +02:00
FpDebug: return dfNotSuitableForOsArch for non Intel
This commit is contained in:
parent
68a4595596
commit
2f1fbf3286
@ -4854,7 +4854,9 @@ end;
|
||||
|
||||
class function TFpDebugDebugger.SupportedFeatures: TDBGFeatures;
|
||||
begin
|
||||
{$IF defined(windows) or defined(linux)}
|
||||
{$IF (defined(windows) or defined(linux)) and
|
||||
(defined(CPU386) or defined(CPUI386) or defined(CPUX86_64) or defined(CPUX64))
|
||||
}
|
||||
Result := [dfEvalFunctionCalls, dfThreadSuspension];
|
||||
{$ELSE}
|
||||
Result := [dfNotSuitableForOsArch];
|
||||
|
Loading…
Reference in New Issue
Block a user