Build with -fno-delete-null-pointer-checks

Some of the code we use from the Linux kernel won't build correctly
without this...
This commit is contained in:
Kent Overstreet 2019-08-27 13:33:57 -04:00
parent 72a408f848
commit 8b02f791c3

View File

@ -5,6 +5,7 @@ INSTALL=install
CFLAGS+=-std=gnu89 -O2 -g -MMD -Wall \ CFLAGS+=-std=gnu89 -O2 -g -MMD -Wall \
-Wno-pointer-sign \ -Wno-pointer-sign \
-fno-strict-aliasing \ -fno-strict-aliasing \
-fno-delete-null-pointer-checks \
-I. -Iinclude -Iraid \ -I. -Iinclude -Iraid \
-D_FILE_OFFSET_BITS=64 \ -D_FILE_OFFSET_BITS=64 \
-D_GNU_SOURCE \ -D_GNU_SOURCE \