summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorschwarz <schwarz@pkgsrc.org>2006-04-18 18:11:21 +0000
committerschwarz <schwarz@pkgsrc.org>2006-04-18 18:11:21 +0000
commita6e6f7ffefe1683a726087b47a28d84eff9ede18 (patch)
treed9604d2082969fb9c7787654f23581107380be64 /bootstrap
parentc0ca0cb59c3cea41f64ceae2af7f0717278b675c (diff)
downloadpkgsrc-a6e6f7ffefe1683a726087b47a28d84eff9ede18.tar.gz
corrected a few typos
changed recommendation to define C++ compiler unconditionally in mk.conf
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/README.IRIX5.310
1 files changed, 4 insertions, 6 deletions
diff --git a/bootstrap/README.IRIX5.3 b/bootstrap/README.IRIX5.3
index f7d2dbb417f..0d2cfa7b087 100644
--- a/bootstrap/README.IRIX5.3
+++ b/bootstrap/README.IRIX5.3
@@ -1,4 +1,4 @@
-$NetBSD: README.IRIX5.3,v 1.1 2006/04/10 13:29:38 schwarz Exp $
+$NetBSD: README.IRIX5.3,v 1.2 2006/04/18 18:11:21 schwarz Exp $
Installing pkgsrc on IRIX 5.3 requires some preparation.
First, if necessary, get the IRIX 5.3 IDO (cc etc.) from SGI at
@@ -27,7 +27,7 @@ DBG=
Unfortunately many of IRIX 5.3's native tools do not provide
functionalitites that pkgsrc expects. It is therefore necessary to install
the respective GNU tools for cp, grep, id, mkdir, test, touch, which,
-and xargs. To avoid conflicts you might want to do so under a differtent
+and xargs. To avoid conflicts you might want to do so under a different
directory hierarchy than pkgsrc (in the following example
--prefix=/usr/local is assumed). Obtain and install the following GNU
software:
@@ -81,14 +81,12 @@ TOOLS_PLATFORM.xargs=/usr/local/bin/xargs -r
.endif
TYPE=/usr/local/bin/which
-IRIX 5.3 IDO does not come with a c++ compiler. For packages that require
-c++ you can get the GNU c++ compiler, g++, which is part of the gcc
+IRIX 5.3 IDO does not come with a C++ compiler. For packages that require
+C++ you can get the GNU C++ compiler, g++, which is part of the gcc
distribution. Gcc 3.4.4 is known to bootstrap on IRIX 5.3. To activate it,
add the following lines to your mk.conf:
-.if defined(USE_LANGUAGES) && !empty(USE_LANGUAGES:Mc++)
CXX=g++
USE_TOOLS+=cxx
TOOLS_PLATFORM.cxx=/usr/local/bin/g++
TOOLS_CMD.cxx=${TOOLS_DIR}/bin/g++
-.endif