cannam@127: dnl @synopsis AX_OPENMP([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) cannam@127: dnl @summary determine how to compile programs using OpenMP cannam@127: dnl @category InstalledPackages cannam@127: dnl cannam@127: dnl This macro tries to find out how to compile programs that cannam@127: dnl use OpenMP, a standard API and set of compiler directives for cannam@127: dnl parallel programming (see http://www.openmp.org/). cannam@127: dnl cannam@127: dnl On success, it sets the OPENMP_CFLAGS/OPENMP_CXXFLAGS/OPENMP_FFLAGS cannam@127: dnl output variable to the flag (e.g. -omp) used both to compile *and* link cannam@127: dnl OpenMP programs in the current language. cannam@127: dnl cannam@127: dnl NOTE: You are assumed to not only compile your program with these cannam@127: dnl flags, but also link it with them as well. cannam@127: dnl cannam@127: dnl If you want to compile everything with OpenMP, you should set: cannam@127: dnl cannam@127: dnl CFLAGS="$CFLAGS $OPENMP_CFLAGS" cannam@127: dnl #OR# CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS" cannam@127: dnl #OR# FFLAGS="$FFLAGS $OPENMP_FFLAGS" cannam@127: dnl cannam@127: dnl (depending on the selected language). cannam@127: dnl cannam@127: dnl The user can override the default choice by setting the corresponding cannam@127: dnl environment variable (e.g. OPENMP_CFLAGS). cannam@127: dnl cannam@127: dnl ACTION-IF-FOUND is a list of shell commands to run if an OpenMP cannam@127: dnl flag is found, and ACTION-IF-NOT-FOUND is a list of commands cannam@127: dnl to run it if it is not found. If ACTION-IF-FOUND is not specified, cannam@127: dnl the default action will define HAVE_OPENMP. cannam@127: dnl cannam@127: dnl @version 2006-11-20 cannam@127: dnl @license GPLWithACException cannam@127: dnl @author Steven G. Johnson cannam@127: cannam@127: AC_DEFUN([AX_OPENMP], [ cannam@127: AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX cannam@127: cannam@127: AC_CACHE_CHECK([for OpenMP flag of _AC_LANG compiler], ax_cv_[]_AC_LANG_ABBREV[]_openmp, [save[]_AC_LANG_PREFIX[]FLAGS=$[]_AC_LANG_PREFIX[]FLAGS cannam@127: ax_cv_[]_AC_LANG_ABBREV[]_openmp=unknown cannam@127: # Flags to try: -fopenmp (gcc), -openmp (icc), -mp (SGI & PGI), cannam@127: # -xopenmp (Sun), -omp (Tru64), -qsmp=omp (AIX), none cannam@127: ax_openmp_flags="-fopenmp -openmp -mp -xopenmp -omp -qsmp=omp none" cannam@127: if test "x$OPENMP_[]_AC_LANG_PREFIX[]FLAGS" != x; then cannam@127: ax_openmp_flags="$OPENMP_[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flags" cannam@127: fi cannam@127: for ax_openmp_flag in $ax_openmp_flags; do cannam@127: case $ax_openmp_flag in cannam@127: none) []_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[] ;; cannam@127: *) []_AC_LANG_PREFIX[]FLAGS="$save[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flag" ;; cannam@127: esac cannam@127: AC_TRY_LINK_FUNC(omp_set_num_threads, cannam@127: [ax_cv_[]_AC_LANG_ABBREV[]_openmp=$ax_openmp_flag; break]) cannam@127: done cannam@127: []_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[]FLAGS cannam@127: ]) cannam@127: if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" = "xunknown"; then cannam@127: m4_default([$2],:) cannam@127: else cannam@127: if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" != "xnone"; then cannam@127: OPENMP_[]_AC_LANG_PREFIX[]FLAGS=$ax_cv_[]_AC_LANG_ABBREV[]_openmp cannam@127: fi cannam@127: m4_default([$1], [AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])]) cannam@127: fi cannam@127: AC_SUBST(OPENMP_[]_AC_LANG_PREFIX[]FLAGS) cannam@127: ])dnl AX_OPENMP