View Javadoc

1   /*
2    * #%L
3    * Native ARchive plugin for Maven
4    * %%
5    * Copyright (C) 2002 - 2014 NAR Maven Plugin developers.
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   * 
11   * http://www.apache.org/licenses/LICENSE-2.0
12   * 
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  package com.github.maven_nar.cpptasks.intel;
21  
22  import org.apache.tools.ant.types.Environment;
23  
24  import com.github.maven_nar.cpptasks.compiler.LinkType;
25  import com.github.maven_nar.cpptasks.compiler.Linker;
26  import com.github.maven_nar.cpptasks.compiler.Processor;
27  import com.github.maven_nar.cpptasks.msvc.MsvcCompatibleCCompiler;
28  
29  /**
30   * Adapter for the Intel (r) C++ compiler for 32-bit applications
31   *
32   * The Intel (r) C++ compiler for IA32 Windows mimics the command options for
33   * the Microsoft (r) C++ compiler.
34   *
35   * @author Curt Arnold
36   */
37  public final class IntelWin32CCompiler extends MsvcCompatibleCCompiler {
38    private static final IntelWin32CCompiler instance = new IntelWin32CCompiler(false, null);
39  
40    public static IntelWin32CCompiler getInstance() {
41      return instance;
42    }
43  
44    private IntelWin32CCompiler(final boolean newEnvironment, final Environment env) {
45      super("icl", "-help", newEnvironment, env);
46    }
47  
48    @Override
49    public Processor changeEnvironment(final boolean newEnvironment, final Environment env) {
50      if (newEnvironment || env != null) {
51        return new IntelWin32CCompiler(newEnvironment, env);
52      }
53      return this;
54    }
55  
56    @Override
57    public Linker getLinker(final LinkType type) {
58      return IntelWin32Linker.getInstance().getLinker(type);
59    }
60  
61    @Override
62    public int getMaximumCommandLength() {
63      return 32767;
64    }
65  }