From 30a01b3ec1cdb3663d0fe9d5f78f375f131f8ec1 Mon Sep 17 00:00:00 2001 From: TimTim Date: Thu, 29 Jul 2021 21:42:34 +0800 Subject: [PATCH] Add notes for targeting Windows ARM64 OpenSSL (#1859) * Add notes for targeting Windows ARM64 OpenSSL * Fix grammar --- docs/BUILD.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/BUILD.md b/docs/BUILD.md index 5a9cdb3089..e13bfbee93 100644 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -102,10 +102,12 @@ Note at minimum CMake 3.16 is required. Instructions for installing the newest v ### Additional Requirements on Windows - * [CMake](https://cmake.org/) + * [CMake](https://cmake.org/) (available in "Developer Command Prompt for VS 2019" when "C++ CMake tools for Windows" are installed) * [Perl](https://www.perl.org/get.html) optional (required for OpenSSL build) - * [Visual Studio 2019](https://www.visualstudio.com/vs/) or higher - * Latest [Windows Insider](https://insider.windows.com/en-us/) builds + * [Visual Studio 2019](https://www.visualstudio.com/vs/) (or Build Tools for Visual Studio 2019) with + - C++ CMake tools for Windows + - MSVC v142 - VS 2019 C++ (_Arch_) build tools + * Latest [Windows Insider](https://insider.windows.com/en-us/) builds (required for SChannel build) ## Running a Build @@ -195,6 +197,7 @@ xcode-select --install ### Windows +Ensure the corresponding "MSVC v142 - VS 2019 C++ (_Arch_) build tools" are installed for the target arch, e.g. selecting "Desktop development with C++" only includes x64/x86 but not ARM64 by default. ``` mkdir build && cd build cmake -g 'Visual Studio 16 2019' -A x64 ..