Merge pull request #331 from AlessandroA/disable_fpu_with_uvisor

Update condition to disable FPU when uVisor is supported
Mihail Stoyanov 2016-06-13 17:06:10 +01:00 committed by GitHub
commit ed50266274
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ class mbedToolchain:
self.mp_pool = None
if 'UVISOR_PRESENT=1' in self.macros:
if 'UVISOR' in self.target.features and 'UVISOR_SUPPORTED' in self.target.extra_labels:
self.target.core = re.sub(r"F$", '', self.target.core)
def get_output(self):