newlib: ROM library is build with time_t 64bit on esp32c2

This commit is contained in:
morris
2022-06-09 10:40:51 +08:00
parent 44909aff93
commit 6eb450fa87
6 changed files with 38 additions and 14 deletions

View File

@@ -59,6 +59,7 @@ GDB_REGS_INFO_RISCV_ILP32 = [
GDB_REGS_INFO = {
'esp32c3': GDB_REGS_INFO_RISCV_ILP32,
'esp32c2': GDB_REGS_INFO_RISCV_ILP32,
'esp32h2': GDB_REGS_INFO_RISCV_ILP32
}
@@ -152,6 +153,7 @@ def parse_idf_riscv_panic_output(panic_text): # type: (str) -> PanicInfo
PANIC_OUTPUT_PARSERS = {
'esp32c3': parse_idf_riscv_panic_output,
'esp32c2': parse_idf_riscv_panic_output,
'esp32h2': parse_idf_riscv_panic_output
}