Skip to content

Commit

Permalink
Disable some GCC 14 errors in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Jul 25, 2024
1 parent 371baaa commit 2a3a965
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ ifdef SEPARATE
CILLY+= --nomerge
endif

# Disable GCC 14 new warnings as errors because some tests contain them
CFLAGS += -Wno-error=implicit-int -Wno-error=implicit-function-declaration -Wno-error=int-conversion -Wno-error=incompatible-pointer-types

# sm: this will make gcc warnings into errors; it's almost never
# what we want, but for a particular testcase (combine_copyptrs)
# I need it to show the difference between something which works
Expand Down

0 comments on commit 2a3a965

Please sign in to comment.