aboutsummaryrefslogtreecommitdiff
path: root/buildroot/share/PlatformIO/scripts/fysetc_cheetah_v20.py
blob: 10471d375346e92c3acbabcf858caf5d98c8f3eb (plain) (blame)
1
2
3
4
5
6
7
8
9
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