diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2019-08-27 13:33:57 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2019-08-27 13:33:57 -0400 |
commit | 8b02f791c34eae771442c59a863730c99ac5e1d4 (patch) | |
tree | e1908cb221443a93db68e779212d283c54e28b07 | |
parent | 72a408f84846fe702b8db4f158b678ee20bbf835 (diff) |
Build with -fno-delete-null-pointer-checks
Some of the code we use from the Linux kernel won't build correctly
without this...
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ INSTALL=install CFLAGS+=-std=gnu89 -O2 -g -MMD -Wall \ -Wno-pointer-sign \ -fno-strict-aliasing \ + -fno-delete-null-pointer-checks \ -I. -Iinclude -Iraid \ -D_FILE_OFFSET_BITS=64 \ -D_GNU_SOURCE \ |