mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #331 from AlessandroA/disable_fpu_with_uvisor
Update condition to disable FPU when uVisor is supported
commit
ed50266274
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue