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

Misha Brukman brukman at cs.uiuc.edu
Sun Nov 14 21:20:04 PST 2004



Changes in directory llvm/docs:

GettingStarted.html updated: 1.72 -> 1.73
---
Log message:

Replace the textual description with table specifying disk space requirements


---
Diffs of the changes:  (+55 -60)

Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.72 llvm/docs/GettingStarted.html:1.73
--- llvm/docs/GettingStarted.html:1.72	Thu Nov 11 01:30:27 2004
+++ llvm/docs/GettingStarted.html	Sun Nov 14 23:19:53 2004
@@ -188,66 +188,61 @@
 
 <p>LLVM is known to work on the following platforms:</p>
 
-<ul>
-
-  <li>Linux on x86 (Pentium and above)
-  <ul>
-    <li>Approximately 2.6 GB of Free Disk Space
-    <ul>
-      <li>Source code: 57 MB</li>
-      <li>Object code: 2.5 GB</li>
-      <li>GCC front end: 30 MB</li>
-    </ul></li>
-  </ul>
-  </li>
-
-  <li>Solaris on SparcV9 (Ultrasparc)
-  <ul>
-    <li>Approximately 2.6 GB of Free Disk Space
-      <ul>
-        <li>Source code: 57 MB</li>
-        <li>Object code: 2.5 GB</li>
-        <li>GCC front end: 46 MB</li>
-      </ul></li>
-  </ul>
-  </li>
-
-  <li>FreeBSD on x86 (Pentium and above)
-  <ul>
-    <li>Approximately 1 GB of Free Disk Space
-    <ul>
-      <li>Source code: 57 MB</li>
-      <li>Object code: 850 MB</li>
-      <li>GCC front end: 40 MB</li>
-    </ul></li>
-  </ul>
-  </li>
-
-  <li>MacOS X on PowerPC
-  <ul>
-    <li>Experimental support for static native code generation
-    <li>Approximately 1.6 GB of Free Disk Space
-      <ul>
-        <li>Source code: 57 MB</li>
-        <li>Object code: 1.5 GB</li>
-        <li>GCC front end: 36 MB</li>
-      </ul></li>
-  </ul>
-  </li>
-
-  <li>AIX on PowerPC
-  <ul>
-    <li><div class="doc_warning">No native code generation</div>
-    <li>Approximately 2 GB of Free Disk Space
-      <ul>
-        <li>Source code: 92 MB</li>
-        <li>Object code: 2.8 GB</li>
-        <li>GCC front end: 123 MB</li>
-      </ul></li>
-  </ul>
-  </li>
+<table cellpadding="3">
+<tr>
+  <th>OS</th>
+  <th>Arch</th>
+  <th>Source code</th>
+  <th>Object code</th>
+  <th>GCC front end</th>
+  <th>Total space</th>
+</tr>
+<tr>
+  <td>Linux</td>
+  <td>x86<sup>1</sup></td>
+  <td>57 MB</td>
+  <td>2.5 GB</td>
+  <td>30 MB</td>
+  <td>2.6 GB</td>
+</tr>
+<tr>
+  <td>Solaris</td>
+  <td>V9 (Ultrasparc)</td>
+  <td>57 MB</td>
+  <td>2.5 GB</td>
+  <td>46 MB</td>
+  <td>2.6 GB</td>
+</tr>
+<tr>
+  <td>FreeBSD</td>
+  <td>x86<sup>1</sup></td>
+  <td>57 MB</td>
+  <td>850 GB</td>
+  <td>40 MB</td>
+  <td>1 GB</td>
+</tr>
+<tr>
+  <td>MacOS X</td>
+  <td>PowerPC</td>
+  <td>57 MB</td>
+  <td>1.5 GB</td>
+  <td>36 MB</td>
+  <td>1.6 GB</td>
+</tr>
+<tr>
+  <td>AIX<sup>2</sup></td>
+  <td>PowerPC</td>
+  <td>92 MB</td>
+  <td>2.8 GB</td>
+  <td>123 MB</td>
+  <td>3 GB</td>
+</tr>
+</table>
 
-</ul>
+<p>
+<sup>1</sup> Code generation supported for Pentium processors and up<br>
+<sup>2</sup> No native code generation
+</p>
 
 <p>The LLVM suite <i>may</i> compile on other platforms, but it is not
 guaranteed to do so.  If compilation is successful, the LLVM utilities should be
@@ -1318,7 +1313,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.x10sys.com/rspencer/">Reid Spencer</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/11/11 07:30:27 $
+  Last modified: $Date: 2004/11/15 05:19:53 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list