[llvm-commits] CVS: llvm/docs/GettingStarted.html
Chris Lattner
lattner at cs.uiuc.edu
Wed Jun 2 15:41:15 PDT 2004
Changes in directory llvm/docs:
GettingStarted.html updated: 1.56 -> 1.57
---
Log message:
Update to include llc on x86 and other systems
---
Diffs of the changes: (+8 -7)
Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.56 llvm/docs/GettingStarted.html:1.57
--- llvm/docs/GettingStarted.html:1.56 Sun May 23 16:07:26 2004
+++ llvm/docs/GettingStarted.html Wed Jun 2 15:37:02 2004
@@ -1142,18 +1142,19 @@
<p><tt>% llvm-dis < hello.bc | less</tt><p></li>
- <li><p>Compile the program to native Sparc assembly using the code
- generator (assuming you are currently on a Sparc system):</p>
+ <li><p>Compile the program to native assembly using the LLC code
+ generator:</p>
<p><tt>% llc hello.bc -o hello.s</tt></p>
- <li><p>Assemble the native sparc assemble file into a program:</p>
+ <li><p>Assemble the native assembly language file into a program:</p>
- <p><tt>% /opt/SUNWspro/bin/cc -xarch=v9 hello.s -o hello.sparc</tt></p>
+ <p><b>Solaris:</b><tt>% /opt/SUNWspro/bin/cc -xarch=v9 hello.s -o hello.native</tt></p>
+ <p><b>Others:</b><tt>% gcc hello.s -o hello.native</tt></p>
- <li><p>Execute the native sparc program:</p>
+ <li><p>Execute the native code program:</p>
- <p><tt>% ./hello.sparc</tt></p></li>
+ <p><tt>% ./hello.native</tt></p></li>
</ol>
@@ -1207,7 +1208,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2004/05/23 21:07:26 $
+ Last modified: $Date: 2004/06/02 20:37:02 $
</address>
</body>
More information about the llvm-commits
mailing list