forked from OHDSI/RcppBoostCompute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
49 lines (42 loc) · 1.18 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Process this file with autoconf to produce a configure script.
AC_INIT(RcppBoostCompute, 0.1, [email protected])
# find R home and set CC/CFLAGS
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
echo "could not determine R_HOME"
exit 1
fi
# platform check
RHOST=`"${R_HOME}/bin/Rscript" -e 'cat(Sys.info()[["sysname"]])'`
# Check for which host we are on and setup a few things
# specifically based on the host
HAVE_OPENCL=
OPENCL_LIB=
case $RHOST in
Darwin* )
# Do something specific for Mac OS X
AC_CHECK_FILE(/System/Library/Frameworks/OpenCL.framework,
[ OPENCL_LIB="-framework OpenCL";
HAVE_OPENCL="-DHAVE_OPENCL" ],
[])
;;
Linux*)
# Do something specific for linux
AC_CHECK_LIB(OpenCL, clFinish,
[ HAVE_OPENCL="-DHAVE_OPENCL";
OPENCL_LIB="-lOpenCL" ],
[])
;;
*BSD*)
# Do something specific for BSD
AC_MSG_ERROR([BSD is not currently supported])
;;
*)
#Default Case
AC_MSG_ERROR([Your platform is not currently supported])
;;
esac
AC_SUBST(OPENCL_LIB)
AC_SUBST(HAVE_OPENCL)
AC_CONFIG_FILES([src/Makevars])
AC_OUTPUT