mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
We perform a basic cleanup of the IA32 architecture and related tunings in order to match the rules and descriptions within the new tuning README file. A number of small issues were corrected in the "c3" tuning to bring it inline with the README. (From OE-Core rev: ab77d3401908964f3249c761969600b5ec1bfbd0) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
490 B
PHP
15 lines
490 B
PHP
DEFAULTTUNE ?= "i586"
|
|
|
|
require conf/machine/include/ia32/arch-ia32.inc
|
|
|
|
# Extra tune features
|
|
TUNEVALID[i586] = "Enable i586 specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "i586", "-march=i586", "", d)}"
|
|
|
|
# Extra tune selections
|
|
AVAILTUNES += "i586"
|
|
TUNE_FEATURES_tune-i586 = "${TUNE_FEATURES_tune-x86} i586"
|
|
BASE_LIB_tune-i586 = "lib"
|
|
TUNE_PKGARCH_tune-i586 = "i586"
|
|
PACKAGE_EXTRA_ARCHS_tune-i586 = "${PACKAGE_EXTRA_ARCHS_tune-x86} i386 i486 i586"
|