mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-22 13:57:16 +00:00

When vscode is ran from the Tasmota folder in Linux, build fails with message : ```Executing task: pio run < The terminal process failed to launch: Path to shell executable "pio" is not a file of a symlink.``` Renaming pio folder into pio-tools solve the problem. Note: the problem can still occur if the user have a pio folder in his PATH...
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
|
|
) |