]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/intel/IntelWin32CCompiler.java
Initial import.
[mirror_edk2.git] / Tools / Source / Cpptasks / net / sf / antcontrib / cpptasks / intel / IntelWin32CCompiler.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.devstudio.DevStudioCompatibleCCompiler;
22
23 import org.apache.tools.ant.types.Environment;
24 /**
25 * Adapter for the Intel (r) C++ compiler for 32-bit applications
26 *
27 * The Intel (r) C++ compiler for IA32 Windows mimics the command options for
28 * the Microsoft (r) C++ compiler.
29 *
30 * @author Curt Arnold
31 */
32 public final class IntelWin32CCompiler extends DevStudioCompatibleCCompiler {
33 private static final IntelWin32CCompiler instance = new IntelWin32CCompiler(
34 false, null);
35 public static IntelWin32CCompiler getInstance() {
36 return instance;
37 }
38 private IntelWin32CCompiler(boolean newEnvironment, Environment env) {
39 super("icl", null, newEnvironment, env);
40 }
41 public Processor changeEnvironment(boolean newEnvironment, Environment env) {
42 if (newEnvironment || env != null) {
43 return new IntelWin32CCompiler(newEnvironment, env);
44 }
45 return this;
46 }
47 public Linker getLinker(LinkType type) {
48 return IntelWin32Linker.getInstance().getLinker(type);
49 }
50 public int getMaximumCommandLength() {
51 return 1024;
52 }
53 }