@@ -5,7 +5,7 @@ Below are some notes on how to build Bitcoin Core for Windows.
5
5
6
6
The options known to work for building Bitcoin Core on Windows are:
7
7
8
- * On Linux using the [ Mingw-w64] ( https://mingw-w64.org/doku.php ) cross compiler tool chain. Ubuntu Trusty 14 .04 is recommended
8
+ * On Linux using the [ Mingw-w64] ( https://mingw-w64.org/doku.php ) cross compiler tool chain. Ubuntu Bionic 18 .04 is required
9
9
and is the platform used to build the Bitcoin Core Windows release binaries.
10
10
* On Windows using [ Windows
11
11
Subsystem for Linux (WSL)] ( https://msdn.microsoft.com/commandline/wsl/about ) and the Mingw-w64 cross compiler tool chain.
@@ -38,10 +38,10 @@ To install WSL on Windows 10 with Fall Creators Update installed (version >= 162
38
38
* Enable 'Windows Subsystem for Linux'
39
39
* Click 'OK' and restart if necessary
40
40
2 . Install Ubuntu
41
- * Open Microsoft Store and search for Ubuntu or use [ this link] ( https://www.microsoft.com/store/productId/9NBLGGH4MSV6 )
41
+ * Open Microsoft Store and search for " Ubuntu 18.04" or use [ this link] ( https://www.microsoft.com/store/productId/9N9TNGVNDL3Q )
42
42
* Click Install
43
43
3 . Complete Installation
44
- * Open a cmd prompt and type "Ubuntu "
44
+ * Open a cmd prompt and type "Ubuntu1804 "
45
45
* Create a new UNIX user account (this is a separate account from your Windows account)
46
46
47
47
After the bash shell is active, you can follow the instructions below, starting
@@ -51,11 +51,6 @@ recommended but it is possible to compile the 32-bit version.
51
51
Cross-compilation for Ubuntu and Windows Subsystem for Linux
52
52
------------------------------------------------------------
53
53
54
- At the time of writing the Windows Subsystem for Linux installs Ubuntu Xenial 16.04. The Mingw-w64 package
55
- for Ubuntu Xenial does not produce working executables for some of the Bitcoin Core applications.
56
- It is possible to build on Ubuntu Xenial by installing the cross compiler packages from Ubuntu Artful, see the steps below.
57
- Building on Ubuntu Artful 17.10 has been verified to work.
58
-
59
54
The steps below can be performed on Ubuntu (including in a VM) or WSL. The depends system
60
55
will also work on other Linux distributions, however the commands for
61
56
installing the toolchain will be different.
@@ -74,26 +69,11 @@ See also: [dependencies.md](dependencies.md).
74
69
75
70
## Building for 64-bit Windows
76
71
77
- The first step is to install the mingw-w64 cross-compilation tool chain. Due to different Ubuntu
78
- packages for each distribution and problems with the Xenial packages the steps for each are different.
79
-
80
- Common steps to install mingw32 cross compiler tool chain:
72
+ The first step is to install the mingw-w64 cross-compilation tool chain.
81
73
82
74
sudo apt install g++-mingw-w64-x86-64
83
75
84
- Ubuntu Trusty 14.04:
85
-
86
- No further steps required
87
-
88
- Ubuntu Xenial 16.04 and Windows Subsystem for Linux <sup >[ 1] ( #footnote1 ) ,[ 2] ( #footnote2 ) </sup >:
89
-
90
- sudo apt install software-properties-common
91
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu artful universe"
92
- sudo apt update
93
- sudo apt upgrade
94
- sudo update-alternatives --config x86_64-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.
95
-
96
- Ubuntu Artful 17.10 <sup >[ 2] ( #footnote2 ) </sup >:
76
+ Ubuntu Bionic 18.04 <sup >[ 1] ( #footnote1 ) </sup >:
97
77
98
78
sudo update-alternatives --config x86_64-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.
99
79
@@ -123,7 +103,7 @@ To build executables for Windows 32-bit, install the following dependencies:
123
103
124
104
sudo apt install g++-mingw-w64-i686 mingw-w64-i686-dev
125
105
126
- For Ubuntu Xenial 16 .04, Ubuntu Artful 17.10 and Windows Subsystem for Linux <sup >[ 2 ] ( #footnote2 ) </sup >:
106
+ For Ubuntu Bionic 18 .04 and Windows Subsystem for Linux <sup >[ 1 ] ( #footnote1 ) </sup >:
127
107
128
108
sudo update-alternatives --config i686-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.
129
109
@@ -162,14 +142,7 @@ way. This will install to `c:\workspace\bitcoin`, for example:
162
142
Footnotes
163
143
---------
164
144
165
- <a name =" footnote1 " >1</a >: There is currently a bug in the 64 bit Mingw-w64 cross compiler packaged for WSL/Ubuntu Xenial 16.04 that
166
- causes two of the bitcoin executables to crash shortly after start up. The bug is related to the
167
- -fstack-protector-all g++ compiler flag which is used to mitigate buffer overflows.
168
- Installing the Mingw-w64 packages from the Ubuntu 17.10 distribution solves the issue, however, this is not
169
- an officially supported approach and it's only recommended if you are prepared to reinstall WSL/Ubuntu should
170
- something break.
171
-
172
- <a name =" footnote2 " >2</a >: Starting from Ubuntu Xenial 16.04 both the 32 and 64 bit Mingw-w64 packages install two different
145
+ <a name =" footnote1 " >1</a >: Starting from Ubuntu Xenial 16.04 both the 32 and 64 bit Mingw-w64 packages install two different
173
146
compiler options to allow a choice between either posix or win32 threads. The default option is win32 threads which is the more
174
147
efficient since it will result in binary code that links directly with the Windows kernel32.lib. Unfortunately, the headers
175
148
required to support win32 threads conflict with some of the classes in the C++11 standard library in particular std::mutex.
0 commit comments