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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
|
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
AC_PREREQ(2.63)
AC_INIT([MPL], [0.1])
# sanity check that --srcdir was specified correctly
AC_CONFIG_SRCDIR([src/str/mpl_str.c])
AC_CONFIG_AUX_DIR(confdb)
AC_CONFIG_MACRO_DIR(confdb)
AM_INIT_AUTOMAKE([subdir-objects] [-Wall -Werror foreign 1.12.3])
dnl must come before LT_INIT, which AC_REQUIREs AC_PROG_CC
AC_PROG_CC
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_USE_SYSTEM_EXTENSIONS
AM_PROG_AR
LT_PREREQ([2.2.6])
# Bug in libtool adds -O2 and -g by default
PAC_PUSH_FLAG([CFLAGS])
LT_INIT()
PAC_POP_FLAG([CFLAGS])
# ----------------------------------------------------------------------------
# Set default library names if names haven't already been provided
AC_ARG_VAR([MPLLIBNAME],[can be used to override the name of the MPL library (default: "mpl")])
MPLLIBNAME=${MPLLIBNAME:-"mpl"}
AC_SUBST(MPLLIBNAME)
export MPLLIBNAME
if test -s "$srcdir/VERSION" ; then
. $srcdir/VERSION
AC_SUBST(libmpl_so_version)
else
AC_MSG_ERROR([Version information not found. Configuration aborted.])
fi
AC_CONFIG_HEADER([include/config.h])
AC_CONFIG_COMMANDS([prefix-config],[perl $srcdir/confdb/cmd_prefix_config_h.pl MPL include/config.h include/mplconfig.h])
# Non-verbose make
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_C_CONST
AC_C_RESTRICT
AC_C_INLINE
PAC_C_MACRO_VA_ARGS
PAC_C_BUILTIN_EXPECT
PAC_C_STATIC_ASSERT
AC_ARG_ENABLE(embedded,
AC_HELP_STRING([--enable-embedded], [Build MPL in embedded mode (default is no)]),
[embedded=yes],
[embedded=no])
AM_CONDITIONAL([MPL_EMBEDDED_MODE],[test "x${embedded}" = "xyes"])
AC_ARG_ENABLE(g,
AC_HELP_STRING([--enable-g=option],
[
Control the level of debugging support in MPL.
"option" is a list of comma separated names. Default
is "all".
none|no - No debugging
log - Enable debug event logging
mem - Enable memory tracing
most|yes|all - All of the above choices (except "none", obviously)
]),,[enable_g=none])
# enable-g
# strip off multiple options, separated by commas
PAC_PUSH_FLAG(IFS)
# Change IFS to process enable_g values; save for use after AC_MSG_WARN
# below to provide single point of maintenance
enable_g_IFS=","
IFS="$enable_g_IFS"
for option in $enable_g ; do
case "$option" in
log)
enable_g_log=yes
;;
mem|memarena)
enable_g_mem=yes
;;
most|yes|all)
enable_g_log=yes
enable_g_mem=yes
;;
no|none)
;;
*)
# Default IFS required by AC_MSG_WARN
PAC_POP_FLAG(IFS)
AC_MSG_WARN([Unknown value $option for enable-g])
# Restore previous IFS to process any remaining enable_g values
PAC_PUSH_FLAG(IFS)
IFS="$enable_g_IFS"
;;
esac
done
PAC_POP_FLAG(IFS)
if test "$enable_g_log" = "yes" ; then
AC_DEFINE([USE_DBG_LOGGING],[1],[Define to enable logging macros])
fi
if test "$enable_g_mem" = "yes" ; then
AC_DEFINE([USE_MEMORY_TRACING],[1],[Define to enable memory tracing])
fi
# support gcov test coverage information
PAC_ENABLE_COVERAGE
# check for compiler support for the __typeof() extension
AC_CACHE_CHECK([whether the compiler supports __typeof(variable)],
[pac_cv_have___typeof],
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]],[[double foo = 0.0; __typeof(foo) bar = 1.0;]])],
[pac_cv_have___typeof=yes],
[pac_cv_have___typeof=no])]
)
if test "$pac_cv_have___typeof" = "yes" ; then
AC_DEFINE([HAVE___TYPEOF],[1],[defined if the C compiler supports __typeof(variable)])
fi
dnl Check if the necessary headers are available
AC_CHECK_HEADERS(stdio.h stdlib.h string.h stdarg.h ctype.h sys/types.h sys/uio.h execinfo.h unistd.h errno.h windows.h sys/mman.h sys/param.h)
# A C99 compliant compiler should have inttypes.h for fixed-size int types
AC_CHECK_HEADERS(inttypes.h stdint.h)
AC_HEADER_STDBOOL
AC_ARG_ENABLE(fast,
[ --enable-fast=option - Control the level of fast execution supported by MPL.
alwaysinline - Force compiler to always inline functions with MPL_STATIC_INLINE_PREFIX|SUFFIX
all|yes - Same as "alwaysinline"
none - Disable alwaysinline (default)
],,enable_fast=none)
# enable-fast
# only alwaysinline option is valid but still need break down multiple options
# transferred from MPICH separated by commas
enable_fast_alwaysinline=no
save_IFS="$IFS"
IFS=","
for option in $enable_fast ; do
case "$option" in
alwaysinline)
enable_fast_alwaysinline=yes
;;
all|yes)
enable_fast_alwaysinline=yes
;;
*) # do not change default value (no) for other fast options
;;
esac
done
IFS="$save_IFS"
if test "$enable_fast_alwaysinline" = "yes"; then
AC_DEFINE(ENABLE_ALWAYS_INLINE,1,[Define if force compiler to always inline functions with MPL_STATIC_INLINE_PREFIX|SUFFIX])
fi
#######################################################################
# valgrind support
AC_ARG_WITH([valgrind],
[AS_HELP_STRING([--without-valgrind],[to disable valgrind support (such as because of version issues)])]
[AS_HELP_STRING([--with-valgrind=PATH],[use valgrind headers installed in PATH (default is "yes", use no special path)])],
[],[with_valgrind=yes])
if test "$with_valgrind" != "no" ; then
savedCPPFLAGS="$CPPFLAGS"
if test "$with_valgrind" != "yes" ; then
# Clients of MPL will either need to respect the localdefs file (as in
# MPICH) or add this entry to their own CPPFLAGS-equivalent.
# (TODO: a pkg-config file would help with this)
PAC_APPEND_FLAG([-I${with_valgrind}], [CPPFLAGS])
fi
# headers for valgrind client requests
AC_CHECK_HEADERS([valgrind.h memcheck.h valgrind/valgrind.h valgrind/memcheck.h])
# headers for valgrind-based thread checking tools
# TODO: incorporate ThreadSanitizer as well (include dynamic_annotations.h,
# link with dynamic_annotations.c)
AC_CHECK_HEADERS([helgrind.h valgrind/helgrind.h])
AC_CHECK_HEADERS([drd.h valgrind/drd.h])
# ensure that we have a new enough valgrind with all the client macros
# a preproc test would probably be sufficient, but the LINK_IFELSE helps us
# double-check that we aren't accidentally grabbing the headers for some
# other platform
AC_CACHE_CHECK([whether the valgrind headers are broken or too old],
[pac_cv_have_broken_valgrind],
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM([
#if defined(HAVE_VALGRIND_H) && defined(HAVE_MEMCHECK_H)
# include <valgrind.h>
# include <memcheck.h>
#elif defined(HAVE_VALGRIND_VALGRIND_H) && defined(HAVE_VALGRIND_MEMCHECK_H)
# include <valgrind/valgrind.h>
# include <valgrind/memcheck.h>
#else
# error unexpected valgrind header error
#endif
int foo = 10;
char mempool_obj;
],[
#if defined(VALGRIND_MAKE_MEM_DEFINED)
VALGRIND_MAKE_MEM_NOACCESS(&foo,sizeof(foo));
VALGRIND_MAKE_MEM_UNDEFINED(&foo,sizeof(foo));
VALGRIND_MAKE_MEM_DEFINED(&foo,sizeof(foo));
VALGRIND_CHECK_MEM_IS_DEFINED(&foo,sizeof(foo));
VALGRIND_CHECK_MEM_IS_ADDRESSABLE(&foo,sizeof(foo));
#elif defined(VALGRIND_MAKE_READABLE)
/* older (pre-3.2.0), but still supported style */
VALGRIND_MAKE_READABLE(&foo,sizeof(foo));
VALGRIND_MAKE_NOACCESS(&foo,sizeof(foo));
VALGRIND_MAKE_UNDEFINED(&foo,sizeof(foo));
VALGRIND_CHECK_READABLE(&foo,sizeof(foo));
VALGRIND_CHECK_WRITEABLE(&foo,sizeof(foo));
#else
#error missing essential valgrind client macros
#endif
VALGRIND_CREATE_BLOCK(&foo,sizeof(foo),"description");
if (RUNNING_ON_VALGRIND) ++foo;
VALGRIND_PRINTF_BACKTRACE("testing: %s","valgrind support");
VALGRIND_CREATE_MEMPOOL(&mempool_obj,0,0);
VALGRIND_MEMPOOL_ALLOC(&mempool_obj,&foo,sizeof(foo));
VALGRIND_MEMPOOL_FREE(&mempool_obj,&foo);
VALGRIND_DESTROY_MEMPOOL(&mempool_obj);
]) dnl end PROGRAM
],
[pac_cv_have_broken_valgrind=no], dnl end if-true
[pac_cv_have_broken_valgrind=yes] dnl end if-false
)] dnl end IFELSE
) dnl end CACHE_CHECK
if test "$pac_cv_have_broken_valgrind" = "yes" ; then
AC_DEFINE([HAVE_BROKEN_VALGRIND],[1],[define if valgrind is old and/or broken compared to what we are expecting])
CPPFLAGS="$savedCPPFLAGS"
fi
fi
#######################################################################
## TIMER CODE
#######################################################################
# ----------------------------------------------------------------------------
# Support for timers. The following code processes the
# --enable-timer-type=name argument and selects the timer based on
# both that field and what configure is able to determine is available.
# The file src/include/mpl_timer.h is also created.
# ----------------------------------------------------------------------------
# clock_gettime is the POSIX gettimeofday
# gethrtime is the Solaris high-resolution timer
dnl
dnl Specific checks that a function works correctly
dnl
dnl Now that we know what the options are, choose the timer to use
dnl
dnl The default preference is
dnl Solaris gethrtime
dnl Posix clock_gettime
dnl Unix gettimeofday (one of two versions)
dnl
dnl Also available are various hardware time stamps
dnl Linux-x86 cycle counter
dnl Powerpc-64bit timebase cycle counter
dnl
dnl We also allow --enable-timer-type=name to select a timer type
AC_ARG_ENABLE(timer-type,
[ --enable-timer-type=name - Select the timer to use for MPI_Wtime and
internal timestamps.
ppc64_cycle - Powerpc-64bit; returns cycle counts using timebase register
gethrtime - Solaris timer (Solaris systems only)
clock_gettime - Posix timer (where available)
gettimeofday - Most Unix systems
linux86_cycle - Linux x86; returns cycle counts, not time in seconds*
gcc_ia64_cycle - IPF ar.itc timer*
mach_absolute_time - Mach absolute time (alternative to clock_gettime
for OSX)
*Note that the cycle timers are intended to be used by
developers for internal low-level timing. Normal users should
not use these as they are not guaranteed to be accurate in
certain situations.
],timer_type=$enable_timer_type)
## The user did not specify a timer type. Try to find a sane option
## that is supported by the platform.
if test -z "$timer_type" ; then
# Try to pick a timer based on what is available
AC_CHECK_FUNCS(clock_gettime clock_getres gethrtime mach_absolute_time gettimeofday)
if test "$ac_cv_func_gethrtime" = "yes" ; then
# Sigh. The Solaris include files do not define hrtime_t
# Before we accept this choice, make sure that we can
# do arithmetic with hrtime_t .
AC_CACHE_CHECK([that hrtime_t is properly defined for gethrtime],
pac_cv_hrtime_works,[
AC_TRY_COMPILE([
#include <sys/time.h>
],[hrtime_t t1, t2; t1 = 1; t2 = 2; t1 = t1 + t2;],
pac_cv_hrtime_works=yes,pac_cv_hrtime_works=no)])
# A more ambitious test would look to see if casting an
# hrtime_t to int64_t works, and even more ambitious
# would check whether long or long long was 64 bits (or even
# better, the sizeof hrtime_t).
# AC_CHECK_FUNCS has false positive when checking whether gethrtime is
# available on Solaris with strict configuration. We must use
# AC_CHECK_DECL to confirm it.
AC_CHECK_DECL(gethrtime)
fi
if test "$ac_cv_func_gethrtime" = "yes" -a \
"$ac_cv_has_decl_gethrtime" = "yes" -a \
"$pac_cv_hrtime_works" = "yes" ; then
timer_type=gethrtime
elif test "$ac_cv_func_clock_gettime" = "yes" -a \
"$ac_cv_func_clock_getres" = "yes" ; then
# Test on both because some systems (e.g., cygwin) provide
# clock_gettime but not clock_getres
timer_type=clock_gettime
elif test "$ac_cv_func_mach_absolute_time" = "yes" ; then
timer_type=mach_absolute_time
elif test "$ac_cv_func_gettimeofday" = "yes" ; then
timer_type=gettimeofday
fi
fi
if test -z "$timer_type" ; then
AC_MSG_ERROR([No timer found])
fi
# Check for valid timer and select datatypes for the time stamp
case "$timer_type" in
gethrtime)
MPL_TIMER_TYPE=hrtime_t
AC_CHECK_FUNC(gethrtime,,[
AC_MSG_ERROR([Requested timer gethrtime is not available])
])
;;
clock_gettime)
missing_function=no
AC_SEARCH_LIBS([clock_gettime],[rt],,AC_MSG_ERROR([clock_gettime is not available]))
AC_SEARCH_LIBS([clock_getres],[rt],,AC_MSG_ERROR([clock_getres is not available]))
MPL_TIMER_TYPE="struct timespec"
# AIX does not always define struct timespec (!)
# Make sure that we can use struct timespec
AC_CACHE_CHECK([whether struct timespec is defined in time.h],
pac_cv_struct_timespec_defined,[
AC_TRY_COMPILE([
#include <time.h>],[
struct timespec t;],pac_cv_struct_timespec_defined=yes,
pac_cv_struct_timespec_defined=no)
])
if test "$pac_cv_struct_timespec_defined" != "yes" ; then
# Try again, but with -D_XOPEN_SOURCE=500 (works for AIX)
AC_CACHE_CHECK([whether struct timespec is defined in time.h with _XOPEN_SOURCE=500],
pac_cv_struct_timespec_defined_with_xopen500,[
AC_TRY_COMPILE([
#define _XOPEN_SOURCE 500
#include <time.h>],[
struct timespec t;],pac_cv_struct_timespec_defined_with_xopen500=yes,
pac_cv_struct_timespec_defined_with_xopen500=no)
])
if test "$pac_cv_struct_timespec_defined_with_xopen500" = "yes" ; then
# We need to define _XOPEN_SOURCE=500, but we need to ensure that
# this is done before any include files are loaded. At
# this point it is really too late to add this definition,
# since it may make other tests incompatible.
AC_MSG_ERROR([The available timer requires _XOPEN_SOURCE=500. Add -D_XOPEN_SOURCE=500 to CFLAGS and rerun configure])
fi
fi
#
# FreeBSD 4.3 incorrectly puts the header into sys/time.h;
# time.h is required (see pages 45 and 46 in the POSIX standard).
# See if we can compile
AC_CACHE_CHECK([for CLOCK_REALTIME defined in time.h],pac_cv_posix_clock_realtime,[
AC_TRY_COMPILE([
#include <time.h>],[
clockid_t cid = CLOCK_REALTIME;],pac_cv_posix_clock_realtime=yes,
pac_cv_posix_clock_realtime=no)])
if test "$pac_cv_posix_clock_realtime" = "no" ; then
AC_MSG_WARN([POSIX timer requires definitions in time.h])
# Check for the definition in sys/time.h, which is where
# OpenBSD and FreeBSD have put it by mistake
AC_TRY_COMPILE([
#include <time.h>
#include <sys/time.h>],[
clockid_t cid = CLOCK_REALTIME;],pac_cv_posix_clock_realtime=yes,
pac_cv_posix_clock_realtime=no)
if test "$pac_cv_posix_clock_realtime" = yes ; then
AC_MSG_WARN([sys/time.h required for POSIX timer])
AC_DEFINE(NEEDS_SYS_TIME_H,1,[Define if sys/time.h is required to get timer definitions])
else
AC_MSG_ERROR([Cannot find the definition of CLOCK_REALTIME for the POSIX timer])
fi
fi
;;
gettimeofday)
MPL_TIMER_TYPE="struct timeval"
# We may have already tested for gettimeofday. If we got a "yes",
# we're good to go
if test "$ac_cv_func_gettimeofday" != "yes" ; then
AC_CHECK_FUNC(gettimeofday,,[
AC_MSG_ERROR([Requested timer gettimeofday is not available])
])
fi
;;
linux86_cycle|linux86_cycle_2)
# OMPI: The following block was copy and pasted from
# https://github.com/pmodels/mpich/blob/38552cfab7ac139754066e09f2a85e8b5a7d3df7/src/mpl/configure.ac#L451-L513
# to wholly replace the same block set of tests that we there
# previously. This fixed some Autoconf 2.71 portability issues and m4
# quoting issues. See https://github.com/open-mpi/ompi/issues/11364
# for details.
# The following AC_RUN_IFELSE statements are needed because x86_64 compilers
# usually know about rdtscp but the cpu may or may not actually implement the
# feature. This is not cross-compile safe, unfortunately. In the long run we
# should allow the user to override this with a configure flag.
AC_CACHE_CHECK([that linux86 cycle counter is available], pac_cv_linux86_cycle, [
AC_RUN_IFELSE([AC_LANG_SOURCE([[
int main()
{
/* rdtscp */
long long var, *var_ptr=&var;
__asm__ __volatile__("rdtscp; shl \$32, %%rdx; or %%rdx, %%rax" : "=a" (*var_ptr) : : "ecx", "rdx");
return 0;
}
]])],pac_cv_linux86_cycle=rdtscp,[
AC_RUN_IFELSE([AC_LANG_SOURCE([[
int main()
{
/* cpuid 64 */
long long var, *var_ptr=&var;
__asm__ __volatile__("push %%rbx ; cpuid ; rdtsc ; pop %%rbx ; shl $32, %%rdx; or %%rdx, %%rax" : "=a" (*var_ptr) : : "ecx", "rdx");
return 0;
}
]])],pac_cv_linux86_cycle=cpuid_rdtsc64,[
AC_RUN_IFELSE([AC_LANG_SOURCE([[
int main()
{
/* cpuid 32 */
long long var, *var_ptr=&var;
__asm__ __volatile__("push %%ebx ; cpuid ; rdtsc ; pop %%ebx" : "=A" (*var_ptr) : : "ecx");
return 0;
}
]])],pac_cv_linux86_cycle=cpuid_rdtsc32,[
AC_RUN_IFELSE([AC_LANG_SOURCE([[
int main()
{
/* simple */
long long var, *var_ptr=&var;
__asm__ __volatile__("rdtsc" : "=A" (*var_ptr));
return 0;
}
]])],pac_cv_linux86_cycle=rdtsc,
pac_cv_linux86_cycle=no)
])])], dnl closing the last 3 AC_RUN_IFELSE
[
dnl The if-cross-compiling clause from the first AC_RUN_IFELSE. Hope that if the
dnl compiler knows about the instruction then it's supported by the target
dnl platform.
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
long long var, *var_ptr=&var;
__asm__ __volatile__("rdtscp; shl \$32, %%rdx; or %%rdx, %%rax" : "=a" (*var_ptr) : : "ecx", "rdx");
]])],pac_cv_linux86_cycle=rdtscp,[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
long long var, *var_ptr=&var;
__asm__ __volatile__("push %%rbx ; cpuid ; rdtsc ; pop %%rbx ; shl $32, %%rdx; or %%rdx, %%rax" : "=a" (*var_ptr) : : "ecx", "rdx");
]])],pac_cv_linux86_cycle=cpuid_rdtsc64,[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
long long var, *var_ptr=&var;
__asm__ __volatile__("push %%ebx ; cpuid ; rdtsc ; pop %%ebx" : "=A" (*var_ptr) : : "ecx");
]])],pac_cv_linux86_cycle=cpuid_rdtsc32,[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
long long var, *var_ptr=&var;
__asm__ __volatile__("rdtsc" : "=A" (*var_ptr));
]])],pac_cv_linux86_cycle=rdtsc,
pac_cv_linux86_cycle=no
)])])]) dnl closing the 4 AC_COMPILE_IFELSE
]) dnl end of first AC_RUN_IFELSE
]) dnl end of AC_CACHE_CHECK
case "$pac_cv_linux86_cycle" in
"rdtscp")
AC_DEFINE(LINUX86_CYCLE_RDTSCP,1,[Define which x86 cycle counter to use])
;;
"cpuid_rdtsc64")
AC_DEFINE(LINUX86_CYCLE_CPUID_RDTSC64,1,[Define which x86 cycle counter to use])
;;
"cpuid_rdtsc32")
AC_DEFINE(LINUX86_CYCLE_CPUID_RDTSC32,1,[Define which x86 cycle counter to use])
;;
"rdtsc")
AC_DEFINE(LINUX86_CYCLE_RDTSC,1,[Define which x86 cycle counter to use])
;;
*)
cpu_gcc_x86_cycle=no
;;
esac
if test "$cpu_gcc_x86_cycle" = "no" ; then
AC_MSG_ERROR([Linux86 cycle counter is not available on this system and or with the $CC compiler])
fi
MPL_TIMER_TYPE="long long"
;;
gcc_ia64_cycle)
AC_CACHE_CHECK([that IPF timer is available],
pac_cv_ia64_cycle,[
AC_TRY_COMPILE(,[
long var, *var_ptr=&var;
#ifdef __INTEL_COMPILER
#include "ia64regs.h"
var=__getReg(_IA64_REG_AR_ITC);
#else
__asm__ __volatile__("mov %0=ar.itc" : "=r" (var_ptr));
#endif
],pac_cv_gcc_ia64_cycle=yes,pac_cv_gcc_ia64_cycle=no)])
if test "$pac_cv_gcc_ia64_cycle" != "yes" ; then
AC_MSG_ERROR([IPF cycle counter is not available on this system and or with the $CC compiler])
fi
MPL_TIMER_TYPE="long"
;;
mach_absolute_time)
AC_CHECK_FUNC(mach_absolute_time,,[AC_MSG_ERROR([mach_absolute_time is not available])])
AC_CHECK_FUNC(mach_timebase_info,,[AC_MSG_ERROR([mach_timebase_info is not available])])
MPL_TIMER_TYPE="uint64_t"
;;
ppc64_cycle)
AC_CACHE_CHECK([that ppc64 timebase cycle counter is available],
pac_cv_ppc64_cycle,[
AC_TRY_COMPILE([
],[
unsigned temp;
asm volatile ("mfspr %0,%1" : "=r" (temp) : "i" (0x10D));
],pac_cv_ppc64_cycle=yes,
pac_cv_ppc64_cycle=no)
])
if test "$pac_cv_ppc64_cycle" != "yes" ; then
AC_MSG_ERROR([The PPC64 cycle counter is not available on this system and or with the $CC compiler])
fi
MPL_TIMER_TYPE="uint64_t"
;;
*)
AC_MSG_ERROR([Invalid timer type $timer_type])
;;
esac
# Convert timer type to upper case
timer_type=`echo $timer_type | \
tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
MPL_TIMER_KIND=MPL_TIMER_KIND__$timer_type
AC_SUBST(MPL_TIMER_KIND)
AC_SUBST(MPL_TIMER_TYPE)
AC_MSG_NOTICE([Timer type selected is $timer_type])
#######################################################################
## END OF TIMER CODE
#######################################################################
#######################################################################
## START OF PROCESSOR YIELD CODE
#######################################################################
# If the user specified a method to use, we check if it's available.
# If a method was not specified, we make a guess based on the OS. The
# default is to use sched_yield() or yield() if one is available,
# otherwise, default to nothing. After that we define the appropriate
# macro.
AC_CHECK_HEADERS(sched.h)
AC_CHECK_HEADERS(unistd.h)
AC_CHECK_HEADERS(sys/select.h)
AC_CHECK_FUNCS(sched_yield yield usleep sleep select)
if test "$ac_cv_func_usleep" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <unistd.h>],usleep)
fi
AC_ARG_ENABLE([yield],
[AS_HELP_STRING([--enable-yield], [choose a method to yield the processor in busy loops. Available methods are: sched_yield, yield, select, usleep, sleep, nothing])],
[AS_CASE([$enableval],
[sched_yield], [AS_IF([test "x$ac_cv_func_sched_yield" != "xyes"], [enable_yield=unavail])],
[yield], [AS_IF([test "x$ac_cv_func_yield" != "xyes"], [enable_yield=unavail])],
[select], [AS_IF([test "x$ac_cv_func_select" != "xyes"], [enable_yield=unavail])],
[usleep], [AS_IF([test "x$ac_cv_func_usleep" != "xyes"], [enable_yield=unavail])],
[sleep], [AS_IF([test "x$ac_cv_func_sleep" != "xyes"], [enable_yield=unavail])],
[nothing|no|none], [],
[AC_MSG_ERROR([Invalid option $enableval for --enable-yield])])
AS_IF([test "x$enable_yield" = "xunavail"],
[AC_MSG_ERROR([Yield method $enableval is not available on this platform.])])
],
[# none specified by user; make a guess based on os
AS_CASE([$host],
[*-*-darwin*],
[# In Lion, sched_yield worked but none of the other options had any effect
# In Mojave x86_64, sched_yield may yield to threads in thread_wait_barrier which is slow to yield back,
# usleep(0) seems work well.
AS_IF([test "x$ac_cv_func_usleep" = "xyes"], [enable_yield=usleep],
[enable_yield=nothing])],
[*-*-linux*],
[# sched_yield() has been broken in linux since 2.6.23, and no good alternative exists.
enable_yield=nothing],
[# default: just use sched_yield() or yield()
AS_IF([test "x$ac_cv_func_sched_yield" = "xyes"], [enable_yield=sched_yield],
[test "x$ac_cv_func_yield" = "xyes"], [enable_yield=yield],
[enable_yield=nothing])])
]
)
# set the appropriate macro
AS_CASE([$enable_yield],
[sched_yield],
[AC_DEFINE(USE_SCHED_YIELD_FOR_YIELD,1,[Define to use sched_yield to yield processor])],
[yield],
[AC_DEFINE(USE_YIELD_FOR_YIELD,1,[Define to use yield to yield processor])],
[select],
[AC_DEFINE(USE_SELECT_FOR_YIELD,1,[Define to use select to yield processor])],
[usleep],
[AC_DEFINE(USE_USLEEP_FOR_YIELD,1,[Define to use usleep to yield processor])],
[sleep],
[AC_DEFINE(USE_SLEEP_FOR_YIELD,1,[Define to use sleep to yield processor])],
[nothing|no|none],
[AC_DEFINE(USE_NOTHING_FOR_YIELD,1,[Define to use nothing to yield processor])],
[AC_MSG_ERROR([Invalid value $enable_yield for enable_yield.])]
)
#######################################################################
## END OF PROCESSOR YIELD CODE
#######################################################################
#######################################################################
## START OF THREADS CODE
#######################################################################
PAC_ARG_THREAD_PACKAGE
PAC_ARG_POSIX_MUTEX
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_INVALID
case $with_thread_package in
yes|posix|pthreads)
AC_CHECK_HEADERS(pthread.h)
# If pthreads library is found, just include it on the link line. We don't try
# to test if the C compiler needs it or not, since the C++ or Fortran
# compilers might need it even if the C compiler doesn't
# (nvcc with gfortran, for example).
#
# OSF1 has __pthread_create but not pthread_create (because of
# inconsistencies in the pthread spec). Thus, we look for pthread_key_create
AC_CHECK_LIB([pthread],[pthread_key_create],have_pthreads=yes)
if test "$have_pthreads" = "yes" ; then
PAC_PREPEND_FLAG([-lpthread],[LIBS])
fi
AC_CHECK_FUNCS(pthread_yield)
# this check should come after the AC_CHECK_LIB for -lpthread
AC_CHECK_FUNC([pthread_key_create],[],[AC_MSG_ERROR([unable to find pthreads library])])
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_POSIX
;;
uti)
PAC_CHECK_HEADER_LIB_FATAL(uti,uti.h,uti,uti_attr_init)
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_UTI
;;
solaris)
AC_CHECK_HEADERS(thread.h)
AC_CHECK_FUNCS(thr_yield)
AC_SEARCH_LIBS(thr_create,thread,found=yes,found=no)
if test "$found" != "yes" ; then
AC_MSG_ERROR([unable to find Solaris threads library])
fi
# FIXME: need to add -mt if using solaris compilers
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_SOLARIS
;;
win|windows)
with_thread_package=win
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_WIN
AC_MSG_ERROR([The 'win' thread package is not supported via autoconf builds at this time.])
;;
abt|argobots)
with_thread_package=argobots
PAC_CHECK_HEADER_LIB_FATAL([argobots], [abt.h], [abt], [ABT_key_create])
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_ARGOBOTS
;;
no|none)
with_thread_package=none
THREAD_PACKAGE_NAME=MPL_THREAD_PACKAGE_NONE
;;
*)
AC_MSG_ERROR([The specified thread package, $with_thread_package, is not supported.])
;;
esac
case $with_posix_mutex in
ticketlock)
POSIX_MUTEX_NAME=MPL_POSIX_MUTEX_TICKETLOCK
;;
*)
POSIX_MUTEX_NAME=MPL_POSIX_MUTEX_NATIVE
;;
esac
AC_DEFINE_UNQUOTED([THREAD_PACKAGE_NAME],[$THREAD_PACKAGE_NAME],[set to the name of the thread package])
AC_DEFINE_UNQUOTED([POSIX_MUTEX_NAME],[$POSIX_MUTEX_NAME],[set to the choice of the posix mutex])
# check for compiler-support for thread-local storage (MPL_TLS)
PAC_CC_CHECK_TLS
#######################################################################
## END OF THREADS CODE
#######################################################################
#######################################################################
## START OF PROCESS MUTEX CODE
#######################################################################
AC_ARG_WITH([proc-mutex-package],
[ --with-proc-mutex-package=package Interprocess mutex package to use. Supported packages include:
posix or pthreads - POSIX threads (default, if required)
none - no interprocess mutex support
],,with_proc_mutex_package=posix)
if test "${with_proc_mutex_package}" = "no" ; then
with_proc_mutex_package=none
fi
if test "${with_proc_mutex_package}" = "yes" ; then
with_proc_mutex_package=posix
fi
PROC_MUTEX_PACKAGE_NAME=MPL_PROC_MUTEX_PACKAGE_INVALID
case $with_proc_mutex_package in
posix|pthreads)
if test "${with_proc_mutex_package}" = "pthreads" ; then
with_proc_mutex_package=posix
fi
# Do not prepend -lpthread again if already checked by thread package
if test "${with_thread_package}" != "posix" ; then
AC_CHECK_HEADERS(pthread.h)
# If pthreads library is found, just include it on the link line. We don't try
# to test if the C compiler needs it or not, since the C++ or Fortran
# compilers might need it even if the C compiler doesn't
# (nvcc with gfortran, for example).
AC_CHECK_LIB([pthread],[pthread_mutex_init],have_pthreads=yes)
if test "$have_pthreads" = "yes" ; then
PAC_PREPEND_FLAG([-lpthread],[LIBS])
fi
fi
# this check should come after the AC_CHECK_LIB for -lpthread
AC_CHECK_FUNC([pthread_mutex_init],[],[AC_MSG_ERROR([unable to find pthreads library])])
# pthread_mutexattr_setpshared is first released in Issue 5
AC_CHECK_FUNCS(pthread_mutexattr_setpshared)
AC_MSG_NOTICE([POSIX will be used for interprocess mutex package.])
PROC_MUTEX_PACKAGE_NAME=MPL_PROC_MUTEX_PACKAGE_POSIX
;;
no|none)
with_proc_mutex_package=none
PROC_MUTEX_PACKAGE_NAME=MPL_PROC_MUTEX_PACKAGE_NONE
;;
*)
AC_MSG_ERROR([The specified interprocess mutex package, $with_proc_mutex_package, is not supported.])
;;
esac
# Define and export the selected interprocess mutex package so that other packages
# know what's used in MPL
AC_DEFINE_UNQUOTED([PROC_MUTEX_PACKAGE_NAME],[$PROC_MUTEX_PACKAGE_NAME],[set to the name of the interprocess mutex package])
#######################################################################
## END OF PROCESS MUTEX CODE
#######################################################################
#######################################################################
## START OF PTHREAD MUTEX COMMON CHECK
#######################################################################
if test "${with_thread_package}" = "pthreads" -o "${with_proc_mutex_package}" = "pthreads"; then
# Check for PTHREAD_MUTEX_ERRORCHECK_NP and PTHREAD_MUTEX_ERRORCHECK
AC_CACHE_CHECK([whether pthread.h defines PTHREAD_MUTEX_ERRORCHECK_NP],
pac_cv_has_pthread_mutex_errorcheck_np,[
AC_TRY_COMPILE([#include <pthread.h>],
[int a=PTHREAD_MUTEX_ERRORCHECK_NP;],
pac_cv_has_pthread_mutex_errorcheck_np=yes,
pac_cv_has_pthread_mutex_errorcheck_np=no)])
AC_CACHE_CHECK([whether pthread.h defines PTHREAD_MUTEX_ERRORCHECK],
pac_cv_has_pthread_mutex_errorcheck,[
AC_TRY_COMPILE([#include <pthread.h>],
[int a=PTHREAD_MUTEX_ERRORCHECK;],
pac_cv_has_pthread_mutex_errorcheck=yes,
pac_cv_has_pthread_mutex_errorcheck=no)])
if test "$pac_cv_has_pthread_mutex_errorcheck" = yes ; then
AC_DEFINE(PTHREAD_MUTEX_ERRORCHECK_VALUE,PTHREAD_MUTEX_ERRORCHECK,
[Define to an expression that will result in an error checking mutex type.])
elif test "$pac_cv_has_pthread_mutex_errorcheck_np" = yes ; then
AC_DEFINE(PTHREAD_MUTEX_ERRORCHECK_VALUE,PTHREAD_MUTEX_ERRORCHECK_NP,
[Define to an expression that will result in an error checking mutex type.])
fi
PAC_FUNC_NEEDS_DECL([#include <pthread.h>],pthread_mutexattr_settype)
fi
#######################################################################
## END OF PTHREAD MUTEX COMMON CHECK
#######################################################################
#######################################################################
## START OF ATOMIC CODE
#######################################################################
PAC_ARG_ATOMIC_PRIMITIVES
AC_DEFUN([MPL_ATOMIC_TEST_PROGRAM], [AC_LANG_SOURCE([[
#include "$1"
int main()
{
struct MPL_atomic_int_t a, b;
int c;
MPL_atomic_relaxed_store_int(&a, 0);
MPL_atomic_relaxed_store_int(&b, 1);
c = MPL_atomic_relaxed_load_int(&a);
MPL_atomic_release_store_int(&a, 0);
MPL_atomic_release_store_int(&b, 1);
c = MPL_atomic_acquire_load_int(&a);
MPL_atomic_fetch_add_int(&a, 10);
MPL_atomic_fetch_sub_int(&a, 10);
c = MPL_atomic_cas_int(&a, 10, 11);
c = MPL_atomic_swap_int(&a, 10);
MPL_atomic_write_barrier();
MPL_atomic_read_barrier();
MPL_atomic_read_write_barrier();
return c;
}
]])]
)
dnl MPL_TRY_ATOMIC_HEADER([header file from src/ dir],
dnl [HAVE_ macro suffix],[feature description])
dnl Does an AC_LINK_IFELSE() to see if the header file works.
AC_DEFUN([MPL_TRY_ATOMIC_HEADER],[
checked_specified_primitive=yes
AC_MSG_CHECKING([for support for $3])
AC_LINK_IFELSE([MPL_ATOMIC_TEST_PROGRAM([$1])],
[AC_DEFINE([HAVE_$2], [1], [Define to 1 if we have support for $3])]
[AC_MSG_RESULT([yes])]
[mpl_atomic_primitives_set=true]
,
[AC_MSG_RESULT([no])]
)
])
AC_CHECK_SIZEOF([void *])
PAC_PUSH_FLAG([CFLAGS])
CFLAGS="$CFLAGS -I${srcdir}/include"
# Add -Werror to favor the option that does not result in warnings.
# Do not add the flag if the compiler doesn't accept -Werror
PAC_C_CHECK_COMPILER_OPTION([-Werror],[CFLAGS="$CFLAGS -Werror"],)
mpl_atomic_primitives_set=false
if test "$with_mpl_atomic_primitives" = "auto" \
-o "$with_mpl_atomic_primitives" = "gcc_sync"; then
MPL_TRY_ATOMIC_HEADER([mpl_atomic_gcc_sync.h], [GCC_INTRINSIC_SYNC],
[gcc __sync intrinsics])
fi
if test "$with_mpl_atomic_primitives" = "auto" \
-o "$with_mpl_atomic_primitives" = "gcc_atomic"; then
MPL_TRY_ATOMIC_HEADER([mpl_atomic_gcc_atomic.h], [GCC_INTRINSIC_ATOMIC],
[gcc __atomic intrinsics])
fi
if test "$with_mpl_atomic_primitives" = "auto" \
-o "$with_mpl_atomic_primitives" = "c11"; then
MPL_TRY_ATOMIC_HEADER([mpl_atomic_c11.h], [C11_ATOMICS],
[C11 atomic intrinsics])
fi
if test "$with_mpl_atomic_primitives" = "auto" \
-o "$with_mpl_atomic_primitives" = "windows"; then
MPL_TRY_ATOMIC_HEADER([mpl_atomic_nt_intrinsics.h], [NT_INTRINSICS],
[Windows NT atomic intrinsics])
fi
PAC_POP_FLAG([CFLAGS])
if test "$mpl_atomic_primitives_set" = "true" ; then
: # got native atomic support already
elif test "$with_mpl_atomic_primitives" = "auto" \
-o "$with_mpl_atomic_primitives" = "lock" ; then
AC_DEFINE(USE_LOCK_BASED_PRIMITIVES, 1,
[Define to 1 if mutex-based synchronization is used])
mpl_atomic_primitives_set=true
elif test "$with_mpl_atomic_primitives" = "no" \
-o "$with_mpl_atomic_primitives" = "none" ; then
AC_DEFINE(USE_NO_ATOMIC_PRIMITIVES, 1,
[Define to 1 if no atomic primitives are used])
mpl_atomic_primitives_set=true
fi
if test "$mpl_atomic_primitives_set" = "false"; then
AC_MSG_ERROR([cannot support atomic primitives (argument: \
`--with-mpl-atomic-primitives=$with_mpl_atomic_primitives`)])
fi
#######################################################################
## END OF ATOMIC CODE
#######################################################################
#######################################################################
## START OF DBG CODE
#######################################################################
# mkstemp() is a better replacement for mktemp()
AC_HAVE_FUNCS(mkstemp)
if test "$ac_cv_func_mkstemp" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <stdlib.h>],mkstemp)
fi
# fdopen() converts from an fd to a FILE*
AC_HAVE_FUNCS(fdopen)
if test "$ac_cv_func_fdopen" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <stdio.h>],fdopen)
fi
AC_CHECK_FUNCS(getpid)
#######################################################################
## END OF DBG CODE
#######################################################################
#######################################################################
## START OF SHM CODE
#######################################################################
dnl Check for shm
PAC_ARG_SHARED_MEMORY
#######################################################################
## END OF SHM CODE
#######################################################################
## Enable creation of libtool-style versioning or no versioning
AC_ARG_ENABLE(versioning,
[AC_HELP_STRING([--enable-versioning],[Enable library versioning])],,
[enable_versioning=yes])
if test "$enable_versioning" = "yes" ; then
libmpl_so_versionflags="-version-info \$(libmpl_so_version)"
else
libmpl_so_versionflags="-avoid-version"
fi
export libmpl_so_versionflags
AC_SUBST(libmpl_so_versionflags)
#######################################################################
#######################################################################
## START OF GPU CODE
#######################################################################
have_gpu="no"
# Check CUDA availability
PAC_SET_HEADER_LIB_PATH([cuda])
PAC_CHECK_HEADER_LIB([cuda_runtime_api.h],[cudart],[cudaStreamSynchronize],[have_cudart=yes],[have_cudart=no])
PAC_CHECK_HEADER_LIB([cuda.h],[cuda],[cuMemGetAddressRange],[have_cuda=yes],[have_cuda=no])
if test "X${have_cudart}" = "Xyes" -a \
"X${have_cuda}" = "Xyes" ; then
AC_DEFINE([HAVE_CUDA],[1],[Define if CUDA is available])
have_gpu="yes"
fi
AM_CONDITIONAL([MPL_HAVE_CUDA],[test "X${have_cudart}" = "Xyes" -a "X${have_cuda}" = "Xyes"])
if test "$have_gpu" = "no" ; then
# Check Level Zero availability when no other GPU library is available
PAC_SET_HEADER_LIB_PATH([ze])
PAC_CHECK_HEADER_LIB([level_zero/ze_api.h],[ze_loader],[zeInit],[have_ze=yes],[have_ze=no])
if test "X${have_ze}" = "Xyes" ; then
AC_DEFINE([HAVE_ZE],[1],[Define if ZE is available])
have_gpu="yes"
fi
fi
AM_CONDITIONAL([MPL_HAVE_ZE],[test "X${have_ze}" = "Xyes"])
#######################################################################
## END OF GPU CODE
#######################################################################
# Check for strdup
AC_CHECK_FUNCS(strdup)
if test "$ac_cv_func_strdup" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <string.h>],strdup)
fi
# Check for snprintf
AC_CHECK_FUNCS(snprintf)
if test "$ac_cv_func_snprintf" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <stdio.h>],snprintf)
fi
# Check for putenv
AC_CHECK_FUNCS(putenv)
if test "$ac_cv_func_putenv" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <stdlib.h>],putenv)
fi
# Check for strerror
AC_CHECK_FUNCS(strerror)
if test "$ac_cv_func_strerror" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <string.h>],strerror)
fi
# Check for usleep
AC_CHECK_FUNCS(usleep)
if test "$ac_cv_func_usleep" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <unistd.h>],usleep)
fi
# Check if we can implement MPL_aligned_alloc
AC_CHECK_FUNCS(posix_memalign)
AC_CHECK_FUNCS(aligned_alloc)
if test "$ac_cv_func_aligned_alloc" = "yes" ; then
PAC_FUNC_NEEDS_DECL([#include <stdlib.h>],aligned_alloc)
fi
if test "$ac_cv_func_posix_memalign" = "yes" -o "$ac_cv_func_aligned_alloc" = "yes"; then
AC_DEFINE([DEFINE_ALIGNED_ALLOC],[1],[Define to 1 if MPL enables MPL_aligned_alloc.])
fi
# Define some configurable constants
AC_ARG_WITH([cacheline],
[--with-cacheline=<N>
Define cacheline size (default is 64)],
[],
[with_cacheline=64])
if test $with_cacheline -le 0 ; then
AC_MSG_ERROR(Cache line size must be greater than 0)
fi
AC_DEFINE_UNQUOTED([CACHELINE_SIZE],[$with_cacheline], [Define cache-line size.])
# Check for execinfo backtrace support
AX_EXECINFO
AX_LIB_SOCKET_NSL
AC_CHECK_HEADERS(ifaddrs.h arpa/inet.h)
AC_CHECK_FUNCS(inet_ntop getifaddrs)
dnl Check for ATTRIBUTE
PAC_C_GNU_ATTRIBUTE
AX_GCC_VAR_ATTRIBUTE(aligned)
AX_GCC_VAR_ATTRIBUTE(used)
dnl Check for fallthrough attribute
PAC_PUSH_ALL_FLAGS
dnl This check requires removing -Wall and -Wextra first or it will fail. Just
dnl clear them all.
CFLAGS=""
AX_GCC_FUNC_ATTRIBUTE(fallthrough)
PAC_POP_ALL_FLAGS
dnl Final output
AC_CONFIG_FILES([Makefile localdefs include/mpl_timer.h])
AC_OUTPUT
|