-
Notifications
You must be signed in to change notification settings - Fork 7
/
configure.ac
103 lines (84 loc) · 3.19 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
dnl Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
dnl Copyright (c) 2020-2022 High-Performance Computing Center Stuttgart,
dnl University of Stuttgart. All rights reserved.
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mpi_test_suite], [1.1.1])
AM_INIT_AUTOMAKE([-Wall -Werror foreign no-dependencies subdir-objects])
AC_PREREQ(2.59)
AC_CONFIG_SRCDIR([mpi_test_suite.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([m4])
AC_GNU_SOURCE
AC_PROG_CPP
AX_PROG_CC_MPI(,,[
AC_MSG_FAILURE([MPI compiler required.])
])
AC_ARG_ENABLE([mpi2],
AS_HELP_STRING([--enable-mpi2], [Build MPI2 tests [[default=yes]]]),,
[enable_mpi2=yes])
AS_IF([test "$enable_mpi2" = "yes"],[
AC_DEFINE([HAVE_MPI2], [1], [Define to enable MPI2 tests])
])
AC_ARG_ENABLE([mpi2-one-side],
AS_HELP_STRING([--enable-mpi2-one-side], [Build tests for MPI2 one-sided communication [[default=yes]]]),,
[enable_mpi2_one_sided=yes])
AS_IF([test "$enable_mpi2_one_sided" = "yes"],[
AC_DEFINE([HAVE_MPI2_ONE_SIDED], [1], [Define to enable MPI2 one-sided tests])
])
AC_ARG_ENABLE([mpi2-io],
AS_HELP_STRING([--enable-mpi2-io], [Build tests for MPI2 I/O [[default=yes]]]),,
[enable_mpi2_io=yes])
AS_IF([test "$enable_mpi2_io" = "yes"],[
AC_DEFINE([HAVE_MPI2_IO], [1], [Define to enable MPI2 I/O tests])
])
AC_ARG_ENABLE([mpi2-threads],
AS_HELP_STRING([--enable-mpi2-threads], [Build tests for MPI2 thread support [[default=no]]]),,
[enable_mpi2_threads=no])
AS_IF([test "$enable_mpi2_threads" = "yes"],[
AC_DEFINE([HAVE_MPI2_THREADS], [1], [Define to enable MPI2 thread support tests])
])
AC_ARG_ENABLE([mpi2-dynamic],
AS_HELP_STRING([--enable-mpi2-dynamic], [Build tests for MPI2 dynamic process management [[default=no]]]),
[enable_mpi2_dynamic=no])
AS_IF([test "$enable_mpi2_dynamic" = "yes"],[
AC_DEFINE([HAVE_MPI2_DYNAMIC], [1], [Define to enable MPI2 dynamic process management tests])
])
dnl Checks for header files and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_C_RESTRICT
AC_HEADER_STDC
dnl The second argument is IGNORED!!!!!
AC_CHECK_SIZEOF(char, 1)
AC_CHECK_SIZEOF(short, 2)
AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(long, 4)
AC_CHECK_SIZEOF(long long, 8)
AC_CHECK_SIZEOF(unsigned short, 2)
AC_CHECK_SIZEOF(unsigned int, 4)
AC_CHECK_SIZEOF(unsigned long, 8)
AC_CHECK_SIZEOF(unsigned long long, 8)
AC_CHECK_SIZEOF(float, 4)
AC_CHECK_SIZEOF(double, 8)
AC_CHECK_SIZEOF(long double, 8)
dnl Check for headers
dnl Need to check for sys/types.h since AC_TYPE_PID_T depends on it later!
AC_CHECK_HEADERS([float.h getopt.h limits.h stdlib.h unistd.h sys/time.h sys/types.h values.h pthread.h])
dnl Check for sizes of different types and Endian-ness
dnl AC_C_LONG_DOUBLE
dnl AC_C_BIGENDIAN
dnl Checks for library functions.
dnl AC_FUNC_MEMCMP
AC_FUNC_MALLOC
AC_FUNC_VPRINTF
dnl AC_CHECK_FUNCS([kill memset snprintf strcasecmp strerror strstr setlinebuf gethostname select socket poll vsprintf vsnprintf])
AC_CHECK_FUNCS([gethostname memset strcasecmp strerror strstr])
AC_CONFIG_FILES([Makefile])
AS_MKDIR_P([coll])
AS_MKDIR_P([dynamic])
AS_MKDIR_P([env])
AS_MKDIR_P([io])
AS_MKDIR_P([one-sided])
AS_MKDIR_P([p2p])
AS_MKDIR_P([threaded])
AC_OUTPUT