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:
2021-09-17 05:24:55 +02:00
* On Linux, using the [Mingw-w64 ](https://www.mingw-w64.org/ ) cross compiler tool chain.
2022-12-29 19:09:22 +01:00
* On Windows, using [Windows Subsystem for Linux (WSL) ](https://learn.microsoft.com/en-us/windows/wsl/about ) and Mingw-w64.
* On Windows, using [Microsoft Visual Studio ](https://visualstudio.microsoft.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
2022-12-29 19:09:22 +01:00
Follow the upstream installation instructions, available [here ](https://learn.microsoft.com/en-us/windows/wsl/install ).
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
2021-09-17 05:24:55 +02:00
The steps below can be performed on Ubuntu 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
2022-01-23 14:59:41 +01:00
```sh
sudo apt install g++-mingw-w64-x86-64-posix
```
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
2022-12-29 19:09:22 +01:00
Additional WSL Note: WSL support for [launching Win32 applications ](https://learn.microsoft.com/en-us/archive/blogs/wsl/windows-and-ubuntu-interoperability#launching-win32-applications-from-within-wsl )
2020-06-29 14:25:59 +02:00
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