Create dependencies.md, and link dependencies file from README & build docs

This commit is contained in:
flack
2017-07-09 13:15:45 +02:00
parent 1d4805ce04
commit e91b961923
6 changed files with 40 additions and 3 deletions

View File

@ -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)