aboutsummaryrefslogtreecommitdiffstats
path: root/docs/GettingStarted.html
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-12-10 15:51:16 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-12-10 15:51:16 +0000
commit9e2485c1227c426910f87e342022c71fe1a916a3 (patch)
tree1ea57894bb7064f3971ed00e4f36a9683ffac559 /docs/GettingStarted.html
parent5aefa8a6fec1cdf2e8be74195df8d3739ce73c14 (diff)
downloadexternal_llvm-9e2485c1227c426910f87e342022c71fe1a916a3.zip
external_llvm-9e2485c1227c426910f87e342022c71fe1a916a3.tar.gz
external_llvm-9e2485c1227c426910f87e342022c71fe1a916a3.tar.bz2
Merged in RELEASE_14 changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18763 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.html')
-rw-r--r--docs/GettingStarted.html41
1 files changed, 33 insertions, 8 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 868551d..ef561f6 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -115,8 +115,7 @@ and performance.
<ol>
<li><tt>cd <i>where-you-want-the-C-front-end-to-live</i></tt>
<li><tt>gunzip --stdout cfrontend.<i>platform</i>.tar.gz | tar -xvf -</tt>
- <li><b>Sparc and MacOS X Only:</b><br>
- <tt>cd cfrontend/<i>platform</i><br>
+ <li><tt>cd cfrontend/<i>platform</i><br>
./fixheaders</tt>
</ol></li>
@@ -126,7 +125,7 @@ and performance.
<ol>
<li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
<li><tt>gunzip --stdout llvm-<i>version</i>.tar.gz | tar -xvf -</tt>
- <li><tt>cd llvm</tt>
+ <li><tt>cd llvm</tt></li>
</ol></li>
<li>With anonymous CVS access (or use a <a href="#mirror">mirror</a>):
@@ -142,6 +141,32 @@ and performance.
</ol></li>
</ul></li>
+ <li>Get the Test Suite Source Code (<em>optional</em>)
+ <ul>
+ <li>With the distributed files:
+ <ol>
+ <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
+ <li><tt>cd llvm/projects</tt>
+ <li><tt>gunzip --stdout llvm-test-<i>version</i>.tar.gz | tar -xvf -</tt>
+ <li><tt>cd ..</tt></li>
+ </ol></li>
+
+ <li>With anonymous CVS access (or use a <a href="#mirror">mirror</a>):
+ <ol>
+ <li><tt>cd <i>where-you-want-llvm-to-live</i></tt></li>
+ <li><tt>cd llvm/projects</tt>
+ <li><tt>cvs -d
+ :pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm login</tt></li>
+ <li>Hit the return key when prompted for the password.
+ <li><tt>cvs -z3 -d :pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm
+ co llvm-test</tt></li>
+ <li><tt>cd llvm-test</tt></li>
+ <li><tt>cvs up -P -d</tt></li>
+ <li><tt>cd ..</tt></li>
+ </ol></li>
+ </ul></li>
+
+
<li>Configure the LLVM Build Environment
<ol>
<li>Change directory to where you want to store the LLVM object
@@ -548,8 +573,9 @@ You can set these on the command line, or better yet, set them in your
<p>
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 two files: the LLVM
-suite and the LLVM GCC front end compiled for your platform. Each
-file is a TAR archive that is compressed with the gzip program.
+suite and the LLVM GCC front end compiled for your platform. There is an
+additional test suite that is optional. Each file is a TAR archive that is
+compressed with the gzip program.
</p>
<p> The files are as follows:
@@ -573,7 +599,7 @@ file is a TAR archive that is compressed with the gzip program.
<dt><tt>cfrontend-1.4.i386-unknown-freebsd5.1.tar.gz</tt></dt>
<dd>This is the binary release of the GCC front end for FreeBSD/x86.<br/></dd>
- <dt><tt>cfrontend-1.4.powerpc-apple-darwin7.0.0.tar.gz</tt></dt>
+ <dt><tt>cfrontend-1.4.powerpc-apple-darwin7.6.0.tar.gz</tt></dt>
<dd>This is the binary release of the GCC front end for MacOS X/PPC.<br/></dd>
</dl>
@@ -672,8 +698,7 @@ location must be specified when the LLVM suite is configured.</p>
-</tt></li>
</ol>
-<p>If you are using Solaris/Sparc or MacOS X/PPC, you will need to fix the
-header files:</p>
+<p>Next, you will need to fix your system header files:</p>
<p><tt>cd cfrontend/<i>platform</i><br>
./fixheaders</tt></p>