diff options
author | Leon Woestenberg <leon@sidebranch.com> | 2009-11-19 22:57:16 +0100 |
---|---|---|
committer | Leon Woestenberg <leon@sidebranch.com> | 2009-11-19 22:57:40 +0100 |
commit | 36aac4867a2aa5fc95169315a4691620408ec55c (patch) | |
tree | 3ebdeb4a1f0abbe365315fac220e127aaa969412 /conf/machine/include | |
parent | f73eb119414c6b7047df202943e61bd74ada1692 (diff) |
ion.conf: TARGET_CC_ARCH = "-march=i686 -mtune=atom" for Atom.
Diffstat (limited to 'conf/machine/include')
-rw-r--r-- | conf/machine/include/tune-atom.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/conf/machine/include/tune-atom.inc b/conf/machine/include/tune-atom.inc index 3c5dd9b25d..b1f6453526 100644 --- a/conf/machine/include/tune-atom.inc +++ b/conf/machine/include/tune-atom.inc @@ -1,6 +1,8 @@ -# was: TARGET_CC_ARCH = "-march=i586" +# GCC 4.3.0- (see Poky) +# TARGET_CC_ARCH = "-march=i586" # -# since GCC 4.3.1, use core2 for +15% performance -# http://en.gentoo-wiki.com/wiki/Safe_Cflags/Intel#Atom +# GCC 4.3.1+ (see Gentoo) +#TARGET_CC_ARCH = "-march=core2" -TARGET_CC_ARCH = "-march=core2" +# GCC 4.4.2+ (see Fedora 12) +TARGET_CC_ARCH = "-march=i686 -mtune=atom" |