diff options
author | Brian Behlendorf <[email protected]> | 2011-06-14 11:02:13 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-06-14 14:43:22 -0700 |
commit | 8a7e1ceefa430988c8f888ca708ab307333b4464 (patch) | |
tree | 5368cde4746cbc6886ec599ace454cc9fa0a073a /include/linux | |
parent | 10715a018760e1d862b8348e31dc505e832a0904 (diff) |
Check for -Wno-unused-but-set-variable gcc support
Gcc versions 4.3.2 and earlier do not support the compiler flag
-Wno-unused-but-set-variable. This can lead to build failures
on older Linux platforms such as Debian Lenny. Since this is
an optional build argument this changes add a new autoconf check
for the option. If it is supported by the installed version of
gcc then it is used otherwise it is omited.
See commit's 12c1acde76683108441827ae9affba1872f3afe5 and
79713039a2b6e0ed223d141b4a8a8455f282d2f2 for the reason the
-Wno-unused-but-set-variable options was originally added.
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/Makefile.in b/include/linux/Makefile.in index f9ea52611..56679efd9 100644 --- a/include/linux/Makefile.in +++ b/include/linux/Makefile.in @@ -72,6 +72,7 @@ am__aclocal_m4_deps = \ $(top_srcdir)/config/user-ioctl.m4 \ $(top_srcdir)/config/user-libblkid.m4 \ $(top_srcdir)/config/user-libuuid.m4 \ + $(top_srcdir)/config/user-no-unused-but-set-variable.m4 \ $(top_srcdir)/config/user-nptl_guard_within_stack.m4 \ $(top_srcdir)/config/user-selinux.m4 \ $(top_srcdir)/config/user-zlib.m4 $(top_srcdir)/config/user.m4 \ @@ -192,6 +193,7 @@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ +NO_UNUSED_BUT_SET_VARIABLE = @NO_UNUSED_BUT_SET_VARIABLE@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ |