You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #11984: doc: Update OpenBSD build instructions for 6.2 (cont'd)
6915f93 doc: Update OpenBSD build instructions for 6.2 (Wladimir J. van der Laan)
Pull request description:
(this continues #11442)
There is no more need to install a new compiler. This simplifies instructions a lot.
From discussion with @fanquake on IRC I first wanted to add a new section for 6.2, but that made the document a complex mess. I think it's good enough (and more maintainable too) to only support the most recent release.
Includes #11976.
I moved the "resource limits" section to the end as I didn't seem to need it with clang, but this may vary based on source changes and the phase of the moon so it's good to keep it as optional extra information.
Tree-SHA512: 15794afec6d682323d0aa13c7616d009acb7fce8b0ef5d2106261f2ebd86b7b2fe66040c04860d9bf2f0c1934fbdc2b594b8c09a98accfaac04f3daf9a6cadf3
See [dependencies.md](dependencies.md) for a complete overview.
25
25
26
-
GCC
27
-
-------
28
-
29
-
The default C++ compiler that comes with OpenBSD 6.2 is g++ 4.2.1. This version is old (from 2007), and is not able to compile the current version of Bitcoin Core because it has no C++11 support. We'll install a newer version of GCC:
30
-
31
-
```bash
32
-
pkg_add g++
33
-
```
34
-
35
-
This compiler will not overwrite the system compiler, it will be installed as `egcc` and `eg++` in `/usr/local/bin`.
26
+
**Important**: From OpenBSD 6.2 onwards a C++11-supporting clang compiler is
27
+
part of the base image, and while building it is necessary to make sure that this
28
+
compiler is used and not ancient g++ 4.2.1. This is done by appending
29
+
`CC=cc CXX=c++` to configuration commands. Mixing different compilers
30
+
within the same executable will result in linker errors.
36
31
37
32
### Building BerkeleyDB
38
33
39
-
BerkeleyDB is only necessary for the wallet functionality. To skip this, pass `--disable-wallet` to `./configure`.
34
+
BerkeleyDB is only necessary for the wallet functionality. To skip this, pass
35
+
`--disable-wallet` to `./configure` and skip to the next section.
40
36
41
37
It is recommended to use Berkeley DB 4.8. You cannot use the BerkeleyDB library
42
38
from ports, for the same reason as boost above (g++/libstd++ incompatibility).
43
39
If you have to build it yourself, you can use [the installation script included
0 commit comments