diff options
author | fanquake <fanquake@gmail.com> | 2021-01-10 15:02:28 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-01-10 15:03:05 +0800 |
commit | 708ef4424a65b645440e8f724db653f0f5f8f42b (patch) | |
tree | 84966fcdb80f993c91d8a5f4d6336e0ea262ecb8 | |
parent | 5574e489631bb20c4566df916b79863f31dc6f0c (diff) | |
parent | 3e61b8c800180d350621cedda7ec46a48047ff04 (diff) |
Merge #20890: doc: Add explicit macdeployqtplus dependencies install step
3e61b8c800180d350621cedda7ec46a48047ff04 doc: Add explicit macdeployqtplus dependencies install step (Hennadii Stepanov)
Pull request description:
This PR adds to macOS docs an explicit step to install `macdeployqtplus` script dependencies that are not part of the [Python Standard Library](https://docs.python.org/3/library/index.html):
- https://pypi.org/project/ds-store/
- https://pypi.org/project/mac-alias/
This change is required on macOS 11 Big Sur:
- #20371
- #20878
Close #20878.
ACKs for top commit:
fanquake:
ACK 3e61b8c800180d350621cedda7ec46a48047ff04
Tree-SHA512: d177139ee142d47cb27ad878d721cafcd03403ef861965ff532d712da461416380ec5878f70accf223a552a1f1e65eedb1e0ad72cb7a96791f8a55536ce28645
-rw-r--r-- | doc/build-osx.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index b46bf61c4b..04ee43f81d 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -30,6 +30,11 @@ If you want to build the disk image with `make deploy` (.dmg / optional), you ne brew install librsvg ``` +and [`macdeployqtplus`](../contrib/macdeploy/README.md) dependencies: +```shell +pip3 install ds_store mac_alias +``` + The wallet support requires one or both of the dependencies ([*SQLite*](#sqlite) and [*Berkeley DB*](#berkeley-db)) in the sections below. To build Bitcoin Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode). |