source: rtems-eclipse-plug-in/org.rtems.cdt.toolchain/src/org/rtems/cdt/toolchain/RtemsLinkCommandLineInfo.java @ 52a6839

initial-import base
Last change on this file since 52a6839 was 52a6839, checked in by Joel Sherrill <joel.sherrill@…>, on 11/20/08 at 16:33:19

Initial import.

  • Property mode set to 100644
File size: 907 bytes
Line 
1package org.rtems.cdt.toolchain;
2
3import org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo;
4import org.eclipse.cdt.managedbuilder.internal.core.ManagedCommandLineInfo;
5
6public class RtemsLinkCommandLineInfo extends ManagedCommandLineInfo
7                                   implements IManagedCommandLineInfo {
8
9  public RtemsLinkCommandLineInfo(String commandLine,
10      String commandLinePattern, String commandName, String flags,
11      String outputFlag, String outputPrefix, String outputName,
12      String inputResources) {
13    super(commandLine, commandLinePattern, commandName, flags, outputFlag,
14        outputPrefix, outputName, inputResources);
15  }
16 
17  public String getCommandLine() {
18    String defaultCmdLine = super.getCommandLine();
19    String relObjs = RtemsManagerRelocationLinkHandler.getRelocationLinkObjs();
20    return defaultCmdLine + relObjs;
21  }
22
23}
Note: See TracBrowser for help on using the repository browser.