Turn off the warning that the undefined behavior I am using in

a test generates.  The green dragon bot compiler is treating this
warning as an error for some reason, hopefully this will calm its
worries.
This commit is contained in:
Jim Ingham 2022-10-04 11:36:25 -07:00
parent 1376c73927
commit 2c43cd883c
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
C_SOURCES := main.c
CFLAGS_EXTRAS := -fsanitize=undefined -g
CFLAGS_EXTRAS := -fsanitize=undefined -g -Wno-int-conversion
include Makefile.rules