On 10/22/2012 01:59 AM, Uwaysi Bin Kareem wrote: > Hiya, I compiled the kernel with V=1 and noticed "-mno-sse -mno-mmx -mno-sse2 > -mno-3dnow -mno-avx". Is there a way to turn this on? Alt, in what file is > this string, so I can try without it.
Please teach your mail program to wrap lines around column 70-72. thanks. That string is located in arch/x86/Makefile: # prevent gcc from generating any FP code by mistake KBUILD_CFLAGS += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,) KBUILD_CFLAGS += $(call cc-option,-mno-avx,) -- ~Randy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

