-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting "unsupported target architecture 'xtensa'." errors (VSC-1547) #1379
Comments
Update I took out this line in Then I ran debug and got this error: Here is my debug log:
Here is my current {
"version": "0.2.0",
"configurations": [
{
"name": "ESP32 GDB Stub Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/CoopCopEgg.elf",
"cwd": "${workspaceFolder}",
"miDebuggerPath": "/Users/tennis/.espressif/tools/xtensa-esp-elf-gdb/14.2_20240403/xtensa-esp-elf-gdb/bin/xtensa-esp32-elf-gdb",
"miDebuggerServerAddress": "/dev/cu.usbserial-2110",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"externalConsole": false,
"logging": {
"engineLogging": true,
"logFile": "${workspaceFolder}/.vscode/debug.log",
"logLevel": 4
}
}
]
}```
|
It turns out the target should be riscv32. Closing |
Thanks for using our extension! 🚀 Your feedback matters! Could you take a moment to rate it on the marketplace? A positive rating helps other developers discover our tools and motivates us to keep improving. ⭐ Rate ESP-IDF Extension: https://marketplace.visualstudio.com/items?itemName=espressif.esp-idf-extension&ssr=false#review-details Your support means a lot to our development team! |
OS
MacOS
Operating System version
15.2 (24C101)
Visual Studio Code version
Version: 1.96.0 (Universal) Commit: 138f619c86f1199955d53b4166bef66ef252935c Date: 2024-12-11T02:29:09.626Z Electron: 32.2.6 ElectronBuildId: 10629634 Chromium: 128.0.6613.186 Node.js: 20.18.1 V8: 12.8.374.38-electron.0 OS: Darwin arm64 24.2.0
ESP-IDF version
5.3.1
Python version
3.11
Doctor command output
report.txt.zip
Extension
esp_idf_vsc_ext.log.zip
Description
I have configured extension according to the docs, but cannot run debug. I am using an esp32-c3-wroom. When I try to run debug, it get this message:
Debug Message
Unable to start debugging. Unknown or unsupported target architecture 'xtensa'.
Other Steps to Reproduce
Having set the
launch.json
file, I press the debug icon on the left side of vscode, and then get the above error message.Here is my
launch.json
file content:I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: