Use -ggdb3 instead of -ggdb by default

This commit is contained in:
Ivan Kravets
2017-09-18 14:06:16 +03:00
parent 377008ee08
commit 77fe1e8184

View File

@ -271,7 +271,7 @@ def PioClean(env, clean_dir):
def ProcessDebug(env):
if not env.subst("$PIODEBUGFLAGS"):
env.Replace(PIODEBUGFLAGS=["-Og", "-g3", "-ggdb"])
env.Replace(PIODEBUGFLAGS=["-Og", "-g3", "-ggdb3"])
env.Append(
BUILD_FLAGS=env.get("PIODEBUGFLAGS", []),
BUILD_UNFLAGS=["-Os", "-O0", "-O1", "-O2", "-O3"])