Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 136741

Summary: kernel make file for x86_64 not correct
Product: Gentoo Linux Reporter: Armin Mohring <mohringarmin>
Component: [OLD] Core systemAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED INVALID    
Severity: normal    
Priority: High    
Version: 2006.0   
Hardware: AMD64   
OS: Linux   
URL: -
Whiteboard:
Package list:
Runtime testing required: ---

Description Armin Mohring 2006-06-13 23:45:00 UTC
gentoo-sources 2.6.16-r9
path /usr/src/linux/arch/x86_64.
Makefile contains the following line:
# prevent gcc from generating any FP code by mistake
CFLAGS += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,)

should be 
# prevent gcc from generating any FP code by mistake
# CFLAGS += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,)
Comment 1 Danny van Dyk (RETIRED) gentoo-dev 2006-06-14 00:51:33 UTC
Read the comment above the CFLAGS line.

_No_ floating point operations in-kernel, this includes any floating point
operations that are cuased by optimisation to SIMD code by the compiler.

Next time, please grok the thing first, before you dub it a bug.