Skip to content

Commit

Permalink
Fixed architecture misassignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Samuel committed Feb 1, 2018
1 parent c98b48c commit a9e5bc3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions loader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ const char *binary_types_descr[][2] = {

const char *binary_arch_descr[][2] = {
{"auto" , "Try to automatically determine architecture (default)"},
{"x86" , "x86: Specify x86-16, x86-32 or x86-64 (default x86-64)"},
{"aarch64" , "aarch64 (experimental)"},
{"arm" , "arm (experimental)"},
{"mips" , "mips (experimental)"},
{"ppc" , "ppc: Specify ppc-32 or ppc-64 (default ppc-64, experimental)"},
{"x86" , "x86: Specify x86-16, x86-32 or x86-64 (default x86-64)"},
{NULL , NULL}
};

Expand Down Expand Up @@ -551,4 +551,3 @@ unload_binary(Binary *bin)
}
}
}

0 comments on commit a9e5bc3

Please sign in to comment.