summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2019-05-10 15:23:22 -0700
committerPatrick Georgi <pgeorgi@google.com>2019-05-13 10:25:45 +0000
commit795fda033656982a8aeef0e105bcfbc9a73c8c13 (patch)
tree450424f1c690e31ee255b708fd9453d18724fcce /Makefile.inc
parentc15e600490fcc0e7da2a4495b233a4f9c62c8cd1 (diff)
downloadcoreboot-795fda033656982a8aeef0e105bcfbc9a73c8c13.tar.gz
coreboot-795fda033656982a8aeef0e105bcfbc9a73c8c13.tar.bz2
coreboot-795fda033656982a8aeef0e105bcfbc9a73c8c13.zip
Reland "Makefile.inc: Enable -Wtype-limits""
This reverts commit 99e836c843e6a8536348d5cc9581b5a17512a263. This relands commit c4ab50cdde4bfd01ec7509012b105c88bcf4c953. The issues with -Wtype-limits in the vboot submodule have been resolved now, so we can enable this flag again. Change-Id: I32e8cc88e69072e7ee66cf443b578a9a8ea0ebe2 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32749 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Joel Kitching <kitching@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc
index a9aaaed783b2..9860da1b681d 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -401,7 +401,7 @@ endif
CFLAGS_common += -pipe -g -nostdinc -std=gnu11
CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
-CFLAGS_common += -Wstrict-aliasing -Wshadow -Wdate-time
+CFLAGS_common += -Wstrict-aliasing -Wshadow -Wdate-time -Wtype-limits
CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
CFLAGS_common += -ffunction-sections -fdata-sections -fno-pie
ifeq ($(CONFIG_COMPILER_GCC),y)