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 8a43c31 commit d90e38fCopy full SHA for d90e38f
easybuild/toolchains/compiler/gcc.py
@@ -186,8 +186,8 @@ def _guess_aarch64_default_optarch(self):
186
break
187
if core_types:
188
# On big.LITTLE setups, sort core types to have big core (higher model number) first.
189
- # Example: 'mcpu=cortex-a72.cortex-a53' for "ARM Cortex-A53 + Cortex-A72"
190
- default_optarch = 'mcpu=%s' % '.'.join([ct[1] for ct in sorted(core_types, reverse=True)])
+ # Example: '-mcpu=cortex-a72.cortex-a53' for "ARM Cortex-A53 + Cortex-A72"
+ default_optarch = '-mcpu=%s' % '.'.join([ct[1] for ct in sorted(core_types, reverse=True)])
191
self.log.debug("Using architecture-specific compiler optimization flag '%s'", default_optarch)
192
193
return default_optarch
0 commit comments