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 | f089cdf5dfc416b8599d534089d4575eb2c92842 (patch) | |
tree | 46eca1a84ebae24af6f21e1e4d45d1e67dee7083 /docs/GettingStarted.html | |
parent | 952e38cf24203f2b5c756f09c8f2919cd5242d45 (diff) | |
download | external_llvm-f089cdf5dfc416b8599d534089d4575eb2c92842.zip external_llvm-f089cdf5dfc416b8599d534089d4575eb2c92842.tar.gz external_llvm-f089cdf5dfc416b8599d534089d4575eb2c92842.tar.bz2 |
Mention a note about having gccas and gccld in the path when running llvm-gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14328 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.html')
-rw-r--r-- | docs/GettingStarted.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 69c3603..6b8e2c1 100644 --- a/docs/GettingStarted.html +++ b/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 |