Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1189725 > unrolled thread

Re: [PATCH resend] x86: Fix detection of GCC -mpreferred-stack-boundary support

Started byBorislav Petkov <bp@alien8.de>
First post2015-07-22 10:10 +0200
Last post2015-07-22 10:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH resend] x86: Fix detection of GCC  -mpreferred-stack-boundary support Borislav Petkov <bp@alien8.de> - 2015-07-22 10:10 +0200

#1189725 — Re: [PATCH resend] x86: Fix detection of GCC -mpreferred-stack-boundary support

FromBorislav Petkov <bp@alien8.de>
Date2015-07-22 10:10 +0200
SubjectRe: [PATCH resend] x86: Fix detection of GCC -mpreferred-stack-boundary support
Message-ID<pOXge-10m-15@gated-at.bofh.it>
On Tue, Jul 21, 2015 at 09:27:18AM -0700, Andy Lutomirski wrote:
> +# prevent gcc from generating any FP code by mistake
> +# This must be before we try -mpreferred-stack-boundary -- see
> +# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383
> +KBUILD_CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-3dnow
> +KBUILD_CFLAGS += $(call cc-option,-mno-avx,)

Should we unify all FPU-generating switches to one place? I've added
this

        # Don't autogenerate traditional x87 instructions
        KBUILD_CFLAGS += $(call cc-option,-mno-80387)
        KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)

to the 64-bit build a while back but I don't see why it shouldn't be in
the generic part of the Makefile...

Also, 32-bit has -msoft-float which, according to the gcc manpage is
ignored but I guess should be kept for older gccs...

-- 
Regards/Gruss,
    Boris.

ECO tip #101: Trim your mails when you reply.
--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web