diff options
author | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2007-09-14 17:44:29 +0000 |
---|---|---|
committer | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2007-09-14 17:44:29 +0000 |
commit | cec8facea6da0c678051042df9324ac9d2f333d9 (patch) | |
tree | 7b965d07bdf73e77266dcb85c5ee92aec0c2fac8 /src | |
parent | e0f198faea9c52c5984af54bbc8763bf5bce2fc7 (diff) | |
download | cpptasks-parallel-cec8facea6da0c678051042df9324ac9d2f333d9.tar.gz cpptasks-parallel-cec8facea6da0c678051042df9324ac9d2f333d9.tar.bz2 cpptasks-parallel-cec8facea6da0c678051042df9324ac9d2f333d9.tar.xz cpptasks-parallel-cec8facea6da0c678051042df9324ac9d2f333d9.zip |
More on NARPLUGIN-157
Diffstat (limited to 'src')
-rw-r--r-- | src/net/sf/antcontrib/cpptasks/intel/IntelLinuxFortranCompiler.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/net/sf/antcontrib/cpptasks/intel/IntelLinuxFortranCompiler.java b/src/net/sf/antcontrib/cpptasks/intel/IntelLinuxFortranCompiler.java new file mode 100644 index 0000000..b9e4467 --- /dev/null +++ b/src/net/sf/antcontrib/cpptasks/intel/IntelLinuxFortranCompiler.java @@ -0,0 +1,37 @@ +// BEGINFREEHEP +package net.sf.antcontrib.cpptasks.intel; +import net.sf.antcontrib.cpptasks.compiler.LinkType; +import net.sf.antcontrib.cpptasks.compiler.Linker; +import net.sf.antcontrib.cpptasks.compiler.Processor; +import net.sf.antcontrib.cpptasks.gcc.GccCompatibleCCompiler; + +import org.apache.tools.ant.types.Environment; + +public final class IntelLinuxFortranCompiler extends GccCompatibleCCompiler { + private static final IntelLinuxFortranCompiler instance = new IntelLinuxFortranCompiler( + false, new IntelLinuxFortranCompiler(true, null, false, null), false, + null); + public static IntelLinuxFortranCompiler getInstance() { + return instance; + } + private IntelLinuxFortranCompiler(boolean isLibtool, + IntelLinuxFortranCompiler libtoolCompiler, boolean newEnvironment, + Environment env) { + super("ifort", "-V", isLibtool, libtoolCompiler, newEnvironment, env); + } + public Processor changeEnvironment(boolean newEnvironment, Environment env) { + if (newEnvironment || env != null) { + return new IntelLinuxFortranCompiler(getLibtool(), + (IntelLinuxFortranCompiler) getLibtoolCompiler(), + newEnvironment, env); + } + return this; + } + public Linker getLinker(LinkType type) { + return IntelLinux32Linker.getInstance().getLinker(type); + } + public int getMaximumCommandLength() { + return Integer.MAX_VALUE; + } +} +// ENDFREEHEP
\ No newline at end of file |