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