mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-03-02 22:55:18 +00:00
Add arm64 identification to crash report text generation
This commit is contained in:
@@ -41,8 +41,6 @@
|
||||
*/
|
||||
#ifndef CPU_SUBTYPE_ARM_V7S
|
||||
# define CPU_SUBTYPE_ARM_V7S 11
|
||||
#elif !TARGET_OS_IPHONE
|
||||
# error CPU_SUBTYPE_ARM_V7S is now defined by the SDK. Please remove this define.
|
||||
#endif
|
||||
|
||||
|
||||
@@ -372,6 +370,10 @@ NSInteger binaryImageSort(id binary1, id binary2, void *context);
|
||||
archName = @"armv7s";
|
||||
break;
|
||||
|
||||
case CPU_SUBTYPE_ARM64_ALL:
|
||||
archName = @"arm64";
|
||||
break;
|
||||
|
||||
default:
|
||||
archName = @"arm-unknown";
|
||||
break;
|
||||
@@ -472,6 +474,10 @@ NSInteger binaryImageSort(id binary1, id binary2, void *context);
|
||||
archName = @"armv7s";
|
||||
break;
|
||||
|
||||
case CPU_SUBTYPE_ARM64_ALL:
|
||||
archName = @"arm64";
|
||||
break;
|
||||
|
||||
default:
|
||||
archName = @"arm-unknown";
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user