aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-06-26 21:43:19 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-06-26 21:43:19 +0000
commitc5225ad92fc972c0e7ef1f043fba696b65bb7a03 (patch)
treea98708abc3f18d56ae5275760d466cb529231c69 /share
parent55b8fbfb5b2a6f694a8003544db63aeb44274937 (diff)
Notes
Diffstat (limited to 'share')
-rw-r--r--share/examples/etc/make.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf
index 7a5a5faebcd7..f88564b60f7a 100644
--- a/share/examples/etc/make.conf
+++ b/share/examples/etc/make.conf
@@ -26,6 +26,15 @@
#
#CXXFLAGS+= -fmemoize-lookups -fsave-memoized
#
+# BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested
+# for use in developing FreeBSD and testing changes. They can be used by
+# putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf.
+#
+BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
+ -Wcast-qual -Wchar-subscripts -Wconversion -Winline \
+ -Wmissing-prototypes -Wnested-externs -Wpointer-arith \
+ -Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
+#
# Avoid compiling profiled libraries
#NOPROFILE= true
#