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.gcc.GccCompatibleCCompiler;
28  
29  /**
30   * Adapter for the Intel (r) C/C++ compiler for IA-64 Linux (r)
31   *
32   * The Intel C/C++ compiler for IA-64 Linux mimics the command options for gcc
33   * compiler.
34   *
35   * @author Curt Arnold
36   */
37  public final class IntelLinux64CCompiler extends GccCompatibleCCompiler {
38    private static final IntelLinux64CCompiler instance = new IntelLinux64CCompiler(false, new IntelLinux64CCompiler(
39        true, null, false, null), false, null);
40  
41    public static IntelLinux64CCompiler getInstance() {
42      return instance;
43    }
44  
45    private IntelLinux64CCompiler(final boolean isLibtool, final IntelLinux64CCompiler libtoolCompiler,
46        final boolean newEnvironment, final Environment env) {
47      super("ecc", "-V", isLibtool, libtoolCompiler, newEnvironment, env);
48    }
49  
50    @Override
51    public Processor changeEnvironment(final boolean newEnvironment, final Environment env) {
52      if (newEnvironment || env != null) {
53        return new IntelLinux64CCompiler(getLibtool(), (IntelLinux64CCompiler) this.getLibtoolCompiler(), newEnvironment,
54            env);
55      }
56      return this;
57    }
58  
59    @Override
60    public Linker getLinker(final LinkType type) {
61      // FREEHEP
62      return IntelLinux64CLinker.getInstance().getLinker(type);
63    }
64  
65    @Override
66    public int getMaximumCommandLength() {
67      return Integer.MAX_VALUE;
68    }
69  }