aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Chupin <pavel.v.chupin@intel.com>2013-12-12 20:48:10 +0400
committerPavel Chupin <pavel.v.chupin@intel.com>2014-02-26 12:54:47 +0400
commit7eae5e66da2793a2a26bcd42357dca1ea6c391b9 (patch)
tree6b71e209013b6d04181fe43f66bb343b4a35145f
parent2f00bce0ef2fe4bd07ade43c4abc0fd4c498bdc4 (diff)
downloadbuild-7eae5e66da2793a2a26bcd42357dca1ea6c391b9.tar.gz
Switch x86/x86-64 -mtune from "atom" to more generic "intel"
-mtune=intel is tradeoff tuning between top IA archs whereas "atom" is best on atom only. Change-Id: I27668e4f48f26b00742d117a9a2a38e8903e22d5 Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index dc57ffa..0012a34 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -480,11 +480,11 @@ GCC_CONFIG_ARGS += $(GCC_CONFIG_LIBSTDCXX_V3) --disable-libssp \
CFLAGS_FOR_TARGET += -DTARGET_POSIX_IO -fno-short-enums
ifeq ($(target_cpu),i686)
-GCC_CONFIG_ARGS += --with-arch=i686 --with-tune=atom --with-fpmath=sse
+GCC_CONFIG_ARGS += --with-arch=i686 --with-tune=intel --with-fpmath=sse
endif
ifeq ($(target_cpu),x86_64)
-GCC_CONFIG_ARGS += --with-arch=x86-64 --with-tune=atom --with-fpmath=sse \
+GCC_CONFIG_ARGS += --with-arch=x86-64 --with-tune=intel --with-fpmath=sse \
--with-multilib-list=m32,m64,mx32
endif