Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ CFLAGS += -fno-stack-protector -fno-exceptions -fno-builtin -fomit-frame-pointe
CFLAGS += -mcmodel=kernel -fno-pic -fno-asynchronous-unwind-tables -fno-unwind-tables
CFLAGS += -Wno-unused-parameter -Wno-address-of-packed-member
CFLAGS += -Werror
# Newer versions of GCC warn about memory accesses at non-zero offsets from null pointers.
# As we use this intentionally at different places in our code, these warnings result in many false positives.
CFLAGS += -Wno-array-bounds

ifneq ($(V), 1)
VERBOSE=@
Expand Down
Loading