Skip to content

Commit 5c41b60

Browse files
committed
Merge #13246: doc: Bump to Ubuntu Bionic 18.04 in build-windows.md
9d4f942 doc: Bump to Ubuntu Bionic 18.04 in build-windows.md (Chun Kuan Lee) Pull request description: Windows starts to provide Ubuntu 18.04 WSL, it can be downloaded from Microsoft Store. Tree-SHA512: a96ed03f36894ad867fd88631c1497eac7fc1cdaee8f59f36f34781df0b0f0b352a1bd8f09eba61002534fb7e0fe460006f223e37d61ad888197a36d17b43178
2 parents 7f4db9a + 9d4f942 commit 5c41b60

File tree

1 file changed

+7
-34
lines changed

1 file changed

+7
-34
lines changed

doc/build-windows.md

Lines changed: 7 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Below are some notes on how to build Bitcoin Core for Windows.
55

66
The options known to work for building Bitcoin Core on Windows are:
77

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
99
and is the platform used to build the Bitcoin Core Windows release binaries.
1010
* On Windows using [Windows
1111
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
3838
* Enable 'Windows Subsystem for Linux'
3939
* Click 'OK' and restart if necessary
4040
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)
4242
* Click Install
4343
3. Complete Installation
44-
* Open a cmd prompt and type "Ubuntu"
44+
* Open a cmd prompt and type "Ubuntu1804"
4545
* Create a new UNIX user account (this is a separate account from your Windows account)
4646

4747
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.
5151
Cross-compilation for Ubuntu and Windows Subsystem for Linux
5252
------------------------------------------------------------
5353

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-
5954
The steps below can be performed on Ubuntu (including in a VM) or WSL. The depends system
6055
will also work on other Linux distributions, however the commands for
6156
installing the toolchain will be different.
@@ -74,26 +69,11 @@ See also: [dependencies.md](dependencies.md).
7469

7570
## Building for 64-bit Windows
7671

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.
8173

8274
sudo apt install g++-mingw-w64-x86-64
8375

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>:
9777

9878
sudo update-alternatives --config x86_64-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.
9979

@@ -123,7 +103,7 @@ To build executables for Windows 32-bit, install the following dependencies:
123103

124104
sudo apt install g++-mingw-w64-i686 mingw-w64-i686-dev
125105

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>:
127107

128108
sudo update-alternatives --config i686-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.
129109

@@ -162,14 +142,7 @@ way. This will install to `c:\workspace\bitcoin`, for example:
162142
Footnotes
163143
---------
164144

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
173146
compiler options to allow a choice between either posix or win32 threads. The default option is win32 threads which is the more
174147
efficient since it will result in binary code that links directly with the Windows kernel32.lib. Unfortunately, the headers
175148
required to support win32 threads conflict with some of the classes in the C++11 standard library in particular std::mutex.

0 commit comments

Comments
 (0)