File tree 2 files changed +10
-0
lines changed 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ if [ "${CC}" = "clang" ]; then
45
45
else
46
46
patch -p1 -i ${ROOT} /patch-disable-multiarch-legacy.patch
47
47
fi
48
+ elif [ " ${CC} " = " musl-clang" ]; then
49
+ # This appears to also be a problem for musl builds on 3.13.
50
+ if [ -n " ${PYTHON_MEETS_MINIMUM_VERSION_3_13} " ]; then
51
+ patch -p1 -i ${ROOT} /patch-disable-multiarch-13.patch
52
+ fi
48
53
fi
49
54
50
55
autoconf
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ if [ "${CC}" = "clang" ]; then
117
117
else
118
118
patch -p1 -i ${ROOT} /patch-disable-multiarch-legacy.patch
119
119
fi
120
+ elif [ " ${CC} " = " musl-clang" ]; then
121
+ # This appears to also be a problem for musl builds on 3.13.
122
+ if [ -n " ${PYTHON_MEETS_MINIMUM_VERSION_3_13} " ]; then
123
+ patch -p1 -i ${ROOT} /patch-disable-multiarch-13.patch
124
+ fi
120
125
fi
121
126
122
127
# Python 3.11 supports using a provided Python to use during bootstrapping
You can’t perform that action at this time.
0 commit comments