Skip to content

Commit ba86a53

Browse files
Deepika Bhavnanijeromecoutant
authored andcommitted
Update tools/toolchains/gcc.py
1 parent 1ea2897 commit ba86a53

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tools/toolchains/gcc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,8 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
6161
elif target.core.startswith("Cortex-M23"):
6262
self.cpu = ["-mcpu=cortex-m23"]
6363
elif target.core.startswith("Cortex-M33F"):
64-
self.cpu = ["-mcpu=cortex-m33"]
6564
self.cpu = ["-mcpu=cortex-m33+nodsp"]
6665
elif target.core.startswith("Cortex-M33"):
67-
self.cpu = ["-mcpu=cortex-m33"]
6866
self.cpu = ["-mcpu=cortex-m33+nodsp+nofp"]
6967
else:
7068
self.cpu = ["-mcpu={}".format(target.core.lower())]

0 commit comments

Comments
 (0)