You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configure.ac: don't require libpython*.so in manylinux cibuildwheel
manylinux intentionally omits libpython*.so libraries from its build
containers to discourage/prevent wheels' native extension libraries from
linking against the Python DSO. We don't do that (anymore), but the
AX_PYTHON_DEVEL Autoconf macro expects to be able to find it and fails
its final sanity check if it can't. Thankfully, more recent versions of
the macro support an 'optional' flag that allows configure to proceed
even if the check fails. So now we set that flag and just check that we
have a value in $PYTHON_CPPFLAGS, which is all the SWIG_PYTHON macro
cares about in the first place.
0 commit comments