diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:57:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:57:23 +0000 |
commit | 0b4ffea8665025988a3a5da2106070de561adeb2 (patch) | |
tree | 29717516fb66fdbecdee24ecd980b0f03d769853 /docs/CommandGuide | |
parent | 5cd840c047ab05d345d9b9a92a853b18e784a3dd (diff) | |
download | external_llvm-0b4ffea8665025988a3a5da2106070de561adeb2.zip external_llvm-0b4ffea8665025988a3a5da2106070de561adeb2.tar.gz external_llvm-0b4ffea8665025988a3a5da2106070de561adeb2.tar.bz2 |
Expand the --args section
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r-- | docs/CommandGuide/bugpoint.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/CommandGuide/bugpoint.html b/docs/CommandGuide/bugpoint.html index 78e3ebd..8d83863 100644 --- a/docs/CommandGuide/bugpoint.html +++ b/docs/CommandGuide/bugpoint.html @@ -116,8 +116,17 @@ working properly.<p> run.<p> <li><tt>-args <arguments></tt><br> + All arguments specified after <tt>-args</tt> are passed into the - executed program when the program must be executed.<p> + executed program when the program must be executed. Note that if the + program takes an argument which starts with a '-', you should use: + <p> + <tt>bugpoint .... -args -- (the arguments here)</tt> + <p> + The "<tt>--</tt>" right after the <tt>-args</tt> option tells + <tt>bugpoint</tt> to consider any options starting with <tt>-</tt> to be + part of the <tt>-args</tt> option, not as options to <tt>bugpoint</tt> + itself.<p> <li><tt>-disable-(adce,dce,final-cleanup,simplifycfg)</tt><br> <tt>bugpoint</tt> uses several passes internally for cleanup routines to |