Skip to content

Commit

Permalink
fix: fixing debuggerPartterns to get correct executable (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaaa authored Dec 22, 2023
1 parent 712d7a7 commit c5c714e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bundles/com.espressif.idf.core/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,55 +247,55 @@ config-only component and an interface library is created instead."
<ToolChain
arch="xtensa"
compilerPattern="xtensa-esp32-elf[\\/]+bin[\\/]+xtensa-esp32-elf-gcc(?:\.exe)?$"
debuggerPattern="xtensa-esp32-elf-gdb(\.exe)?"
debuggerPattern="xtensa-esp32-elf-gdb(\.exe)?$"
fileName="toolchain-esp32.cmake"
id="xtensa-esp32-elf"
name="esp32">
</ToolChain>
<ToolChain
arch="xtensa"
compilerPattern="xtensa-esp32s2-elf[\\/]+bin[\\/]+xtensa-esp32s2-elf-gcc(?:\.exe)?$"
debuggerPattern="xtensa-esp32s2-elf-gdb(\.exe)?"
debuggerPattern="xtensa-esp32s2-elf-gdb(\.exe)?$"
fileName="toolchain-esp32s2.cmake"
id="xtensa-esp32s2-elf"
name="esp32s2">
</ToolChain>
<ToolChain
arch="xtensa"
compilerPattern="xtensa-esp32s3-elf[\\/]+bin[\\/]+xtensa-esp32s3-elf-gcc(?:\.exe)?$"
debuggerPattern="xtensa-esp32s3-elf-gdb(\.exe)?"
debuggerPattern="xtensa-esp32s3-elf-gdb(\.exe)?$"
fileName="toolchain-esp32s3.cmake"
id="xtensa-esp32s3-elf"
name="esp32s3">
</ToolChain>
<ToolChain
arch="riscv32"
compilerPattern="riscv32-esp-elf[\\/]+bin[\\/]+riscv32-esp-elf-gcc(?:\.exe)?$"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?$"
fileName="toolchain-esp32c2.cmake"
id="riscv32-esp-elf"
name="esp32c2">
</ToolChain>
<ToolChain
arch="riscv32"
compilerPattern="riscv32-esp-elf[\\/]+bin[\\/]+riscv32-esp-elf-gcc(?:\.exe)?$"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?$"
fileName="toolchain-esp32c3.cmake"
id="riscv32-esp-elf"
name="esp32c3">
</ToolChain>
<ToolChain
arch="riscv32"
compilerPattern="riscv32-esp-elf[\\/]+bin[\\/]+riscv32-esp-elf-gcc(?:\.exe)?$"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?$"
fileName="toolchain-esp32c6.cmake"
id="riscv32-esp-elf"
name="esp32c6">
</ToolChain>
<ToolChain
arch="riscv32"
compilerPattern="riscv32-esp-elf[\\/]+bin[\\/]+riscv32-esp-elf-gcc(?:\.exe)?$"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?"
debuggerPattern="riscv32-esp-elf-gdb(\.exe)?$"
fileName="toolchain-esp32h2.cmake"
id="riscv32-esp-elf"
name="esp32h2">
Expand Down

0 comments on commit c5c714e

Please sign in to comment.