1# ===========================================================================
2#        https://www.gnu.org/software/autoconf-archive/ax_lapack.html
3# ===========================================================================
4#
5# SYNOPSIS
6#
7#   AX_LAPACK([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
8#
9# DESCRIPTION
10#
11#   This macro looks for a library that implements the LAPACK linear-algebra
12#   interface (see http://www.netlib.org/lapack/). On success, it sets the
13#   LAPACK_LIBS output variable to hold the requisite library linkages.
14#
15#   To link with LAPACK, you should link with:
16#
17#     $LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS
18#
19#   in that order. BLAS_LIBS is the output variable of the AX_BLAS macro,
20#   called automatically. FLIBS is the output variable of the
21#   AC_F77_LIBRARY_LDFLAGS macro (called if necessary by AX_BLAS), and is
22#   sometimes necessary in order to link with F77 libraries. Users will also
23#   need to use AC_F77_DUMMY_MAIN (see the autoconf manual), for the same
24#   reason.
25#
26#   The user may also use --with-lapack=<lib> in order to use some specific
27#   LAPACK library <lib>. In order to link successfully, however, be aware
28#   that you will probably need to use the same Fortran compiler (which can
29#   be set via the F77 env. var.) as was used to compile the LAPACK and BLAS
30#   libraries.
31#
32#   ACTION-IF-FOUND is a list of shell commands to run if a LAPACK library
33#   is found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it
34#   is not found. If ACTION-IF-FOUND is not specified, the default action
35#   will define HAVE_LAPACK.
36#
37# LICENSE
38#
39#   Copyright (c) 2009 Steven G. Johnson <stevenj@alum.mit.edu>
40#
41#   This program is free software: you can redistribute it and/or modify it
42#   under the terms of the GNU General Public License as published by the
43#   Free Software Foundation, either version 3 of the License, or (at your
44#   option) any later version.
45#
46#   This program is distributed in the hope that it will be useful, but
47#   WITHOUT ANY WARRANTY; without even the implied warranty of
48#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
49#   Public License for more details.
50#
51#   You should have received a copy of the GNU General Public License along
52#   with this program. If not, see <https://www.gnu.org/licenses/>.
53#
54#   As a special exception, the respective Autoconf Macro's copyright owner
55#   gives unlimited permission to copy, distribute and modify the configure
56#   scripts that are the output of Autoconf when processing the Macro. You
57#   need not follow the terms of the GNU General Public License when using
58#   or distributing such scripts, even though portions of the text of the
59#   Macro appear in them. The GNU General Public License (GPL) does govern
60#   all other use of the material that constitutes the Autoconf Macro.
61#
62#   This special exception to the GPL applies to versions of the Autoconf
63#   Macro released by the Autoconf Archive. When you make and distribute a
64#   modified version of the Autoconf Macro, you may extend this special
65#   exception to the GPL to apply to your modified version as well.
66
67#serial 8
68
69AU_ALIAS([ACX_LAPACK], [AX_LAPACK])
70AC_DEFUN([AX_LAPACK], [
71AC_REQUIRE([AX_BLAS])
72ax_lapack_ok=no
73
74AC_ARG_WITH(lapack,
75        [AS_HELP_STRING([--with-lapack=<lib>], [use LAPACK library <lib>])])
76case $with_lapack in
77        yes | "") ;;
78        no) ax_lapack_ok=disable ;;
79        -* | */* | *.a | *.so | *.so.* | *.o) LAPACK_LIBS="$with_lapack" ;;
80        *) LAPACK_LIBS="-l$with_lapack" ;;
81esac
82
83# Get fortran linker name of LAPACK function to check for.
84if (test "x$ENABLE_FORTRAN" != "xno"); then
85  AC_LANG_PUSH(Fortran)dnl
86  _AC_FC_FUNC(dgeev)
87  _AC_FC_FUNC(cheev)
88  AC_LANG_POP(Fortran)dnl
89else
90  dgeev="dgeev$FCMANGLE_SUFFIX" # Default
91  cheev="cheev$FCMANGLE_SUFFIX"
92fi
93
94# We cannot use LAPACK if BLAS is not found
95if test "x$ax_blas_ok" != xyes; then
96        ax_lapack_ok=noblas
97        LAPACK_LIBS=""
98fi
99
100# Next see if we are using Darwin/OSX
101# LAPACK in Apple vecLib library?
102if (test "x$target_vendor" = "xapple" && test "x$LAPACK_LIBS" = "x"); then
103
104  if test $ax_lapack_ok = no; then
105    AC_CHECK_LIB(lapack, [$dgeev], [ax_lapack_ok=yes], [ax_lapack_ok=no],
106    [-framework vecLib])
107  fi
108  if test $ax_lapack_ok = no; then
109    AC_CHECK_LIB(lapack, [$dgeev], [ax_lapack_ok=yes], [ax_lapack_ok=no],
110    [-framework accelerate])
111  fi
112
113fi
114
115# First, check LAPACK_LIBS environment variable
116if test "x$LAPACK_LIBS" != x; then
117        save_LIBS="$LIBS"; LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
118        AC_MSG_CHECKING([for $cheev in $LAPACK_LIBS])
119        AC_TRY_LINK_FUNC($cheev, [ax_lapack_ok=yes], [LAPACK_LIBS=""])
120        AC_MSG_RESULT($ax_lapack_ok)
121        LIBS="$save_LIBS"
122        if test $ax_lapack_ok = no; then
123                LAPACK_LIBS=""
124        fi
125fi
126
127# LAPACK linked to by default?  (is sometimes included in BLAS lib)
128if test $ax_lapack_ok = no; then
129        save_LIBS="$LIBS"; LIBS="$LIBS $BLAS_LIBS $FLIBS"
130        AC_CHECK_FUNC($cheev, [ax_lapack_ok=yes])
131        LIBS="$save_LIBS"
132fi
133
134# Generic LAPACK library?
135for lapack in lapack lapack_rs6k; do
136        if test $ax_lapack_ok = no; then
137                save_LIBS="$LIBS"; LIBS="$BLAS_LIBS $LIBS"
138                AC_CHECK_LIB($lapack, $cheev,
139                    [ax_lapack_ok=yes; LAPACK_LIBS="-l$lapack"], [], [$FLIBS])
140                LIBS="$save_LIBS"
141        fi
142done
143
144AC_SUBST(LAPACK_LIBS)
145
146# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
147if test x"$ax_lapack_ok" = xyes; then
148        ifelse([$1],,AC_DEFINE(HAVE_LAPACK,1,[Define if you have LAPACK library.]),[$1])
149        :
150        AC_MSG_NOTICE([Found LAPACK library])
151else
152        ax_lapack_ok=no
153        $2
154        AC_MSG_ERROR([LAPACK library not found])
155fi
156
157enablelapack=$ax_lapack_ok
158AC_SUBST(enablelapack)
159
160])dnl AX_LAPACK
161
162