From cac7651d294cd347f19527cbc39c4ea6d4a17c45 Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Fri, 11 Aug 2023 16:34:44 +0200 Subject: [PATCH] fix(esp_gdbstub): Added missing crosscore_int.h header inclusion for RISC-V targets This commit adds the missing crosscore_int.h header inclusion in gdbstub_riscv.c file. --- components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c b/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c index 85ddd6baae..7a405d6edb 100644 --- a/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c +++ b/components/esp_gdbstub/src/port/riscv/gdbstub_riscv.c @@ -10,6 +10,7 @@ #include "esp_cpu.h" #include "rv_decode.h" #include "sdkconfig.h" +#include "esp_private/crosscore_int.h" extern volatile esp_gdbstub_frame_t *temp_regs_frame;