diff options
author | Suriyaa Sundararuban <github@suriyaa.tk> | 2022-12-29 19:09:22 +0100 |
---|---|---|
committer | Suriyaa Sundararuban <github@suriyaa.tk> | 2022-12-31 16:54:13 +0100 |
commit | f84e445dee5f4c5d65cb702958701ff7b38ebdce (patch) | |
tree | 5c06c1c14406923499decaa64f8922649339ccae /build_msvc | |
parent | 3b6e0f0345a5e7b437881f651d9b4e0881f7fd5e (diff) |
doc: Correct linked Microsoft URLs
Diffstat (limited to 'build_msvc')
-rw-r--r-- | build_msvc/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_msvc/README.md b/build_msvc/README.md index 7520700a34..ba6171fee7 100644 --- a/build_msvc/README.md +++ b/build_msvc/README.md @@ -17,7 +17,7 @@ Building with Visual Studio is an alternative to the Linux based [cross-compiler Prerequisites --------------------- To build [dependencies](../doc/dependencies.md) (except for [Qt](#qt)), -the default approach is to use the [vcpkg](https://docs.microsoft.com/en-us/cpp/vcpkg) package manager from Microsoft: +the default approach is to use the [vcpkg](https://vcpkg.io) package manager from Microsoft: 1. [Install](https://vcpkg.io/en/getting-started.html) vcpkg. @@ -69,7 +69,7 @@ Alternatively, open the `build_msvc/bitcoin.sln` file in Visual Studio. Security --------------------- -[Base address randomization](https://docs.microsoft.com/en-us/cpp/build/reference/dynamicbase-use-address-space-layout-randomization?view=msvc-160) 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. +[Base address randomization](https://learn.microsoft.com/en-us/cpp/build/reference/dynamicbase-use-address-space-layout-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 |