From eb8113916198210c15f05488ef676642d0b0c89c Mon Sep 17 00:00:00 2001 From: Joakim Gebart Date: Mon, 6 Jul 2015 12:27:10 +0200 Subject: [PATCH] Makefile.cflags: Enable all warnings by default --- Makefile.cflags | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.cflags b/Makefile.cflags index a39fc0bdcf..fe63998d56 100644 --- a/Makefile.cflags +++ b/Makefile.cflags @@ -52,6 +52,9 @@ endif # Forbid common symbols to prevent accidental aliasing. CFLAGS += -fno-common +# Enable all default warnings +CFLAGS += -Wall + # Default ARFLAGS for platforms which do not specify it. # Note: make by default provides ARFLAGS=rv which we want to override ifeq ($(origin ARFLAGS),default)