mirror of https://github.com/ARMmbed/mbed-os.git
Removing absolute paths to compiler executables
VSCode exporter was generating a launch config that contained absolute paths to the compiler executables. It makes more sense to use the executables that are installed into the system PATH.pull/10997/head
parent
f0ec856020
commit
c8f33b1e45
|
@ -35,18 +35,18 @@
|
||||||
},
|
},
|
||||||
"linux": {
|
"linux": {
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"MIDebuggerPath": "/usr/bin/arm-none-eabi-gdb",
|
"MIDebuggerPath": "arm-none-eabi-gdb",
|
||||||
"debugServerPath": "pyocd-gdbserver"
|
"debugServerPath": "pyocd-gdbserver"
|
||||||
},
|
},
|
||||||
"osx": {
|
"osx": {
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"MIDebuggerPath": "/usr/local/bin/arm-none-eabi-gdb",
|
"MIDebuggerPath": "arm-none-eabi-gdb",
|
||||||
"debugServerPath": "pyocd-gdbserver"
|
"debugServerPath": "pyocd-gdbserver"
|
||||||
},
|
},
|
||||||
"windows": {
|
"windows": {
|
||||||
"preLaunchTask": "make.exe",
|
"preLaunchTask": "make.exe",
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"MIDebuggerPath": "C:\\Program Files (x86)\\GNU Tools ARM Embedded\\6 2017-q1-update\\bin\\arm-none-eabi-gdb.exe",
|
"MIDebuggerPath": "arm-none-eabi-gdb.exe",
|
||||||
"debugServerPath": "pyocd-gdbserver.exe",
|
"debugServerPath": "pyocd-gdbserver.exe",
|
||||||
"setupCommands": [
|
"setupCommands": [
|
||||||
{ "text": "-environment-cd ${workspaceRoot}\\BUILD" },
|
{ "text": "-environment-cd ${workspaceRoot}\\BUILD" },
|
||||||
|
|
Loading…
Reference in New Issue