mirror of https://github.com/ARMmbed/mbed-os.git
Changing -u linker switch as one instead of multiple switches
parent
42442233de
commit
5d468e002d
|
|
@ -176,7 +176,7 @@ class GCC_ARM(GCC):
|
|||
# Use latest gcc nanolib
|
||||
self.ld.append("--specs=nano.specs")
|
||||
if target.name in ["LPC1768", "LPC4088", "LPC4330", "UBLOX_C027", "LPC2368"]:
|
||||
self.ld.extend(["-u", "_printf_float", "-u", "_scanf_float"])
|
||||
self.ld.extend(["-u _printf_float", "-u _scanf_float"])
|
||||
|
||||
self.sys_libs.append("nosys")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue