Skip to content

Commit

Permalink
CI: GCC bug workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
aardappel committed Jan 9, 2025
1 parent e35a2d0 commit 9f491da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ set_source_files_properties(${EXTERNAL_SRCS} PROPERTIES COMPILE_FLAGS -w)
if(CMAKE_COMPILER_IS_GNUCXX)
# surpress warnings from included stb file..
set_source_files_properties(src/sdlaudiosfxr.cpp PROPERTIES COMPILE_FLAGS -Wno-maybe-uninitialized)
# This appears to be broken giving false positives inside the STL on GCC 13+
set_source_files_properties(src/lobsterreader.cpp PROPERTIES COMPILE_FLAGS -Wno-array-bounds)
endif()

function(removecpp CPPNAME)
Expand Down

0 comments on commit 9f491da

Please sign in to comment.