mirror of https://github.com/ARMmbed/mbed-os.git
Tools: Add "Cortex-M33E" option
There was a gap in our pattern - we didn't offer M33 with DSP Extension but no floating-point.pull/10390/head
parent
56e2d339c8
commit
744e2ccfa7
|
|
@ -574,6 +574,7 @@ class ARMC6(ARM_STD):
|
|||
"Cortex-M7F": "Cortex-M7.fp.sp",
|
||||
"Cortex-M7FD": "Cortex-M7",
|
||||
"Cortex-M33": "Cortex-M33.no_dsp.no_fp",
|
||||
"Cortex-M33E": "Cortex-M33.no_fp",
|
||||
"Cortex-M33F": "Cortex-M33.no_dsp",
|
||||
"Cortex-M33FE": "Cortex-M33"}.get(core, core)
|
||||
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ class GCC(mbedToolchain):
|
|||
"Cortex-M7F": "cortex-m7",
|
||||
"Cortex-M7FD": "cortex-m7",
|
||||
"Cortex-M33": "cortex-m33+nodsp",
|
||||
"Cortex-M33E": "cortex-m33",
|
||||
"Cortex-M33F": "cortex-m33+nodsp",
|
||||
"Cortex-M33FE": "cortex-m33"}.get(core, core)
|
||||
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ class IAR(mbedToolchain):
|
|||
"Cortex-M7F": "Cortex-M7.fp.sp",
|
||||
"Cortex-M7FD": "Cortex-M7.fp.dp",
|
||||
"Cortex-M33": "Cortex-M33.no_dsp",
|
||||
"Cortex-M33E": "Cortex-M33",
|
||||
"Cortex-M33F": "Cortex-M33.fp.no_dsp",
|
||||
"Cortex-M33FE": "Cortex-M33.fp"}.get(core, core)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue