Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions repos/spack_repo/builtin/packages/augustus/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ class Augustus(MakefilePackage):
# build bam2wig and 3.4.0+ links -lhts only.
conflicts("^htslib@1.10:", when="@3.3.1-tag1:3.3.2 ^samtools@:1.2")

def flag_handler(self, name, flags):
if name == "cppflags":
flags.append("-include stdint.h") # needed for gcc 14 and newer
return (flags, None, None)

def edit(self, spec, prefix):
# Set compile commands for each compiler and
# Fix for using 'boost' on Spack. (only after ver.3.3.1-tag1)
Expand Down
Loading