forked from jmrosinski/GPTL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
165 lines (139 loc) · 3.99 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
dnl Process this file with autoconf to produce a configure script.
AC_INIT(private.h)
AC_LANG(C)
AC_PROG_MAKE_SET
#Get the OS type
OS="`uname | tr '[A-Z]' '[a-z]'`"
case "$OS" in
linux) OS=linux;;
sunos) OS=solaris ;;
irix64) OS=irix ;;
aix) OS=aix;;
esac
dnl C and Fortran compilers
dnl Embedding AC_PROG_XX inside the shell code failed on SGI
if test "x$OS" = "xlinux"; then
CCLIST="cc gcc g++ icc pgcc"
FCLIST="g77 f77 pgf90 ifort lf95 g95"
elif test "x$OS" = "xirix"; then
CCLIST="cc gcc g++"
FCLIST="f90 g77 f77"
elif test "x$OS" = "xaix"; then
CCLIST="xlc_r cc_r xlc cc gcc g++"
FCLIST="xlf90_r xlf90"
elif test "x$OS" = "xsolaris"; then
CCLIST="cc gcc g++"
FCLIST="f90 g77 f77"
else
CCLIST=""
FCLIST=""
fi
AC_PROG_CC($CCLIST)
AC_PROG_F77($FCLIST)
AC_ARG_WITH(bitmode,
[ --with-bitmode=64 Specify to build 64 bit mode library],
bitmode=YES,bitmode=NO)
BITEXT=
if test "$bitmode" = YES; then
BITEXT=64;
if test "x$OS" = xirix ; then
BITFLAGS="-64";
CFLAGS="$CFLAGS $BITFLAGS";
FFLAGS="$FFLAGS $BITFLAGS";
elif test "x$OS" = xaix ; then
BITFLAGS="-q64";
CFLAGS="$CFLAGS $BITFLAGS";
FFLAGS="$FFLAGS $BITFLAGS";
ARFLAGS="-X 64";
fi
fi
ARFLAGS="$ARFLAGS ruv";
dnl Whether to include PAPI lib
AC_ARG_ENABLE([papi],[--enable-papi],[PAPI=YES;PAPIOBJS=gpt_papi.o],[PAPI=NO])
FORTDEFS=""
if test "$PAPI" = YES ; then
AC_DEFINE([HAVE_PAPI])
if test "x$PAPI_DIR" != x ; then
PAPIPREP="-I$PAPI_DIR/include"
LDFLAGS="$LDFLAGS -L$PAPI_DIR/lib"
fi
dnl AIX needs pmapi
dnl AIX also passes defines through Fortran in a special way
if test "x$OS" = xaix ; then
FORTDEFS="-WF,-DHAVE_PAPI"
LDFLAGS="$LDFLAGS -lpmapi"
else
FORTDEFS="-DHAVE_PAPI"
fi
dnl will add -lpapi if successful
AC_CHECK_LIB(papi$BITEXT, PAPI_library_init,,
[AC_MSG_ERROR([[not found. Rebuild w/ PAPI_DIR set or w/o --enable-papi]])])
fi
if test "x$OS" = xaix ; then
FORTDEFS="$FORTDEFS -WF,-DAIX"
fi
dnl AC_ARG_ENABLE(papi,[--enable-papi],PAPIPREP="-I/home/rosinski/include -DHAVE_PAPI";PAPILIB="-L/home/rosinski/lib -lpapi",)
dnl Whether to enable debugging
AC_ARG_ENABLE(debug,[--enable-debug],[CFLAGS="$CFLAGS -g";FFLAGS="$FFLAGS -g"],)
dnl Whether to enable optimization
AC_ARG_ENABLE(opt,[--enable-opt],[CFLAGS="$CFLAGS -O";FFLAGS="$FFLAGS -O"],)
dnl need to add -qfixed to FFLAGS for Fortran tests on AIX
if test "$F77" = xlf90 ; then
FFLAGS="$FFLAGS -qfixed"
fi
if test "$F77" = xlf90_r ; then
FFLAGS="$FFLAGS -qfixed"
fi
dnl Whether and how to enable threading
dnl OMPDEFS, OMPCFLAGS
UD_SET_OMP_C
dnl PTHREADDEFS, PTHREADCFLAGS
UD_SET_PTHREADS_C
THREADDEFS=""
THREADFLAGS=""
AC_ARG_ENABLE(pthreads,[--enable-pthreads],[THREADDEFS="$PTHREADDEFS";
THREADFLAGS="$PTHREADCFLAGS"],)
dnl openmp will override pthreads if both are specified
AC_ARG_ENABLE(openmp,[--enable-openmp],[THREADDEFS="$OMPDEFS";
THREADFLAGS="$OMPCFLAGS"],)
dnl OMPFFLAGS
UD_SET_OMP_F77
dnl How to mangle names:
AC_DEFINE(FDEFS)
AC_F77_FUNC(zzz,zzz)
case $zzz in
zzz__) FDEFS=-DFORTRANDOUBLEUNDERSCORE ;;
zzz_) FDEFS=-DFORTRANUNDERSCORE ;;
ZZZ) FDEFS=-DFORTRANCAPS ;;
esac
dnl Determine required Fortran load flags
dnl Dont do this now because of the above name mangling exersize.
dnl AC_F77_LIBRARY_LDFLAGS
dnl Checks for libraries.
dnl Replace `main' with a function in -lm:
AC_CHECK_LIB(m, sqrt)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/time.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_HEADER_TIME
dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(gettimeofday)
AC_SUBST(FDEFS)
AC_SUBST(THREADDEFS)
AC_SUBST(THREADFLAGS)
AC_SUBST(PAPIPREP)
AC_SUBST(PAPIOBJS)
AC_SUBST(ARFLAGS)
AC_SUBST(BITFLAGS)
AC_SUBST(FORTDEFS)
dnl for tests directory
AC_SUBST(OMPDEFS)
AC_SUBST(OMPCFLAGS)
AC_SUBST(OMPFFLAGS)
AC_SUBST(PTHREADDEFS)
AC_SUBST(PTHTEADCFLAGS)
AC_OUTPUT(Makefile tests/Makefile)