parent
74aa5b7e12
commit
a650e0d9f1
|
|
@ -56,9 +56,10 @@ matrix:
|
|||
env: BUILD_MODE="ios-tv"
|
||||
|
||||
allow_failures:
|
||||
# Ignore problems with old toolchains
|
||||
- env: BUILD_MODE="ubsan"
|
||||
- env: BUILD_MODE="asan"
|
||||
- os: linux
|
||||
env: BUILD_MODE="ios-watch"
|
||||
- os: linux
|
||||
env: BUILD_MODE="ios-tv"
|
||||
|
||||
script:
|
||||
- |
|
||||
|
|
|
|||
|
|
@ -204,10 +204,15 @@ if [ "$IOS_ARCH" == "armv7s" ]; then
|
|||
fi
|
||||
|
||||
# ARM64 fixup. Xcode 5/iOS 7
|
||||
if [ "$IOS_ARCH" == "arm64" ] && [ "$APPLE_SDK" != "AppleTVOS" ]; then
|
||||
if [ "$IOS_ARCH" == "arm64" ]; then
|
||||
IOS_FLAGS=-miphoneos-version-min=7
|
||||
fi
|
||||
|
||||
# Yet another ARM64 fixup.
|
||||
if [ "$APPLE_SDK" == "AppleTVOS" ]; then
|
||||
IOS_FLAGS=
|
||||
fi
|
||||
|
||||
# ARM64 Simulator fixup. Under Xcode 6/iOS 8, it uses x86_64 and not i386
|
||||
if [ "$IOS_ARCH" == "x86_64" ]; then
|
||||
IOS_FLAGS=-miphoneos-version-min=8
|
||||
|
|
|
|||
2
sha.cpp
2
sha.cpp
|
|
@ -706,7 +706,7 @@ size_t SHA256::HashMultipleBlocks(const word32 *input, size_t length)
|
|||
|
||||
size_t SHA224::HashMultipleBlocks(const word32 *input, size_t length)
|
||||
{
|
||||
CRYPTOPP_ASSERT(input);
|
||||
CRYPTOPP_ASSERT(input);
|
||||
CRYPTOPP_ASSERT(length >= SHA256::BLOCKSIZE);
|
||||
|
||||
#if CRYPTOPP_SHANI_AVAILABLE
|
||||
|
|
|
|||
Loading…
Reference in New Issue