Disable floating point support when building using PIO

This commit is contained in:
Xose Pérez
2018-03-01 06:35:27 +01:00
parent 9ee7ffa795
commit d3fbe31d92

View File

@@ -37,7 +37,6 @@ def clr(color, text):
def remove_float_support():
flags = " ".join(env['LINKFLAGS'])
print flags
flags = flags.replace("-u _printf_float", "")
flags = flags.replace("-u _scanf_float", "")
newflags = flags.split()