diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-05-04 18:15:33 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-05-04 18:15:33 +0000 |
| commit | f3d99aaa22e0be07c98e5c250959cd6ddacc81c9 (patch) | |
| tree | d6673bfae25778726ea57ca54a69dbea2411733b /llvm/docs/FAQ.html | |
| parent | eeb233793d517e418b5668605acd54e004ba6ab9 (diff) | |
| download | bcm5719-llvm-f3d99aaa22e0be07c98e5c250959cd6ddacc81c9.tar.gz bcm5719-llvm-f3d99aaa22e0be07c98e5c250959cd6ddacc81c9.zip | |
update instructions for llvm-gcc4, the brave new world! PR7037
llvm-svn: 103023
Diffstat (limited to 'llvm/docs/FAQ.html')
| -rw-r--r-- | llvm/docs/FAQ.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/docs/FAQ.html b/llvm/docs/FAQ.html index 337866cd9dd..ad97be16b23 100644 --- a/llvm/docs/FAQ.html +++ b/llvm/docs/FAQ.html @@ -632,22 +632,22 @@ Stop. <p>Use commands like this:</p> <ol> - <li><p>Compile your program as normal with llvm-g++:</p> + <li><p>Compile your program with llvm-g++:</p> <pre class="doc_code"> -% llvm-g++ x.cpp -o program +% llvm-g++ -emit-llvm x.cpp -o program.bc -c </pre> <p>or:</p> <pre class="doc_code"> -% llvm-g++ a.cpp -c -% llvm-g++ b.cpp -c -% llvm-g++ a.o b.o -o program +% llvm-g++ a.cpp -c -emit-llvm +% llvm-g++ b.cpp -c -emit-llvm +% llvm-ld a.o b.o -o program </pre> - <p>With llvm-gcc3, this will generate program and program.bc. The .bc - file is the LLVM version of the program all linked together.</p></li> + <p>This will generate program and program.bc. The .bc + file is the LLVM version of the program all linked together.</p></li> <li><p>Convert the LLVM code to C code, using the LLC tool with the C backend:</p> |

