musllinux options #936
MrBitBucket
started this conversation in
General
Replies: 1 comment 3 replies
-
Please see overrides. They were added at the same time as musllinux for this purpose. (Also they are helpful in other cases, like if you mix manylinux_2_24 with any older manylinux, since that's apt and yum, respectively.) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to specify explicit build options for the musl builds? I have tried to build reportlab musllinux, but it seems that we need to install a few packages there to make things work properly. In my alpine vm I need to do something like
. I tried the docker for musil eg
to get a wheel built, installed and tested.
I have this
CIBW_BEFORE_BUILD_LINUX: sh -c 'yum install cairo-devel fribidi -y || true'
but I am pretty unclear what the build environment is for musl using
docker run -it 'quay.io/pypa/musllinux_1_1_x86_64:2021-09-19-a5ef179' /bin/ash
and it doesn't have yum, but my apk commands work fine. So I guess I'm asking if I can use options with names like
CIBW_BEFORE_BUILD_MANYLINUX or CIBW_BEFORE_BUILD_MUSLLINUX?
Beta Was this translation helpful? Give feedback.
All reactions