From b132e789f77c5e8ee895669ac380b949a9c686d8 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sat, 19 Jul 2025 12:24:48 -0400 Subject: [PATCH] actions: bring back one of the win arm64 workarounds --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d5e3062..f831c325 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -294,7 +294,7 @@ jobs: cd "${OPENSSL_SOURCE_PATH}" #if ([ "$RUNNER_OS" == "Windows" ] && [ "$RUNNER_ARCH" == "ARM64" ]); then # https://github.com/openssl/openssl/issues/26239 - #export CFLAGS=-DNO_INTERLOCKEDOR64 + export CFLAGS=-DNO_INTERLOCKEDOR64 #fi # --libdir=lib is needed so Python can find OpenSSL libraries "${PERL}" ./Configure --libdir=lib --prefix="${OPENSSL_INSTALL_PATH}" $OPENSSL_CONFIG_OPTS @@ -310,9 +310,9 @@ jobs: run: | cd "${OPENSSL_SOURCE_PATH}" # TODO: remove this once https://github.com/openssl/openssl/issues/26239 is fixed. - #if ([ "$RUNNER_OS" == "Windows" ] && [ "$RUNNER_ARCH" == "ARM64" ]); then - # export CFLAGS=-DNO_INTERLOCKEDOR64 - #fi + if ([ "$RUNNER_OS" == "Windows" ] && [ "$RUNNER_ARCH" == "ARM64" ]); then + export CFLAGS=-DNO_INTERLOCKEDOR64 + fi $MAKE "$MAKEOPT" - name: Install OpenSSL