summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2022-04-03 22:28:13 +0000
committertnn <tnn@pkgsrc.org>2022-04-03 22:28:13 +0000
commit4c2286025eb012113707dcba9bc0f2ce817cc295 (patch)
tree149db2d1e98cd1307cc8cd93bd83821f2afda190 /bootstrap
parenta23d68f4d8143df5211cbc8c994c94c5a16786b2 (diff)
downloadpkgsrc-4c2286025eb012113707dcba9bc0f2ce817cc295.tar.gz
README.OSF1: update documentation
- describe what, specifically, is broken (point to libarchive upstream) - update examples
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/README.OSF124
1 files changed, 18 insertions, 6 deletions
diff --git a/bootstrap/README.OSF1 b/bootstrap/README.OSF1
index 9b9ed6e0d3e..7c21407f27d 100644
--- a/bootstrap/README.OSF1
+++ b/bootstrap/README.OSF1
@@ -1,6 +1,14 @@
-$NetBSD: README.OSF1,v 1.5 2022/03/31 21:36:24 gdt Exp $
+$NetBSD: README.OSF1,v 1.6 2022/04/03 22:28:13 tnn Exp $
-As of 2022-03, bootstrapping on OSF1 is believed to be broken.
+As of 2022-03, bootstrapping on OSF/1 is broken.
+This is due to bitrot in libarchive. Check this PR for updates:
+https://github.com/libarchive/libarchive/pull/925
+
+Prerequisites
+-------------
+Only Tru64 version 5.1B with the last patch kit is known to complete
+pkgsrc bootstrap. in other words 5.1B-6 also known as
+T64V51BB29AS0008-20100821.
Compiler
--------
@@ -8,21 +16,25 @@ Prebuilt GCC toolchains suitable for use with pkgsrc can be downloaded from
ftp://ftp.NetBSD.org/pub/pkgsrc/misc/tnn/ .
Installation instructions can be found in the file "README.gcc".
+In particular, do not forget to run mkheaders.
Bootstrapping pkgsrc
--------------------
-To use the native compiler:
+To use the native compiler (CXX710V06.tar with CXXOSF license):
# env CPP=/usr/bin/cpp CC=/usr/bin/cc ./bootstrap --compiler ccc
To use the GCC compiler kit from above:
- # env CC=/usr/local/gcc4/bin/gcc CFLAGS=-O2 ./bootstrap --compiler gcc
+ # PATH=/usr/local/gcc4/bin:$PATH
+ # export PATH
+ # ./bootstrap --compiler gcc
mk.conf setup
-------------
To use gcc, you must set the following variables in mk.conf:
PKGSRC_COMPILER=gcc
- CC=/full/path/to/gcc
- CXX=/full/path/to/g++
+ GCCBASE=/usr/local/gcc4
+
+It is necessary to keep /usr/local/gcc4/bin in PATH for GNU binutils.