You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
476 lines
16 KiB
Plaintext
476 lines
16 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.62])
|
|
|
|
AC_INIT([META_PACKAGE_NAME],[META_PACKAGE_VERSION],[],[META_PACKAGE_NAME])
|
|
AC_CONFIG_MACRO_DIR([config])
|
|
|
|
X_AC_META
|
|
|
|
AC_CONFIG_AUX_DIR([config])
|
|
AC_CONFIG_SRCDIR([src/ior.c])
|
|
AC_CONFIG_HEADER([src/config.h])
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
# Automake support
|
|
AM_INIT_AUTOMAKE([check-news dist-bzip2 gnu no-define foreign subdir-objects])
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
AM_MAINTAINER_MODE
|
|
|
|
# Check for system-specific stuff
|
|
case "${host_os}" in
|
|
*linux*)
|
|
;;
|
|
*darwin*)
|
|
CPPFLAGS="${CPPFLAGS} -D_DARWIN_C_SOURCE"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
# Checks for programs
|
|
|
|
# We can't do anything without a working MPI
|
|
AX_PROG_CC_MPI(,,[
|
|
AC_MSG_FAILURE([MPI compiler requested, but could not use MPI.])
|
|
])
|
|
|
|
AC_PROG_RANLIB
|
|
# No reason not to require modern C at this point
|
|
AC_PROG_CC_C99
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
AC_CHECK_HEADERS([fcntl.h libintl.h stdlib.h string.h strings.h sys/ioctl.h sys/param.h sys/statfs.h sys/statvfs.h sys/time.h sys/param.h sys/mount.h unistd.h wchar.h hdfs.h beegfs/beegfs.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_TYPE_SIZE_T
|
|
|
|
# Checks for library functions.
|
|
AC_CHECK_FUNCS([sysconf gettimeofday memset mkdir pow putenv realpath regcomp sqrt strcasecmp strchr strerror strncasecmp strstr uname statfs statvfs])
|
|
AC_SEARCH_LIBS([sqrt], [m], [],
|
|
[AC_MSG_ERROR([Math library not found])])
|
|
|
|
# Check for gpfs availability
|
|
AC_ARG_WITH([gpfs],
|
|
[AS_HELP_STRING([--with-gpfs],
|
|
[support configurable GPFS @<:@default=check@:>@])],
|
|
[], [with_gpfs=check])
|
|
|
|
AS_IF([test "x$with_gpfs" != xno], [
|
|
AC_CHECK_HEADERS([gpfs.h gpfs_fcntl.h], [], [
|
|
if test "x$with_gpfs" != xcheck; then
|
|
AC_MSG_FAILURE([--with-gpfs was given, <gpfs.h> and <gpfs_fcntl.h> not found])
|
|
fi
|
|
])
|
|
AS_IF([test "$ac_cv_header_gpfs_h" = "yes" -o "$ac_cv_header_gpfs_fcntl_h" = "yes"], [
|
|
AC_SEARCH_LIBS([gpfs_fcntl], [gpfs], [],
|
|
[AC_MSG_ERROR([Library containing gpfs_fcntl symbols not found])
|
|
])
|
|
])
|
|
])
|
|
|
|
# Check for CUDA
|
|
AC_ARG_WITH([cuda],
|
|
[AS_HELP_STRING([--with-cuda],
|
|
[support configurable CUDA @<:@default=check@:>@])],
|
|
[], [with_cuda=check])
|
|
|
|
AS_IF([test "x$with_cuda" != xno], [
|
|
LDFLAGS="$LDFLAGS -L$with_cuda/lib64 -Wl,--enable-new-dtags -Wl,-rpath=$with_cuda/lib64"
|
|
CPPFLAGS="$CPPFLAGS -I$with_cuda/include"
|
|
|
|
AC_CHECK_HEADERS([cuda_runtime.h], [AC_DEFINE([HAVE_CUDA], [], [CUDA GPU API found])], [
|
|
if test "x$with_cuda" != xcheck; then
|
|
AC_MSG_FAILURE([--with-cuda was given, <cuda_runtime.h> not found])
|
|
fi
|
|
])
|
|
AS_IF([test "$ac_cv_header_cuda_runtime_h" = "yes"], [
|
|
AC_SEARCH_LIBS([cudaMalloc], [cudart cudart_static], [],
|
|
[AC_MSG_ERROR([Library containing cudaMalloc symbol not found])])
|
|
])
|
|
])
|
|
AM_CONDITIONAL([HAVE_CUDA], [test x$with_cuda = xyes])
|
|
AM_COND_IF([HAVE_CUDA],[AC_DEFINE([HAVE_CUDA], [], [CUDA GPU API found])])
|
|
|
|
# Check for GPUDirect
|
|
AC_ARG_WITH([gpuDirect],
|
|
[AS_HELP_STRING([--with-gpuDirect],
|
|
[support configurable GPUDirect @<:@default=check@:>@])],
|
|
[], [with_gpuDirect=check])
|
|
|
|
AS_IF([test "x$with_gpuDirect" != xno], [
|
|
LDFLAGS="$LDFLAGS -L$with_gpuDirect/lib64 -Wl,--enable-new-dtags -Wl,-rpath=$with_gpuDirect/lib64"
|
|
CPPFLAGS="$CPPFLAGS -I$with_gpuDirect/include"
|
|
|
|
AC_CHECK_HEADERS([cufile.h], [AC_DEFINE([HAVE_GPU_DIRECT], [], [GPUDirect API found])], [
|
|
if test "x$with_gpuDirect" != xcheck; then
|
|
AC_MSG_FAILURE([--with-gpuDirect was given, <cufile.h> not found])
|
|
fi
|
|
])
|
|
AS_IF([test "$ac_cv_header_cufile_h" = "yes"], [
|
|
AC_SEARCH_LIBS([cuFileDriverOpen], [cufile], [],
|
|
[AC_MSG_ERROR([Library containing cuFileDriverOpen symbol not found])])
|
|
])
|
|
])
|
|
AM_CONDITIONAL([HAVE_GPU_DIRECT], [test x$with_gpuDirect = xyes])
|
|
AM_COND_IF([HAVE_GPU_DIRECT],[AC_DEFINE([HAVE_GPU_DIRECT], [], [GPUDirect API found])])
|
|
|
|
|
|
# Check for system capabilities
|
|
AC_SYS_LARGEFILE
|
|
|
|
AC_DEFINE([_XOPEN_SOURCE], [700], [C99 compatibility])
|
|
|
|
# Check for lustre availability
|
|
AC_ARG_WITH([lustre],
|
|
[AS_HELP_STRING([--with-lustre],
|
|
[support configurable Lustre striping values @<:@default=check@:>@])],
|
|
[], [with_lustre=check])
|
|
AS_IF([test "x$with_lustre" = xyes ], [
|
|
AC_CHECK_HEADERS([linux/lustre/lustre_user.h lustre/lustre_user.h], [AC_DEFINE([HAVE_LUSTRE_USER], [], [Lustre user API available in some shape or form])], [
|
|
if test "x$with_lustre" != xcheck -a \
|
|
"x$ac_cv_header_linux_lustre_lustre_user_h" = "xno" -a \
|
|
"x$ac_cv_header_lustre_lustre_user_h" = "xno" ; then
|
|
AC_MSG_FAILURE([--with-lustre was given, <lustre/lustre_user.h> not found])
|
|
fi
|
|
])
|
|
AC_CHECK_HEADERS([linux/lustre/lustreapi.h lustre/lustreapi.h],
|
|
[AC_DEFINE([HAVE_LUSTRE_LUSTREAPI], [], [Lustre user API available in some shape or form])], [
|
|
if test "x$with_lustre" != xcheck -a \
|
|
"x$ac_cv_header_linux_lustre_lustreapi_h" = "xno" -a \
|
|
"x$ac_cv_header_lustre_lustreapi_h" = "xno" ; then
|
|
AC_MSG_FAILURE([--with-lustre was given, <lustre/lustreapi.h> not found])
|
|
fi
|
|
])
|
|
])
|
|
AM_CONDITIONAL([WITH_LUSTRE], [test x$with_lustre = xyes])
|
|
AM_COND_IF([WITH_LUSTRE],[
|
|
AC_DEFINE([WITH_LUSTRE], [], [Build wth LUSTRE backend])
|
|
])
|
|
|
|
# IME (DDN's Infinite Memory Engine) support
|
|
AC_ARG_WITH([ime],
|
|
[AS_HELP_STRING([--with-ime],
|
|
[support IO with IME backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_ime=no])
|
|
AM_CONDITIONAL([USE_IME_AIORI], [test x$with_ime = xyes])
|
|
AM_COND_IF([USE_IME_AIORI],[
|
|
AC_DEFINE([USE_IME_AIORI], [], [Build IME backend AIORI])
|
|
])
|
|
|
|
# HDF5 support
|
|
AC_ARG_WITH([hdf5],
|
|
[AS_HELP_STRING([--with-hdf5],
|
|
[support IO with HDF5 backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_hdf5=no])
|
|
AM_CONDITIONAL([USE_HDF5_AIORI], [test x$with_hdf5 = xyes])
|
|
AM_COND_IF([USE_HDF5_AIORI],[
|
|
AC_DEFINE([USE_HDF5_AIORI], [], [Build HDF5 backend AIORI])
|
|
AC_SEARCH_LIBS([H5Pset_all_coll_metadata_ops], [hdf5])
|
|
AC_CHECK_FUNCS([H5Pset_all_coll_metadata_ops])
|
|
])
|
|
|
|
|
|
|
|
# HDFS support
|
|
AC_ARG_WITH([hdfs],
|
|
[AS_HELP_STRING([--with-hdfs],
|
|
[support IO with HDFS backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_hdfs=no])
|
|
AM_CONDITIONAL([USE_HDFS_AIORI], [test x$with_hdfs = xyes])
|
|
AM_COND_IF([USE_HDFS_AIORI],[
|
|
AC_DEFINE([USE_HDFS_AIORI], [], [Build HDFS backend AIORI])
|
|
])
|
|
|
|
# MPIIO support
|
|
AC_ARG_WITH([mpiio],
|
|
[AS_HELP_STRING([--with-mpiio],
|
|
[support IO with MPI-IO backend @<:@default=yes@:>@])],
|
|
[],
|
|
[with_mpiio=yes])
|
|
AM_CONDITIONAL([USE_MPIIO_AIORI], [test x$with_mpiio = xyes])
|
|
AM_COND_IF([USE_MPIIO_AIORI],[
|
|
AC_DEFINE([USE_MPIIO_AIORI], [], [Build MPIIO backend AIORI])
|
|
])
|
|
|
|
# NCMPI (Parallel netcdf) support
|
|
AC_ARG_WITH([ncmpi],
|
|
[AS_HELP_STRING([--with-ncmpi],
|
|
[support IO with NCMPI backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_ncmpi=no])
|
|
AM_CONDITIONAL([USE_NCMPI_AIORI], [test x$with_ncmpi = xyes])
|
|
AS_IF([test "x$with_ncmpi" = xyes ], [
|
|
AC_CHECK_HEADERS([pnetcdf.h], [AC_DEFINE([USE_NCMPI_AIORI], [], [PNetCDF available])], [
|
|
AC_MSG_FAILURE([--with-ncmpi was given but pnetcdf.h not found])
|
|
])
|
|
])
|
|
|
|
# MMAP IO support
|
|
AC_ARG_WITH([mmap],
|
|
[AS_HELP_STRING([--with-mmap],
|
|
[support IO with MMAP backend @<:@default=yes@:>@])],
|
|
[],
|
|
[with_mmap=yes])
|
|
AM_CONDITIONAL([USE_MMAP_AIORI], [test x$with_mmap = xyes])
|
|
AM_COND_IF([USE_MMAP_AIORI],[
|
|
AC_DEFINE([USE_MMAP_AIORI], [], [Build MMAP backend AIORI])
|
|
])
|
|
|
|
# POSIX IO support
|
|
AC_ARG_WITH([posix],
|
|
[AS_HELP_STRING([--with-posix],
|
|
[support IO with POSIX backend @<:@default=yes@:>@])],
|
|
[],
|
|
[with_posix=yes])
|
|
AM_CONDITIONAL([USE_POSIX_AIORI], [test x$with_posix = xyes])
|
|
AM_COND_IF([USE_POSIX_AIORI],[
|
|
AC_DEFINE([USE_POSIX_AIORI], [], [Build POSIX backend AIORI])
|
|
])
|
|
|
|
# PMDK IO support
|
|
AC_ARG_WITH([pmdk],
|
|
[AS_HELP_STRING([--with-pmdk],
|
|
[support IO with PMDK backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_pmdk=no])
|
|
AM_CONDITIONAL([USE_PMDK_AIORI], [test x$with_pmdk = xyes])
|
|
AS_IF([test "x$with_pmdk" != xno], [
|
|
AC_DEFINE([USE_PMDK_AIORI], [], [Build PMDK backend AIORI])
|
|
AC_CHECK_HEADERS(libpmem.h,, [unset PMDK])
|
|
AC_SEARCH_LIBS([pmem_map_file], [pmdk],
|
|
[AC_MSG_ERROR([Library containing pmdk symbols not found])])
|
|
])
|
|
|
|
# LINUX AIO support
|
|
AC_ARG_WITH([aio],
|
|
[AS_HELP_STRING([--with-aio],
|
|
[support Linux AIO @<:@default=no@:>@])],
|
|
[],
|
|
[with_aio=no])
|
|
AM_CONDITIONAL([USE_AIO_AIORI], [test x$with_aio = xyes])
|
|
AS_IF([test "x$with_aio" != xno], [
|
|
AC_DEFINE([USE_AIO_AIORI], [], [Build AIO backend])
|
|
AC_CHECK_HEADERS(libaio.h,, [unset AIO])
|
|
AC_SEARCH_LIBS([aio], [io_setup], [AC_MSG_ERROR([Library containing AIO symbol io_setup not found])])
|
|
])
|
|
|
|
|
|
# RADOS support
|
|
AC_ARG_WITH([rados],
|
|
[AS_HELP_STRING([--with-rados],
|
|
[support IO with librados backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_rados=no])
|
|
AM_CONDITIONAL([USE_RADOS_AIORI], [test x$with_rados = xyes])
|
|
AM_COND_IF([USE_RADOS_AIORI],[
|
|
AC_DEFINE([USE_RADOS_AIORI], [], [Build RADOS backend AIORI])
|
|
])
|
|
|
|
# CEPHFS support
|
|
AC_ARG_WITH([cephfs],
|
|
[AS_HELP_STRING([--with-cephfs],
|
|
[support IO with libcephfs backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_cephfs=no])
|
|
AS_IF([test "x$with_cephfs" != xno], [
|
|
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -std=gnu11"
|
|
])
|
|
AM_CONDITIONAL([USE_CEPHFS_AIORI], [test x$with_cephfs = xyes])
|
|
AM_COND_IF([USE_CEPHFS_AIORI],[
|
|
AC_DEFINE([USE_CEPHFS_AIORI], [], [Build CEPHFS backend AIORI])
|
|
])
|
|
|
|
# DAOS-FS Backend (DFS)
|
|
AC_ARG_WITH([daos],
|
|
[AS_HELP_STRING([--with-daos],
|
|
[support IO with DAOS backend @<:@default=no@:>@])],
|
|
[], [with_daos=no])
|
|
AS_IF([test "x$with_daos" != xno], [
|
|
DAOS="yes"
|
|
LDFLAGS="$LDFLAGS -L$with_daos/lib64 -Wl,--enable-new-dtags -Wl,-rpath=$with_daos/lib64"
|
|
CPPFLAGS="$CPPFLAGS -I$with_daos/include"
|
|
AC_CHECK_HEADERS(gurt/common.h,, [unset DAOS])
|
|
AC_CHECK_HEADERS(daos.h,, [unset DAOS])
|
|
AC_CHECK_LIB([gurt], [d_hash_murmur64],, [unset DAOS])
|
|
AC_CHECK_LIB([uuid], [uuid_generate],, [unset DAOS])
|
|
AC_CHECK_LIB([daos], [daos_init],, [unset DAOS])
|
|
AC_CHECK_LIB([dfs], [dfs_mkdir],, [unset DAOS])
|
|
])
|
|
AM_CONDITIONAL([USE_DAOS_AIORI], [test x$DAOS = xyes])
|
|
AM_COND_IF([USE_DAOS_AIORI],[
|
|
AC_DEFINE([USE_DAOS_AIORI], [], [Build DAOS-FS backend AIORI])
|
|
])
|
|
|
|
# Gfarm support
|
|
AC_MSG_CHECKING([for Gfarm file system])
|
|
AC_ARG_WITH([gfarm],
|
|
[AS_HELP_STRING([--with-gfarm=GFARM_ROOT],
|
|
[support IO with Gfarm backend @<:@default=no@:>@])],
|
|
[], [with_gfarm=no])
|
|
AC_MSG_RESULT([$with_gfarm])
|
|
AM_CONDITIONAL([USE_GFARM_AIORI], [test x$with_gfarm != xno])
|
|
if test x$with_gfarm != xno; then
|
|
AC_DEFINE([USE_GFARM_AIORI], [], [Build Gfarm backend AIORI])
|
|
case x$with_gfarm in
|
|
xyes) ;;
|
|
*)
|
|
CPPFLAGS="$CPPFLAGS -I$with_gfarm/include"
|
|
LDFLAGS="$LDFLAGS -L$with_gfarm/lib" ;;
|
|
esac
|
|
AC_CHECK_LIB([gfarm], [gfarm_initialize],, [AC_MSG_ERROR([libgfarm not found])])
|
|
AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec])
|
|
fi
|
|
|
|
# aws4c is needed for the S3 backend (see --with-S3, below).
|
|
# Version 0.5.2 of aws4c is available at https://github.com/jti-lanl/aws4c.git
|
|
# Install it something like this:
|
|
#
|
|
# cd $my_install_dir
|
|
# git clone https://github.com/jti-lanl/aws4c.git
|
|
# cd aws4c
|
|
# make
|
|
#
|
|
# Then:
|
|
# --with-S3 --with-aws4c=$my_install_dir/aws4c
|
|
|
|
aws4c_dir=
|
|
AC_ARG_WITH([aws4c],
|
|
[AS_HELP_STRING([--with-aws4c=DIR],
|
|
[aws4c library is needed for Amazon S3 backend])],
|
|
[aws4c_dir="$withval"])
|
|
AM_CONDITIONAL([AWS4C_DIR], [test x$aws4c_dir != x])
|
|
|
|
# AC_SUBST([AWS4C_DIR],[$aws4c_dir])
|
|
AM_COND_IF([AWS4C_DIR],[
|
|
AC_SUBST([AWS4C_CPPFLAGS],[-I$aws4c_dir])
|
|
AC_SUBST([AWS4C_LDFLAGS], [-L$aws4c_dir])
|
|
])
|
|
|
|
|
|
|
|
# Amazon S3 support using the libs3 API
|
|
AC_ARG_WITH([S3-libs3],
|
|
[AS_HELP_STRING([--with-S3-libs3],
|
|
[support IO with Amazon libS3 @<:@default=no@:>@])],
|
|
[],
|
|
[with_S3_libs3=no])
|
|
AM_CONDITIONAL([USE_S3_LIBS3_AIORI], [test x$with_S3_libs3 = xyes])
|
|
AM_COND_IF([USE_S3_LIBS3_AIORI],[
|
|
AC_DEFINE([USE_S3_LIBS3_AIORI], [], [Build Amazon-S3 backend AIORI using libs3])
|
|
])
|
|
|
|
err=0
|
|
AS_IF([test "x$with_S3_libs3" != xno], [
|
|
AC_MSG_NOTICE([beginning of S3-related checks])
|
|
ORIG_CPPFLAGS=$CPPFLAGS
|
|
ORIG_LDFLAGS=$LDFLAGS
|
|
|
|
AC_CHECK_HEADERS([libs3.h], [], [err=1])
|
|
|
|
# Autotools thinks searching for a library means I want it added to LIBS
|
|
ORIG_LIBS=$LIBS
|
|
AC_CHECK_LIB([s3], [S3_initialize], [], [err=1])
|
|
LIBS=$ORIG_LIBS
|
|
|
|
AC_MSG_NOTICE([end of S3-related checks])
|
|
if test "$err" == 1; then
|
|
AC_MSG_FAILURE([S3 support is missing. dnl Make sure you have access to libs3. dnl])
|
|
fi
|
|
|
|
# restore user's values
|
|
CPPFLAGS=$ORIG_CPPFLAGS
|
|
LDFLAGS=$ORIG_LDFLAGS
|
|
])
|
|
|
|
# Amazon S3 support [see also: --with-aws4c]
|
|
AC_ARG_WITH([S3-4c],
|
|
[AS_HELP_STRING([--with-S3-4c],
|
|
[support IO with Amazon S3 backend @<:@default=no@:>@])],
|
|
[],
|
|
[with_S3_4c=no])
|
|
AM_CONDITIONAL([USE_S3_4C_AIORI], [test x$with_S3_4c = xyes])
|
|
AM_COND_IF([USE_S3_4C_AIORI],[
|
|
AC_DEFINE([USE_S3_4C_AIORI], [], [Build Amazon-S3 backend AIORI using lib4c])
|
|
])
|
|
|
|
err=0
|
|
AS_IF([test "x$with_S3_4c" != xno], [
|
|
AC_MSG_NOTICE([beginning of S3-related checks])
|
|
|
|
# save user's values, while we use AC_CHECK_HEADERS with $AWS4C_DIR
|
|
ORIG_CPPFLAGS=$CPPFLAGS
|
|
ORIG_LDFLAGS=$LDFLAGS
|
|
|
|
CPPFLAGS="$CPPFLAGS $AWS4C_CPPFLAGS"
|
|
LDFLAGS=" $LDFLAGS $AWS4C_LDFLAGS"
|
|
|
|
AC_CHECK_HEADERS([aws4c.h], [], [err=1])
|
|
AC_CHECK_HEADERS([libxml/parser.h], [], [err=1])
|
|
|
|
# Autotools thinks searching for a library means I want it added to LIBS
|
|
ORIG_LIBS=$LIBS
|
|
AC_CHECK_LIB([curl], [curl_easy_init], [], [err=1])
|
|
AC_CHECK_LIB([xml2], [xmlDocGetRootElement], [], [err=1])
|
|
AC_CHECK_LIB([aws4c], [s3_get], [], [err=1], [-lcurl -lxml2 -lcrypto])
|
|
LIBS=$ORIG_LIBS
|
|
|
|
AC_MSG_NOTICE([end of S3-related checks])
|
|
if test "$err" == 1; then
|
|
AC_MSG_FAILURE([S3 support is missing. dnl
|
|
Make sure you have access to libaws4c, libcurl, libxml2, and libcrypto. dnl
|
|
Consider --with-aws4c=, CPPFLAGS, LDFLAGS, etc])
|
|
fi
|
|
|
|
# restore user's values
|
|
CPPFLAGS=$ORIG_CPPFLAGS
|
|
LDFLAGS=$ORIG_LDFLAGS
|
|
])
|
|
|
|
# Check for existence of the function to detect the CPU socket ID (for multi-socket systems)
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_SOURCE([[
|
|
int main(){
|
|
unsigned long a,d,c;
|
|
__asm__ volatile("rdtscp" : "=a" (a), "=d" (d), "=c" (c));
|
|
return 0;
|
|
}
|
|
]])],
|
|
AC_DEFINE([HAVE_RDTSCP_ASM], [], [Has ASM to detect CPU socket ID]))
|
|
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_SOURCE([[
|
|
#define _GNU_SOURCE
|
|
#include <unistd.h>
|
|
#include <sys/syscall.h>
|
|
unsigned long GetProcessorAndCore(int *chip, int *core){
|
|
return syscall(SYS_getcpu, core, chip, NULL);
|
|
}
|
|
int main(){
|
|
}
|
|
]])],
|
|
AC_DEFINE([HAVE_GETCPU_SYSCALL], [], [Has syscall to detect CPU socket ID]))
|
|
|
|
|
|
# Enable building "IOR", in all capitals
|
|
AC_ARG_ENABLE([caps],
|
|
[AS_HELP_STRING([--enable-caps],
|
|
[build "IOR" binary (name is in all-caps) @<:@default=no@:>@])],
|
|
[], [enable_caps=no])
|
|
AM_CONDITIONAL([USE_CAPS], [test x$enable_caps = xyes])
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
src/Makefile
|
|
src/test/Makefile
|
|
contrib/Makefile
|
|
doc/Makefile])
|
|
AC_OUTPUT
|