mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 02:35:29 +00:00
qapi: Fix generators to report command line errors decently
Report to stderr, prefix with the program name. Also reject extra arguments. Backports commit b45409683e829770000a4560ed21e704f87df74c from qemu
This commit is contained in:
parent
9415f6e863
commit
dd67bbeb3b
|
@ -988,7 +988,7 @@ def parse_command_line(extra_options = "", extra_long_options = []):
|
||||||
"input-file=", "output-dir="]
|
"input-file=", "output-dir="]
|
||||||
+ extra_long_options)
|
+ extra_long_options)
|
||||||
except getopt.GetoptError, err:
|
except getopt.GetoptError, err:
|
||||||
print str(err)
|
print >>sys.stderr, "%s: %s" % (sys.argv[0], str(err))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
output_dir = ""
|
output_dir = ""
|
||||||
|
@ -1016,4 +1016,8 @@ def parse_command_line(extra_options = "", extra_long_options = []):
|
||||||
do_c = True
|
do_c = True
|
||||||
do_h = True
|
do_h = True
|
||||||
|
|
||||||
|
if len(args) != 0:
|
||||||
|
print >>sys.stderr, "%s: too many arguments" % sys.argv[0]
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
return (input_file, output_dir, do_c, do_h, prefix, extra_opts)
|
return (input_file, output_dir, do_c, do_h, prefix, extra_opts)
|
||||||
|
|
Loading…
Reference in a new issue