summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2018-04-14 19:19:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-04-16 04:54:53 (GMT)
commit99f763baf5941455aefd176f9b1e98a4ff81f611 (patch)
treea9fcd852f0154f79c173753f227bcbddd7e1fde9 /Makefile
parent1da1580e4c2d482070363edc7b4f8b42874c312a (diff)
downloadgit-99f763baf5941455aefd176f9b1e98a4ff81f611.zip
git-99f763baf5941455aefd176f9b1e98a4ff81f611.tar.gz
git-99f763baf5941455aefd176f9b1e98a4ff81f611.tar.bz2
Makefile: add a DEVOPTS to suppress -Werror under DEVELOPER
Add a DEVOPTS variable that'll be used to tweak the behavior of DEVELOPER. I've long wanted to use DEVELOPER=1 in my production builds, but on some old systems I still get warnings, and thus the build would fail. However if the build/tests fail for some other reason, it would still be useful to scroll up and see what the relevant code is warning about. This change allows for that. Now setting DEVELOPER will set -Werror as before, but if DEVOPTS=no-error is provided is set you'll get the same warnings, but without -Werror. Helped-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9ea2e50..f5fd5ac 100644
--- a/Makefile
+++ b/Makefile
@@ -435,6 +435,16 @@ all::
# Define DEVELOPER to enable more compiler warnings. Compiler version
# and family are auto detected, but could be overridden by defining
# COMPILER_FEATURES (see config.mak.dev)
+#
+# When DEVELOPER is set, DEVOPTS can be used to control compiler
+# options. This variable contains keywords separated by
+# whitespace. The following keywords are are recognized:
+#
+# no-error:
+#
+# suppresses the -Werror that implicitly comes with
+# DEVELOPER=1. Useful for getting the full set of errors
+# without immediately dying, or for logging them.
GIT-VERSION-FILE: FORCE
@$(SHELL_PATH) ./GIT-VERSION-GEN