1 parent 5151ac7 commit 70d1944Copy full SHA for 70d1944
2 files changed
.github/workflows/build-and-release.yaml
@@ -85,6 +85,9 @@ jobs:
85
CIBW_SKIP: "pp*"
86
CIBW_REPAIR_WHEEL_COMMAND: "LD_LIBRARY_PATH=$PWD/llama_cpp/lib auditwheel repair -w {dest_dir} {wheel}"
87
CIBW_ARCHS: "aarch64"
88
+ # cibuildwheel v3 defaults aarch64 to manylinux_2_28 images whose
89
+ # current GCC toolchain emits symbols newer than the policy allows.
90
+ CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux2014"
91
# Keep native arm64 builds on a portable CPU baseline instead of
92
# tuning wheels to the hosted runner.
93
CIBW_ENVIRONMENT: CMAKE_ARGS="-DGGML_NATIVE=off"
.github/workflows/build-wheels-rocm.yaml
@@ -33,7 +33,6 @@ jobs:
33
- uses: actions/setup-python@v6
34
with:
35
python-version: ${{ matrix.pyver }}
36
- cache: "pip"
37
38
- name: Install build dependencies
39
run: |
0 commit comments