forked from platformio/platformio-core
Disable checking for "__PLATFORMIO_BUILD_DEBUG__" that is not available in g2 mode
This commit is contained in:
@ -92,7 +92,7 @@ def has_debug_symbols(prog_path):
|
|||||||
b".debug_abbrev": False,
|
b".debug_abbrev": False,
|
||||||
b" -Og": False,
|
b" -Og": False,
|
||||||
b" -g": False,
|
b" -g": False,
|
||||||
b"__PLATFORMIO_BUILD_DEBUG__": False,
|
# b"__PLATFORMIO_BUILD_DEBUG__": False,
|
||||||
}
|
}
|
||||||
with open(prog_path, "rb") as fp:
|
with open(prog_path, "rb") as fp:
|
||||||
last_data = b""
|
last_data = b""
|
||||||
|
Reference in New Issue
Block a user