You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
litecoin/build_msvc
Aaron Clauson bb1c84082c
Remove the build_msvc/testconsensus project
3 years ago
..
bench_bitcoin
bitcoin-cli
bitcoin-qt multiprocess: Add new bitcoin-gui, bitcoin-qt, bitcoin-wallet init implementations 3 years ago
bitcoin-tx
bitcoin-util build_msvc: Make bitcoin-util ProjectGuid unique 3 years ago
bitcoin-wallet multiprocess: Add new bitcoin-gui, bitcoin-qt, bitcoin-wallet init implementations 3 years ago
bitcoind test: Fix tests on Windows 3 years ago
libbitcoin_cli
libbitcoin_common
libbitcoin_crypto
libbitcoin_qt build_msvc: Drop 32-bit build configurations 3 years ago
libbitcoin_server
libbitcoin_util
libbitcoin_wallet
libbitcoin_wallet_tool
libbitcoin_zmq
libbitcoinconsensus
libleveldb
libsecp256k1
libtest_util
libunivalue
msbuild/tasks
test_bitcoin
test_bitcoin-qt multiprocess: Add new bitcoin-gui, bitcoin-qt, bitcoin-wallet init implementations 3 years ago
.gitignore
README.md doc: Suggest using jom instead of nmake 3 years ago
bitcoin.sln Remove the build_msvc/testconsensus project 3 years ago
bitcoin_config.h msvc: update bitcoin_config.h defines 3 years ago
common.init.vcxproj build_msvc: Drop 32-bit build configurations 3 years ago
common.qt.init.vcxproj build: Make <QtBaseDir> default name Qt and VS versions agnostic 3 years ago
common.vcxproj
libsecp256k1_config.h
msvc-autogen.py build: Update default platform toolset in msvc-autogen.py 3 years ago
vcpkg.json

README.md

Building Bitcoin Core with Visual Studio

Introduction

Solution and project files to build Bitcoin Core with msbuild or Visual Studio can be found in the build_msvc directory. The build has been tested with Visual Studio 2019 (building with earlier versions of Visual Studio should not be expected to work).

To build Bitcoin Core from the command-line, it is sufficient to only install the Visual Studio Build Tools component.

Building with Visual Studio is an alternative to the Linux based cross-compiler build.

Prerequisites

To build dependencies (except for Qt), the default approach is to use the vcpkg package manager from Microsoft:

  1. Install vcpkg.

  2. By default, vcpkg makes both release and debug builds for each package. To save build time and disk space, one could skip debug builds (example uses PowerShell):


Add-Content -Path "vcpkg\triplets\x64-windows-static.cmake" -Value "set(VCPKG_BUILD_TYPE release)"

Qt

To build Bitcoin Core with the GUI, a static build of Qt is required.

  1. Download a single ZIP archive of Qt source code from https://download.qt.io/official_releases/qt/ (e.g., qt-everywhere-src-5.12.11.zip), and expand it into a dedicated folder. The following instructions assume that this folder is C:\dev\qt-source.

  2. Open "x64 Native Tools Command Prompt for VS 2019", and input the following commands:

cd C:\dev\qt-source
mkdir build
cd build
..\configure -release -silent -opensource -confirm-license -opengl desktop -no-shared -static -static-runtime -mp -qt-zlib -qt-pcre -qt-libpng -no-libjpeg -nomake examples -nomake tests -nomake tools -no-dbus -no-libudev -no-icu -no-gtk -no-opengles3 -no-angle -no-sql-sqlite -no-sql-odbc -no-sqlite -no-libudev -no-vulkan -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcanvas3d -skip qtcharts -skip qtconnectivity -skip qtdatavis3d -skip qtdeclarative -skip qtdoc -skip qtgamepad -skip qtgraphicaleffects -skip qtimageformats -skip qtlocation -skip qtmacextras -skip qtmultimedia -skip qtnetworkauth -skip qtpurchasing -skip qtquickcontrols -skip qtquickcontrols2 -skip qtscript -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtserialport -skip qtspeech -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebsockets -skip qtwebview -skip qtx11extras -skip qtxmlpatterns -no-openssl -no-feature-sql -no-feature-sqlmodel -prefix C:\Qt_static
nmake
nmake install

One could speed up building with jom, a replacement for nmake which makes use of all CPU cores.

To build Bitcoin Core without Qt, unload or disable the bitcoin-qt, libbitcoin_qt and test_bitcoin-qt projects.

Building

  1. Use Python to generate *.vcxproj from Makefile:
PS >py -3 msvc-autogen.py
  1. An optional step is to adjust the settings in the build_msvc directory and the common.init.vcxproj file. This project file contains settings that are common to all projects such as the runtime library version and target Windows SDK version. The Qt directories can also be set. To specify a non-default path to a static Qt package directory, use the QTBASEDIR environment variable.

  2. To build from the command-line with the Visual Studio 2019 toolchain use:

msbuild -property:Configuration=Release -maxCpuCount -verbosity:minimal bitcoin.sln

Alternatively, open the build_msvc/bitcoin.sln file in Visual Studio 2019.

Security

Base address randomization is used to make Bitcoin Core more secure. When building Bitcoin using the build_msvc process base address randomization can be disabled by editing common.init.vcproj to change RandomizedBaseAddress from true to false and then rebuilding the project.

To check if bitcoind has RandomizedBaseAddress enabled or disabled run

.\dumpbin.exe /headers src/bitcoind.exe

If is it enabled then in the output Dynamic base will be listed in the DLL characteristics under OPTIONAL HEADER VALUES as shown below

            8160 DLL characteristics
                   High Entropy Virtual Addresses
                   Dynamic base
                   NX compatible
                   Terminal Server Aware

This may not disable all stack randomization as versions of windows employ additional stack randomization protections. These protections must be turned off in the OS configuration.