mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 02:36:01 +02:00
Moving shared library features from mi to CDI.
Added new launch configuration constants to ICDTLaunchConfigurationConstants.
This commit is contained in:
parent
75d00906d9
commit
dab5b46aed
2 changed files with 25 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-08-29 Mikhail Khodjaiants
|
||||
Moving shared library features from mi to CDI.
|
||||
Added new launch configuration constants to ICDTLaunchConfigurationConstants.
|
||||
|
||||
2003-08-29 Mikhail Khodjaiants
|
||||
Moving shared library features from mi to CDI.
|
||||
Added new methods to ICDISharedLibraryManager:
|
||||
|
|
|
@ -95,7 +95,27 @@ public interface ICDTLaunchConfigurationConstants {
|
|||
* Launch configuration attribute key. The value is a boolean specifying whether to enable variable bookkeeping.
|
||||
*/
|
||||
public static final String ATTR_DEBUGGER_ENABLE_VARIABLE_BOOKKEEPING = CDT_LAUNCH_ID + ".ENABLE_VARIABLE_BOOKKEEPING"; //$NON-NLS-1$
|
||||
|
||||
|
||||
/**
|
||||
* 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$
|
||||
|
||||
/**
|
||||
* 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$
|
||||
|
||||
/**
|
||||
* 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.
|
||||
* Startup debugger running the program.
|
||||
|
|
Loading…
Add table
Reference in a new issue