Merge pull request #265972 from NickCao/wolfssl

wolfssl: fix condition for ASM SP Math support
This commit is contained in:
Nick Cao 2023-11-08 21:21:12 -05:00 committed by GitHub
commit 6c35e00bfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: {
"--enable-bigcache" "--enable-bigcache"
# Use WolfSSL's Single Precision Math with timing-resistant cryptography. # Use WolfSSL's Single Precision Math with timing-resistant cryptography.
"--enable-sp=yes${lib.optionalString (!stdenv.isx86_32) ",asm"}" "--enable-sp=yes${lib.optionalString (stdenv.hostPlatform.isx86_64 || stdenv.hostPlatform.isAarch) ",asm"}"
"--enable-sp-math-all" "--enable-sp-math-all"
"--enable-harden" "--enable-harden"
] ++ lib.optionals (stdenv.hostPlatform.isx86_64) [ ] ++ lib.optionals (stdenv.hostPlatform.isx86_64) [