update isl to version 0.17.1
[ppcg.git] / configure.ac
blob4890ae444de58bd7988d46aca7b84d984908efac
1 AC_INIT([ppcg], [0.05], [isl-development@googlegroups.com])
2 AC_CONFIG_AUX_DIR([.])
3 AC_CONFIG_MACRO_DIR([m4])
4 AM_INIT_AUTOMAKE([foreign])
5 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
7 AC_PROG_CC
8 AC_PROG_LIBTOOL
9 PKG_PROG_PKG_CONFIG
11 AX_CHECK_OPENMP
12 AX_CHECK_OPENCL
13 if test $HAVE_OPENCL = yes; then
14         extra_tests="$extra_tests opencl_test.sh"
17 AX_SUBMODULE(isl,build|bundled|system,bundled)
18 AM_CONDITIONAL(BUNDLED_ISL, test $with_isl = bundled)
20 AC_SUBST(ISL_CFLAGS)
21 AC_SUBST(ISL_LIBS)
22 case "$with_isl" in
23 bundled)
24         ISL_CFLAGS="-I\$(top_srcdir)/isl/include -I\$(top_builddir)/isl/include"
25         ISL_CFLAGS="$ISL_CFLAGS"
26         ppcg_configure_args="$ppcg_configure_args --with-isl-builddir=../isl"
27         ppcg_configure_args="$ppcg_configure_args --with-isl=build"
28         ppcg_configure_args="$ppcg_configure_args --with-clang=system"
29         ;;
30 build)
31         ISL_BUILDDIR=`echo @abs_builddir@ | $with_isl_builddir/config.status --file=-`
32         ppcg_configure_args="$ppcg_configure_args --with-isl-builddir=$ISL_BUILDDIR"
33         ISL_CFLAGS="-I$isl_srcdir/include -I$ISL_BUILDDIR/include"
34         ISL_CFLAGS="$ISL_CFLAGS"
35         ISL_LIBS="$with_isl_builddir/libisl.la"
36         ;;
37 system)
38         PKG_CHECK_MODULES([ISL], [isl])
39 esac
41 AX_SUBMODULE(pet,bundled|system,bundled)
42 AM_CONDITIONAL(BUNDLED_PET, test $with_pet = bundled)
44 AC_SUBST(PET_CFLAGS)
45 AC_SUBST(PET_LIBS)
46 case "$with_pet" in
47 bundled)
48         PET_CFLAGS="$PET_CFLAGS -I\$(top_srcdir)/pet/include"
49         ;;
50 system)
51         PKG_CHECK_MODULES([PET], [pet])
52         ;;
53 esac
55 AC_SUBST(POLYBENCH_DIR)
56 AC_SUBST(extra_tests)
57 AC_ARG_WITH([polybench],
58         [AS_HELP_STRING([--with-polybench=DIR], [PolyBench location])],
59         [
60         if test -f "$with_polybench/utilities/benchmark_list"; then
61                 POLYBENCH_DIR=$with_polybench
62                 extra_tests="$extra_tests polybench_test.sh"
63         fi
64         ])
66 AX_DETECT_GIT_HEAD
67 echo '#define GIT_HEAD_ID "'$GIT_HEAD_ID'"' > gitversion.h
69 AC_CONFIG_FILES(Makefile)
70 AC_CONFIG_FILES([polybench_test.sh], [chmod +x polybench_test.sh])
71 AC_CONFIG_FILES([opencl_test.sh], [chmod +x opencl_test.sh])
72 if test $with_isl = bundled; then
73         AC_CONFIG_SUBDIRS(isl)
75 if test $with_pet = bundled; then
76         AC_CONFIG_SUBDIRS(pet)
78 AC_CONFIG_COMMANDS_POST([
79         dnl pass on arguments to subdir configures, but don't
80         dnl add them to config.status
81         ac_configure_args="$ac_configure_args $ppcg_configure_args"
83 AC_OUTPUT