mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 01:24:04 +00:00
13 lines
198 B
Python
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",
|
|
]
|
|
) |