aboutsummaryrefslogtreecommitdiffstats
path: root/docs/GettingStarted.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-02 20:37:02 +0000
committerChris Lattner <sabre@nondot.org>2004-06-02 20:37:02 +0000
commitb3bbcba45e12eb68a1040f47b2c281d8b87d78e9 (patch)
tree88b728a3722a234201daa9ae4d4e6aaad2b7f52f /docs/GettingStarted.html
parent53d91b23a6ab629e5b9f77d993ff4839f39f5047 (diff)
downloadexternal_llvm-b3bbcba45e12eb68a1040f47b2c281d8b87d78e9.zip
external_llvm-b3bbcba45e12eb68a1040f47b2c281d8b87d78e9.tar.gz
external_llvm-b3bbcba45e12eb68a1040f47b2c281d8b87d78e9.tar.bz2
Update to include llc on x86 and other systems
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.html')
-rw-r--r--docs/GettingStarted.html13
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 8f7ab40..2d3c33c 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -1142,18 +1142,19 @@ are code generators for parts of LLVM infrastructure.</p>
<p><tt>% llvm-dis &lt; 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>