Skip to content

Commit

Permalink
lib64 openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 authored Oct 17, 2024
1 parent b16ac85 commit 1483e6b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/build_linux_zig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,11 @@ if [[ "${ARCH}" == "x86_64" && ${PYTHON_MINOR} -ge 11 ]]; then
opensslparams+=(
-DOPENSSL_LIBRARIES="${DEPSDIR}/lib64/libssl.a;${DEPSDIR}/lib64/libcrypto.a"
)
elif [[ "${ARCH}" == "s390x" && ${PYTHON_MINOR} -ge 11 ]]; then
# openssl 3 appears to install to lib64
opensslparams+=(
-DOPENSSL_LIBRARIES="${DEPSDIR}/lib64/libssl.a;${DEPSDIR}/lib64/libcrypto.a"
)
else
opensslparams+=(
-DOPENSSL_LIBRARIES="${DEPSDIR}/lib/libssl.a;${DEPSDIR}/lib/libcrypto.a"
Expand Down

0 comments on commit 1483e6b

Please sign in to comment.