From 748d82e730dd197cdb91035c90ba33bb06e93e53 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 15 Nov 2004 21:15:12 +0000 Subject: [PATCH] Merge content of RequiredSoftware.html into GettingStarted.html Remove now defunct RequiredSoftware.html. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17850 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 186 +++++++++++++++++++++++++++++-------- docs/RequiredSoftware.html | 94 ------------------- 2 files changed, 146 insertions(+), 134 deletions(-) delete mode 100644 docs/RequiredSoftware.html diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 336592cc9b5..d009ae9dd22 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -2,6 +2,7 @@ "http://www.w3.org/TR/html4/strict.dtd"> + Getting Started with LLVM System @@ -267,59 +268,164 @@ href="CFEBuildInstrs.html">try to compile it on your platform.

-
- Software -
- +
Software
+

Compiling LLVM requires that you have several software packages + installed. The table below lists those required packages. The Package column + is the usual name for the software package that LLVM depends on. The Version + column provides "known to work" versions of the package. The Notes column + describes how LLVM uses the package and provides other details.

+ + -

Compiling LLVM requires that you have several software packages -installed:

+ + + + + - + + + + -
  • GNU Make
  • + + + + + -
  • Flex
  • + + + + + -
  • Bison
  • - + + + + + -

    There are some additional tools that you may want to have when working with -LLVM:

    + + + + + - + + + + -

    If you want to make changes to the configure scripts, you will need GNU - autoconf (2.57 or higher), and consequently, GNU M4 (version 1.4 or - higher). You will also need automake. Any old version of - automake from 1.4p5 on should work; we only use aclocal from that - package.

    + + + + -
  • QMTest 2.0.3
  • -
  • Python +
  • + + + + -

    - These are needed to use the LLVM test suite. Please note that newer - versions of QMTest may not work with the LLVM test suite. QMTest 2.0.3 - can be retrieved from the QMTest CVS repository using the following - commands:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    PackageVersionNotes
    GNU Make3.79, 3.79.1Makefile/build processor
    GCC3.4.2C/C++ compiler (Note 4)
    Flex2.5.4LEX compiler
    Bison1.35YACC compiler
    DejaGnu1.4.2Automated test suite (Note 2)
    tcl8.3, 8.4Automated test suite (Note 2)
    expect5.38.0Automated test suite (Note 2)
    GNU M4 + 1.4Macro processor for configuration (Note 1)
    GNU Autoconf2.59Configuration script builder (Note 1)
    GNU Automake2.59aclocal macro generator (Note 1)
    perl>5.6.0Nightly tester, utilities
    libtool1.5.10Shared library manager (Note 1)
    QMTest2.0.3Automated test suite (Note 2, + Note 3)
    Python2.3Automated test suite (Note 2, + Note 3)
    CVS>1.11CVS access to LLVM (Note 5)
    + +

    Notes:

    +
      +
    1. If you want to make changes to the configure scripts, + you will need GNU autoconf (2.59), and consequently, GNU M4 (version 1.4 + or higher). You will also need automake. We only use aclocal from that + package.
    2. +
    3. Only needed if you want to run the automated test + suite in the test directory.
    4. +
    5. These are needed to use the LLVM test suite. + Please note that newer versions of QMTest may not work with the LLVM + test suite. QMTest 2.0.3 can be retrieved from the QMTest CVS + repository using the following commands:
        -
      • cvs -d :pserver:anoncvs@cvs.codesourcery.com:/home/qm/Repository login -
      • -
      • When prompted, use anoncvs as the password. -
      • -
      • cvs -d :pserver:anoncvs@cvs.codesourcery.com:/home/qm/Repository co -r release-2-0-3 qm -
      • +
      • cvs -d :pserver:anoncvs@cvs.codesourcery.com:/home/qm/Repository login
      • +
      • When prompted, use anoncvs as the password.
      • +
      • cvs -d :pserver:anoncvs@cvs.codesourcery.com:/home/qm/Repository co -r release-2-0-3 qm
      -
    6. - - + +
    7. Only the C and C++ languages needed so there's no need + to build the other languages for LLVM's purposes. See + below for specific version info. +
    8. +
    9. You only need CVS if you intend to build from the + latest LLVM sources. If you're working from a release distribution, you + don't need CVS.
    10. +
    +

    Additionally, your compilation host is expected to have the usual + plethora of Unix utilities. Specifically:

    +
    diff --git a/docs/RequiredSoftware.html b/docs/RequiredSoftware.html deleted file mode 100644 index fd0e84b7440..00000000000 --- a/docs/RequiredSoftware.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - Software LLVM Requires - - - - - - - -
    Software LLVM Requires
    -
    -

    Written by Reid Spencer

    -
    - -
    -

    This document provides a list of the software packages that LLVM depends on - in order to be built successfully from CVS sources. The requirements for - building from a distribution are fewer. Items only needed for building from a - distribution are noted with an asterisk (*).

    -

    The table below shows the required software packages. Package is the usual - name for a given software package that LLVM depends on. Version is a list of - "known to work" versions of the package. Usage describes how LLVM uses the - package.

    - - - - - - - - - - - - - - -
    PackageVersionUsage
    autoconf*2.59Configuration script builder
    bison1.35YACC compiler for various languages
    cvs*1.11Obtaining latest CVS versions
    deja-gnu1.4.2Automated test suite
    flex2.5.4LEX compiler for various languages
    expect5.38.0Automated test suite
    perl>5.6.0Nightly tester, utilities
    GCC3.4.2C/C++ compiler
    GNU Make3.79, 3.79.1Makefile/build - processor
    libtool*1.5.10Shared library manager
    qmtest2.0.3Automated test suite
    tcl8.3Automated test suite
    -

    Additionally, your compilation host is expected to have the usual plethora of - Unix utilities. Specifically:

    - -
    - - -
    -
    Valid CSS!Valid HTML 4.01!The LLVM Team
    -The LLVM Compiler Infrastructure
    -Last modified: $Date$ -
    - - -