Skip to content

Commit

Permalink
Fix ARM64 detection logic
Browse files Browse the repository at this point in the history
  • Loading branch information
trou committed Nov 22, 2018
1 parent dee2c94 commit d48073a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/idabincat/analyzer_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ def get_arch():
if procname == "ppc":
return "powerpc"
elif procname.startswith("arm"):
if info.is_32bit():
return "armv7"
else:
if info.is_64bit():
return "armv8"
else:
return "armv7"
bc_log.error("Unknown architecture")
return None

Expand Down

0 comments on commit d48073a

Please sign in to comment.