Merge "display: set compiler option to print all warning messages"
diff --git a/common.mk b/common.mk
index 099ccf9..d8ea260 100644
--- a/common.mk
+++ b/common.mk
@@ -20,7 +20,8 @@
 
 #Common C flags
 common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers
-common_flags += -Werror
+#TODO: Add -Werror back once all the current warnings are fixed
+common_flags += -Wconversion -Wall
 
 ifeq ($(ARCH_ARM_HAVE_NEON),true)
     common_flags += -D__ARM_HAVE_NEON