Tweaks to build scripts
This commit is contained in:
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
|
Reference in New Issue
Block a user