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:
parent
fd4d94d409
commit
cfb0a1da4c
2 changed files with 14 additions and 11 deletions
|
@ -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
|
2004-06-22 Mikhail Khodjaiants
|
||||||
Replaced global resource bundles by messages.
|
Replaced global resource bundles by messages.
|
||||||
|
|
||||||
|
|
|
@ -10,22 +10,18 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.mi.internal.ui;
|
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 class CygwinDebuggerPage extends GDBDebuggerPage {
|
||||||
{
|
|
||||||
public String getName()
|
public String getName() {
|
||||||
{
|
|
||||||
return MIUIMessages.getString( "CygwinDebuggerPage.0" ); //$NON-NLS-1$
|
return MIUIMessages.getString( "CygwinDebuggerPage.0" ); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (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)
|
public void createTabs( TabFolder tabFolder ) {
|
||||||
{
|
createMainTab( tabFolder );
|
||||||
GDBSolibBlock block = new GDBSolibBlock();
|
|
||||||
block.createBlock( parent, true, false, true );
|
|
||||||
return block;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue