ring fixes

This commit is contained in:
Scott Lessans 2025-08-05 10:32:20 -07:00
parent a938605e0f
commit 2d077f3745

View file

@ -43,6 +43,9 @@ jobs:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
# Ensure ring's ARM assembly sees an explicit architecture on aarch64 (glibc)
CFLAGS_aarch64_unknown_linux_gnu: -D__ARM_ARCH=8
with:
target: ${{ matrix.platform.target }}
args: -F python-binding --release --out dist --find-interpreter
@ -74,6 +77,9 @@ jobs:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
# Ensure ring's ARM assembly sees an explicit architecture on aarch64 (musl)
CFLAGS_aarch64_unknown_linux_musl: -D__ARM_ARCH=8
with:
target: ${{ matrix.platform.target }}
args: -F python-binding --release --out dist --find-interpreter