@Override
  public ILaunch getLaunchForDebugMode(ILaunchConfiguration configuration, String mode)
      throws CoreException {

    ILaunchConfigurationWorkingCopy workingCopy = configuration.getWorkingCopy();

    setAttributes(workingCopy);

    workingCopy.doSave();

    return gdbLaunchDelegate.getLaunch(configuration, mode);
  }