mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
Update the experimental SH tunings to match the tunings README. These tunings have not been tested, and are experimental! (From OE-Core rev: 603a15bf4c838e4b6352e31f70a958d93f91138f) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
490 B
PHP
18 lines
490 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 = "sh3eb"
|
|
TUNE_ARCH_tune-sh3eb = "sh3eb"
|
|
TUNE_PKGARCH_tune-sh3eb = "sh3eb"
|
|
PACKAGE_EXTRA_ARCHS_tune-sh3eb = "sheb sh3eb"
|