Adding debug flag to PIO build script (#2510)

Adding the -g3 flag that was omitted in the PIO build script but is present in Arduino IDE build scripts. This flag restores the ability to get line numbers from stack traces for elf files generated in PlatformIO IDE.
This commit is contained in:
Mike Dunston 2019-03-03 06:51:59 -08:00 committed by Me No Dev
parent cebd8704c8
commit cb0a939a6f

View File

@ -44,6 +44,7 @@ env.Append(
CCFLAGS=[
"-Os",
"-g3",
"-Wall",
"-nostdlib",
"-Wpointer-arith",