mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 23:15:24 +02:00
changed default platform to "local"
This commit is contained in:
parent
f3e97df34a
commit
d862e1f83c
2 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,7 @@ public class DebugConfiguration implements ICDebugConfiguration {
|
|||
public String[] getPlatforms() {
|
||||
String platform = getConfigurationElement().getAttribute("platform");
|
||||
if ( platform == null ) {
|
||||
return new String[] {"*"};
|
||||
return new String[] {"local"};
|
||||
}
|
||||
StringTokenizer stoken = new StringTokenizer(platform, ",");
|
||||
String[] platforms = new String[stoken.countTokens()];
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
<extension
|
||||
point="org.eclipse.cdt.debug.core.CDebugger">
|
||||
<debugger
|
||||
platform="local"
|
||||
name="%GDBDebugger.name"
|
||||
modes="run,core,attach"
|
||||
class="org.eclipse.cdt.debug.mi.core.GDBDebugger"
|
||||
|
|
Loading…
Add table
Reference in a new issue