Open viktor-refeyn opened 6 days ago
If I add the following config to launch.json
launch.json
{ "type": "mcuxpresso-debug", "name": "MCUXpresso Project", "request": "launch", "cwd": "${workspaceFolder}", "executable": "${workspaceFolder}/build/NXP.elf", }
I get the following error : [error] Executable "${workspaceFolder}/build/NXP.elf" does not exist.
[error] Executable "${workspaceFolder}/build/NXP.elf" does not exist.
The variable I try to use is according to this: https://code.visualstudio.com/docs/editor/variables-reference
I tried the following combinations too, without much success:
"executable": "${workspaceFolder}/build/NXP.elf"
"executable": "${workspaceFolder}\\build\\NXP.elf"
"executable": "build/NXP.elf"
"executable": "build\\NXP.elf"
"executable": "./build/NXP.elf"
"executable": ".\\build\\NXP.elf"
Hi @viktor-refeyn,
Issue reproduced. It will be fixed by the next release.
Possible workarounds:
Thanks, Dragos.
If I add the following config to
launch.json
I get the following error :
[error] Executable "${workspaceFolder}/build/NXP.elf" does not exist.
The variable I try to use is according to this: https://code.visualstudio.com/docs/editor/variables-reference
I tried the following combinations too, without much success:
"executable": "${workspaceFolder}/build/NXP.elf"
"executable": "${workspaceFolder}\\build\\NXP.elf"
"executable": "build/NXP.elf"
"executable": "build\\NXP.elf"
"executable": "./build/NXP.elf"
"executable": ".\\build\\NXP.elf"