1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fix for bug 68934: Debug into dll doesn't work.

The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin.
Removed the "Shared Libraries" tab from the "Debugger" page of the laaunch configuration dialog
This commit is contained in:
Mikhail Khodjaiants 2004-07-02 20:16:14 +00:00
parent fd4d94d409
commit cfb0a1da4c
2 changed files with 14 additions and 11 deletions

View file

@ -1,3 +1,10 @@
2004-07-02 Mikhail Khodjaiants
Fix for bug 68934: Debug into dll doesn't work.
The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin.
Removed the "Shared Libraries" tab from the "Debugger" page of the laaunch configuration dialog
for the "CygWin Debugger" type.
* CygwinDebuggerPage.java
2004-06-22 Mikhail Khodjaiants
Replaced global resource bundles by messages.

View file

@ -10,22 +10,18 @@
*******************************************************************************/
package org.eclipse.cdt.debug.mi.internal.ui;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TabFolder;
public class CygwinDebuggerPage extends GDBDebuggerPage
{
public String getName()
{
public class CygwinDebuggerPage extends GDBDebuggerPage {
public String getName() {
return MIUIMessages.getString( "CygwinDebuggerPage.0" ); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage#createSolibBlock(org.eclipse.swt.widgets.Composite)
* @see org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage#createTabs(org.eclipse.swt.widgets.TabFolder)
*/
public GDBSolibBlock createSolibBlock(Composite parent)
{
GDBSolibBlock block = new GDBSolibBlock();
block.createBlock( parent, true, false, true );
return block;
public void createTabs( TabFolder tabFolder ) {
createMainTab( tabFolder );
}
}