dogecoin/build_msvc
Wladimir J. van der Laan d98777f302
Merge #14146: wallet: Remove trailing separators from -walletdir arg
2d471636eb wallet: Remove trailing separators from -walletdir arg (Pierre Rochard)
ea3009ee94 wallet: Add walletdir arg unit tests (Pierre Rochard)

Pull request description:

  If a user passes in a path with a trailing separator as the `walletdir`, multiple BerkeleyEnvironments may be created in the same directory which can lead to data corruption.

  Discovered while reviewing https://github.com/bitcoin/bitcoin/pull/12493#issuecomment-417147646

Tree-SHA512: f2bbf1749d904fd3f326b88f2ead58c8386034355910906d7faea155d518642e9cd4ceb3cae272f2d9d8feb61f126523e1c97502799d24e4315bb53e49fd7c09
2018-10-18 10:58:59 +02:00
..
bench_bitcoin Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
bitcoin-cli Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
bitcoin-tx Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
bitcoind Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
libbitcoin_cli auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_common auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_crypto auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_qt Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
libbitcoin_server auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_util auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_wallet auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoin_zmq auto generate MSVC project files 2018-08-26 23:54:26 +08:00
libbitcoinconsensus appveyor: Use clcache to speed up build 2018-09-03 23:55:00 +08:00
libunivalue Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
msbuild/tasks Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
test_bitcoin wallet: Add walletdir arg unit tests 2018-09-12 21:05:53 -04:00
test_bitcoin-qt Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
testconsensus Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
.gitignore auto generate MSVC project files 2018-08-26 23:54:26 +08:00
bitcoin.sln Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
bitcoin_config.h Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
common.init.vcxproj Visual Studio build configuration for Bitcoin Core 2018-08-10 09:19:00 +02:00
common.vcxproj Make MSVC compiler read the source code using utf-8 2018-09-26 08:47:42 +08:00
msvc-autogen.py auto generate MSVC project files 2018-08-26 23:54:26 +08:00
README.md auto generate MSVC project files 2018-08-26 23:54:26 +08:00

Building Bitcoin Core with Visual Studio

Introduction

Solution and project files to build the Bitcoin Core applications (except Qt dependent ones) with Visual Studio 2017 can be found in the build_msvc directory.

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

Dependencies

A number of open source libraries are required in order to be able to build Bitcoin.

Options for installing the dependencies in a Visual Studio compatible manner are:

  • Use Microsoft's vcpkg to download the source packages and build locally. This is the recommended approach.
  • Download the source code, build each dependency, add the required include paths, link libraries and binary tools to the Visual Studio project files.
  • Use nuget packages with the understanding that any binary files have been compiled by an untrusted third party.

The external dependencies required for the Visual Studio build are (see the dependencies doc for versions):

  • Berkeley DB,
  • OpenSSL,
  • Boost,
  • libevent,
  • ZeroMQ

Additional dependencies required from the bitcoin-core github repository are:

  • SECP256K1,
  • LevelDB

Building

The instructions below use vcpkg to install the dependencies.

  • Clone and vcpkg from the github repository and install as per the instructions in the main README.md.
  • Install the required packages (replace x64 with x86 as required):
  • Install the required dependencies with vcpkg:
    PS >.\vcpkg install boost:x64-windows-static `
    libevent:x64-windows-static `
    openssl:x64-windows-static `
    zeromq:x64-windows-static `
    berkeleydb:x64-windows-static `
    secp256k1:x64-windows-static `
    leveldb:x64-windows-static
  • Use Python to generate *.vcxproj from Makefile
    PS >python msvc-autogen.py
  • Build in Visual Studio.