From 312a68c4ce08b7ce6e6312383bd1db4ed4cfefcb Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 7 Jul 2003 19:27:35 +0000 Subject: Added information about how to unpack the distribution for those who do not have access to CVS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7116 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index c56f5c8608..75048cbe6c 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -30,6 +30,7 @@
  • Getting started quickly (a summary)
  • Terminology and Notation
  • Setting up your environment +
  • Unpacking the LLVM Archives
  • Checkout LLVM from CVS
  • Local LLVM Configuration
  • Compiling the LLVM Suite Source Code @@ -327,12 +328,55 @@ your PATH or typing in its complete pathname. + +

    Unpacking the LLVM Archives

    + + +

    + If you have the LLVM distribution, you will need to unpack it before you + can begin to compile it. LLVM is distributed as a set of four files. Each + file is a TAR archive that is compressed with the gzip program. +

    + +

    The four files are the following: +

    +
    llvm.tar.gz +
    This is the source code to the LLVM suite. +

    + +

    cfrontend.sparc.tar.gz +
    This is the binary release of the C front end for Solaris/Sparc. +

    + +

    cfrontend.x86.tar.gz +
    This is the binary release of the C front end for Linux/x86. +

    + +

    cfrontend-src.tar.gz +
    This is the source code release of the C front end. +

    +

    + +

    + To unpack the files, take each one, unzip it, and then untar it. A fast + way to do that is with the following: +

    + + gunzip --stdout name of file | tar -xvf - + +

    + For example, to extract the LLVM source code, use the following command: +

    + + gunzip --stdout llvm.tar.gz | tar -xvf - +

    Checkout LLVM from CVS

    -

    To get a fresh copy of the entire source code, all you - need to do is check it out from CVS as follows: +

    If you have access to our CVS repository, you can get a fresh copy of + the entire source code. All you need to do is check it out from CVS as + follows: