Firmware2/buildroot/share/PlatformIO/scripts/fysetc_cheetah_v20.py

10 lines
331 B
Python
Raw Normal View History

2021-01-29 02:52:49 +01:00
import os
Import("env")
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/variants/FYSETC_CHEETAH_V20/ldscript.ld")
for i, flag in enumerate(env["LINKFLAGS"]):
if "-Wl,-T" in flag:
env["LINKFLAGS"][i] = "-Wl,-T" + custom_ld_script
elif flag == "-T":
env["LINKFLAGS"][i + 1] = custom_ld_script