mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-20 04:47:19 +00:00
15 lines
262 B
Python
15 lines
262 B
Python
Import('env')
|
|
|
|
#
|
|
# Dump build environment (for debug)
|
|
#print env.Dump()
|
|
#
|
|
|
|
flags = " ".join(env['LINKFLAGS'])
|
|
flags = flags.replace("-u _printf_float", "")
|
|
flags = flags.replace("-u _scanf_float", "")
|
|
newflags = flags.split()
|
|
|
|
env.Replace(
|
|
LINKFLAGS=newflags
|
|
) |