mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
(From OE-Core rev: 924ccf202a6d89de32fc34a140bf9e35e8e43b4e) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
499 B
PHP
18 lines
499 B
PHP
DEFAULTTUNE ?= "sh3"
|
|
|
|
require conf/machine/include/sh/arch-sh.inc
|
|
|
|
TUNEVALID[sh3] = "Enable SH3 optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh3', ' -m3', '', d)}"
|
|
|
|
AVAILTUNES += "sh3 sh3eb"
|
|
TUNE_FEATURES_tune-sh3 = "sh3"
|
|
TUNE_ARCH_tune-sh3 = "sh3"
|
|
TUNE_PKGARCH_tune-sh3 = "sh3"
|
|
PACKAGE_EXTRA_ARCHS_tune-sh3 = "sh sh3"
|
|
|
|
TUNE_FEATURES_tune-sh3eb = "sh3 bigendian"
|
|
TUNE_ARCH_tune-sh3eb = "sh3eb"
|
|
TUNE_PKGARCH_tune-sh3eb = "sh3eb"
|
|
PACKAGE_EXTRA_ARCHS_tune-sh3eb = "sheb sh3eb"
|