Add IA-64 binary detection (#8645)

This commit is contained in:
Michael Scherer 2017-10-04 15:07:04 +02:00 committed by radare
parent e7462818e7
commit de35a3fb8d

View File

@ -1851,6 +1851,8 @@ char* Elf_(r_bin_elf_get_arch)(ELFOBJ *bin) {
return strdup ("sh");
case EM_V850:
return strdup ("v850");
case EM_IA_64:
return strdup("ia64");
default: return strdup ("x86");
}
}