1
mirror of https://github.com/valentineus/kp3s-lgvl.git synced 2025-04-30 01:41:24 +03:00
kp3s-lgvl/buildroot/share/PlatformIO/scripts/fysetc_cheetah_v20.py
Georgiy Bondarenko e8701195e6 Initial commit
2021-03-04 22:54:23 +05:00

10 lines
331 B
Python

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