From: Brendan Hansen Date: Sat, 12 Dec 2020 04:49:52 +0000 (-0600) Subject: updated '--verbose' CLI flag X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=f0e707d1e1ddc6d2fb370fe50074a6b8458301a3;p=onyx.git updated '--verbose' CLI flag --- diff --git a/onyx b/onyx index 1bc237a9..ade42121 100755 Binary files a/onyx and b/onyx differ diff --git a/src/onyx.c b/src/onyx.c index 812452f8..a0496c97 100644 --- a/src/onyx.c +++ b/src/onyx.c @@ -89,7 +89,7 @@ static OnyxCompileOptions compile_opts_parse(bh_allocator alloc, int argc, char if (!strcmp(argv[i], "-o")) { options.target_file = argv[++i]; } - else if (!strcmp(argv[i], "-verbose")) { + else if (!strcmp(argv[i], "--verbose") || !strcmp(argv[i], "-V")) { options.verbose_output = 1; } else if (!strcmp(argv[i], "-I")) {