diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-01-01 15:05:34 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-01-01 15:05:34 +0100 |
commit | 48ab29bc4227b69c55eb50190ecf73d569c114e9 (patch) | |
tree | 5d37d6cae8a9091a9e00cbdd705c7706f5c653a9 /macho.h | |
parent | BUGS: update email addresses (diff) | |
download | pax-utils-48ab29bc4227b69c55eb50190ecf73d569c114e9.tar.gz pax-utils-48ab29bc4227b69c55eb50190ecf73d569c114e9.tar.bz2 pax-utils-48ab29bc4227b69c55eb50190ecf73d569c114e9.zip |
{,pax}macho: add support for arm64 arch
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'macho.h')
-rw-r--r-- | macho.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * Copyright 2008-2012 Gentoo Foundation + * Copyright 2008-2021 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 */ @@ -128,6 +128,7 @@ struct mach_header_64 /* cputype */ #define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64) #define CPU_TYPE_X86_64 (CPU_TYPE_I386 | CPU_ARCH_ABI64) +#define CPU_TYPE_ARM64 (CPU_TYPE_ARM | CPU_ARCH_ABI64) struct load_command { |