mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Autosolib on by default
This commit is contained in:
parent
90ad9b1e76
commit
5d7c0c4217
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ public class CDebuggerPage extends AbstractLaunchConfigurationTab {
|
||||||
|
|
||||||
public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
|
public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
|
||||||
configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
|
configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
|
||||||
configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
|
configuration.setAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -113,7 +113,7 @@ public class CDebuggerPage extends AbstractLaunchConfigurationTab {
|
||||||
boolean autosolib = false;
|
boolean autosolib = false;
|
||||||
try {
|
try {
|
||||||
debuggerCommand = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
|
debuggerCommand = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
|
||||||
autosolib = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
|
autosolib = configuration.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, true);
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
}
|
}
|
||||||
fDebuggerCommandText.setText(debuggerCommand);
|
fDebuggerCommandText.setText(debuggerCommand);
|
||||||
|
|
Loading…
Add table
Reference in a new issue