[llvm-commits] CVS: llvm/www/docs/GettingStarted.html

John Criswell criswell at choi.cs.uiuc.edu
Thu Jun 26 10:56:02 PDT 2003


Changes in directory llvm/www/docs:

GettingStarted.html updated: 1.12.2.1 -> 1.12.2.2

---
Log message:

Fixed some small typos.
Added a section on disk usage requirements.


---
Diffs of the changes:

Index: llvm/www/docs/GettingStarted.html
diff -u llvm/www/docs/GettingStarted.html:1.12.2.1 llvm/www/docs/GettingStarted.html:1.12.2.2
--- llvm/www/docs/GettingStarted.html:1.12.2.1	Wed Jun 25 16:44:08 2003
+++ llvm/www/docs/GettingStarted.html	Thu Jun 26 10:54:51 2003
@@ -20,6 +20,10 @@
       <li><a href="#starting">Getting started with LLVM</a>
         <ol>
           <li><a href="#requirements">Requirements</a>
+          <ol>
+              <li><a href="#hardware">Hardware</a>
+              <li><a href="#software">Software</a>
+          </ol>
           <li><a href="#quickstart">Getting started quickly (a summary)</a>
           <li><a href="#checkout">Checkout LLVM from CVS</a>
           <li><a href="#terminology">Terminology and Notation</tt></a>
@@ -71,14 +75,39 @@
     <h3><a name="requirements"><b>Requirements</b></a></h3>
     <!--=====================================================================-->
 
+    <!--=====================================================================-->
+    <h4><a name="hardware"><b>Hardware</b></a></h4>
+    <!--=====================================================================-->
     LLVM is known to work on the following platforms:
     <ul>
-        <li> Linux/x86
-        <li> Solaris/Sparc
+        <li> Linux on x86
+        <ul>
+            <li> Approximately 700 MB of Free Disk Space
+            <ul>
+                <li>Source code: 30 MB
+                <li>Object code: 670 MB
+            </ul>
+        </ul>
+        <li> Solaris on Sparc
+        <ul>
+            <li> Approximately 1.3 GB of Free Disk Space
+            <ul>
+                <li>Source code: 30 MB
+                <li>Object code: 1000 MB
+            </ul>
+        </ul>
     </ul>
 
+    LLVM may compile on other platforms.  While the LLVM utilities should work,
+    they will only generate Sparc or x86 machine code.
+
+    <!--=====================================================================-->
+    <h4><a name="software"><b>Software</b></a></h4>
+    <!--=====================================================================-->
+    <p>
     Compiling LLVM requires that you have several different software packages
     installed:
+
     <ul>
         <li> GCC
         <p>
@@ -93,7 +122,7 @@
 
         <li> GNU Make
         <p>
-        The LLVM build system relies upon GNU make extensions.  Therefore, you
+        The LLVM build system relies upon GNU Make extensions.  Therefore, you
         will need GNU Make (sometimes known as gmake) to build LLVM.
         </p>
 
@@ -115,7 +144,7 @@
         If you want to make changes to the autoconf scripts which configure LLVM
         for compilation, you will need GNU autoconf, and consequently, GNU M4.
         LLVM was built with autoconf 2.53, so that release and any later
-        releases should work.
+        release should work.
         </p>
     </ul>
 





More information about the llvm-commits mailing list