* Re: Add '-fwrapv' to gcc CFLAGS
[not found] <200903192159.n2JLx1Bu020711@hera.kernel.org>
@ 2009-03-19 22:28 ` Sam Ravnborg
2009-03-19 22:50 ` Linus Torvalds
0 siblings, 1 reply; 2+ messages in thread
From: Sam Ravnborg @ 2009-03-19 22:28 UTC (permalink / raw)
To: Linux Kernel Mailing List, Linus Torvalds; +Cc: git-commits-head, Alan Cox
On Thu, Mar 19, 2009 at 09:59:01PM +0000, Linux Kernel Mailing List wrote:
> Gitweb: http://git.kernel.org/linus/68df3755e383e6fecf2354a67b08f92f18536594
> Commit: 68df3755e383e6fecf2354a67b08f92f18536594
> Parent: a1e4ee22863d41a6fbb24310d7951836cb6dafe7
> Author: Linus Torvalds <torvalds@linux-foundation.org>
> AuthorDate: Thu Mar 19 11:10:17 2009 -0700
> Committer: Linus Torvalds <torvalds@linux-foundation.org>
> CommitDate: Thu Mar 19 11:10:17 2009 -0700
>
> 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>
> ---
> Makefile | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 2e2f4a4..f607658 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -347,6 +347,7 @@ KBUILD_CPPFLAGS := -D__KERNEL__
> KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
> -fno-strict-aliasing -fno-common \
> -Werror-implicit-function-declaration
> +KBUILD_CFLAGS += $(call cc-option,-fwrapv)
> KBUILD_AFLAGS := -D__ASSEMBLY__
>
> # Read KERNELRELEASE from include/config/kernel.release (if it exists)
Path is buggy.
We have several architectures that plays strange games with $(CC)
and $(CROSS_COMPILE).
So we need to postpone any use of $(call cc-option..)
until we have included the arch specific Makefile so
we try with the correct $(CC) version.
If you move it below the include at around line 530 you
should be safe.
Sam
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Add '-fwrapv' to gcc CFLAGS
2009-03-19 22:28 ` Add '-fwrapv' to gcc CFLAGS Sam Ravnborg
@ 2009-03-19 22:50 ` Linus Torvalds
0 siblings, 0 replies; 2+ messages in thread
From: Linus Torvalds @ 2009-03-19 22:50 UTC (permalink / raw)
To: Sam Ravnborg; +Cc: Linux Kernel Mailing List, git-commits-head, Alan Cox
On Thu, 19 Mar 2009, Sam Ravnborg wrote:
>
> Path is buggy.
> We have several architectures that plays strange games with $(CC)
> and $(CROSS_COMPILE).
Argh. It looked obvious, and worked for me, but..
> So we need to postpone any use of $(call cc-option..)
> until we have included the arch specific Makefile so
> we try with the correct $(CC) version.
>
> If you move it below the include at around line 530 you
> should be safe.
Will do.
Linus
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-03-19 22:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <200903192159.n2JLx1Bu020711@hera.kernel.org>
2009-03-19 22:28 ` Add '-fwrapv' to gcc CFLAGS Sam Ravnborg
2009-03-19 22:50 ` Linus Torvalds
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome