From: Misha Brukman Date: Tue, 22 Jun 2004 18:48:58 +0000 (+0000) Subject: Mention a note about having gccas and gccld in the path when running llvm-gcc. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f089cdf5dfc416b8599d534089d4575eb2c92842;p=oota-llvm.git 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 --- diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 69c3603f1fe..6b8e2c105c0 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -1136,6 +1136,9 @@ are code generators for parts of LLVM infrastructure.

  • Next, compile the C file into a LLVM bytecode file:

    % llvmgcc hello.c -o hello

    +

    Note that you should have already built the tools and they have to be + in your path, at least gccas and gccld.

    +

    This will create two result files: hello and hello.bc. The hello.bc is the LLVM bytecode that corresponds the the compiled program and the library facilities that it