authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-19 13:26:35-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-19 13:26:35-05:00
log89e82281be73701f5a634770366e9dca5a0e89a9
tree0e1d6f73153461ae535f01c7577bf2ff7115cdb2
parentb1a676b279db81e83f694142590fca9b53a6a235
signaturelock-open Commit is signed but in an unrecognized format.

fix incorrect --help text


2 files changed, 1 insertions(+), 9 deletions(-)

src/main.cpp+1-8
...@@ -466,16 +466,9 @@ int main(int argc, char **argv) {...@@ -466,16 +466,9 @@ int main(int argc, char **argv) {
466 "\n"466 "\n"
467 "General Options:\n"467 "General Options:\n"
468 " --help Print this help and exit\n"468 " --help Print this help and exit\n"
469 " --build-file [file] Override path to build.zig\n"
470 " --cache-dir [path] Override path to cache directory\n"
471 " --verbose Print commands before executing them\n"469 " --verbose Print commands before executing them\n"
472 " --verbose-tokenize Enable compiler debug output for tokenization\n"
473 " --verbose-ast Enable compiler debug output for parsing into an AST\n"
474 " --verbose-link Enable compiler debug output for linking\n"
475 " --verbose-ir Enable compiler debug output for Zig IR\n"
476 " --verbose-llvm-ir Enable compiler debug output for LLVM IR\n"
477 " --verbose-cimport Enable compiler debug output for C imports\n"
478 " --prefix [path] Override default install prefix\n"470 " --prefix [path] Override default install prefix\n"
471 " --search-prefix [path] Add a path to look for binaries, libraries, headers\n"
479 "\n"472 "\n"
480 "Project-specific options become available when the build file is found.\n"473 "Project-specific options become available when the build file is found.\n"
481 "\n"474 "\n"
std/special/build_runner.zig-1
...@@ -164,7 +164,6 @@ fn usage(builder: *Builder, already_ran_build: bool, out_stream: var) !void {...@@ -164,7 +164,6 @@ fn usage(builder: *Builder, already_ran_build: bool, out_stream: var) !void {
164 \\164 \\
165 \\General Options:165 \\General Options:
166 \\ --help Print this help and exit166 \\ --help Print this help and exit
167 \\ --init Generate a build.zig template
168 \\ --verbose Print commands before executing them167 \\ --verbose Print commands before executing them
169 \\ --prefix [path] Override default install prefix168 \\ --prefix [path] Override default install prefix
170 \\ --search-prefix [path] Add a path to look for binaries, libraries, headers169 \\ --search-prefix [path] Add a path to look for binaries, libraries, headers