diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-06-02 20:37:02 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-06-02 20:37:02 +0000 |
| commit | 0379351667ba4e5f3359b0194def8551ccad32e9 (patch) | |
| tree | a7013c000a5014e9ed8a76e5cc095d3865c20ee8 | |
| parent | e35ca2ec1cec8b80ffaa27cb77b451c040e34c9d (diff) | |
| download | bcm5719-llvm-0379351667ba4e5f3359b0194def8551ccad32e9.tar.gz bcm5719-llvm-0379351667ba4e5f3359b0194def8551ccad32e9.zip | |
Update to include llc on x86 and other systems
llvm-svn: 13967
| -rw-r--r-- | llvm/docs/GettingStarted.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html index 8f7ab4003ed..2d3c33cc914 100644 --- a/llvm/docs/GettingStarted.html +++ b/llvm/docs/GettingStarted.html @@ -1142,18 +1142,19 @@ are code generators for parts of LLVM infrastructure.</p> <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> |

