Skip to content

Commit

Permalink
Add new CPU subtype "arm64e" for apple format report.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiyuWong committed Dec 22, 2018
1 parent 10c3703 commit 4884c9d
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -256,8 +256,15 @@ - (NSString*) CPUArchForMajor:(cpu_type_t) majorCode minor:(cpu_subtype_t) minor
return @"arm";
}
#ifdef CPU_TYPE_ARM64
case CPU_TYPE_ARM64:
case CPU_TYPE_ARM64: {
switch (minorCode) {
#ifdef CPU_SUBTYPE_ARM64E
case CPU_SUBTYPE_ARM64E:
return @"arm64e";
#endif
}
return @"arm64";
}
#endif
case CPU_TYPE_X86:
return @"i386";
Expand Down

0 comments on commit 4884c9d

Please sign in to comment.