com.codemesh.terp.ant.compiler.cpp
Class ProcArchOption
java.lang.Object
com.codemesh.terp.ant.compiler.AbstractCompilerOption<CppCompiler>
com.codemesh.terp.ant.compiler.cpp.ProcArchOption
- All Implemented Interfaces:
- CompilerOption<CppCompiler>
public class ProcArchOption
- extends AbstractCompilerOption<CppCompiler>
The option used to represent the target architecture.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
arch
protected ProcArch arch
strArch
protected java.lang.String strArch
ProcArchOption
public ProcArchOption()
setProcArch
public void setProcArch(java.lang.String procArch)
getProcArch
public ProcArch getProcArch()
addCommands
public void addCommands(java.util.List<java.lang.String> commandList,
CppCompiler compiler,
CompilerPhase phase)
- Description copied from interface:
CompilerOption
- 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)
- Description copied from interface:
CompilerOption
- 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.