1
- # macOS Build Instructions and Notes
1
+ # macOS Build Guide
2
+
3
+ ** Updated for MacOS [ 11.2] ( https://www.apple.com/macos/big-sur/ ) **
4
+
5
+ This guide describes how to build bitcoind, command-line utilities, and GUI on macOS
6
+
7
+ ** Note:** The following is for Intel Macs only!
8
+
9
+ ## Dependencies
10
+
11
+ The following dependencies are ** required** :
12
+
13
+ Library | Purpose | Description
14
+ -----------------------------------------------------------|------------|----------------------
15
+ [ automake] ( https://formulae.brew.sh/formula/automake ) | Build | Generate makefile
16
+ [ libtool] ( https://formulae.brew.sh/formula/libtool ) | Build | Shared library support
17
+ [ pkg-config] ( https://formulae.brew.sh/formula/pkg-config ) | Build | Configure compiler and linker flags
18
+ [ boost] ( https://formulae.brew.sh/formula/boost ) | Utility | Library for threading, data structures, etc
19
+ [ libevent] ( https://formulae.brew.sh/formula/libevent ) | Networking | OS independent asynchronous networking
20
+
21
+ The following dependencies are ** optional** :
22
+
23
+ Library | Purpose | Description
24
+ --------------------------------------------------------------- |------------------|----------------------
25
+ [ berkeley-db@4] ( https://formulae.brew.sh/formula/berkeley-db@4 ) | Berkeley DB | Wallet storage (only needed when wallet enabled)
26
+ [ qt@5] ( https://formulae.brew.sh/formula/qt@5 ) | GUI | GUI toolkit (only needed when GUI enabled)
27
+ [ qrencode] ( https://formulae.brew.sh/formula/qrencode ) | QR codes in GUI | Generating QR codes (only needed when GUI enabled)
28
+ [ zeromq] ( https://formulae.brew.sh/formula/zeromq ) | ZMQ notification | Allows generating ZMQ notifications (requires ZMQ version >= 4.0.0)
29
+ [ sqlite] ( https://formulae.brew.sh/formula/sqlite ) | SQLite DB | Wallet storage (only needed when wallet enabled)
30
+ [ miniupnpc] ( https://formulae.brew.sh/formula/miniupnpc ) | UPnP Support | Firewall-jumping support (needed for port mapping support)
31
+ [ libnatpmp] ( https://formulae.brew.sh/formula/libnatpmp ) | NAT-PMP Support | Firewall-jumping support (needed for port mapping support)
32
+ [ python3
] ( https://formulae.brew.sh/formula/[email protected] ) | Testing | Python Interpreter (only needed when running the test suite)
33
+
34
+ The following dependencies are ** optional** packages required for deploying:
35
+
36
+ Library | Purpose | Description
37
+ ----------------------------------------------------|------------------|----------------------
38
+ [ librsvg] ( https://formulae.brew.sh/formula/librsvg ) | Deploy Dependency| Library to render SVG files
39
+ [ ds_store] ( https://pypi.org/project/ds-store/ ) | Deploy Dependency| Examine and modify .DS_Store files
40
+ [ mac_alias] ( https://pypi.org/project/mac-alias/ ) | Deploy Dependency| Generate/Read binary alias and bookmark records
41
+
42
+ See [ dependencies.md] ( dependencies.md ) for a complete overview.
43
+
44
+ ## Preparation
2
45
3
46
The commands in this guide should be executed in a Terminal application.
4
- The built-in one is located in
47
+ macOS comes with a built-in Terminal located in:
48
+
5
49
```
6
50
/Applications/Utilities/Terminal.app
7
51
```
8
52
9
- ## Preparation
10
- Install the macOS command line tools:
53
+ ### 1. Xcode Command Line Tools
11
54
12
- ``` shell
55
+ The Xcode Command Line Tools are a collection of build tools for macOS.
56
+ These tools must be installed in order to build Bitcoin Core from source.
57
+
58
+ To install, run the following command from your terminal:
59
+
60
+ ``` bash
13
61
xcode-select --install
14
62
```
15
63
16
- When the popup appears, click ` Install ` .
64
+ Upon running the command, you should see a popup appear.
65
+ Click on ` Install ` to continue the installation process.
17
66
18
- Then install [ Homebrew] ( https://brew.sh ) .
67
+ ### 2. Homebrew Package Manager
19
68
20
- ## Dependencies
21
- ``` shell
22
- brew install automake libtool boost miniupnpc libnatpmp pkg-config python qt@5 libevent qrencode
69
+ Homebrew is a package manager for macOS that allows one to install packages from the command line easily.
70
+ While several package managers are available for macOS, this guide will focus on Homebrew as it is the most popular.
71
+ Since the examples in this guide which walk through the installation of a package will use Homebrew, it is recommended that you install it to follow along.
72
+ Otherwise, you can adapt the commands to your package manager of choice.
73
+
74
+ To install the Homebrew package manager, see: https://brew.sh
75
+
76
+ Note: If you run into issues while installing Homebrew or pulling packages, refer to [ Homebrew's troubleshooting page] ( https://docs.brew.sh/Troubleshooting ) .
77
+
78
+ ### 3. Install Required Dependencies
79
+
80
+ The first step is to download the required dependencies.
81
+ These dependencies represent the packages required to get a barebones installation up and running.
82
+ To install, run the following from your terminal:
83
+
84
+ ``` bash
85
+ brew install automake libtool boost pkg-config libevent
23
86
```
24
87
25
- If you run into issues, check [ Homebrew's troubleshooting page] ( https://docs.brew.sh/Troubleshooting ) .
26
- See [ dependencies.md] ( dependencies.md ) for a complete overview.
88
+ ### 4. Clone Bitcoin repository
27
89
28
- If you want to build the disk image with ` make deploy ` (.dmg / optional), you need RSVG:
29
- ``` shell
30
- brew install librsvg
90
+ ` git ` should already be installed by default on your system.
91
+ Now that all the required dependencies are installed, let's clone the Bitcoin Core repository to a directory.
92
+ All build scripts and commands will run from this directory.
93
+
94
+ ``` bash
95
+ git clone https://github.com/bitcoin/bitcoin.git
31
96
```
32
97
33
- and [ ` macdeployqtplus ` ] ( ../contrib/macdeploy/README.md ) dependencies:
34
- ``` shell
35
- pip3 install ds_store mac_alias
98
+ ### 5. Install Optional Dependencies
99
+
100
+ #### Wallet Dependencies
101
+
102
+ It is not necessary to build wallet functionality to run ` bitcoind ` or ` bitcoin-qt ` .
103
+ To enable legacy wallets, you must install ` berkeley-db@4 ` .
104
+ To enable [ descriptor wallets] ( https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md ) , ` sqlite ` is required.
105
+ Skip ` berkeley-db@4 ` if you intend to * exclusively* use descriptor wallets.
106
+
107
+ ###### Legacy Wallet Support
108
+
109
+ ` berkeley-db@4 ` is required to enable support for legacy wallets.
110
+ Skip if you don't intend to use legacy wallets.
111
+
112
+ ``` bash
113
+ brew install berkeley-db@4
36
114
```
37
115
38
- The wallet support requires one or both of the dependencies ([ * SQLite* ] ( #sqlite ) and [ * Berkeley DB* ] ( #berkeley-db ) ) in the sections below.
39
- To build Bitcoin Core without wallet, see [ * Disable-wallet mode* ] ( #disable-wallet-mode ) .
116
+ ###### Descriptor Wallet Support
40
117
41
- #### SQLite
118
+ Note: Apple has included a useable ` sqlite ` package since macOS 10.14.
119
+ You may not need to install this package.
42
120
43
- Usually, macOS installation already has a suitable SQLite installation .
44
- Also, the Homebrew package could be installed:
121
+ ` sqlite ` is required to enable support for descriptor wallets .
122
+ Skip if you don't intend to use descriptor wallets.
45
123
46
- ``` shell
124
+ ``` bash
47
125
brew install sqlite
48
126
```
127
+ ---
49
128
50
- In that case the Homebrew package will prevail.
129
+ #### GUI Dependencies
51
130
52
- #### Berkeley DB
131
+ ###### Qt
53
132
54
- It is recommended to use Berkeley DB 4.8. If you have to build it yourself,
55
- you can use [ this ] ( /contrib/install_db4.sh ) script to install it
56
- like so:
133
+ Bitcoin Core includes a GUI built with the cross-platform Qt Framework.
134
+ To compile the GUI, we need to install ` qt@5 ` .
135
+ Skip if you don't intend to use the GUI.
57
136
58
- ``` shell
59
- ./contrib/install_db4.sh .
137
+ ``` bash
138
+ brew install qt@5
60
139
```
61
140
62
- from the root of the repository.
141
+ Note: Building with Qt binaries downloaded from the Qt website is not officially supported.
142
+ See the notes in [ #7714 ] ( https://github.com/bitcoin/bitcoin/issues/7714 ) .
63
143
64
- Also, the Homebrew package could be installed:
144
+ ###### qrencode
65
145
66
- ``` shell
67
- brew install berkeley-db4
146
+ The GUI can encode addresses in a QR Code. To build in QR support for the GUI, install ` qrencode ` .
147
+ Skip if not using the GUI or don't want QR code functionality.
148
+
149
+ ``` bash
150
+ brew install qrencode
68
151
```
152
+ ---
153
+
154
+ #### Port Mapping Dependencies
155
+
156
+ ###### miniupnpc
69
157
70
- ## Build Bitcoin Core
158
+ miniupnpc may be used for UPnP port mapping.
159
+ Skip if you do not need this functionality.
71
160
72
- 1 . Clone the Bitcoin Core source code:
73
- ``` shell
74
- git clone https://github.com/bitcoin/bitcoin
75
- cd bitcoin
76
- ```
161
+ ``` bash
162
+ brew install miniupnpc
163
+ ```
77
164
78
- 2. Build Bitcoin Core:
165
+ ###### libnatpmp
79
166
80
- Configure and build the headless Bitcoin Core binaries as well as the GUI (if Qt is found).
167
+ libnatpmp may be used for NAT-PMP port mapping.
168
+ Skip if you do not need this functionality.
81
169
82
- You can disable the GUI build by passing ` --without-gui` to configure.
83
- ` ` ` shell
84
- ./autogen.sh
85
- ./configure
86
- make
87
- ` ` `
170
+ ``` bash
171
+ brew install libnatpmp
172
+ ```
88
173
89
- 3. It is recommended to build and run the unit tests:
90
- ` ` ` shell
91
- make check
92
- ` ` `
174
+ Note: UPnP and NAT-PMP support will be compiled in and disabled by default.
175
+ Check out the [ further configuration] ( #further-configuration ) section for more information.
93
176
94
- 4. You can also create a ` .dmg` that contains the ` .app` bundle (optional):
95
- ` ` ` shell
96
- make deploy
97
- ` ` `
177
+ ---
98
178
99
- # # Disable-wallet mode
100
- When the intention is to run only a P2P node without a wallet, Bitcoin Core may be
101
- compiled in disable-wallet mode with:
102
- ` ` ` shell
103
- ./configure --disable-wallet
179
+ #### ZMQ Dependencies
180
+
181
+ Support for ZMQ notifications requires the following dependency.
182
+ Skip if you do not need ZMQ functionality.
183
+
184
+ ``` bash
185
+ brew install zeromq
104
186
```
105
187
106
- In this case there is no dependency on [* Berkeley DB* ](# berkeley-db) and [*SQLite*](#sqlite).
188
+ ZMQ is automatically compiled in and enabled if the dependency is detected.
189
+ Check out the [ further configuration] ( #further-configuration ) section for more information.
190
+
191
+ For more information on ZMQ, see: [ zmq.md] ( zmq.md )
107
192
108
- Mining is also possible in disable-wallet mode using the ` getblocktemplate ` RPC call.
193
+ ---
109
194
110
- # # Running
111
- Bitcoin Core is now available at ` ./src/bitcoind`
195
+ #### Test Suite Dependencies
196
+
197
+ There is an included test suite that is useful for testing code changes when developing.
198
+ To run the test suite (recommended), you will need to have Python 3 installed:
199
+
200
+ ``` bash
201
+ brew install python
202
+ ```
203
+
204
+ ---
205
+
206
+ #### Deploy Dependencies
207
+
208
+ You can deploy a ` .dmg ` containing the Bitcoin Core application using ` make deploy ` .
209
+ This command depends on a couple of python packages, so it is required that you have ` python ` installed.
210
+
211
+ Ensuring that ` python ` is installed, you can install the deploy dependencies by running the following commands in your terminal:
212
+
213
+ ``` bash
214
+ brew install librsvg
215
+ ```
216
+
217
+ ``` bash
218
+ pip3 install ds_store mac_alias
219
+ ```
220
+
221
+ ## Building Bitcoin Core
222
+
223
+ ### 1. Configuration
224
+
225
+ There are many ways to configure Bitcoin Core, here are a few common examples:
226
+
227
+ ##### Wallet (BDB + SQlite) Support, No GUI:
228
+
229
+ If ` berkeley-db@4 ` is installed, then legacy wallet support will be built.
230
+ If ` berkeley-db@4 ` is not installed, then this will throw an error.
231
+ If ` sqlite ` is installed, then descriptor wallet support will also be built.
232
+ Additionally, this explicitly disables the GUI.
233
+
234
+ ``` bash
235
+ ./autogen.sh
236
+ ./configure --with-gui=no
237
+ ```
238
+
239
+ ##### Wallet (only SQlite) and GUI Support:
240
+
241
+ This explicitly enables the GUI and disables legacy wallet support.
242
+ If ` qt ` is not installed, this will throw an error.
243
+ If ` sqlite ` is installed then descriptor wallet functionality will be built.
244
+ If ` sqlite ` is not installed, then wallet functionality will be disabled.
245
+
246
+ ``` bash
247
+ ./autogen.sh
248
+ ./configure --without-bdb --with-gui=yes
249
+ ```
250
+
251
+ ##### No Wallet or GUI
252
+
253
+ ``` bash
254
+ ./autogen.sh
255
+ ./configure --without-wallet --with-gui=no
256
+ ```
257
+
258
+ ##### Further Configuration
259
+
260
+ You may want to dig deeper into the configuration options to achieve your desired behavior.
261
+ Examine the output of the following command for a full list of configuration options:
262
+
263
+ ``` bash
264
+ ./configure -help
265
+ ```
266
+
267
+ ### 2. Compile
268
+
269
+ After configuration, you are ready to compile.
270
+ Run the following in your terminal to compile Bitcoin Core:
271
+
272
+ ``` bash
273
+ make -jx # use -jX here for parallelism
274
+ make check # Run tests if Python 3 is available
275
+ ```
276
+
277
+ ### 3. Deploy (optional)
278
+
279
+ You can also create a ` .dmg ` containing the ` .app ` bundle by running the following command:
280
+
281
+ ``` bash
282
+ make deploy
283
+ ```
284
+
285
+ ## Running Bitcoin Core
286
+
287
+ Bitcoin Core should now be available at ` ./src/bitcoind ` .
288
+ If you compiled support for the GUI, it should be available at ` ./src/qt/bitcoin-qt ` .
289
+
290
+ The first time you run ` bitcoind ` or ` bitcoin-qt ` , it will start downloading the blockchain.
291
+ This process could take many hours, or even days on slower than average systems.
292
+
293
+ By default, blockchain and wallet data files will be stored in:
294
+
295
+ ``` bash
296
+ /Users/${USER} /Library/Application Support/Bitcoin/
297
+ ```
112
298
113
299
Before running, you may create an empty configuration file:
300
+
114
301
``` shell
115
302
mkdir -p " /Users/${USER} /Library/Application Support/Bitcoin"
116
303
@@ -119,22 +306,17 @@ touch "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
119
306
chmod 600 " /Users/${USER} /Library/Application Support/Bitcoin/bitcoin.conf"
120
307
```
121
308
122
- The first time you run bitcoind, it will start downloading the blockchain. This process could
123
- take many hours, or even days on slower than average systems.
124
-
125
309
You can monitor the download process by looking at the debug.log file:
310
+
126
311
``` shell
127
312
tail -f $HOME /Library/Application\ Support/Bitcoin/debug.log
128
313
```
129
314
130
315
## Other commands:
316
+
131
317
``` shell
132
318
./src/bitcoind -daemon # Starts the bitcoin daemon.
133
319
./src/bitcoin-cli --help # Outputs a list of command-line options.
134
320
./src/bitcoin-cli help # Outputs a list of RPC commands when the daemon is running.
321
+ ./src/qt/bitcoin-qt -server # Starts the bitcoin-qt server mode, allows bitcoin-cli control
135
322
```
136
-
137
- # # Notes
138
- * Tested on OS X 10.14 Mojave through macOS 11 Big Sur on 64-bit Intel
139
- processors only.
140
- * Building with downloaded Qt binaries is not officially supported. See the notes in [# 7714](https://github.com/bitcoin/bitcoin/issues/7714).
0 commit comments