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 C++ compiler for Itanium(TM) Applications
31   *
32   * @author Curt Arnold
33   */
34  public final class IntelWin64CCompiler extends MsvcCompatibleCCompiler {
35    private static final IntelWin64CCompiler instance = new IntelWin64CCompiler(false, null);
36  
37    public static IntelWin64CCompiler getInstance() {
38      return instance;
39    }
40  
41    private IntelWin64CCompiler(final boolean newEnvironment, final Environment env) {
42      super("ecl", "-help", newEnvironment, env);
43    }
44  
45    @Override
46    public Processor changeEnvironment(final boolean newEnvironment, final Environment env) {
47      if (newEnvironment || env != null) {
48        return new IntelWin64CCompiler(newEnvironment, env);
49      }
50      return this;
51    }
52  
53    @Override
54    public Linker getLinker(final LinkType type) {
55      //
56      // currently the Intel Win32 and Win64 linkers
57      // are command line equivalent
58      return IntelWin32Linker.getInstance().getLinker(type);
59    }
60  
61    @Override
62    public int getMaximumCommandLength() {
63      return 32767;
64    }
65  }