We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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"
The text was updated successfully, but these errors were encountered:
Hi @viktor-refeyn,
Issue reproduced. It will be fixed by the next release.
Possible workarounds:
Thanks, Dragos.
Sorry, something went wrong.
No branches or pull requests
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"
The text was updated successfully, but these errors were encountered: