spades: fix missing <cstdint> under GCC 14 - #6269
Open
gonzabotmdp wants to merge 1 commit into
Open
Conversation
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.
Summary
Building spades@4.0.0 with GCC 14 fails with e.g.:
id_map.hppusesuint64_tas a default template parameter but never includes<cstdint>-- older GCC pulled it in transitively (via<boost/iterator/iterator_facade.hpp>or one of the other headers it includes), GCC 14's libstdc++ does not.A static scan of the whole
src/tree found 111 files with the same pattern (using fixed-width int types while relying on a transitive include for<cstdint>/<stdint.h>) -- too many to patch file by file, and too easy for the build to hit a new one further along depending on which+tools/+sratargets get compiled. Forcing the header into every translation unit at the compiler level (-include cstdintfor C++,-include stdint.hfor C, since<cstdint>is the C++ wrapper and isn't visible to the plain C compiler) covers all of them at once.Testing
Installed
spades@4.0.0 +sra +tools(all optional projects enabled,SPADES_ENABLE_PROJECTS=all) with%gcc@14.2.0end to end, confirmedspades.py --versionand a real assembly run (contigs.fasta/scaffolds.fasta produced) work.