Files
ESPEasy/tools/pio/extra_linker_flags.py
T

13 lines
198 B
Python

Import("env")
#
# Dump build environment (for debug)
# print(env.Dump())
#
# make sure linker knows that we need debug info (for decoding backtraces)
env.Append(
LINKFLAGS=[
"-ggdb",
]
)