2015-11-03 11:36:09 +01:00
WINDOWS BUILD NOTES
====================
2016-10-17 06:08:33 +02:00
Below are some notes on how to build Bitcoin Core for Windows.
2015-11-03 11:36:09 +01:00
2017-11-17 14:16:35 +01:00
The options known to work for building Bitcoin Core on Windows are:
2018-10-25 21:58:08 +02:00
* On Linux, using the [Mingw-w64 ](https://mingw-w64.org/doku.php ) cross compiler tool chain. Ubuntu Bionic 18.04 is required
2017-11-17 14:16:35 +01:00
and is the platform used to build the Bitcoin Core Windows release binaries.
2018-10-25 21:58:08 +02:00
* On Windows, using [Windows
2019-10-31 17:19:36 +01:00
Subsystem for Linux (WSL)](https://docs.microsoft.com/windows/wsl/about) and the Mingw-w64 cross compiler tool chain.
2020-05-27 08:02:00 +02:00
* On Windows, using a native compiler tool chain such as [Visual Studio ](https://www.visualstudio.com ). See [README.md ](/build_msvc/README.md ).
2017-11-17 14:16:35 +01:00
2018-04-17 19:30:35 +02:00
Other options which may work, but which have not been extensively tested are (please contribute instructions):
2017-08-23 16:10:14 +02:00
2019-10-31 17:19:36 +01:00
* On Windows, using a POSIX compatibility layer application such as [cygwin ](https://www.cygwin.com/ ) or [msys2 ](https://www.msys2.org/ ).
2016-10-17 06:08:33 +02:00
2017-11-17 14:16:35 +01:00
Installing Windows Subsystem for Linux
---------------------------------------
2016-10-17 06:08:33 +02:00
2016-11-25 09:20:00 +01:00
With Windows 10, Microsoft has released a new feature named the [Windows
2019-10-31 17:19:36 +01:00
Subsystem for Linux (WSL)](https://docs.microsoft.com/windows/wsl/about). This
2016-12-27 00:59:17 +01:00
feature allows you to run a bash shell directly on Windows in an Ubuntu-based
2016-11-25 09:20:00 +01:00
environment. Within this environment you can cross compile for Windows without
2017-11-17 14:16:35 +01:00
the need for a separate Linux VM or server. Note that while WSL can be installed with
other Linux variants, such as OpenSUSE, the following instructions have only been
tested with Ubuntu.
2016-10-17 06:08:33 +02:00
2016-12-27 00:59:17 +01:00
This feature is not supported in versions of Windows prior to Windows 10 or on
Windows Server SKUs. In addition, it is available [only for 64-bit versions of
2019-10-31 17:19:36 +01:00
Windows](https://docs.microsoft.com/windows/wsl/install-win10).
2016-10-17 06:08:33 +02:00
2017-11-14 03:04:25 +01:00
Full instructions to install WSL are available on the above link.
To install WSL on Windows 10 with Fall Creators Update installed (version >= 16215.0) do the following:
2017-10-18 01:14:22 +02:00
2017-11-14 03:04:25 +01:00
1. Enable the Windows Subsystem for Linux feature
2018-02-10 20:15:36 +01:00
* Open the Windows Features dialog (`OptionalFeatures.exe`)
2018-02-26 20:19:29 +01:00
* Enable 'Windows Subsystem for Linux'
2018-02-10 20:15:36 +01:00
* Click 'OK' and restart if necessary
2017-11-14 03:04:25 +01:00
2. Install Ubuntu
2018-05-16 16:29:50 +02:00
* Open Microsoft Store and search for "Ubuntu 18.04" or use [this link ](https://www.microsoft.com/store/productId/9N9TNGVNDL3Q )
2017-11-14 03:04:25 +01:00
* Click Install
2016-10-17 06:08:33 +02:00
3. Complete Installation
2018-05-16 16:29:50 +02:00
* Open a cmd prompt and type "Ubuntu1804"
2016-10-17 06:08:33 +02:00
* Create a new UNIX user account (this is a separate account from your Windows account)
2016-12-27 00:59:17 +01:00
After the bash shell is active, you can follow the instructions below, starting
with the "Cross-compilation" section. Compiling the 64-bit version is
2018-04-17 19:30:35 +02:00
recommended, but it is possible to compile the 32-bit version.
2015-11-03 11:36:09 +01:00
2017-11-17 14:16:35 +01:00
Cross-compilation for Ubuntu and Windows Subsystem for Linux
------------------------------------------------------------
2015-11-03 11:36:09 +01:00
2017-11-17 14:16:35 +01:00
The steps below can be performed on Ubuntu (including in a VM) or WSL. The depends system
2015-11-03 11:36:09 +01:00
will also work on other Linux distributions, however the commands for
installing the toolchain will be different.
2016-11-25 09:20:00 +01:00
First, install the general dependencies:
2018-03-11 15:11:07 +01:00
sudo apt update
sudo apt upgrade
2017-10-15 13:51:53 +02:00
sudo apt install build-essential libtool autotools-dev automake pkg-config bsdmainutils curl git
2016-11-25 09:20:00 +01:00
A host toolchain (`build-essential`) is necessary because some dependency
2019-10-12 17:50:13 +02:00
packages need to build host utilities that are used in the build process.
2016-11-25 09:20:00 +01:00
2018-11-17 13:32:08 +01:00
See [dependencies.md ](dependencies.md ) for a complete overview.
If you want to build the windows installer with `make deploy` you need [NSIS ](https://nsis.sourceforge.io/Main_Page ):
sudo apt install nsis
2017-07-09 13:15:45 +02:00
2019-03-06 20:19:06 +01:00
Acquire the source in the usual way:
git clone https://github.com/bitcoin/bitcoin.git
cd bitcoin
2016-11-25 09:20:00 +01:00
## Building for 64-bit Windows
2018-10-25 21:58:08 +02:00
The first step is to install the mingw-w64 cross-compilation tool chain:
2015-11-03 11:36:09 +01:00
2017-10-15 13:51:53 +02:00
sudo apt install g++-mingw-w64-x86-64
2021-05-27 21:22:46 +02:00
Next, set the default `mingw32 g++` compiler option to POSIX< sup > [1](#footnote1)</ sup > :
2017-10-15 13:51:53 +02:00
2021-05-27 21:22:46 +02:00
```
sudo update-alternatives --config x86_64-w64-mingw32-g++
```
After running the above command, you should see output similar to that below.
Choose the option that ends with `posix` .
```
There are 2 choices for the alternative x86_64-w64-mingw32-g++ (providing /usr/bin/x86_64-w64-mingw32-g++).
Selection Path Priority Status
------------------------------------------------------------
0 /usr/bin/x86_64-w64-mingw32-g++-win32 60 auto mode
* 1 /usr/bin/x86_64-w64-mingw32-g++-posix 30 manual mode
2 /usr/bin/x86_64-w64-mingw32-g++-win32 60 manual mode
Press < enter > to keep the current choice[*], or type selection number:
```
2017-10-15 13:51:53 +02:00
2018-04-17 19:30:35 +02:00
Once the toolchain is installed the build steps are common:
2015-11-03 11:36:09 +01:00
2017-11-17 14:16:35 +01:00
Note that for WSL the Bitcoin Core source path MUST be somewhere in the default mount file system, for
example /usr/src/bitcoin, AND not under /mnt/d/. If this is not the case the dependency autoconf scripts will fail.
2018-10-25 21:58:08 +02:00
This means you cannot use a directory that is located directly on the host Windows file system to perform the build.
2017-11-17 14:16:35 +01:00
2020-06-29 14:25:59 +02:00
Additional WSL Note: WSL support for [launching Win32 applications ](https://docs.microsoft.com/en-us/archive/blogs/wsl/windows-and-ubuntu-interoperability#launching-win32-applications-from-within-wsl )
results in `Autoconf` configure scripts being able to execute Windows Portable Executable files. This can cause
unexpected behaviour during the build, such as Win32 error dialogs for missing libraries. The recommended approach
is to temporarily disable WSL support for Win32 applications.
2019-03-06 20:19:06 +01:00
Build using:
2017-11-17 14:16:35 +01:00
2017-09-05 22:26:20 +02:00
PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g') # strip out problematic Windows %PATH% imported var
2020-06-29 14:25:59 +02:00
sudo bash -c "echo 0 > /proc/sys/fs/binfmt_misc/status" # Disable WSL support for Win32 applications.
2015-11-03 11:36:09 +01:00
cd depends
2016-12-27 00:59:17 +01:00
make HOST=x86_64-w64-mingw32
2015-11-03 11:36:09 +01:00
cd ..
2021-03-02 21:14:18 +01:00
./autogen.sh
2016-11-25 09:20:00 +01:00
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure --prefix=/
2021-05-13 14:15:59 +02:00
make # use "-j N" for N parallel jobs
2020-06-29 14:25:59 +02:00
sudo bash -c "echo 1 > /proc/sys/fs/binfmt_misc/status" # Enable WSL support for Win32 applications.
2015-11-03 11:36:09 +01:00
2016-11-25 09:20:00 +01:00
## Depends system
2015-11-03 11:36:09 +01:00
For further documentation on the depends system see [README.md ](../depends/README.md ) in the depends directory.
2016-11-25 09:20:00 +01:00
Installation
-------------
After building using the Windows subsystem it can be useful to copy the compiled
2018-10-04 20:58:24 +02:00
executables to a directory on the Windows drive in the same directory structure
2016-11-25 09:20:00 +01:00
as they appear in the release `.zip` archive. This can be done in the following
way. This will install to `c:\workspace\bitcoin` , for example:
make install DESTDIR=/mnt/c/workspace/bitcoin
2017-10-15 13:51:53 +02:00
2018-11-17 13:32:08 +01:00
You can also create an installer using:
make deploy
2017-10-15 13:51:53 +02:00
Footnotes
---------
2018-10-25 21:58:08 +02:00
< a name = "footnote1" > 1< / a > : Starting from Ubuntu Xenial 16.04, both the 32 and 64 bit Mingw-w64 packages install two different
2017-10-15 13:51:53 +02:00
compiler options to allow a choice between either posix or win32 threads. The default option is win32 threads which is the more
efficient since it will result in binary code that links directly with the Windows kernel32.lib. Unfortunately, the headers
2018-10-25 21:58:08 +02:00
required to support win32 threads conflict with some of the classes in the C++11 standard library, in particular std::mutex.
2018-04-17 19:30:35 +02:00
It's not possible to build the Bitcoin Core code using the win32 version of the Mingw-w64 cross compilers (at least not without
modifying headers in the Bitcoin Core source code).