mirror of
https://github.com/qemu/qemu.git
synced 2024-11-29 06:43:37 +08:00
linux-user: Treat --foo options the same as -foo
The system mode binaries provide a similar alias and it makes common options like --version and --help work as expected. Signed-off-by: Meador Inge <meadori@codesourcery.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
4d1275c24d
commit
ba02577cad
@ -4024,6 +4024,10 @@ static int parse_args(int argc, char **argv)
|
||||
if (!strcmp(r, "-")) {
|
||||
break;
|
||||
}
|
||||
/* Treat --foo the same as -foo. */
|
||||
if (r[0] == '-') {
|
||||
r++;
|
||||
}
|
||||
|
||||
for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
|
||||
if (!strcmp(r, arginfo->argv)) {
|
||||
|
Loading…
Reference in New Issue
Block a user