From 36f28c6cf22b35fc4fb7697a44e7ac7d5e371709 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Mon, 22 Jun 2026 21:03:15 +1000 Subject: [PATCH] disableMarchNative for libstorage release builds --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43991325..78cd4c83 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -160,20 +160,20 @@ jobs: if: matrix.os == 'linux' run: | make -j${ncpu} update - make -j${ncpu} libstorage + make -j${ncpu} NIMFLAGS="-d:disableMarchNative" libstorage - name: Build ${{ env.c_bindings_lib_base }} (MacOS) if: matrix.os == 'macos' run: | make -j${ncpu} update - STORAGE_LIB_PARAMS="--passL:\"-Wl,-install_name,@rpath/${{ env.c_bindings_lib_base }}.dylib\"" make -j${ncpu} libstorage + STORAGE_LIB_PARAMS="--passL:\"-Wl,-install_name,@rpath/${{ env.c_bindings_lib_base }}.dylib\"" make -j${ncpu} NIMFLAGS="-d:disableMarchNative" libstorage - name: Build ${{ env.c_bindings_lib_base }} (Windows) if: matrix.os == 'windows' shell: msys2 {0} run: | make -j${ncpu} update - make -j${ncpu} libstorage + make -j${ncpu} NIMFLAGS="-d:disableMarchNative" libstorage - name: Package ${{ env.c_bindings_lib_base }} Linux if: matrix.os == 'linux'