[llvm-commits] CVS: llvm/docs/CommandGuide/bugpoint.html
Chris Lattner
lattner at cs.uiuc.edu
Sat Oct 18 15:58:00 PDT 2003
Changes in directory llvm/docs/CommandGuide:
bugpoint.html updated: 1.8 -> 1.9
---
Log message:
Expand the --args section
---
Diffs of the changes: (+10 -1)
Index: llvm/docs/CommandGuide/bugpoint.html
diff -u llvm/docs/CommandGuide/bugpoint.html:1.8 llvm/docs/CommandGuide/bugpoint.html:1.9
--- llvm/docs/CommandGuide/bugpoint.html:1.8 Sat Oct 18 15:54:37 2003
+++ llvm/docs/CommandGuide/bugpoint.html Sat Oct 18 15:57:23 2003
@@ -116,8 +116,17 @@
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
More information about the llvm-commits
mailing list