mirror of https://github.com/ARMmbed/mbed-os.git
The build system respects -DUVISOR_PRESENT and dynamically disables floating point support
parent
ef4376740b
commit
1b4d69aa8f
|
@ -216,6 +216,9 @@ class mbedToolchain:
|
|||
self.CHROOT = None
|
||||
|
||||
self.mp_pool = None
|
||||
|
||||
if 'UVISOR_PRESENT' in self.macros:
|
||||
self.target.core = re.sub(r"F$", '', self.target.core)
|
||||
|
||||
def get_output(self):
|
||||
return self.output
|
||||
|
|
Loading…
Reference in New Issue