diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-22 18:48:58 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-22 18:48:58 +0000 |
| commit | 6c2cf089811f1f1aa152136d74b4b19975886aca (patch) | |
| tree | 16fe33ec3f85f04a8cf1fc9685751d0c67de574f /llvm | |
| parent | c5300a4f046d897bbe173832dc52f3883085e7c9 (diff) | |
| download | bcm5719-llvm-6c2cf089811f1f1aa152136d74b4b19975886aca.tar.gz bcm5719-llvm-6c2cf089811f1f1aa152136d74b4b19975886aca.zip | |
Mention a note about having gccas and gccld in the path when running llvm-gcc.
llvm-svn: 14328
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/docs/GettingStarted.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html index 69c3603f1fe..6b8e2c105c0 100644 --- a/llvm/docs/GettingStarted.html +++ b/llvm/docs/GettingStarted.html @@ -1136,6 +1136,9 @@ are code generators for parts of LLVM infrastructure.</p> <li><p>Next, compile the C file into a LLVM bytecode file:</p> <p><tt>% llvmgcc hello.c -o hello</tt></p> + <p>Note that you should have already built the tools and they have to be + in your path, at least <tt>gccas</tt> and <tt>gccld</tt>.</p> + <p>This will create two result files: <tt>hello</tt> and <tt>hello.bc</tt>. The <tt>hello.bc</tt> is the LLVM bytecode that corresponds the the compiled program and the library facilities that it |

