Skip to content

GDB executable "arm-none-eabi-gdb.exe" not being found #8029

@hezilidemao23

Description

@hezilidemao23

Board

esp32

Device Description

euno esp32
https://item.jd.com/10036937330081.html
euno esp32

Hardware Configuration

EUNO 原理图 2021-7-26.pdf

Version

v2.0.7

IDE Name

Arduino IDE 2.0.4

Operating System

windows 10

Flash frequency

240MHZ

PSRAM enabled

yes

Upload speed

921600

Description

when debugging, it warn that :
GDB executable "arm-none-eabi-gdb.exe" not being found
is taht default configuration is wrong?

Sketch

int LED_BUILTIN = 13;

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(10000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(10000);                       // wait for a second
}

Debug Message

GDB executable "C:\Users\username\AppData\Local\Arduino15\packages\esp32\tools\xtensa-esp32-elf-gcc\esp-2021r2-patch5-8.4.0\bin\arm-none-eabi-gdb.exe" was not found. Please configure "cortex-debug.armToolchainPath" or "cortex-debug.gdbPath" correctly.

Other Steps to Reproduce

No response

I have checked existing issues, online documentation and the Troubleshooting Guide

  • I confirm I have checked existing issues, online documentation and Troubleshooting guide.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions