aboutsummaryrefslogtreecommitdiff
path: root/doc/build-openbsd.md
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-09-07 02:49:05 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-09-07 02:49:14 +0200
commitf65614726de21e116966366d6abdf025dfeb6db2 (patch)
treec36f48168ad44f8bf4fac70d90a88d1adc8671c3 /doc/build-openbsd.md
parent645a7ecc0b8d69c7a4733b1f8548730b8ffa033c (diff)
parente91b9619232dc8999ae9657f117d55b7d241eadc (diff)
downloadbitcoin-f65614726de21e116966366d6abdf025dfeb6db2.tar.xz
Merge #10779: Create dependencies.md
e91b96192 Create dependencies.md, and link dependencies file from README & build docs (flack) Pull request description: As @fanquake mentioned in #8639, this should probably be a file in `doc/`, so I went ahead and pulled the issue text via the github API and dumped it into a file. No modifications made, except one spelling fix. This makes the info easier to find, and it will get a proper version history, too. Tree-SHA512: 6ba4c37c97200972a74724e0e346d6ad5947c01ad18638e15250f2b4cd747dd744aba16e306c98d59f35736542a5eded7a17b6a5ce6aebc63c0a9dc969b365ef
Diffstat (limited to 'doc/build-openbsd.md')
-rw-r--r--doc/build-openbsd.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md
index cd800464b4..4ea8e30b53 100644
--- a/doc/build-openbsd.md
+++ b/doc/build-openbsd.md
@@ -18,12 +18,12 @@ pkg_add automake # (select highest version, e.g. 1.15)
pkg_add python # (select highest version, e.g. 3.5)
```
-The default C++ compiler that comes with OpenBSD 5.9 is g++ 4.2. This version is old (from 2007), and is not able to compile the current version of Bitcoin Core, primarily as it has no C++11 support, but even before there were issues. So here we will be installing a newer compiler.
+See [dependencies.md](dependencies.md) for a complete overview.
GCC
-------
-You can install a newer version of gcc with:
+The default C++ compiler that comes with OpenBSD 5.9 is g++ 4.2. This version is old (from 2007), and is not able to compile the current version of Bitcoin Core, primarily as it has no C++11 support, but even before there were issues. So here we will be installing a newer compiler:
```bash
pkg_add g++ # (select newest 4.x version, e.g. 4.9.3)