diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/machine/include/tune-power7.inc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/conf/machine/include/tune-power7.inc b/meta/conf/machine/include/tune-power7.inc new file mode 100644 index 0000000000..7069e75026 --- /dev/null +++ b/meta/conf/machine/include/tune-power7.inc | |||
@@ -0,0 +1,21 @@ | |||
1 | DEFAULTTUNE ?= "ppcpr7" | ||
2 | |||
3 | require conf/machine/include/powerpc/arch-powerpc64.inc | ||
4 | |||
5 | TUNEVALID[power7] = "Enable IBM Power7 specific processor optimizations" | ||
6 | TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "power7", " -mcpu=power7", "", d)}" | ||
7 | |||
8 | AVAILTUNES += "ppcp7 ppc64p7" | ||
9 | TUNE_FEATURES_tune-ppcp7 = "m32 fpu-hard power7 altivec" | ||
10 | BASE_LIB_tune-ppcp7 = "lib" | ||
11 | TUNE_PKGARCH_tune-ppcp7 = "ppcp7" | ||
12 | PACKAGE_EXTRA_ARCHS_tune-ppcp7 = "${PACKAGE_EXTRA_ARCHS_tune-powerpc} ppcp7" | ||
13 | |||
14 | TUNE_FEATURES_tune-ppc64p7 = "m64 fpu-hard power7 altivec" | ||
15 | BASE_LIB_tune-ppc64p7 = "lib64" | ||
16 | TUNE_PKGARCH_tune-ppc64p7 = "ppc64p7" | ||
17 | PACKAGE_EXTRA_ARCHS_tune-ppc64p7 = "${PACKAGE_EXTRA_ARCHS_tune-powerpc64} ppc64p7" | ||
18 | |||
19 | # glibc configure options to get power7 specific library | ||
20 | GLIBC_EXTRA_OECONF_powerpc64 += "${@bb.utils.contains("TUNE_FEATURES", "power7", "--with-cpu=power7", "", d)}" | ||
21 | GLIBC_EXTRA_OECONF_powerpc += "${@bb.utils.contains("TUNE_FEATURES", "power7", "--with-cpu=power7", "", d)}" | ||