Package mmrnmhrm.core.launch.debug

Source Code of mmrnmhrm.core.launch.debug.DeeGdbLauncher

/*******************************************************************************
* Copyright (c) 2013, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package mmrnmhrm.core.launch.debug;

import java.util.List;

import mmrnmhrm.core.launch.DeeNativeRunner;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IProcess;


public class DeeGdbLauncher extends DeeNativeRunner {
 
  @Override
  public void prepareCommandLine(List<String> items) {
    items.add("gdb");
    items.add("--interpreter");
    items.add("mi2");
    items.add("--args");
    super.prepareCommandLine(items);
  }
 
  @Override
  protected IProcess launchProcess(ILaunch launch) throws CoreException {
    IProcess process = super.launchProcess(launch);
   
    DeeDebugTarget target = new DeeDebugTarget(launch, process, sp);
    launch.addDebugTarget(target);
   
    return process;
  }
 
}
TOP

Related Classes of mmrnmhrm.core.launch.debug.DeeGdbLauncher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.