FpDebug: return dfNotSuitableForOsArch for non Intel

This commit is contained in:
Martin 2024-01-27 14:09:40 +01:00
parent 68a4595596
commit 2f1fbf3286

View File

@ -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];