Bug 1658376 - correctly identify arm64 macOS in FileUtils.cpp; r=mccr8

One more architecture that macOS runs on.

Differential Revision: https://phabricator.services.mozilla.com/D86596
This commit is contained in:
Nathan Froyd 2020-08-11 14:09:28 +00:00
Родитель 3c32012822
Коммит eca436fc65
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -243,6 +243,8 @@ static const uint32_t CPU_TYPE = CPU_TYPE_X86_64;
static const uint32_t CPU_TYPE = CPU_TYPE_POWERPC;
# elif defined(__ppc64__)
static const uint32_t CPU_TYPE = CPU_TYPE_POWERPC64;
# elif defined(__aarch64__)
static const uint32_t CPU_TYPE = CPU_TYPE_ARM64;
# else
# error Unsupported CPU type
# endif