You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time you run bitcoind, it will start downloading the blockchain. This process could take several hours.
89
+
The first time you run bitcoind, it will start downloading the blockchain. This process could take many hours, or even days on slower than average systems.
90
90
91
91
You can monitor the download process by looking at the debug.log file:
Copy file name to clipboardExpand all lines: doc/build-windows.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,15 @@ Below are some notes on how to build Bitcoin Core for Windows.
5
5
6
6
The options known to work for building Bitcoin Core on Windows are:
7
7
8
-
* On Linux using the [Mingw-w64](https://mingw-w64.org/doku.php) cross compiler tool chain. Ubuntu Bionic 18.04 is required
8
+
* On Linux, using the [Mingw-w64](https://mingw-w64.org/doku.php) cross compiler tool chain. Ubuntu Bionic 18.04 is required
9
9
and is the platform used to build the Bitcoin Core Windows release binaries.
10
-
* On Windows using [Windows
10
+
* On Windows, using [Windows
11
11
Subsystem for Linux (WSL)](https://msdn.microsoft.com/commandline/wsl/about) and the Mingw-w64 cross compiler tool chain.
12
12
13
13
Other options which may work, but which have not been extensively tested are (please contribute instructions):
14
14
15
-
* On Windows using a POSIX compatibility layer application such as [cygwin](http://www.cygwin.com/) or [msys2](http://www.msys2.org/).
16
-
* On Windows using a native compiler tool chain such as [Visual Studio](https://www.visualstudio.com).
15
+
* On Windows, using a POSIX compatibility layer application such as [cygwin](http://www.cygwin.com/) or [msys2](http://www.msys2.org/).
16
+
* On Windows, using a native compiler tool chain such as [Visual Studio](https://www.visualstudio.com).
17
17
18
18
Installing Windows Subsystem for Linux
19
19
---------------------------------------
@@ -69,7 +69,7 @@ See also: [dependencies.md](dependencies.md).
69
69
70
70
## Building for 64-bit Windows
71
71
72
-
The first step is to install the mingw-w64 cross-compilation tool chain.
72
+
The first step is to install the mingw-w64 cross-compilation tool chain:
73
73
74
74
sudo apt install g++-mingw-w64-x86-64
75
75
@@ -81,13 +81,13 @@ Once the toolchain is installed the build steps are common:
81
81
82
82
Note that for WSL the Bitcoin Core source path MUST be somewhere in the default mount file system, for
83
83
example /usr/src/bitcoin, AND not under /mnt/d/. If this is not the case the dependency autoconf scripts will fail.
84
-
This means you cannot use a directory that located directly on the host Windows file system to perform the build.
84
+
This means you cannot use a directory that is located directly on the host Windows file system to perform the build.
0 commit comments