summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-sh4.inc
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2012-03-30 14:34:14 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-04 17:17:55 +0100
commitaf74a8f627d8429707524fe7a37c093709752daa (patch)
tree9dc826efdcc7af70f0a0c708a8213e83fdebc4ef /meta/conf/machine/include/tune-sh4.inc
parent449dae1e035b0b3e599ab4ba53257743c6eb964b (diff)
downloadpoky-af74a8f627d8429707524fe7a37c093709752daa.tar.gz
conf/machine/include: Update SH tunings to match README
Update the experimental SH tunings to match the tunings README. These tunings have not been tested, and are experimental! (From OE-Core rev: 603a15bf4c838e4b6352e31f70a958d93f91138f) 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-sh4.inc')
-rw-r--r--meta/conf/machine/include/tune-sh4.inc32
1 files changed, 29 insertions, 3 deletions
diff --git a/meta/conf/machine/include/tune-sh4.inc b/meta/conf/machine/include/tune-sh4.inc
index 473122cb57..f971f23890 100644
--- a/meta/conf/machine/include/tune-sh4.inc
+++ b/meta/conf/machine/include/tune-sh4.inc
@@ -1,8 +1,34 @@
1TUNE_ARCH = "sh4" 1DEFAULTTUNE ?= "sh4"
2
3# Pull in sh4 for compatibility...
4require conf/machine/include/sh/arch-sh.inc
5
6TUNEVALID[sh4] = "Enable SH4 optimizations"
7TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "sh4", "-m4", "", d)}"
2 8
3# NOTE: If you want to optimize to sh4a, conf/machine/include/tune-sh4a.inc. 9# NOTE: If you want to optimize to sh4a, conf/machine/include/tune-sh4a.inc.
4# But it is not compatible for sh4. 10# But it is not compatible for sh4.
5# The binary optimized by m4a doesn't operate on sh4. It works on sh4a only. 11# The binary optimized by m4a doesn't operate on sh4. It works on sh4a only.
12TUNEVALID[sh4a] = "Enable SH4a optimizations"
13TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "sh4a", "-m4a", "", d)}"
14
15AVAILTUNES += "sh4 sh4eb sh4a sh4aeb"
16TUNE_FEATURES_tune-sh4 = "sh4"
17TUNE_ARCH_tune-sh4 = "sh4"
18TUNE_PKGARCH_tune-sh4 = "sh4"
19PACKAGE_EXTRA_ARCHS_tune-sh4 = "sh sh4"
20
21TUNE_FEATURES_tune-sh4eb = "sh4eb"
22TUNE_ARCH_tune-sh4eb = "sh4eb"
23TUNE_PKGARCH_tune-sh4eb = "sh4eb"
24PACKAGE_EXTRA_ARCHS_tune-sh4eb = "sheb sh4eb"
25
26TUNE_FEATURES_tune-sh4a = "sh4a"
27TUNE_ARCH_tune-sh4a = "sh4"
28TUNE_PKGARCH_tune-sh4a = "sh4a"
29PACKAGE_EXTRA_ARCHS_tune-sh4a = "sh sh4 sh4a"
6 30
7TUNE_CCARGS = "-ml -m4" 31TUNE_FEATURES_tune-sh4aeb = "sh4aeb"
8TUNE_PKGARCH = "sh4" 32TUNE_ARCH_tune-sh4aeb = "sh4eb"
33TUNE_PKGARCH_tune-sh4aeb = "sh4aeb"
34PACKAGE_EXTRA_ARCHS_tune-sh4aeb = "sheb sh4eb sh4aeb"