Skip to content

Commit 88105c0

Browse files
authored
Merge pull request #89 from ddscentral/Piers
Add support for Windows ARM64. Bump openssl to 1.1.1q on Windows.
2 parents 8b196db + 43e82c1 commit 88105c0

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

depends/windows/openssl/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@ find_package(StrawberryPerl REQUIRED)
77
include(CheckSymbolExists)
88
check_symbol_exists(_X86_ "Windows.h" _X86_)
99
check_symbol_exists(_AMD64_ "Windows.h" _AMD64_)
10+
check_symbol_exists(_ARM64_ "Windows.h" _ARM64_)
1011

1112
if(_X86_)
1213
message(STATUS "Win32")
1314
set(OPENSSL_PLATFORM VC-WIN32)
1415
elseif(_AMD64_)
1516
message(STATUS "x64")
1617
set(OPENSSL_PLATFORM VC-WIN64A)
18+
elseif(_ARM64_)
19+
message(STATUS "arm64")
20+
set(OPENSSL_PLATFORM VC-WIN64-ARM)
1721
else()
1822
message(FATAL_ERROR "Unsupported target architecture")
1923
endif()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
281e4f13142b53657bd154481e18195b2d477572fdffa8ed1065f73ef5a19777
1+
0686897afd3a08223760db73d8034550401b53ffc545798d7ca476564f80315e
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openssl https://github.com/openssl/openssl/archive/OpenSSL_1_1_1g.tar.gz
1+
openssl https://github.com/openssl/openssl/archive/OpenSSL_1_1_1q.tar.gz

0 commit comments

Comments
 (0)