Tool/software:
Hello, Good day!
We are trying to build openOCD using the following Repo (https://github.com/nmenon/openocd/tree/mspm0-dev).
We have used MSYS2 to build the openocd.
-- Following dependances we have installed before building openocd
Jimtcl (link)
Libusb-1.0.28
automake
autoconf
pkg-config
libtool
make
Gcc (13.3.0)
Arm GCC (arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi (link))
-- To build OpenOCD we have used the following sequence of command
./bootstrap
./configure --host=i686-w64-mingw32 --enable-ftdi --enable-swd --disable-werror
make -j$(nproc)
make install
--> launch json file
{
"version": "0.2.0",
"configurations": [
{
"name": "MSYS OpenOCD Debug",
"cwd": "${workspaceRoot}",
"executable": "C:/Users/UserName/Downloads/Repos/_Repo/vs_code_integration/thb/build/gcc/debug/temp.out",
"request": "attach",
"type": "cortex-debug",
"servertype": "openocd",
"configFiles": [
"C:/openocd_msys/tcl/interface/xds110.cfg",
"C:/openocd_msys/tcl/target/ti_mspm0.cfg"
],
"runToEntryPoint": "main",
"showDevDebugOutput": "raw",
"searchDir": [],
"svdPath": "C:/Users/UserNameDownloads/Repos/Repo/vs_code_integration/utils/MSPM0G350X.svd",
"svdFile": "C:/Users/UserName/Downloads/Repos/Repo/vs_code_integration/utils/MSPM0G350X.svd"
},
getting the above error. Do you have any suggestions?