mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
handle windows filenames (#1307)
This commit is contained in:
parent
4988349677
commit
c680b437f5
1 changed files with 6 additions and 1 deletions
|
@ -205,7 +205,7 @@ def process_stacktrace(config, line, backtrace_state):
|
|||
# ESP8266 Exception type
|
||||
match = re.match(STACKTRACE_ESP8266_EXCEPTION_TYPE_RE, line)
|
||||
if match is not None:
|
||||
code = match.group(1)
|
||||
code = int(match.group(1))
|
||||
_LOGGER.warning("Exception type: %s", ESP8266_EXCEPTION_CODES.get(code, 'unknown'))
|
||||
|
||||
# ESP8266 PC/EXCVADDR
|
||||
|
@ -273,4 +273,9 @@ class IDEData:
|
|||
if cc_path is None:
|
||||
return None
|
||||
# replace gcc at end with addr2line
|
||||
|
||||
# Windows
|
||||
if cc_path.endswith('.exe'):
|
||||
return cc_path[:-7] + 'addr2line.exe'
|
||||
|
||||
return cc_path[:-3] + 'addr2line'
|
||||
|
|
Loading…
Reference in a new issue