From cbc796e75da7039b4d9441dd4c8f75fcfada86fd Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 4 May 2004 21:13:35 +0000 Subject: [PATCH] update command guide to have --tool-args git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13359 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/bugpoint.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/CommandGuide/bugpoint.html b/docs/CommandGuide/bugpoint.html index 23b9d7823ed..02cb7e8d810 100644 --- a/docs/CommandGuide/bugpoint.html +++ b/docs/CommandGuide/bugpoint.html @@ -177,6 +177,18 @@ non-obvious ways. Here are some hints and tips:

part of the -args option, not as options to bugpoint itself.

+

  • -tool-args <tool args>
    + Pass all arguments specified after -tool-args to the + LLVM tool under test (llc, lli, etc.) whenever it runs. + You should use this option in the following way: +

    + bugpoint <bugpoint args> -tool-args -- <tool args> +

    + The "--" right after the -tool-args option tells + bugpoint to consider any options starting with - to be + part of the -tool-args option, not as options to + bugpoint itself. (See -args, above.)

    +

  • -check-exit-code={true,false}
    Assume a non-zero exit code or core dump from the test program is a failure. Defaults to true.

    -- 2.11.0