aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-03-19 14:10:17 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-03-19 14:10:17 -0400
commit68df3755e383e6fecf2354a67b08f92f18536594 (patch)
treea5091127ecb61f30c448ec2abb534509791a7d19
parenta1e4ee22863d41a6fbb24310d7951836cb6dafe7 (diff)
Add '-fwrapv' to gcc CFLAGS
This makes sure that gcc doesn't try to optimize away wrapping arithmetic, which the kernel occasionally uses for overflow testing, ie things like if (ptr + offset < ptr) which technically is undefined for non-unsigned types. See http://bugzilla.kernel.org/show_bug.cgi?id=12597 for details. Not all versions of gcc support it, so we need to make it conditional (it looks like it was introduced in gcc-3.4). Reminded-by: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2e2f4a4324af..f607658ac896 100644
--- a/Makefile
+++ b/Makefile
@@ -347,6 +347,7 @@ KBUILD_CPPFLAGS := -D__KERNEL__
347KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ 347KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
348 -fno-strict-aliasing -fno-common \ 348 -fno-strict-aliasing -fno-common \
349 -Werror-implicit-function-declaration 349 -Werror-implicit-function-declaration
350KBUILD_CFLAGS += $(call cc-option,-fwrapv)
350KBUILD_AFLAGS := -D__ASSEMBLY__ 351KBUILD_AFLAGS := -D__ASSEMBLY__
351 352
352# Read KERNELRELEASE from include/config/kernel.release (if it exists) 353# Read KERNELRELEASE from include/config/kernel.release (if it exists)