We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c7370 commit f82dae2Copy full SHA for f82dae2
tools/toolchains/gcc.py
@@ -63,7 +63,7 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
63
elif target.core.startswith("Cortex-M33F"):
64
self.cpu = ["-mcpu=cortex-m33+nodsp"]
65
elif target.core.startswith("Cortex-M33"):
66
- self.cpu = ["-mcpu=cortex-m33+nodsp+nofp"]
+ self.cpu = ["-march=armv8-m.main"]
67
else:
68
self.cpu = ["-mcpu={}".format(target.core.lower())]
69
0 commit comments