Skip to content

Commit 8e854b1

Browse files
committed
Add Cortex-A9 for ARMCC and ARMC6
I added the definition of "Cortex-A9" for core support of ARMCC and ARMC6 in arm.py.
1 parent 8f42cf7 commit 8e854b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/toolchains/arm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ARM(mbedToolchain):
3434
DEP_PATTERN = re.compile('\S+:\s(?P<file>.+)\n')
3535
SHEBANG = "#! armcc -E"
3636
SUPPORTED_CORES = ["Cortex-M0", "Cortex-M0+", "Cortex-M3", "Cortex-M4",
37-
"Cortex-M4F", "Cortex-M7", "Cortex-M7F", "Cortex-M7FD"]
37+
"Cortex-M4F", "Cortex-M7", "Cortex-M7F", "Cortex-M7FD", "Cortex-A9"]
3838

3939
@staticmethod
4040
def check_executable():
@@ -293,7 +293,7 @@ class ARMC6(ARM_STD):
293293
SUPPORTED_CORES = ["Cortex-M0", "Cortex-M0+", "Cortex-M3", "Cortex-M4",
294294
"Cortex-M4F", "Cortex-M7", "Cortex-M7F", "Cortex-M7FD",
295295
"Cortex-M23", "Cortex-M23-NS", "Cortex-M33",
296-
"CortexM33-NS"]
296+
"CortexM33-NS", "Cortex-A9"]
297297
@staticmethod
298298
def check_executable():
299299
return mbedToolchain.generic_check_executable("ARMC6", "armclang", 1)

0 commit comments

Comments
 (0)