From 4dc9afad0aa1ee9a2ceab0e63aa90aca8a1bfc7b Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Mon, 20 Nov 2006 06:04:46 +0000 Subject: [PATCH] Adding 1.9 release and removing references to cfrontend git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31870 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index c627731a062..ed7f3ac834f 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -119,11 +119,11 @@ and performance.
  • Install the GCC front end if you intend to compile C or C++:
    1. cd where-you-want-the-C-front-end-to-live
    2. -
    3. gunzip --stdout cfrontend.platform.tar.gz | tar -xvf - +
    4. gunzip --stdout llvm-gcc.platform.tar.gz | tar -xvf -
    5. -
    6. cd cfrontend/platform
      +
    7. cd llvm-gcc3.4/platform (llvm-gcc3.4 only)
      ./fixheaders
    8. -
    9. Add the cfrontend's "bin" directory to your PATH variable.
    10. +
    11. Add llvm-gcc's "bin" directory to your PATH variable.
  • Get the LLVM Source Code @@ -592,7 +592,7 @@ All these paths are absolute:

    This is where the LLVM GCC Front End is installed.

    For the pre-built GCC front end binaries, the LLVMGCCDIR is - cfrontend/platform/llvm-gcc. + llvm-gcc/platform/llvm-gcc. @@ -643,21 +643,19 @@ compressed with the gzip program.

    llvm-test-x.y.tar.gz
    Source release for the LLVM test suite.
    -
    cfrontend-x.y.source.tar.gz
    -
    Source release of the GCC front end.
    - -
    cfrontend-x.y.i686-redhat-linux-gnu.tar.gz
    -
    Binary release of the GCC front end for Linux/x86.
    +
    llvm-gcc3.4-x.y.source.tar.gz
    +
    Source release of the LLVM GCC 3.4 front end.
    + +
    llvm-gcc3.4-x.y-platform.tar.gz
    +
    Binary release of the LLVM GCC 3.4 for a specific platform.
    llvm-gcc4-x.y.source.tar.gz
    Source release of the llvm-gcc4 front end. See README.LLVM in the root directory for build instructions.
    -
    llvm-gcc4-x.y.powerpc-apple-darwin8.6.0.tar.gz
    -
    Binary release of the llvm-gcc4 front end for MacOS X/PowerPC.
    +
    llvm-gcc4-x.y-platform.tar.gz
    +
    Binary release of the llvm-gcc4 front end for a specific platform.
    -
    llvm-gcc4-x.y.i686-apple-darwin8.6.1.tar.gz
    -
    Binary release of the llvm-gcc4 front end for MacOS X/X86.

    It is also possible to download the sources of the llvm-gcc4 front end from a @@ -694,6 +692,8 @@ revision), you can specify a label. The following releases have the following labels:

      +
    • Release 1.9: RELEASE_19
    • D +
    • Release 1.8: RELEASE_18
    • Release 1.7: RELEASE_17
    • Release 1.6: RELEASE_16
    • Release 1.5: RELEASE_15
    • @@ -741,13 +741,13 @@ location must be specified when the LLVM suite is configured.

      1. cd where-you-want-the-front-end-to-live
      2. -
      3. gunzip --stdout cfrontend-version.platform.tar.gz | tar -xvf +
      4. gunzip --stdout llvmgcc-version.platform.tar.gz | tar -xvf -
      -

      Next, you will need to fix your system header files:

      +

      Next, you will need to fix your system header files (llvm-gcc3.4 only):

      -

      cd cfrontend/platform
      +

      cd llvm-gcc3.4/platform
      ./fixheaders

      The binary versions of the GCC front end may not suit all of your needs. For -- 2.11.4.GIT