We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0073c5 + a285110 commit a126221Copy full SHA for a126221
src/MachO/constants.jl
@@ -10,8 +10,9 @@
10
const FAT_CIGAM = bswap(FAT_MAGIC)
11
end
12
13
-const CPU_ARCH_MASK = 0xff000000
14
-const CPU_ARCH_ABI64 = 0x01000000
+const CPU_ARCH_MASK = 0xff000000
+const CPU_ARCH_ABI64 = 0x01000000
15
+const CPU_ARCH_ABI64_32 = 0x02000000
16
17
@constants CPUTYPES "CPU_TYPE_" begin
18
const CPU_TYPE_ANY = reinterpret(UInt32,Int32(-1))
@@ -35,6 +36,8 @@ const CPU_ARCH_ABI64 = 0x01000000
35
36
# skip
37
const CPU_TYPE_POWERPC = 18
38
const CPU_TYPE_POWERPC64 = CPU_TYPE_POWERPC | CPU_ARCH_ABI64
39
+ const CPU_TYPE_ARM64 = CPU_TYPE_ARM | CPU_ARCH_ABI64
40
+ const CPU_TYPE_ARM64_32 = CPU_TYPE_ARM | CPU_ARCH_ABI64_32
41
42
43
# TODO subtype constants
0 commit comments