Next: , Previous: , Up: The Macros  


ax_compiler_vendor

Synopsis

AX_COMPILER_VENDOR

Description

Determine the vendor of the C, C++ or Fortran compiler. The vendor is returned in the cache variable $ax_cv_c_compiler_vendor for C, $ax_cv_cxx_compiler_vendor for C++ or $ax_cv_fc_compiler_vendor for (modern) Fortran. The value is one of "intel", "ibm", "pathscale", "clang" (LLVM), "cray", "fujitsu", "sdcc", "sx", "nvhpc" (NVIDIA HPC Compiler), "portland" (PGI), "gnu" (GCC), "sun" (Oracle Developer Studio), "hp", "dec", "borland", "comeau", "kai", "lcc", "sgi", "microsoft", "metrowerks", "watcom", "tcc" (Tiny CC) or "unknown" (if the compiler cannot be determined).

To check for a Fortran compiler, you must first call AC_FC_PP_SRCEXT with an appropriate preprocessor-enabled extension. For example:

  AC_LANG_PUSH([Fortran])
  AC_PROG_FC
  AC_FC_PP_SRCEXT([F])
  AX_COMPILER_VENDOR
  AC_LANG_POP([Fortran])

Source Code

Download the latest version of ax_compiler_vendor.m4 or browse the macro’s revision history.

License

Copyright © 2008 Steven G. Johnson stevenj@alum.mit.edu
Copyright © 2008 Matteo Frigo
Copyright © 2018-19 John Zaitseff J.Zaitseff@zap.org.au

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.

As a special exception, the respective Autoconf Macro’s copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf Macro.

This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as well.


Next: ax_compiler_version, Previous: ax_compiler_flags_ldflags, Up: The Macros