-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
89 lines (77 loc) · 3.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
################################################################################
# \file configure.ac
# \author Gregory Diamos <[email protected]>
# \date Saturday May 16, 2009
# \brief Autoconf input file describing the checks that need to be performed
# to create a configure script for the hydrazine library.
################################################################################
################################################################################
## Package specification
# Revision scheme is MajorFeatureSet.MinorFeatureSet.SVNChangelistNumber
AC_PREREQ(2.61)
AC_INIT(hydrazine, 0.1.2, [email protected])
AM_INIT_AUTOMAKE([])
################################################################################
################################################################################
## Package Configuration
AC_CONFIG_HEADER([configure.h])
AC_CONFIG_MACRO_DIR([m4])
################################################################################
################################################################################
## Checks for libraries.
AC_CHECK_LIB([rt], [clock_gettime], [],\
AC_MSG_ERROR("librt required"))
################################################################################
################################################################################
## Checks for programs.
AC_PROG_CXX
AC_PROG_CC
LT_INIT
################################################################################
################################################################################
# Checks for header files.
AC_CHECK_HEADERS([float.h])
################################################################################
################################################################################
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_SIZE_T
AC_TYPE_UINT32_T
AC_TYPE_UINT8_T
AC_CHECK_TYPES([ptrdiff_t])
################################################################################
################################################################################
# Checks for library functions.
AC_CHECK_FUNCS([clock_gettime getpagesize memmove memset pow])
################################################################################
###############################################################################
# Setup CUDA paths
#
AC_ARG_WITH([cuda],
[--with-cuda=PATH prefix where cuda is installed [default=/usr/local/cuda]])
if test -n "$with_cuda"
then
CUDA_CFLAGS="-I$with_cuda/include"
CUDA_LIBS="-L$with_cuda/lib64 -lcudart -lcublas"
CUFFT_LIBS="-L$with_cuda/lib64 -lcufft"
CUBLAS_LIBS="-L$with_cuda/lib64 -lcublas"
NVCC="$with_cuda/bin/nvcc"
else
CUDA_CFLAGS="-I/usr/local/cuda/include"
CUDA_LIBS="-L/usr/local/cuda/lib64 -lcudart -lcublas"
CUFFT_LIBS="-L/usr/local/cuda/lib64 -lcufft"
CUBLAS_LIBS="-L/usr/local/cuda/lib64 -lcublas"
NVCC="nvcc"
fi
AC_SUBST(CUDA_CFLAGS)
AC_SUBST(CUDA_LIBS)
AC_SUBST(CUFFT_LIBS)
AC_SUBST(CUBLAS_LIBS)
AC_SUBST(NVCC)
################################################################################
################################################################################
## Output generation
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
################################################################################