Changing -u linker switch as one instead of multiple switches

pull/562/head
EmBlocks 2014-10-15 20:09:06 +02:00
parent 42442233de
commit 5d468e002d
1 changed files with 1 additions and 1 deletions

View File

@ -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")