We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b5679 commit 0d1e1c1Copy full SHA for 0d1e1c1
pyproject.toml
@@ -144,6 +144,9 @@ show_missing = true
144
# Override the default linux before-all for musl linux
145
[[tool.cibuildwheel.overrides]]
146
select = "*-musllinux*"
147
+# Exclude libgcc_s from bundling - it contains _Unwind_* symbols and having
148
+# multiple copies (bundled + system) breaks C++ exception handling.
149
+repair-wheel-command = "auditwheel repair --exclude libgcc_s.so.1 -w {dest_dir} {wheel}"
150
before-all = [
151
# Remove gettext-dev, which conficts with the musl-libintl, which is a build
152
# dependency of elfutils.
0 commit comments