summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-c3.inc
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2012-03-30 14:27:58 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-04 17:17:54 +0100
commitd6e7ebb20934a4c4822898b4f4adfcde7f7f4049 (patch)
tree1f79149b8e634975a631a277f281e1099705d981 /meta/conf/machine/include/tune-c3.inc
parent62331ff46bd63067dbcdf672460a9aeda18a6e7e (diff)
downloadpoky-d6e7ebb20934a4c4822898b4f4adfcde7f7f4049.tar.gz
conf/machine/include: Cleanup IA tunings to match README
We perform a basic cleanup of the IA32 architecture and related tunings in order to match the rules and descriptions within the new tuning README file. A number of small issues were corrected in the "c3" tuning to bring it inline with the README. (From OE-Core rev: ab77d3401908964f3249c761969600b5ec1bfbd0) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-c3.inc')
-rw-r--r--meta/conf/machine/include/tune-c3.inc12
1 files changed, 9 insertions, 3 deletions
diff --git a/meta/conf/machine/include/tune-c3.inc b/meta/conf/machine/include/tune-c3.inc
index e1569f5952..06fac8fb17 100644
--- a/meta/conf/machine/include/tune-c3.inc
+++ b/meta/conf/machine/include/tune-c3.inc
@@ -1,6 +1,12 @@
1require conf/machine/include/ia32/arch-ia32.inc 1require conf/machine/include/ia32/arch-ia32.inc
2 2
3TUNE_PKGARCH = "i586" 3TUNEVALID[c3] = "VIA Cyrix III or VIA C3 specific optimizations"
4TUNECONFLICT[c3] = "m64 mx32"
5TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "c3", "-march=c3 -mtune=c3", "", d)}"
4 6
5TUNE_CCARGS = "-march=c3 -mtune=c3" 7AVAILTUNES += "c3"
6PACKAGE_EXTRA_ARCHS = "i386 i486 i586" 8TUNE_FEATURES_tune-c3 = "${TUNE_FEATURES_tune-x86} c3"
9BASE_LIBS_tune-c3 = "${BASE_LIB_tune-x86}"
10# The following should likely be something other then i586...
11TUNE_PKGARCH_tune-c3 = "i586"
12PACKAGE_EXTRA_ARCHS_tune-c3 = "${PACKAGE_EXTRA_ARCHS_tune-x86} i386 i486 i586"