We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90697f commit 80598f9Copy full SHA for 80598f9
1 file changed
.github/workflows/CI.yml
@@ -241,6 +241,12 @@ jobs:
241
args: --release --out dist
242
working-directory: bridge/python
243
manylinux: ${{ matrix.manylinux || '' }}
244
+ before-script-linux: |
245
+ # ring v0.17 requires __ARM_ARCH for ARM assembly;
246
+ # older manylinux2014 cross-GCC does not define it.
247
+ # These are target-specific, so harmless on non-ARM builds.
248
+ export CFLAGS_aarch64_unknown_linux_gnu="${CFLAGS_aarch64_unknown_linux_gnu:-} -D__ARM_ARCH=8"
249
+ export CFLAGS_armv7_unknown_linux_gnueabihf="${CFLAGS_armv7_unknown_linux_gnueabihf:-} -D__ARM_ARCH=7"
250
- name: Upload wheels
251
uses: actions/upload-artifact@v4
252
with:
0 commit comments