aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libavl
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2011-04-19 10:39:31 -0700
committerBrian Behlendorf <[email protected]>2011-04-19 10:44:10 -0700
commit12c1acde76683108441827ae9affba1872f3afe5 (patch)
tree6800b49b99d7e5c868a64d8511ab9232bb3a1b73 /lib/libavl
parent79713039a2b6e0ed223d141b4a8a8455f282d2f2 (diff)
Set -Wno-unused-but-set-variable globally
As of gcc-4.6 the option -Wunused-but-set-variable is enabled by default. While this is a useful warning there are numerous places in the ZFS code when a variable is set and then only checked in an ASSERT(). To avoid having to update every instance of this in the code we now set -Wno-unused-but-set-variable to suppress the warning. Additionally, when building with --enable-debug and -Werror set these warning also become fatal. We can reevaluate the suppression of these error at a later time if it becomes an issue. For now we are basically just reverting to the previous gcc behavior.
Diffstat (limited to 'lib/libavl')
-rw-r--r--lib/libavl/Makefile.in9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libavl/Makefile.in b/lib/libavl/Makefile.in
index 29441be7e..863d72e30 100644
--- a/lib/libavl/Makefile.in
+++ b/lib/libavl/Makefile.in
@@ -310,10 +310,11 @@ DEFAULT_INCLUDES = -include ${top_builddir}/zfs_config.h \
-I$(top_srcdir)/include -I$(top_srcdir)/lib/libspl/include
AM_LIBTOOLFLAGS = --silent
AM_CFLAGS = -Wall -Wstrict-prototypes -fno-strict-aliasing \
- ${DEBUG_CFLAGS} -D_GNU_SOURCE -D__EXTENSIONS__ -D_REENTRANT \
- -D_POSIX_PTHREAD_SEMANTICS -D_FILE_OFFSET_BITS=64 \
- -D_LARGEFILE64_SOURCE -DTEXT_DOMAIN=\"zfs-linux-user\" \
- $(DEBUG_STACKFLAGS) $(FRAME_LARGER_THAN)
+ -Wno-unused-but-set-variable ${DEBUG_CFLAGS} -D_GNU_SOURCE \
+ -D__EXTENSIONS__ -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS \
+ -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
+ -DTEXT_DOMAIN=\"zfs-linux-user\" $(DEBUG_STACKFLAGS) \
+ $(FRAME_LARGER_THAN)
lib_LTLIBRARIES = libavl.la
libavl_la_SOURCES = \
$(top_srcdir)/module/avl/avl.c