mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
These hacks have been around for years and deal with old gcc issues. They've been removed from the other use sites, we should clean up the core tune file too. (From OE-Core rev: 742eb82b85a315bb908caf64516e464ae6153668) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
738 B
HTML
17 lines
738 B
HTML
DEFAULTTUNE ?= "armv5te"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[xscale] = "Enable PXA255/PXA26x Xscale specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "xscale", "-mtune=xscale", "", d)}"
|
|
|
|
AVAILTUNES += "xscale"
|
|
ARMPKGARCH_tune-xscale = "xscale"
|
|
TUNE_FEATURES_tune-xscale = "${TUNE_FEATURES_tune-armv5te} xscale"
|
|
PACKAGE_EXTRA_ARCHS_tune-xscale = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} xscale xscalet xscalee xscalete"
|
|
|
|
AVAILTUNES += "xscale-be"
|
|
ARMPKGARCH_tune-xscale-be = "xscale"
|
|
TUNE_FEATURES_tune-xscale-be = "${TUNE_FEATURES_tune-armv5teb} xscale bigendian"
|
|
PACKAGE_EXTRA_ARCHS_tune-xscale-be = "${PACKAGE_EXTRA_ARCHS_tune-armv5teb} xscaleb xscaletb xscaleeb xscaleteb"
|