From 254c4886d58979eebd0e352f4d16e391736f2a33 Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Thu, 5 Nov 2009 23:27:33 +0100 Subject: Reorganized source directories in line with cpptasks-1.0b5, for easier tracking --- .../cpptasks/intel/IntelLinux32Compiler.java | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/net/sf/antcontrib/cpptasks/intel/IntelLinux32Compiler.java (limited to 'src/net/sf/antcontrib/cpptasks/intel/IntelLinux32Compiler.java') diff --git a/src/net/sf/antcontrib/cpptasks/intel/IntelLinux32Compiler.java b/src/net/sf/antcontrib/cpptasks/intel/IntelLinux32Compiler.java deleted file mode 100644 index d4feac3..0000000 --- a/src/net/sf/antcontrib/cpptasks/intel/IntelLinux32Compiler.java +++ /dev/null @@ -1,36 +0,0 @@ -// FREEHEP -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 IntelLinux32Compiler extends GccCompatibleCCompiler { - private static final IntelLinux32Compiler instance = new IntelLinux32Compiler( - false, new IntelLinux32Compiler(true, null, false, null), false, - null); - public static IntelLinux32Compiler getInstance() { - return instance; - } - private IntelLinux32Compiler(boolean isLibtool, - IntelLinux32Compiler libtoolCompiler, boolean newEnvironment, - Environment env) { - super("icpc", "-V", isLibtool, libtoolCompiler, newEnvironment, env); - } - public Processor changeEnvironment(boolean newEnvironment, Environment env) { - if (newEnvironment || env != null) { - return new IntelLinux32Compiler(getLibtool(), - (IntelLinux32Compiler) getLibtoolCompiler(), - newEnvironment, env); - } - return this; - } - public Linker getLinker(LinkType type) { - return IntelLinux32Linker.getInstance().getLinker(type); - } - public int getMaximumCommandLength() { - return Integer.MAX_VALUE; - } -} -- cgit v1.2.3