Rebuild against manylinux_2_28 for the new libstdc++ ABI - #258
Merged
Merged
Conversation
manylinux2014 cannot emit the new libstdc++ ABI: it defines _GLIBCXX_USE_DUAL_ABI 0, so -D_GLIBCXX_USE_CXX11_ABI=1 is discarded. C++ consumers on gcc-14/clang-18 therefore fail to link the wheels C++ SDK with undefined references to the __cxx11 / B5cxx11 manglings. This empty commit triggers a republish from the manylinux_2_28 image with nwxcmake 0.2.6, and picks up NWChemEx/.github@620e081 (no vendored OpenMPI in the macOS wheels). Already confirmed on two canaries: nwchemex-utilities 0.1.47 now exports Demangler::demangle[abi:cxx11], and nwchemex-parallelzone 0.1.45 ships no vendored MPI (absolute /opt/homebrew install name) plus 14 new-ABI symbols. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
|
🚀 [bumpr] Bumped! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Empty commit to trigger a republish. Part of the ecosystem-wide ABI rebuild.
Why
The published wheels were built on
manylinux2014, which cannot emit the new libstdc++ ABI — it defines_GLIBCXX_USE_DUAL_ABI 0, so-D_GLIBCXX_USE_CXX11_ABI=1is silently discarded. C++ consumers on gcc-14/clang-18 then fail to link the wheels C++ SDK with undefined references to the__cxx11/B5cxx11manglings.No PR has ever built a manylinux wheel —
build_pypi_distruns only frommerge.yaml, andtest_pip_builddoes not use cibuildwheel — which is how this survived.What this picks up
manylinux_2_28image + gcc-toolset-14delocatevendoring a second OpenMPI into the macOS wheelsAlready proven on two canaries
nwchemex-utilities 0.1.47now exports_ZN9utilities8printing9Demangler8demangleB5cxx11EPKc(new ABI).nwchemex-parallelzone 0.1.45ships no vendored MPI — absolute/opt/homebrew/opt/open-mpi/lib/libmpi.40.dylibinstall name instead of@loader_path, plus 14 new-ABI symbols.Locally, all 11 packages build on
manylinux_2_28and a full-stack consumer links and runs against them on gcc-14 and clang-18, while the control against the published wheels fails with CI exact symbols.🤖 Generated with Claude Code