diff options
author | fanquake <fanquake@gmail.com> | 2023-11-17 10:54:52 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-11-17 10:57:51 +0000 |
commit | 656a7e9de626ea76f377c7e1e3370a869d7bcca9 (patch) | |
tree | d6808175e7960f9c863661e94a5ae99db294b179 /doc/build-windows.md | |
parent | 950af7c8767aaaf66fe329cb10deaf0aea8e6ed9 (diff) |
doc: remove mingw-w64 install for "older" systems
Now that we require GCC 10.1+, the posix variant is available on
supported systems.
i.e:
https://packages.debian.org/bullseye/g++-mingw-w64-x86-64-posix
https://packages.ubuntu.com/jammy/g++-mingw-w64-x86-64-posix
Diffstat (limited to 'doc/build-windows.md')
-rw-r--r-- | doc/build-windows.md | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/build-windows.md b/doc/build-windows.md index 027e8f80f5..841693c77b 100644 --- a/doc/build-windows.md +++ b/doc/build-windows.md @@ -48,18 +48,11 @@ Acquire the source in the usual way: ## Building for 64-bit Windows The first step is to install the mingw-w64 cross-compilation tool chain: - - on modern systems (Ubuntu 21.04 Hirsute Hippo or newer, Debian 11 Bullseye or newer): ```sh sudo apt install g++-mingw-w64-x86-64-posix ``` - - on older systems: - -```sh -sudo apt install g++-mingw-w64-x86-64 -``` - Once the toolchain is installed the build steps are common: Note that for WSL the Bitcoin Core source path MUST be somewhere in the default mount file system, for |