]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/Cpptasks/net/sf/antcontrib/cpptasks/intel/IntelLinux64CCompiler.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / Cpptasks / net / sf / antcontrib / cpptasks / intel / IntelLinux64CCompiler.java
1 /*
2 *
3 * Copyright 2002-2004 The Ant-Contrib project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package net.sf.antcontrib.cpptasks.intel;
18 import net.sf.antcontrib.cpptasks.compiler.LinkType;
19 import net.sf.antcontrib.cpptasks.compiler.Linker;
20 import net.sf.antcontrib.cpptasks.compiler.Processor;
21 import net.sf.antcontrib.cpptasks.gcc.GccCompatibleCCompiler;
22
23 import org.apache.tools.ant.types.Environment;
24 /**
25 * Adapter for the Intel (r) C/C++ compiler for IA-64 Linux (r)
26 *
27 * The Intel C/C++ compiler for IA-64 Linux mimics the command options for gcc
28 * compiler.
29 *
30 * @author Curt Arnold
31 */
32 public final class IntelLinux64CCompiler extends GccCompatibleCCompiler {
33 private static final IntelLinux64CCompiler instance = new IntelLinux64CCompiler(
34 false, new IntelLinux64CCompiler(true, null, false, null), false,
35 null);
36 public static IntelLinux64CCompiler getInstance() {
37 return instance;
38 }
39 private IntelLinux64CCompiler(boolean isLibtool,
40 IntelLinux64CCompiler libtoolCompiler, boolean newEnvironment,
41 Environment env) {
42 super("ecc", "-V", isLibtool, libtoolCompiler, newEnvironment, env);
43 }
44 public Processor changeEnvironment(boolean newEnvironment, Environment env) {
45 if (newEnvironment || env != null) {
46 return new IntelLinux64CCompiler(getLibtool(),
47 (IntelLinux64CCompiler) this.getLibtoolCompiler(),
48 newEnvironment, env);
49 }
50 return this;
51 }
52 public Linker getLinker(LinkType type) {
53 return IntelLinux64Linker.getInstance().getLinker(type);
54 }
55 public int getMaximumCommandLength() {
56 return Integer.MAX_VALUE;
57 }
58 }