Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 136741 - kernel make file for x86_64 not correct
Summary: kernel make file for x86_64 not correct
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: AMD64 Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL: -
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-13 23:45 UTC by Armin Mohring
Modified: 2006-06-14 00:51 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.