Add notes for targeting Windows ARM64 OpenSSL (#1859)

* Add notes for targeting Windows ARM64 OpenSSL

* Fix grammar
This commit is contained in:
TimTim 2021-07-29 21:42:34 +08:00 коммит произвёл GitHub
Родитель 480daf11e7
Коммит 30a01b3ec1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -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 ..