summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-ppc603e.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/machine/include/tune-ppc603e.inc')
-rw-r--r--meta/conf/machine/include/tune-ppc603e.inc12
1 files changed, 9 insertions, 3 deletions
diff --git a/meta/conf/machine/include/tune-ppc603e.inc b/meta/conf/machine/include/tune-ppc603e.inc
index 61c0669acf..7c053944aa 100644
--- a/meta/conf/machine/include/tune-ppc603e.inc
+++ b/meta/conf/machine/include/tune-ppc603e.inc
@@ -1,5 +1,11 @@
1DEFAULTTUNE ?= "ppc603e"
2
1require conf/machine/include/powerpc/arch-powerpc.inc 3require conf/machine/include/powerpc/arch-powerpc.inc
2 4
3TUNE_CCARGS = "-mcpu=603e -mhard-float" 5TUNEVALID[ppc603e] = "Enable ppc603e specific processor optimizations"
4TUNE_PKGARCH = "ppc603e" 6TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppc603e", "-mcpu=603e", "", d)}"
5PACKAGE_EXTRA_ARCHS = "powerpc ppc603e" 7TUNE_PKGARCH .= "${@bb.utils.contains("TUNE_FEATURES", "ppc603e", "ppc603e", "", d)}"
8
9AVAILTUNES += "ppc603e"
10TUNE_FEATURES_tune-ppc603e = "m32 fpu-hard ppc603e"
11PACKAGE_EXTRA_ARCHS_tune-ppc603e = "powerpc ppc603e"