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
2.8.7
Windows 11 23H2
When you start debugging, it will always stop at the target's entry point.
it should respect the option in launch.json:
"stopAtEntry": false
Actual behavior, it doesn't.
N/A
This is always true:
xmake-vscode/src/xmake.ts
Line 1111 in cc62b95
Is this intended?
The text was updated successfully, but these errors were encountered:
this plugin do not use user launch.json, it will generate launch.json automatically. please set xmake.customDebugConfig to override it.
Sorry, something went wrong.
For anyone running into this issue, put this in your project specific settings.json
.vscode/settings.json
"xmake.customDebugConfig": { "stopAtEntry": false },
If you start your debugging session by pressing F5, it will not use the launch.json, to use it you must use the Run -> Start Debugging menu.
No branches or pull requests
Xmake Version
2.8.7
Operating System Version and Architecture
Windows 11 23H2
Describe Bug
When you start debugging, it will always stop at the target's entry point.
Expected Behavior
it should respect the option in launch.json:
Actual behavior, it doesn't.
Project Configuration
N/A
Additional Information and Error Logs
This is always true:
xmake-vscode/src/xmake.ts
Line 1111 in cc62b95
Is this intended?
The text was updated successfully, but these errors were encountered: