Skip to content

FreeBSD: Document Python 3 requirement for 'gmake check' #14617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions doc/build-freebsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ You will need the following dependencies, which can be installed as root via pkg
pkg install autoconf automake boost-libs git gmake libevent libtool openssl pkgconf
```

In order to run the test suite (recommended), you will need to have Python 3 installed:

```
pkg install python3
```

For the wallet (optional):
```
./contrib/install_db4.sh `pwd`
Expand All @@ -36,10 +42,22 @@ git clone https://github.com/bitcoin/bitcoin

./configure # to build with wallet OR
./configure --disable-wallet # to build without wallet
```

followed by either:

```
gmake
```

to build without testing, or

```
gmake check
```

to also run the test suite (recommended, if Python 3 is installed).

*Note on debugging*: The version of `gdb` installed by default is [ancient and considered harmful](https://wiki.freebsd.org/GdbRetirement).
It is not suitable for debugging a multi-threaded C++ program, not even for getting backtraces. Please install the package `gdb` and
use the versioned gdb command (e.g. `gdb7111`).
Expand Down