com.codemesh.terp.ant.compiler.cpp
Class CompileOnlyOption
java.lang.Object
com.codemesh.terp.ant.compiler.AbstractCompilerOption<C>
com.codemesh.terp.ant.compiler.BooleanCompilerOption<CppCompiler>
com.codemesh.terp.ant.compiler.cpp.CompileOnlyOption
- All Implemented Interfaces:
- CompilerOption<CppCompiler>
public class CompileOnlyOption
- extends BooleanCompilerOption<CppCompiler>
The compiler switch that disables linking.
In most compiler implementations, this switch is represented by a -c or /c
option.
|
Method Summary |
void |
addCommands(java.util.List<java.lang.String> commandList,
CppCompiler compiler,
CompilerPhase phase)
Adds the compiler switches repreesnted by this option to the list of switches. |
boolean |
appliesTo(CppCompiler compiler,
CompilerPhase phase)
Returns true if this compiler option applies to the given compiler and compiler phase. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CompileOnlyOption
public CompileOnlyOption()
addCommands
public void addCommands(java.util.List<java.lang.String> commandList,
CppCompiler compiler,
CompilerPhase phase)
- Adds the compiler switches repreesnted by this option to the list of switches.
Some compiler options may result in more than one switch being added to a compiler
invocation. Other compiler options may result in different options being added
in different phases (compilation vs. linking) of the build.
This method is called by the compiler repeatedly with different values for the
compiler phase to account for these possibilities.
- Parameters:
commandList - the list to which the compiler switches represented
by this option (if any) are added.compiler - the compiler for which we're doing this.phase - the compiler phase in wihch we're doing this.
appliesTo
public boolean appliesTo(CppCompiler compiler,
CompilerPhase phase)
- Returns true if this compiler option applies to the given compiler and compiler phase.
Not every option has switches to contribute for every compiler and every compilation
phase. This method allows a quick, inexpensive check to filter out potentially more
expensive calls later on.
- Parameters:
compiler - the compiler for which we're asking.phase - the compiler phase we're executing.
- Returns:
Copyright © 2008-2012 by Codemesh, Inc. All Rights Reserved.