mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-22 22:23:54 -06:00
Tweaks to build scripts
This commit is contained in:
parent
54ccfcc705
commit
903d0b91fc
28 changed files with 77 additions and 37 deletions
13
buildroot/share/PlatformIO/scripts/STM32F401VE_STEVAL.py
Normal file
13
buildroot/share/PlatformIO/scripts/STM32F401VE_STEVAL.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
#
|
||||
# STM32F401VE_STEVAL.py
|
||||
# Customizations for env:STM32F401VE_STEVAL
|
||||
#
|
||||
import os
|
||||
Import("env")
|
||||
|
||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/variants/STEVAL_F401VE/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