Mirror of espurna firmware for wireless switches and more
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
236 B

  1. def remove_float_support(env):
  2. flags = " ".join(env["LINKFLAGS"])
  3. flags = flags.replace("-u _printf_float", "")
  4. flags = flags.replace("-u _scanf_float", "")
  5. newflags = flags.split()
  6. env.Replace(LINKFLAGS=newflags)