mirror of https://github.com/ARMmbed/mbed-os.git
targets: Add "bare-metal" to supported_application_profiles
We weren't setting the "supported_application_profiles" correctly for some baremetal supported targets. This didn't cause build failures with mbed-cli 1 as it just seems to ignore this config parameter. In our CMake build system we have added a hard dependency on the supported_application_profiles; we fail the build if the profile we're trying to build isn't in the list.pull/14892/head
parent
cfc68a0918
commit
a437ed4047
|
@ -993,6 +993,10 @@
|
|||
"GCC_ARM",
|
||||
"IAR"
|
||||
],
|
||||
"supported_application_profiles": [
|
||||
"full",
|
||||
"bare-metal"
|
||||
],
|
||||
"macros": [
|
||||
"CPU_MK64FN1M0VMD12",
|
||||
"FSL_RTOS_MBED",
|
||||
|
@ -4417,6 +4421,10 @@
|
|||
"GCC_ARM",
|
||||
"IAR"
|
||||
],
|
||||
"supported_application_profiles": [
|
||||
"full",
|
||||
"bare-metal"
|
||||
],
|
||||
"extra_labels": [
|
||||
"NXP",
|
||||
"MCUXpresso_MCUS",
|
||||
|
|
Loading…
Reference in New Issue