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
signature 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) {
466466 "\n"
467467 "General Options:\n"
468468 " --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"
471469 " --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"
478470 " --prefix [path] Override default install prefix\n"
471 " --search-prefix [path] Add a path to look for binaries, libraries, headers\n"
479472 "\n"
480473 "Project-specific options become available when the build file is found.\n"
481474 "\n"
std/special/build_runner.zig-1
......@@ -164,7 +164,6 @@ fn usage(builder: *Builder, already_ran_build: bool, out_stream: var) !void {
164164 \\
165165 \\General Options:
166166 \\ --help Print this help and exit
167 \\ --init Generate a build.zig template
168167 \\ --verbose Print commands before executing them
169168 \\ --prefix [path] Override default install prefix
170169 \\ --search-prefix [path] Add a path to look for binaries, libraries, headers