add isl_basic_set_add_div_constraints
[isl.git] / m4 / ax_compiler_vendor.m4
blobf9d85f6e158eb0a41c7109944254a896345b286d
1 # ===========================================================================
2 #    https://www.gnu.org/software/autoconf-archive/ax_compiler_vendor.html
3 # ===========================================================================
5 # SYNOPSIS
7 #   AX_COMPILER_VENDOR
9 # DESCRIPTION
11 #   Determine the vendor of the C, C++ or Fortran compiler.  The vendor is
12 #   returned in the cache variable $ax_cv_c_compiler_vendor for C,
13 #   $ax_cv_cxx_compiler_vendor for C++ or $ax_cv_fc_compiler_vendor for
14 #   (modern) Fortran.  The value is one of "intel", "ibm", "pathscale",
15 #   "clang" (LLVM), "cray", "fujitsu", "sdcc", "sx", "nvhpc" (NVIDIA HPC
16 #   Compiler), "portland" (PGI), "pcc", "gnu" (GCC), "sun" (Oracle Developer
17 #   Studio), "hp", "dec", "borland", "comeau", "kai", "lcc", "sgi",
18 #   "microsoft", "metrowerks", "watcom", "tcc" (Tiny CC) or "unknown" (if
19 #   the compiler cannot be determined).
21 #   To check for a Fortran compiler, you must first call AC_FC_PP_SRCEXT
22 #   with an appropriate preprocessor-enabled extension.  For example:
24 #     AC_LANG_PUSH([Fortran])
25 #     AC_PROG_FC
26 #     AC_FC_PP_SRCEXT([F])
27 #     AX_COMPILER_VENDOR
28 #     AC_LANG_POP([Fortran])
30 # LICENSE
32 #   Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
33 #   Copyright (c) 2008 Matteo Frigo
34 #   Copyright (c) 2018-19 John Zaitseff <J.Zaitseff@zap.org.au>
36 #   This program is free software: you can redistribute it and/or modify it
37 #   under the terms of the GNU General Public License as published by the
38 #   Free Software Foundation, either version 3 of the License, or (at your
39 #   option) any later version.
41 #   This program is distributed in the hope that it will be useful, but
42 #   WITHOUT ANY WARRANTY; without even the implied warranty of
43 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
44 #   Public License for more details.
46 #   You should have received a copy of the GNU General Public License along
47 #   with this program. If not, see <https://www.gnu.org/licenses/>.
49 #   As a special exception, the respective Autoconf Macro's copyright owner
50 #   gives unlimited permission to copy, distribute and modify the configure
51 #   scripts that are the output of Autoconf when processing the Macro. You
52 #   need not follow the terms of the GNU General Public License when using
53 #   or distributing such scripts, even though portions of the text of the
54 #   Macro appear in them. The GNU General Public License (GPL) does govern
55 #   all other use of the material that constitutes the Autoconf Macro.
57 #   This special exception to the GPL applies to versions of the Autoconf
58 #   Macro released by the Autoconf Archive. When you make and distribute a
59 #   modified version of the Autoconf Macro, you may extend this special
60 #   exception to the GPL to apply to your modified version as well.
62 #serial 32
64 AC_DEFUN([AX_COMPILER_VENDOR], [dnl
65     AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor, [dnl
66         dnl  If you modify this list of vendors, please add similar support
67         dnl  to ax_compiler_version.m4 if at all possible.
68         dnl
69         dnl  Note: Do NOT check for GCC first since some other compilers
70         dnl  define __GNUC__ to remain compatible with it.  Compilers that
71         dnl  are very slow to start (such as Intel) are listed first.
73         vendors="
74                 intel:          __ICC,__ECC,__INTEL_COMPILER
75                 ibm:            __xlc__,__xlC__,__IBMC__,__IBMCPP__,__ibmxl__
76                 pathscale:      __PATHCC__,__PATHSCALE__
77                 clang:          __clang__
78                 cray:           _CRAYC
79                 fujitsu:        __FUJITSU
80                 sdcc:           SDCC,__SDCC
81                 sx:             _SX
82                 nvhpc:          __NVCOMPILER
83                 portland:       __PGI
84                 pcc:            __PCC__
85                 gnu:            __GNUC__
86                 sun:            __SUNPRO_C,__SUNPRO_CC,__SUNPRO_F90,__SUNPRO_F95
87                 hp:             __HP_cc,__HP_aCC
88                 dec:            __DECC,__DECCXX,__DECC_VER,__DECCXX_VER
89                 borland:        __BORLANDC__,__CODEGEARC__,__TURBOC__
90                 comeau:         __COMO__
91                 kai:            __KCC
92                 lcc:            __LCC__
93                 sgi:            __sgi,sgi
94                 microsoft:      _MSC_VER
95                 metrowerks:     __MWERKS__
96                 watcom:         __WATCOMC__
97                 tcc:            __TINYC__
98                 unknown:        UNKNOWN
99         "
100         for ventest in $vendors; do
101             case $ventest in
102                 *:)
103                     vendor=$ventest
104                     continue
105                     ;;
106                 *)
107                     vencpp="defined("`echo $ventest | sed 's/,/) || defined(/g'`")"
108                     ;;
109             esac
111             AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[
112 #if !($vencpp)
113       thisisanerror;
114 #endif
115             ]])], [break])
116         done
118         ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor=`echo $vendor | cut -d: -f1`
119     ])
120 ])dnl