diff options
author | Matt Housh <jaeger@crux.ninja> | 2019-06-21 17:19:30 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2019-06-21 17:19:30 +0200 |
commit | 5236c3e549a32af968387fe961acd55ac9754b2c (patch) | |
tree | f71e0da1ae91eb2d385c8f1232bcbc2d6deb4d6f | |
parent | 1847d2bdd9b011b4a961fac01ba44ebcce326db3 (diff) | |
download | prt-utils-5236c3e549a32af968387fe961acd55ac9754b2c.tar.gz prt-utils-5236c3e549a32af968387fe961acd55ac9754b2c.tar.xz |
revdep: add ARM AArch64 support
-rw-r--r-- | revdep/elf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/revdep/elf.cpp b/revdep/elf.cpp index 6335714..89eddcb 100644 --- a/revdep/elf.cpp +++ b/revdep/elf.cpp @@ -58,6 +58,8 @@ static bool isValidElf(Elf *elf, int &machine) { case EM_X86_64: break; #elif defined(__arm__) case EM_ARM: break; +#elif defined(__aarch64__) + case EM_AARCH64: break; #else #error "unsupported architecture" #endif |