mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-27 07:27:04 +00:00
9a7ab6a47e
Fix the cortex-m tunes to actually function properly. Tested with meta-zephyr on musca-b1. Change-Id: Ib797cafc4f82f6a525cf6b9c0ce4a302a9ef65c2 Signed-off-by: Jon Mason <jon.mason@arm.com>
15 lines
570 B
HTML
Executable File
15 lines
570 B
HTML
Executable File
#
|
|
# Tune Settings for Cortex-M23
|
|
#
|
|
DEFAULTTUNE ?= "cortexm23"
|
|
|
|
TUNEVALID[cortexm23] = "Enable Cortex-M23 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexm23', ' -mcpu=cortex-m23', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8m-base.inc
|
|
|
|
AVAILTUNES += "cortexm23"
|
|
ARMPKGARCH_tune-cortexm23 = "cortexm23"
|
|
TUNE_FEATURES_tune-cortexm23 = "${TUNE_FEATURES_tune-armv8m-base} cortexm23"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexm23 = "${PACKAGE_EXTRA_ARCHS_tune-armv8m-base} cortexm23"
|