Skip to content

Commit

Permalink
Merge pull request cc65#2462 from SvenMichaelKlose/gcc14_make_test_fix
Browse files Browse the repository at this point in the history
Keep gcc-14 from aborting with errors due to new defaults.
  • Loading branch information
mrdudz authored Jul 7, 2024
2 parents 0541b65 + 871bafa commit 2f25b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ref/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ISEQUAL = ..$S..$Stestwrk$Sisequal$(EXE)
# will have to change that, and create said special cases here.
# see discussion in https://github.com/cc65/cc65/issues/2277
CC = gcc
CFLAGS = -std=gnu17 -O2 -Wall -W -Wextra -funsigned-char -fwrapv -fno-strict-overflow
CFLAGS = -std=gnu17 -O2 -Wall -W -Wextra -funsigned-char -fwrapv -fno-strict-overflow -Wno-error=implicit-int -Wno-error=int-conversion

.PHONY: all clean

Expand Down

0 comments on commit 2f25b18

Please sign in to comment.