Package org.codehaus.mojo.natives.c
Class CLinker
- java.lang.Object
-
- org.codehaus.plexus.logging.AbstractLogEnabled
-
- org.codehaus.mojo.natives.linker.AbstractLinker
-
- org.codehaus.mojo.natives.c.CLinker
-
- All Implemented Interfaces:
Linker
,org.codehaus.plexus.logging.LogEnabled
- Direct Known Subclasses:
BCCLinker
,CLinkerClassic
,MSVCLinker
public class CLinker extends AbstractLinker
Generic C/CPP linker with "-o " as its output option
-
-
Constructor Summary
Constructors Constructor Description CLinker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.codehaus.plexus.util.cli.Commandline
createLinkerCommandLine(List objectFiles, LinkerConfiguration config)
protected String
getLinkerOutputOption()
protected void
setCommandLineForExternalLibraries(org.codehaus.plexus.util.cli.Commandline cl, LinkerConfiguration config)
Setup Commandline to handle external library depending on extention type-
Methods inherited from class org.codehaus.mojo.natives.linker.AbstractLinker
link
-
-
-
-
Method Detail
-
createLinkerCommandLine
protected org.codehaus.plexus.util.cli.Commandline createLinkerCommandLine(List objectFiles, LinkerConfiguration config) throws NativeBuildException
- Specified by:
createLinkerCommandLine
in classAbstractLinker
- Returns:
- Commandline of a linker base on its configuration and object files
- Throws:
NativeBuildException
-
getLinkerOutputOption
protected String getLinkerOutputOption()
- Returns:
- output option flag of a generic C linker
-
setCommandLineForExternalLibraries
protected void setCommandLineForExternalLibraries(org.codehaus.plexus.util.cli.Commandline cl, LinkerConfiguration config) throws NativeBuildException
Setup Commandline to handle external library depending on extention type- Parameters:
cl
- Commandlineconfig
- LinkerConfiguration- Throws:
NativeBuildException
-
-