summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-sh4.inc
diff options
context:
space:
mode:
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"