microsoft / microsoft/vscode-cpptools
"miDebuggerPath" completely ignored when "debugServerPath" is used
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- TypeScript
- Estrellas
- 6.2k
- Forks
- 1.7k
- Merge medio
- 14 h 46 min
- PR fusionados (30 d)
- 61
Descripción
Describe the bug
- OS and Version: Windows/Linux (Version does not matter)
- VS Code Version: Does not matter.
- C/C++ Extension Version: UPSTREAM (0.21.0)
- Other extensions you installed (and if the issue persists after disabling them): Does not have any influence.
- A clear and concise description of what the bug is:
When you specify a debugServerPath and a debugServerArgs, miDebuggerPath and miDebuggerArgs are completely ignored. Furthermore you HAVE to specify a miDebuggerServerAddress even tho that is not necessarily required as you can specify this via miDebuggerArgs
To Reproduce
Please include a code sample and launch.json configuration.
See the launch.jsonbelow:
{
"version": "0.2.0",
"configurations": [
{
"name": "COM Example",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/target/thumbv7em-none-eabihf/debug/examples/com",
"args": [],
"miDebuggerServerAddress": "localhost:2331",
"stopAtEntry": true,
"cwd": "${workspaceRoot}",
"environment": [],
//"externalConsole": true,
"linux": {
"MIMode": "gdb"
},
"osx": {
"MIMode": "gdb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [{
"text": "load"
}],
//"preLaunchTask": "cargo build com",
"debugServerPath": "C:\\Program Files (x86)\\SEGGER\\JLink_V640\\JLinkGDBServerCL.exe",
"debugServerArgs": "-select USB -device nRF52840_xxAA -endian little -if SWD -speed 4000 -noir -LocalhostOnly",
"miDebuggerPath": "C:\\Program Files (x86)\\GNU Tools ARM Embedded\\8 2018-q4-major\\bin\\arm-none-eabi-gdb.exe",
"miDebuggerArgs": "-q -x debug.gdb target/thumbv7m-none-eabi/debug/examples/com",
}
}
]
}
Steps to reproduce the behavior:
- Use the
launch.jsonabove.
Additional context
I tried finding the source code that uses the miDebuggerPath etc, but I can't even locate the variable in this repo. So I can't even see how this extension ever uses that value. If I could, I would fix it myself, but the entire extension is really intransparent, including all the config explanations (especially the problemMatcher).
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza rastreando cómo la configuración de lanzamiento cppdbg analiza el ejemplo de launch.json, buscando debugServerPath, debugServerArgs, miDebuggerPath y miDebuggerArgs. Reproduce la configuración en Windows o Linux y determina por qué se ignoran la ruta del depurador y los argumentos. El trabajo estará terminado cuando ambas configuraciones funcionen con un debugServerPath sin requerir miDebuggerServerAddress cuando la dirección se proporciona mediante miDebuggerArgs.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript, vscode
- Área
- devtools
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100