mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-07 22:13:56 -06:00
FYSETC Cheetah 2.0 (#20897)
This commit is contained in:
parent
c72b1c5893
commit
5ac08a44c6
13 changed files with 1735 additions and 1 deletions
9
buildroot/share/PlatformIO/scripts/fysetc_cheetah_v20.py
Normal file
9
buildroot/share/PlatformIO/scripts/fysetc_cheetah_v20.py
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue