[llvm-commits] CVS: llvm/docs/CommandGuide/llvmgcc.html

Brian Gaeke gaeke at cs.uiuc.edu
Sun Oct 19 13:16:00 PDT 2003


Changes in directory llvm/docs/CommandGuide:

llvmgcc.html updated: 1.3 -> 1.4

---
Log message:

Clarify the roles of gccld and gccas.
Mention that they should really read the gcc manual.


---
Diffs of the changes:  (+8 -4)

Index: llvm/docs/CommandGuide/llvmgcc.html
diff -u llvm/docs/CommandGuide/llvmgcc.html:1.3 llvm/docs/CommandGuide/llvmgcc.html:1.4
--- llvm/docs/CommandGuide/llvmgcc.html:1.3	Tue Oct  7 15:12:04 2003
+++ llvm/docs/CommandGuide/llvmgcc.html	Sun Oct 19 13:15:18 2003
@@ -28,9 +28,12 @@
 upon the options.
 <p>
 
-The <tt>llvmgcc</tt> program uses the <a href="gccas.html"><tt>gccas</tt></a>
-and <a href="gccld.html"><tt>gccld</tt></a> programs to do the work of creating
-complete programs.
+Unless the <tt>-S</tt> option is specified, <tt>llvmgcc</tt> will use the
+<a href="gccas.html"><tt>gccas</tt></a> program to perform some optimizations
+and create an LLVM bytecode file. Unless the <tt>-c</tt> option is specified,
+<tt>llvmgcc</tt> will also use the <a href="gccld.html"><tt>gccld</tt></a>
+program to perform further optimizations and link the resulting bytecode
+file(s) with support libraries to create an executable program.
 <p>
 
 Being derived from GCC, llvmgcc has many of GCC's features and accepts most of
@@ -100,7 +103,8 @@
 </h3>
 <A HREF="llvmgxx.html"><tt>llvmg++</tt></A>,
 <A HREF="gccas.html"><tt>gccas</tt></A>,
-<A HREF="gccld.html"><tt>gccld</tt></A>
+<A HREF="gccld.html"><tt>gccld</tt></A>,
+and the Info documentation for <tt>gcc</tt>.
 
 <HR>
 Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.





More information about the llvm-commits mailing list