mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 10:46:02 +02:00
Regrouping the launch configuration constants.
This commit is contained in:
parent
3da46e561e
commit
ce59a25fa6
4 changed files with 19 additions and 24 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-09-09 Mikhail Khodjaiants
|
||||||
|
Regrouping the launch configuration constants.
|
||||||
|
* ICDTLaunchConfigurationConstants.java
|
||||||
|
|
||||||
2003-09-09 Mikhail Khodjaiants
|
2003-09-09 Mikhail Khodjaiants
|
||||||
Removed the internal handling of the 'stop-on-shared-library-events' option -
|
Removed the internal handling of the 'stop-on-shared-library-events' option -
|
||||||
will be moved to the mi.
|
will be moved to the mi.
|
||||||
|
|
|
@ -99,23 +99,13 @@ public interface ICDTLaunchConfigurationConstants {
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. Boolean value to set the 'deferred breakpoints' property of debugger.
|
* Launch configuration attribute key. Boolean value to set the 'deferred breakpoints' property of debugger.
|
||||||
*/
|
*/
|
||||||
public static final String ATTR_DEBUGGER_DEFERRED_BREAKPOINTS = CDT_LAUNCH_ID + ".DEFERRED_BREAKPOINTS"; //$NON-NLS-1$
|
// public static final String ATTR_DEBUGGER_DEFERRED_BREAKPOINTS = CDT_LAUNCH_ID + ".DEFERRED_BREAKPOINTS"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. The value is a List (array of String) directories for the search path of shared libraries.
|
* Launch configuration attribute key. The value is a List (array of String) directories for the search path of shared libraries.
|
||||||
*/
|
*/
|
||||||
public static final String ATTR_DEBUGGER_SOLIB_PATH = CDT_LAUNCH_ID + ".SOLIB_PATH"; //$NON-NLS-1$
|
public static final String ATTR_DEBUGGER_SOLIB_PATH = CDT_LAUNCH_ID + ".SOLIB_PATH"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
|
||||||
* Launch configuration attribute key. Boolean value to set the 'automatically load shared library symbols' flag of the debugger.
|
|
||||||
*/
|
|
||||||
public static final String ATTR_DEBUGGER_AUTO_SOLIB = CDT_LAUNCH_ID + ".AUTO_SOLIB"; //$NON-NLS-1$
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Launch configuration attribute key. Boolean value to set the 'stop on shared library events' flag of the debugger.
|
|
||||||
*/
|
|
||||||
public static final String ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS = CDT_LAUNCH_ID + ".STOP_ON_SOLIB_EVENTS"; //$NON-NLS-1$
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute value. The key is ATTR_DEBUGGER_START_MODE.
|
* Launch configuration attribute value. The key is ATTR_DEBUGGER_START_MODE.
|
||||||
* Startup debugger running the program.
|
* Startup debugger running the program.
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2003-09-09 Mikhail Khodjaiants
|
||||||
|
Regrouping the launch configuration constants.
|
||||||
|
* IMILaunchConfigurationConstants.java
|
||||||
|
|
||||||
2003-09-09 Mikhail Khodjaiants
|
2003-09-09 Mikhail Khodjaiants
|
||||||
Added the 'stop-on-solib-events' option.
|
Added the 'stop-on-solib-events' option.
|
||||||
Changed the initialization of the hared library search path.
|
Changed the initialization of the hared library search path.
|
||||||
|
|
|
@ -14,21 +14,18 @@ public interface IMILaunchConfigurationConstants {
|
||||||
public static final String ATTR_DEBUG_NAME = MIPlugin.getUniqueIdentifier() + ".DEBUG_NAME"; //$NON-NLS-1$
|
public static final String ATTR_DEBUG_NAME = MIPlugin.getUniqueIdentifier() + ".DEBUG_NAME"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Launch configuration attribute key. The value is a List (array of String) directories for solib-search-path
|
* Launch configuration attribute key. Boolean value to set the gdb command file
|
||||||
* the Debuger associated with a C/C++ launch configuration.
|
|
||||||
*/
|
|
||||||
public static final String ATTR_SOLIB_PATH = MIPlugin.getUniqueIdentifier() + ".SOLIB_PATH"; //$NON-NLS-1$
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Launch configuration attribute key. Boolean value to set the auto-solib-add
|
|
||||||
* Debuger/gdb/MI property.
|
|
||||||
*/
|
|
||||||
public static final String ATTR_AUTO_SOLIB = MIPlugin.getUniqueIdentifier() + ".AUTO_SOLIB"; //$NON-NLS-1$
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Launch configuration attribute key. Boolean value to set the auto-solib-add
|
|
||||||
* Debuger/gdb/MI property.
|
* Debuger/gdb/MI property.
|
||||||
*/
|
*/
|
||||||
public static final String ATTR_GDB_INIT = MIPlugin.getUniqueIdentifier() + ".GDB_INIT"; //$NON-NLS-1$
|
public static final String ATTR_GDB_INIT = MIPlugin.getUniqueIdentifier() + ".GDB_INIT"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Launch configuration attribute key. Boolean value to set the 'automatically load shared library symbols' flag of the debugger.
|
||||||
|
*/
|
||||||
|
public static final String ATTR_DEBUGGER_AUTO_SOLIB = MIPlugin.getUniqueIdentifier() + ".AUTO_SOLIB"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Launch configuration attribute key. Boolean value to set the 'stop on shared library events' flag of the debugger.
|
||||||
|
*/
|
||||||
|
public static final String ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS = MIPlugin.getUniqueIdentifier() + ".STOP_ON_SOLIB_EVENTS"; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue