mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 02:57:09 +01:00
[cryptopp] Fixed build error on ARM32/ARM64 Windows (#9633)
* [cryptopp] Fixed build error on ARM64 Windows * [cryptopp] Update ci.baseline.txt * Update version * Use VCPKG_TARGET_IS_OSX variable
This commit is contained in:
parent
2204efd414
commit
11b8872c97
@ -1,4 +1,4 @@
|
|||||||
Source: cryptopp
|
Source: cryptopp
|
||||||
Version: 8.2.0
|
Version: 8.2.0-1
|
||||||
Homepage: https://github.com/weidai11/cryptopp
|
Homepage: https://github.com/weidai11/cryptopp
|
||||||
Description: Crypto++ is a free C++ class library of cryptographic schemes.
|
Description: Crypto++ is a free C++ class library of cryptographic schemes.
|
||||||
|
@ -24,8 +24,10 @@ vcpkg_from_github(
|
|||||||
file(COPY ${CMAKE_SOURCE_PATH}/cryptopp-config.cmake DESTINATION ${SOURCE_PATH})
|
file(COPY ${CMAKE_SOURCE_PATH}/cryptopp-config.cmake DESTINATION ${SOURCE_PATH})
|
||||||
file(COPY ${CMAKE_SOURCE_PATH}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
file(COPY ${CMAKE_SOURCE_PATH}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
|
||||||
|
|
||||||
# disable assembly on OSX to fix broken build
|
# disable assembly on OSX and ARM Windows to fix broken build
|
||||||
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
if (VCPKG_TARGET_IS_OSX)
|
||||||
|
set(CRYPTOPP_DISABLE_ASM "ON")
|
||||||
|
elseif (VCPKG_TARGET_IS_WINDOWS AND VCPKG_TARGET_ARCHITECTURE MATCHES "^arm")
|
||||||
set(CRYPTOPP_DISABLE_ASM "ON")
|
set(CRYPTOPP_DISABLE_ASM "ON")
|
||||||
else()
|
else()
|
||||||
set(CRYPTOPP_DISABLE_ASM "OFF")
|
set(CRYPTOPP_DISABLE_ASM "OFF")
|
||||||
|
@ -294,8 +294,6 @@ cpuinfo:arm64-windows=ignore
|
|||||||
crfsuite:arm-uwp=fail
|
crfsuite:arm-uwp=fail
|
||||||
crfsuite:x64-uwp=fail
|
crfsuite:x64-uwp=fail
|
||||||
crossguid:x64-osx=fail
|
crossguid:x64-osx=fail
|
||||||
cryptopp:arm64-windows=fail
|
|
||||||
cryptopp:arm-uwp=fail
|
|
||||||
cspice:arm-uwp=fail
|
cspice:arm-uwp=fail
|
||||||
cspice:x64-uwp=fail
|
cspice:x64-uwp=fail
|
||||||
ctemplate:arm64-windows=fail
|
ctemplate:arm64-windows=fail
|
||||||
|
Loading…
x
Reference in New Issue
Block a user