Merge branch 'master' of https://github.com/bvanassche/fio
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this is easier than autoconf and enemies.
5 #
6
7 # set temporary file name
8 if test ! -z "$TMPDIR" ; then
9     TMPDIR1="${TMPDIR}"
10 elif test ! -z "$TEMPDIR" ; then
11     TMPDIR1="${TEMPDIR}"
12 else
13     TMPDIR1="/tmp"
14 fi
15
16 TMPC="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.c"
17 TMPC2="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}-2.c"
18 TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
19 TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
20
21 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
22 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
23 trap "rm -f $TMPC $TMPC2 $TMPO $TMPE" EXIT INT QUIT TERM
24
25 rm -rf config.log
26
27 config_host_mak="config-host.mak"
28 config_host_h="config-host.h"
29
30 rm -rf $config_host_mak
31 rm -rf $config_host_h
32
33 fatal() {
34   echo $@
35   echo "Configure failed, check config.log and/or the above output"
36   rm -rf $config_host_mak
37   rm -rf $config_host_h
38   exit 1
39 }
40
41 # Print result for each configuration test
42 print_config() {
43   printf "%-30s%s\n" "$1" "$2"
44 }
45
46 # Default CFLAGS
47 CFLAGS="-D_GNU_SOURCE -include config-host.h $CFLAGS"
48 CONFIGURE_CFLAGS="-Werror-implicit-function-declaration"
49 BUILD_CFLAGS=""
50
51 # Print a helpful header at the top of config.log
52 echo "# FIO configure log $(date)" >> config.log
53 printf "# Configured with:" >> config.log
54 printf " '%s'" "$0" "$@" >> config.log
55 echo >> config.log
56 echo "#" >> config.log
57
58 # Print configure header at the top of $config_host_h
59 echo "/*" > $config_host_h
60 echo " * Automatically generated by configure - do not modify" >> $config_host_h
61 printf " * Configured with:" >> $config_host_h
62 printf " * '%s'" "$0" "$@" >> $config_host_h
63 echo "" >> $config_host_h
64 echo " */" >> $config_host_h
65
66 do_cc() {
67     # Run the compiler, capturing its output to the log.
68     echo $cc "$@" >> config.log
69     $cc "$@" >> config.log 2>&1 || return $?
70     # Test passed. If this is an --enable-werror build, rerun
71     # the test with -Werror and bail out if it fails. This
72     # makes warning-generating-errors in configure test code
73     # obvious to developers.
74     if test "$werror" != "yes"; then
75         return 0
76     fi
77     # Don't bother rerunning the compile if we were already using -Werror
78     case "$*" in
79         *-Werror*)
80            return 0
81         ;;
82     esac
83     echo $cc -Werror "$@" >> config.log
84     $cc -Werror "$@" >> config.log 2>&1 && return $?
85     echo "ERROR: configure test passed without -Werror but failed with -Werror."
86     echo "This is probably a bug in the configure script. The failing command"
87     echo "will be at the bottom of config.log."
88     fatal "You can run configure with --disable-werror to bypass this check."
89 }
90
91 compile_object() {
92   do_cc $CFLAGS $CONFIGURE_CFLAGS -c -o $TMPO $TMPC
93 }
94
95 compile_prog() {
96   local_cflags="$1"
97   local_ldflags="$2 $LIBS"
98   echo "Compiling test case $3" >> config.log
99   do_cc $CFLAGS $CONFIGURE_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
100 }
101
102 feature_not_found() {
103   feature=$1
104   packages=$2
105
106   echo "ERROR"
107   echo "ERROR: User requested feature $feature"
108   if test ! -z "$packages" ; then
109     echo "ERROR: That feature needs $packages installed"
110   fi
111   echo "ERROR: configure was not able to find it"
112   fatal "ERROR"
113 }
114
115 has() {
116   type "$1" >/dev/null 2>&1
117 }
118
119 check_define() {
120   cat > $TMPC <<EOF
121 #if !defined($1)
122 #error $1 not defined
123 #endif
124 int main(void)
125 {
126   return 0;
127 }
128 EOF
129   compile_object
130 }
131
132 output_sym() {
133   echo "$1=y" >> $config_host_mak
134   echo "#define $1" >> $config_host_h
135 }
136
137 check_min_lib_version() {
138   _feature=$3
139
140   if "${cross_prefix}"pkg-config --atleast-version="$2" "$1" > /dev/null 2>&1; then
141     return 0
142   fi
143   : "${_feature:=${1}}"
144   if "${cross_prefix}"pkg-config --version > /dev/null 2>&1; then
145     if test "$(eval echo \"\$$_feature\")" = "yes" ; then
146       feature_not_found "$_feature" "$1 >= $2"
147     fi
148   else
149     print_config "$1" "missing pkg-config, can't check $_feature version"
150   fi
151   return 1
152 }
153
154 targetos=""
155 cpu=""
156
157 # default options
158 show_help="no"
159 exit_val=0
160 gfio_check="no"
161 libhdfs="no"
162 pmemblk="no"
163 devdax="no"
164 pmem="no"
165 cuda="no"
166 libcufile="no"
167 disable_lex=""
168 disable_pmem="no"
169 disable_native="no"
170 march_set="no"
171 libiscsi="no"
172 libnbd="no"
173 libnfs="no"
174 xnvme=""
175 libzbc=""
176 dfs=""
177 dynamic_engines="no"
178 prefix=/usr/local
179
180 # parse options
181 for opt do
182   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
183   case "$opt" in
184   --prefix=*) prefix="$optarg"
185   ;;
186   --cpu=*) cpu="$optarg"
187   ;;
188   #  esx is cross compiled and cannot be detect through simple uname calls
189   --esx)
190   esx="yes"
191   ;;
192   --cc=*) CC="$optarg"
193   ;;
194   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
195   ;;
196   --build-32bit-win) build_32bit_win="yes"
197   ;;
198   --target-win-ver=*) target_win_ver="$optarg"
199   ;;
200   --enable-pdb) pdb="yes"
201   ;;
202   --build-static) build_static="yes"
203   ;;
204   --enable-gfio) gfio_check="yes"
205   ;;
206   --disable-numa) disable_numa="yes"
207   ;;
208   --disable-rdma) disable_rdma="yes"
209   ;;
210   --disable-rados) disable_rados="yes"
211   ;;
212   --disable-rbd) disable_rbd="yes"
213   ;;
214   --disable-http) disable_http="yes"
215   ;;
216   --disable-gfapi) disable_gfapi="yes"
217   ;;
218   --enable-libhdfs) libhdfs="yes"
219   ;;
220   --disable-lex) disable_lex="yes"
221   ;;
222   --enable-lex) disable_lex="no"
223   ;;
224   --disable-shm) no_shm="yes"
225   ;;
226   --disable-optimizations) disable_opt="yes"
227   ;;
228   --disable-pmem) disable_pmem="yes"
229   ;;
230   --enable-cuda) cuda="yes"
231   ;;
232   --enable-libcufile) libcufile="yes"
233   ;;
234   --disable-native) disable_native="yes"
235   ;;
236   --with-ime=*) ime_path="$optarg"
237   ;;
238   --enable-libiscsi) libiscsi="yes"
239   ;;
240   --enable-libnbd) libnbd="yes"
241   ;;
242   --disable-libzbc) libzbc="no"
243   ;;
244   --disable-xnvme) xnvme="no"
245   ;;
246   --disable-tcmalloc) disable_tcmalloc="yes"
247   ;;
248   --disable-nfs) disable_nfs="yes"
249   ;;
250   --dynamic-libengines) dynamic_engines="yes"
251   ;;
252   --disable-dfs) dfs="no"
253   ;;
254   --enable-asan) asan="yes"
255   ;;
256   --help)
257     show_help="yes"
258     ;;
259   *)
260   echo "Bad option $opt"
261   show_help="yes"
262   exit_val=1
263   esac
264 done
265
266 if test "$show_help" = "yes" ; then
267   echo "--prefix=               Use this directory as installation prefix"
268   echo "--cpu=                  Specify target CPU if auto-detect fails"
269   echo "--cc=                   Specify compiler to use"
270   echo "--extra-cflags=         Specify extra CFLAGS to pass to compiler"
271   echo "--build-32bit-win       Enable 32-bit build on Windows"
272   echo "--target-win-ver=       Minimum version of Windows to target (only accepts 7)"
273   echo "--enable-pdb            Enable Windows PDB symbols generation (needs clang/lld)"
274   echo "--build-static          Build a static fio"
275   echo "--esx                   Configure build options for esx"
276   echo "--enable-gfio           Enable building of gtk gfio"
277   echo "--disable-numa          Disable libnuma even if found"
278   echo "--disable-rdma          Disable RDMA support even if found"
279   echo "--disable-rados         Disable Rados support even if found"
280   echo "--disable-rbd           Disable Rados Block Device even if found"
281   echo "--disable-http          Disable HTTP support even if found"
282   echo "--disable-nfs           Disable userspace NFS support even if found"
283   echo "--disable-gfapi         Disable gfapi"
284   echo "--enable-libhdfs        Enable hdfs support"
285   echo "--enable-libnfs         Enable nfs support"
286   echo "--disable-lex           Disable use of lex/yacc for math"
287   echo "--disable-pmem          Disable pmem based engines even if found"
288   echo "--enable-lex            Enable use of lex/yacc for math"
289   echo "--disable-shm           Disable SHM support"
290   echo "--disable-optimizations Don't enable compiler optimizations"
291   echo "--enable-cuda           Enable GPUDirect RDMA support"
292   echo "--enable-libcufile      Enable GPUDirect Storage cuFile support"
293   echo "--disable-native        Don't build for native host"
294   echo "--with-ime=             Install path for DDN's Infinite Memory Engine"
295   echo "--enable-libiscsi       Enable iscsi support"
296   echo "--enable-libnbd         Enable libnbd (NBD engine) support"
297   echo "--disable-xnvme         Disable xnvme support even if found"
298   echo "--disable-libzbc        Disable libzbc even if found"
299   echo "--disable-tcmalloc      Disable tcmalloc support"
300   echo "--dynamic-libengines    Lib-based ioengines as dynamic libraries"
301   echo "--disable-dfs           Disable DAOS File System support even if found"
302   echo "--enable-asan           Enable address sanitizer"
303   exit $exit_val
304 fi
305
306 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
307 # Preferred compiler (can be overriden later after we know the platform):
308 #  ${CC} (if set)
309 #  ${cross_prefix}gcc (if cross-prefix specified)
310 #  gcc if available
311 #  clang if available
312 if test -z "${CC}${cross_prefix}"; then
313   if has gcc; then
314     cc=gcc
315   elif has clang; then
316     cc=clang
317   fi
318 else
319   cc="${CC-${cross_prefix}gcc}"
320 fi
321
322 if check_define __ANDROID__ ; then
323   targetos="Android"
324 elif check_define __linux__ ; then
325   targetos="Linux"
326 elif check_define __OpenBSD__ ; then
327   targetos='OpenBSD'
328 elif check_define __NetBSD__ ; then
329   targetos='NetBSD'
330 elif check_define __sun__ ; then
331   targetos='SunOS'
332   CFLAGS="$CFLAGS -D_REENTRANT"
333 elif check_define _WIN32 ; then
334   targetos='CYGWIN'
335 else
336   targetos=`uname -s`
337 fi
338
339 echo "# Automatically generated by configure - do not modify" > $config_host_mak
340 printf "# Configured with:" >> $config_host_mak
341 printf " '%s'" "$0" "$@" >> $config_host_mak
342 echo >> $config_host_mak
343 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
344
345 if test "$no_shm" = "yes" ; then
346   output_sym "CONFIG_NO_SHM"
347 fi
348
349 if test "$disable_opt" = "yes" ; then
350   output_sym "CONFIG_FIO_NO_OPT"
351 fi
352
353 # Some host OSes need non-standard checks for which CPU to use.
354 # Note that these checks are broken for cross-compilation: if you're
355 # cross-compiling to one of these OSes then you'll need to specify
356 # the correct CPU with the --cpu option.
357 case $targetos in
358 AIX|OpenBSD|NetBSD)
359   # Unless explicitly enabled, turn off lex.
360   # OpenBSD will hit syntax error when enabled.
361   if test -z "$disable_lex" ; then
362     disable_lex="yes"
363   else
364     force_no_lex_o="yes"
365   fi
366   ;;
367 FreeBSD)
368   CFLAGS="$CFLAGS -I/usr/local/include"
369   LDFLAGS="$LDFLAGS -L/usr/local/lib"
370   ;;
371 Darwin)
372   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
373   # we can run 64-bit userspace code.
374   # If the user didn't specify a CPU explicitly and the kernel says this is
375   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
376   # detection code.
377   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
378     cpu="x86_64"
379   fi
380   # Avoid configure feature detection of features provided by weak symbols
381 cat > $TMPC <<EOF
382 int main(void)
383 {
384   return 0;
385 }
386 EOF
387   if compile_prog "" "-Werror=partial-availability" "error on weak symbols"; then
388     CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Werror=partial-availability"
389   fi
390   ;;
391 SunOS)
392   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
393   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
394     cpu="x86_64"
395   fi
396   LIBS="-lnsl -lsocket"
397   ;;
398 CYGWIN*)
399   # We still force some options, so keep this message here.
400   echo "Forcing some known good options on Windows"
401   if test -z "${CC}${cross_prefix}"; then
402     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
403       cc="i686-w64-mingw32-gcc"
404     else
405       cc="x86_64-w64-mingw32-gcc"
406     fi
407   fi
408
409   target_win_ver=$(echo "$target_win_ver" | tr '[:lower:]' '[:upper:]')
410   if test -z "$target_win_ver"; then
411     # Default Windows API target
412     target_win_ver="7"
413   fi
414   if test "$target_win_ver" = "7"; then
415     output_sym "CONFIG_WINDOWS_7"
416     CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0601"
417   else
418     fatal "Unknown target Windows version"
419   fi
420
421   # We need this to be output_sym'd here because this is Windows specific.
422   # The regular configure path never sets this config.
423   output_sym "CONFIG_WINDOWSAIO"
424   # We now take the regular configuration path without having exit 0 here.
425   # Flags below are still necessary mostly for MinGW.
426   build_static="yes"
427   rusage_thread="yes"
428   fdatasync="yes"
429   clock_gettime="yes" # clock_monotonic probe has dependency on this
430   clock_monotonic="yes"
431   sched_idle="yes"
432   pthread_condattr_setclock="no"
433   pthread_affinity="no"
434   ;;
435 esac
436
437 # Now we know the target platform we can have another guess at the preferred
438 # compiler when it wasn't explictly set
439 if test -z "${CC}${cross_prefix}"; then
440   if test "$targetos" = "FreeBSD" || test "$targetos" = "Darwin"; then
441     if has clang; then
442       cc=clang
443     fi
444   fi
445 fi
446 if test -z "$cc"; then
447     echo "configure: failed to find compiler"
448     exit 1
449 fi
450
451 if test ! -z "$cpu" ; then
452   # command line argument
453   :
454 elif check_define __i386__ ; then
455   cpu="i386"
456 elif check_define __x86_64__ ; then
457   cpu="x86_64"
458 elif check_define __sparc__ ; then
459   if check_define __arch64__ ; then
460     cpu="sparc64"
461   else
462     cpu="sparc"
463   fi
464 elif check_define _ARCH_PPC ; then
465   if check_define _ARCH_PPC64 ; then
466     cpu="ppc64"
467   else
468     cpu="ppc"
469   fi
470 elif check_define __mips__ ; then
471   cpu="mips"
472 elif check_define __ia64__ ; then
473   cpu="ia64"
474 elif check_define __s390__ ; then
475   if check_define __s390x__ ; then
476     cpu="s390x"
477   else
478     cpu="s390"
479   fi
480 elif check_define __arm__ ; then
481   cpu="arm"
482 elif check_define __aarch64__ ; then
483   cpu="aarch64"
484 elif check_define __hppa__ ; then
485   cpu="hppa"
486 else
487   cpu=`uname -m`
488 fi
489
490 # Normalise host CPU name and set ARCH.
491 case "$cpu" in
492   ia64|ppc|ppc64|s390|s390x|sparc64)
493     cpu="$cpu"
494   ;;
495   i386|i486|i586|i686|i86pc|BePC)
496     cpu="x86"
497   ;;
498   x86_64|amd64)
499     cpu="x86_64"
500   ;;
501   armv*b|armv*l|arm)
502     cpu="arm"
503   ;;
504   aarch64)
505     cpu="arm64"
506   ;;
507   hppa|parisc|parisc64)
508     cpu="hppa"
509   ;;
510   mips*)
511     cpu="mips"
512   ;;
513   sparc|sun4[cdmuv])
514     cpu="sparc"
515   ;;
516   *)
517   echo "Unknown CPU"
518   ;;
519 esac
520
521 ##########################################
522 # check cross compile
523
524 if test "$cross_compile" != "yes" ; then
525   cross_compile="no"
526 fi
527 cat > $TMPC <<EOF
528 int main(void)
529 {
530   return 0;
531 }
532 EOF
533 if compile_prog "" "" "cross"; then
534   $TMPE 2>/dev/null || cross_compile="yes"
535 else
536   fatal "compile test failed"
537 fi
538
539 ##########################################
540 # check endianness
541 if test "$bigendian" != "yes" ; then
542   bigendian="no"
543 fi
544 if test "$cross_compile" = "no" ; then
545   cat > $TMPC <<EOF
546 #include <inttypes.h>
547 int main(void)
548 {
549   volatile uint32_t i=0x01234567;
550   return (*((uint8_t*)(&i))) == 0x67;
551 }
552 EOF
553   if compile_prog "" "" "endian"; then
554     $TMPE && bigendian="yes"
555   fi
556 else
557   # If we're cross compiling, try our best to work it out and rely on the
558   # run-time check to fail if we get it wrong.
559   cat > $TMPC <<EOF
560 #include <endian.h>
561 int main(void)
562 {
563 #if __BYTE_ORDER != __BIG_ENDIAN
564 # error "Unknown endianness"
565 #endif
566 }
567 EOF
568   compile_prog "" "" "endian" && bigendian="yes"
569   check_define "__ARMEB__" && bigendian="yes"
570   check_define "__MIPSEB__" && bigendian="yes"
571 fi
572
573
574 print_config "Operating system" "$targetos"
575 print_config "CPU" "$cpu"
576 print_config "Big endian" "$bigendian"
577 if test ! -z "$target_win_ver"; then
578   print_config "Target Windows version" "$target_win_ver"
579 fi
580 print_config "Compiler" "$cc"
581 print_config "Cross compile" "$cross_compile"
582 echo
583
584 ##########################################
585 # See if we need to build a static build
586 if test "$build_static" = "yes" ; then
587   CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
588   LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
589 else
590   build_static="no"
591 fi
592 print_config "Static build" "$build_static"
593
594 ##########################################
595 # check for C11 atomics support
596 cat > $TMPC <<EOF
597 #include <stdatomic.h>
598 int main(void)
599 {
600   _Atomic unsigned v;
601   atomic_load(&v);
602   return 0;
603 }
604 EOF
605 if ! compile_prog "" "" "C11 atomics"; then
606   echo
607   echo "Your compiler doesn't support C11 atomics. gcc 4.9/clang 3.6 are the"
608   echo "minimum versions with it - perhaps your compiler is too old?"
609   fatal "C11 atomics support not found"
610 fi
611
612
613 ##########################################
614 # check for wordsize
615 wordsize="0"
616 cat > $TMPC <<EOF
617 #include <limits.h>
618 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
619 int main(void)
620 {
621   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
622   return 0;
623 }
624 EOF
625 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
626   wordsize="32"
627 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
628   wordsize="64"
629 else
630   fatal "Unknown wordsize"
631 fi
632 print_config "Wordsize" "$wordsize"
633
634 ##########################################
635 # zlib probe
636 if test "$zlib" != "yes" ; then
637   zlib="no"
638 fi
639 cat > $TMPC <<EOF
640 #include <zlib.h>
641 int main(void)
642 {
643   z_stream stream;
644   if (inflateInit(&stream) != Z_OK)
645     return 1;
646   return 0;
647 }
648 EOF
649 if compile_prog "" "-lz" "zlib" ; then
650   zlib=yes
651   LIBS="-lz $LIBS"
652 fi
653 print_config "zlib" "$zlib"
654
655 ##########################################
656 # fcntl(F_FULLFSYNC) support
657 if test "$fcntl_sync" != "yes" ; then
658   fcntl_sync="no"
659 fi
660 cat > $TMPC << EOF
661 #include <unistd.h>
662 #include <fcntl.h>
663
664 int main(int argc, char **argv)
665 {
666   return fcntl(0, F_FULLFSYNC);
667 }
668 EOF
669 if compile_prog "" "" "fcntl(F_FULLFSYNC)" ; then
670     fcntl_sync="yes"
671 fi
672 print_config "fcntl(F_FULLFSYNC)" "$fcntl_sync"
673
674 ##########################################
675 # linux-aio probe
676 if test "$libaio" != "yes" ; then
677   libaio="no"
678 fi
679 if test "$esx" != "yes" ; then
680   cat > $TMPC <<EOF
681 #include <libaio.h>
682 #include <stddef.h>
683 int main(void)
684 {
685   io_setup(0, NULL);
686   return 0;
687 }
688 EOF
689   if compile_prog "" "-laio" "libaio" ; then
690     libaio=yes
691   else
692     if test "$libaio" = "yes" ; then
693       feature_not_found "linux AIO" "libaio-dev or libaio-devel"
694     fi
695     libaio=no
696   fi
697
698   cat > $TMPC <<EOF
699 #include <libaio.h>
700 #include <stddef.h>
701 int main(void)
702 {
703   io_prep_preadv2(NULL, 0, NULL, 0, 0, 0);
704   io_prep_pwritev2(NULL, 0, NULL, 0, 0, 0);
705   return 0;
706 }
707 EOF
708   if compile_prog "" "" "libaio rw flags" ; then
709     libaio_rw_flags=yes
710   else
711     libaio_rw_flags=no
712   fi
713 fi
714 print_config "Linux AIO support" "$libaio"
715 print_config "Linux AIO support rw flags" "$libaio_rw_flags"
716
717 ##########################################
718 # posix aio probe
719 if test "$posix_aio" != "yes" ; then
720   posix_aio="no"
721 fi
722 if test "$posix_aio_lrt" != "yes" ; then
723   posix_aio_lrt="no"
724 fi
725 cat > $TMPC <<EOF
726 #include <aio.h>
727 int main(void)
728 {
729   struct aiocb cb;
730   aio_read(&cb);
731   return 0;
732 }
733 EOF
734 if compile_prog "" "" "posixaio" ; then
735   posix_aio="yes"
736 elif compile_prog "" "-lrt" "posixaio -lrt"; then
737   posix_aio="yes"
738   posix_aio_lrt="yes"
739   LIBS="-lrt $LIBS"
740 fi
741 print_config "POSIX AIO support" "$posix_aio"
742 print_config "POSIX AIO support needs -lrt" "$posix_aio_lrt"
743
744 ##########################################
745 # posix aio fsync probe
746 if test "$posix_aio_fsync" != "yes" ; then
747   posix_aio_fsync="no"
748 fi
749 if test "$posix_aio" = "yes" ; then
750   cat > $TMPC <<EOF
751 #include <fcntl.h>
752 #include <aio.h>
753 int main(void)
754 {
755   struct aiocb cb;
756   return aio_fsync(O_SYNC, &cb);
757   return 0;
758 }
759 EOF
760   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
761     posix_aio_fsync=yes
762   fi
763 fi
764 print_config "POSIX AIO fsync" "$posix_aio_fsync"
765
766 ##########################################
767 # POSIX pshared attribute probe
768 if test "$posix_pshared" != "yes" ; then
769   posix_pshared="no"
770 fi
771 cat > $TMPC <<EOF
772 #include <unistd.h>
773 int main(void)
774 {
775 #if defined(_POSIX_THREAD_PROCESS_SHARED) && ((_POSIX_THREAD_PROCESS_SHARED + 0) > 0)
776 # if defined(__CYGWIN__)
777 #  error "_POSIX_THREAD_PROCESS_SHARED is buggy on Cygwin"
778 # elif defined(__APPLE__)
779 #  include <AvailabilityMacros.h>
780 #  include <TargetConditionals.h>
781 #  if TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
782 #   error "_POSIX_THREAD_PROCESS_SHARED is buggy/unsupported prior to OSX 10.7"
783 #  endif
784 # endif
785 #else
786 # error "_POSIX_THREAD_PROCESS_SHARED is unsupported"
787 #endif
788   return 0;
789 }
790 EOF
791 if compile_prog "" "$LIBS" "posix_pshared" ; then
792   posix_pshared=yes
793 fi
794 print_config "POSIX pshared support" "$posix_pshared"
795
796 ##########################################
797 # POSIX pthread_condattr_setclock() probe
798 if test "$pthread_condattr_setclock" != "no" ; then
799   cat > $TMPC <<EOF
800 #include <pthread.h>
801 int main(void)
802 {
803   pthread_condattr_t condattr;
804   pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
805   return 0;
806 }
807 EOF
808   if compile_prog "" "$LIBS" "pthread_condattr_setclock" ; then
809     pthread_condattr_setclock=yes
810   elif compile_prog "" "$LIBS -lpthread" "pthread_condattr_setclock" ; then
811     pthread_condattr_setclock=yes
812     LIBS="$LIBS -lpthread"
813   fi
814 fi
815 print_config "pthread_condattr_setclock()" "$pthread_condattr_setclock"
816
817 ##########################################
818 # pthread_sigmask() probe
819 if test "$pthread_sigmask" != "yes" ; then
820   pthread_sigmask="no"
821 fi
822 cat > $TMPC <<EOF
823 #include <stddef.h> /* NULL */
824 #include <signal.h> /* pthread_sigmask() */
825 int main(void)
826 {
827   return pthread_sigmask(0, NULL, NULL);
828 }
829 EOF
830 if compile_prog "" "$LIBS" "pthread_sigmask" ; then
831   pthread_sigmask=yes
832 elif compile_prog "" "$LIBS -lpthread" "pthread_sigmask" ; then
833   pthread_sigmask=yes
834   LIBS="$LIBS -lpthread"
835 fi
836 print_config "pthread_sigmask()" "$pthread_sigmask"
837
838 ##########################################
839 # pthread_getaffinity_np() probe
840 if test "$pthread_getaffinity" != "yes" ; then
841   pthread_getaffinity="no"
842 fi
843 cat > $TMPC <<EOF
844 #include <stddef.h> /* NULL */
845 #include <signal.h> /* pthread_sigmask() */
846 #include <pthread.h>
847 int main(void)
848 {
849   cpu_set_t set;
850   return pthread_getaffinity_np(pthread_self(), sizeof(set), &set);
851 }
852 EOF
853 if compile_prog "" "$LIBS" "pthread_getaffinity" ; then
854   pthread_getaffinity="yes"
855 elif compile_prog "" "$LIBS -lpthread" "pthread_getaffinity" ; then
856   pthread_getaffinity="yes"
857   LIBS="$LIBS -lpthread"
858 fi
859 print_config "pthread_getaffinity_np()" "$pthread_getaffinity"
860
861 ##########################################
862 # solaris aio probe
863 if test "$solaris_aio" != "yes" ; then
864   solaris_aio="no"
865 fi
866 cat > $TMPC <<EOF
867 #include <sys/types.h>
868 #include <sys/asynch.h>
869 #include <unistd.h>
870 int main(void)
871 {
872   aio_result_t res;
873   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
874   return 0;
875 }
876 EOF
877 if compile_prog "" "-laio" "solarisaio" ; then
878   solaris_aio=yes
879   LIBS="-laio $LIBS"
880 fi
881 print_config "Solaris AIO support" "$solaris_aio"
882
883 ##########################################
884 # __sync_fetch_and_add test
885 if test "$sfaa" != "yes" ; then
886   sfaa="no"
887 fi
888 cat > $TMPC << EOF
889 #include <inttypes.h>
890 static int sfaa(uint64_t *ptr)
891 {
892   return __sync_fetch_and_add(ptr, 0);
893 }
894
895 int main(int argc, char **argv)
896 {
897   uint64_t val = 42;
898   sfaa(&val);
899   return val;
900 }
901 EOF
902 if compile_prog "" "" "__sync_fetch_and_add()" ; then
903     sfaa="yes"
904 fi
905 print_config "__sync_fetch_and_add" "$sfaa"
906
907 ##########################################
908 # __sync_synchronize() test
909 if test "$sync_sync" != "yes" ; then
910   sync_sync="no"
911 fi
912 cat > $TMPC << EOF
913 #include <inttypes.h>
914
915 int main(int argc, char **argv)
916 {
917   __sync_synchronize();
918   return 0;
919 }
920 EOF
921 if compile_prog "" "" "__sync_synchronize()" ; then
922     sync_sync="yes"
923 fi
924 print_config "__sync_synchronize" "$sync_sync"
925
926 ##########################################
927 # __sync_val_compare_and_swap() test
928 if test "$cmp_swap" != "yes" ; then
929   cmp_swap="no"
930 fi
931 cat > $TMPC << EOF
932 #include <inttypes.h>
933
934 int main(int argc, char **argv)
935 {
936   int x = 0;
937   return __sync_val_compare_and_swap(&x, 1, 2);
938 }
939 EOF
940 if compile_prog "" "" "__sync_val_compare_and_swap()" ; then
941     cmp_swap="yes"
942 fi
943 print_config "__sync_val_compare_and_swap" "$cmp_swap"
944
945 ##########################################
946 # libverbs probe
947 if test "$libverbs" != "yes" ; then
948   libverbs="no"
949 fi
950 cat > $TMPC << EOF
951 #include <infiniband/verbs.h>
952 int main(int argc, char **argv)
953 {
954   struct ibv_pd *pd = ibv_alloc_pd(NULL);
955   return pd != NULL;
956 }
957 EOF
958 if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
959     libverbs="yes"
960 fi
961 print_config "libverbs" "$libverbs"
962
963 ##########################################
964 # rdmacm probe
965 if test "$rdmacm" != "yes" ; then
966   rdmacm="no"
967 fi
968 cat > $TMPC << EOF
969 #include <stdio.h>
970 #include <rdma/rdma_cma.h>
971 int main(int argc, char **argv)
972 {
973   rdma_destroy_qp(NULL);
974   return 0;
975 }
976 EOF
977 if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
978     rdmacm="yes"
979 fi
980 print_config "rdmacm" "$rdmacm"
981
982 ##########################################
983 # librpma probe
984 # The librpma engines require librpma>=v0.11.0 with rpma_cq_get_wc().
985 if test "$librpma" != "yes" ; then
986   librpma="no"
987 fi
988 cat > $TMPC << EOF
989 #include <librpma.h>
990 int main(void)
991 {
992   void *ptr = rpma_cq_get_wc;
993   (void) ptr; /* unused */
994   return 0;
995 }
996 EOF
997 if test "$disable_rdma" != "yes" && compile_prog "" "-lrpma" "rpma"; then
998     librpma="yes"
999 fi
1000 print_config "librpma" "$librpma"
1001
1002 ##########################################
1003 # libprotobuf-c probe
1004 if test "$libprotobuf_c" != "yes" ; then
1005   libprotobuf_c="no"
1006 fi
1007 cat > $TMPC << EOF
1008 #include <stdio.h>
1009 #include <protobuf-c/protobuf-c.h>
1010 #if !defined(PROTOBUF_C_VERSION_NUMBER)
1011 # error PROTOBUF_C_VERSION_NUMBER is not defined!
1012 #endif
1013 int main(int argc, char **argv)
1014 {
1015   (void)protobuf_c_message_check(NULL);
1016   return 0;
1017 }
1018 EOF
1019 if compile_prog "" "-lprotobuf-c" "protobuf_c"; then
1020     libprotobuf_c="yes"
1021 fi
1022 print_config "libprotobuf_c" "$libprotobuf_c"
1023
1024 ##########################################
1025 # asprintf() and vasprintf() probes
1026 if test "$have_asprintf" != "yes" ; then
1027   have_asprintf="no"
1028 fi
1029 cat > $TMPC << EOF
1030 #include <stdio.h>
1031
1032 int main(int argc, char **argv)
1033 {
1034   char *buf;
1035   return asprintf(&buf, "%s", "str") == 0;
1036 }
1037 EOF
1038 if compile_prog "" "" "have_asprintf"; then
1039     have_asprintf="yes"
1040 fi
1041 print_config "asprintf()" "$have_asprintf"
1042
1043 if test "$have_vasprintf" != "yes" ; then
1044   have_vasprintf="no"
1045 fi
1046 cat > $TMPC << EOF
1047 #include <stdio.h>
1048
1049 int main(int argc, char **argv)
1050 {
1051   va_list ap;
1052   char *buf;
1053   return vasprintf(&buf, "%s", ap) == 0;
1054 }
1055 EOF
1056 if compile_prog "" "" "have_vasprintf"; then
1057     have_vasprintf="yes"
1058 fi
1059 print_config "vasprintf()" "$have_vasprintf"
1060
1061 ##########################################
1062 # Linux fallocate probe
1063 if test "$linux_fallocate" != "yes" ; then
1064   linux_fallocate="no"
1065 fi
1066 cat > $TMPC << EOF
1067 #include <stdio.h>
1068 #include <fcntl.h>
1069 #include <linux/falloc.h>
1070 int main(int argc, char **argv)
1071 {
1072   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
1073   return r;
1074 }
1075 EOF
1076 if compile_prog "" "" "linux_fallocate"; then
1077     linux_fallocate="yes"
1078 fi
1079 print_config "Linux fallocate" "$linux_fallocate"
1080
1081 ##########################################
1082 # POSIX fadvise probe
1083 if test "$posix_fadvise" != "yes" ; then
1084   posix_fadvise="no"
1085 fi
1086 cat > $TMPC << EOF
1087 #include <stdio.h>
1088 #include <fcntl.h>
1089 int main(int argc, char **argv)
1090 {
1091   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
1092   return r;
1093 }
1094 EOF
1095 if compile_prog "" "" "posix_fadvise"; then
1096     posix_fadvise="yes"
1097 fi
1098 print_config "POSIX fadvise" "$posix_fadvise"
1099
1100 ##########################################
1101 # POSIX fallocate probe
1102 if test "$posix_fallocate" != "yes" ; then
1103   posix_fallocate="no"
1104 fi
1105 cat > $TMPC << EOF
1106 #include <stdio.h>
1107 #include <fcntl.h>
1108 int main(int argc, char **argv)
1109 {
1110   int r = posix_fallocate(0, 0, 1024);
1111   return r;
1112 }
1113 EOF
1114 if compile_prog "" "" "posix_fallocate"; then
1115     posix_fallocate="yes"
1116 fi
1117 print_config "POSIX fallocate" "$posix_fallocate"
1118
1119 ##########################################
1120 # sched_set/getaffinity 2 or 3 argument test
1121 if test "$linux_2arg_affinity" != "yes" ; then
1122   linux_2arg_affinity="no"
1123 fi
1124 if test "$linux_3arg_affinity" != "yes" ; then
1125   linux_3arg_affinity="no"
1126 fi
1127 cat > $TMPC << EOF
1128 #include <sched.h>
1129 int main(int argc, char **argv)
1130 {
1131   cpu_set_t mask = { };
1132
1133   return sched_setaffinity(0, sizeof(mask), &mask);
1134 }
1135 EOF
1136 if compile_prog "" "" "sched_setaffinity(,,)"; then
1137   linux_3arg_affinity="yes"
1138 else
1139   cat > $TMPC << EOF
1140 #include <sched.h>
1141 int main(int argc, char **argv)
1142 {
1143   cpu_set_t mask = { };
1144
1145   return sched_setaffinity(0, &mask);
1146 }
1147 EOF
1148   if compile_prog "" "" "sched_setaffinity(,)"; then
1149     linux_2arg_affinity="yes"
1150   fi
1151 fi
1152 print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
1153 print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
1154
1155 ##########################################
1156 # clock_gettime probe
1157 if test "$clock_gettime" != "yes" ; then
1158   clock_gettime="no"
1159 fi
1160 cat > $TMPC << EOF
1161 #include <stdio.h>
1162 #include <time.h>
1163 int main(int argc, char **argv)
1164 {
1165   return clock_gettime(0, NULL);
1166 }
1167 EOF
1168 if compile_prog "" "" "clock_gettime"; then
1169     clock_gettime="yes"
1170 elif compile_prog "" "-lrt" "clock_gettime"; then
1171     clock_gettime="yes"
1172     LIBS="-lrt $LIBS"
1173 fi
1174 print_config "clock_gettime" "$clock_gettime"
1175
1176 ##########################################
1177 # CLOCK_MONOTONIC probe
1178 if test "$clock_monotonic" != "yes" ; then
1179   clock_monotonic="no"
1180 fi
1181 if test "$clock_gettime" = "yes" ; then
1182   cat > $TMPC << EOF
1183 #include <stdio.h>
1184 #include <time.h>
1185 int main(int argc, char **argv)
1186 {
1187   return clock_gettime(CLOCK_MONOTONIC, NULL);
1188 }
1189 EOF
1190   if compile_prog "" "$LIBS" "clock monotonic"; then
1191       clock_monotonic="yes"
1192   fi
1193 fi
1194 print_config "CLOCK_MONOTONIC" "$clock_monotonic"
1195
1196 ##########################################
1197 # clockid_t probe
1198 if test "$clockid_t" != "yes" ; then
1199   clockid_t="no"
1200 fi
1201 cat > $TMPC << EOF
1202 #include <time.h>
1203 #include <string.h>
1204 int main(int argc, char **argv)
1205 {
1206   volatile clockid_t cid;
1207   memset((void*)&cid, 0, sizeof(cid));
1208   return 0;
1209 }
1210 EOF
1211 if compile_prog "" "$LIBS" "clockid_t"; then
1212   clockid_t="yes"
1213 fi
1214 print_config "clockid_t" "$clockid_t"
1215
1216 ##########################################
1217 # gettimeofday() probe
1218 if test "$gettimeofday" != "yes" ; then
1219   gettimeofday="no"
1220 fi
1221 cat > $TMPC << EOF
1222 #include <sys/time.h>
1223 #include <stdio.h>
1224 int main(int argc, char **argv)
1225 {
1226   struct timeval tv;
1227   return gettimeofday(&tv, NULL);
1228 }
1229 EOF
1230 if compile_prog "" "" "gettimeofday"; then
1231     gettimeofday="yes"
1232 fi
1233 print_config "gettimeofday" "$gettimeofday"
1234
1235 ##########################################
1236 # fdatasync() probe
1237 if test "$fdatasync" != "yes" ; then
1238   fdatasync="no"
1239 fi
1240 cat > $TMPC << EOF
1241 #include <stdio.h>
1242 #include <unistd.h>
1243 int main(int argc, char **argv)
1244 {
1245   return fdatasync(0);
1246 }
1247 EOF
1248 if compile_prog "" "" "fdatasync"; then
1249   fdatasync="yes"
1250 fi
1251 print_config "fdatasync" "$fdatasync"
1252
1253 ##########################################
1254 # pipe() probe
1255 if test "$pipe" != "yes" ; then
1256   pipe="no"
1257 fi
1258 cat > $TMPC << EOF
1259 #include <unistd.h>
1260 int main(int argc, char **argv)
1261 {
1262   int fd[2];
1263   return pipe(fd);
1264 }
1265 EOF
1266 if compile_prog "" "" "pipe"; then
1267   pipe="yes"
1268 fi
1269 print_config "pipe()" "$pipe"
1270
1271 ##########################################
1272 # pipe2() probe
1273 if test "$pipe2" != "yes" ; then
1274   pipe2="no"
1275 fi
1276 cat > $TMPC << EOF
1277 #include <unistd.h>
1278 int main(int argc, char **argv)
1279 {
1280   int fd[2];
1281   return pipe2(fd, 0);
1282 }
1283 EOF
1284 if compile_prog "" "" "pipe2"; then
1285   pipe2="yes"
1286 fi
1287 print_config "pipe2()" "$pipe2"
1288
1289 ##########################################
1290 # pread() probe
1291 if test "$pread" != "yes" ; then
1292   pread="no"
1293 fi
1294 cat > $TMPC << EOF
1295 #include <unistd.h>
1296 int main(int argc, char **argv)
1297 {
1298   return pread(0, NULL, 0, 0);
1299 }
1300 EOF
1301 if compile_prog "" "" "pread"; then
1302   pread="yes"
1303 fi
1304 print_config "pread()" "$pread"
1305
1306 ##########################################
1307 # sync_file_range() probe
1308 if test "$sync_file_range" != "yes" ; then
1309   sync_file_range="no"
1310 fi
1311 cat > $TMPC << EOF
1312 #include <stdio.h>
1313 #include <unistd.h>
1314 #include <fcntl.h>
1315 #include <linux/fs.h>
1316 int main(int argc, char **argv)
1317 {
1318   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
1319                         SYNC_FILE_RANGE_WAIT_AFTER;
1320   return sync_file_range(0, 0, 0, flags);
1321 }
1322 EOF
1323 if compile_prog "" "" "sync_file_range"; then
1324   sync_file_range="yes"
1325 fi
1326 print_config "sync_file_range" "$sync_file_range"
1327
1328 ##########################################
1329 # ext4 move extent probe
1330 if test "$ext4_me" != "yes" ; then
1331   ext4_me="no"
1332 fi
1333 cat > $TMPC << EOF
1334 #include <fcntl.h>
1335 #include <sys/ioctl.h>
1336 int main(int argc, char **argv)
1337 {
1338   struct move_extent me;
1339   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1340 }
1341 EOF
1342 if compile_prog "" "" "ext4 move extent" ; then
1343   ext4_me="yes"
1344 elif test $targetos = "Linux" ; then
1345   # On Linux, just default to it on and let it error at runtime if we really
1346   # don't have it. None of my updated systems have it defined, but it does
1347   # work. Takes a while to bubble back.
1348   ext4_me="yes"
1349 fi
1350 print_config "EXT4 move extent" "$ext4_me"
1351
1352 ##########################################
1353 # splice probe
1354 if test "$linux_splice" != "yes" ; then
1355   linux_splice="no"
1356 fi
1357 cat > $TMPC << EOF
1358 #include <stdio.h>
1359 #include <fcntl.h>
1360 int main(int argc, char **argv)
1361 {
1362   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1363 }
1364 EOF
1365 if compile_prog "" "" "linux splice"; then
1366   linux_splice="yes"
1367 fi
1368 print_config "Linux splice(2)" "$linux_splice"
1369
1370 ##########################################
1371 # libnuma probe
1372 if test "$libnuma" != "yes" ; then
1373   libnuma="no"
1374 fi
1375 cat > $TMPC << EOF
1376 #include <numa.h>
1377 int main(int argc, char **argv)
1378 {
1379   return numa_available();
1380 }
1381 EOF
1382 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
1383   libnuma="yes"
1384   LIBS="-lnuma $LIBS"
1385 fi
1386 print_config "libnuma" "$libnuma"
1387
1388 ##########################################
1389 # libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1390 if test "$libnuma" = "yes" ; then
1391 libnuma_v2="no"
1392 cat > $TMPC << EOF
1393 #include <numa.h>
1394 int main(int argc, char **argv)
1395 {
1396   struct bitmask *mask = numa_parse_nodestring(NULL);
1397   return mask->size == 0;
1398 }
1399 EOF
1400 if compile_prog "" "" "libnuma api"; then
1401   libnuma_v2="yes"
1402 fi
1403 print_config "libnuma v2" "$libnuma_v2"
1404 fi
1405
1406 ##########################################
1407 # strsep() probe
1408 if test "$strsep" != "yes" ; then
1409   strsep="no"
1410 fi
1411 cat > $TMPC << EOF
1412 #include <string.h>
1413 int main(int argc, char **argv)
1414 {
1415   static char *string = "This is a string";
1416   strsep(&string, "needle");
1417   return 0;
1418 }
1419 EOF
1420 if compile_prog "" "" "strsep"; then
1421   strsep="yes"
1422 fi
1423 print_config "strsep" "$strsep"
1424
1425 ##########################################
1426 # strcasestr() probe
1427 if test "$strcasestr" != "yes" ; then
1428   strcasestr="no"
1429 fi
1430 cat > $TMPC << EOF
1431 #include <string.h>
1432 int main(int argc, char **argv)
1433 {
1434   return strcasestr(argv[0], argv[1]) != NULL;
1435 }
1436 EOF
1437 if compile_prog "" "" "strcasestr"; then
1438   strcasestr="yes"
1439 fi
1440 print_config "strcasestr" "$strcasestr"
1441
1442 ##########################################
1443 # strlcat() probe
1444 if test "$strlcat" != "yes" ; then
1445   strlcat="no"
1446 fi
1447 cat > $TMPC << EOF
1448 #include <string.h>
1449 int main(int argc, char **argv)
1450 {
1451   static char dst[64];
1452   static char *string = "This is a string";
1453   memset(dst, 0, sizeof(dst));
1454   strlcat(dst, string, sizeof(dst));
1455   return 0;
1456 }
1457 EOF
1458 if compile_prog "" "" "strlcat"; then
1459   strlcat="yes"
1460 fi
1461 print_config "strlcat" "$strlcat"
1462
1463 ##########################################
1464 # getopt_long_only() probe
1465 if test "$getopt_long_only" != "yes" ; then
1466   getopt_long_only="no"
1467 fi
1468 cat > $TMPC << EOF
1469 #include <unistd.h>
1470 #include <stdio.h>
1471 #include <getopt.h>
1472 int main(int argc, char **argv)
1473 {
1474   int c = getopt_long_only(argc, argv, "", NULL, NULL);
1475   return c;
1476 }
1477 EOF
1478 if compile_prog "" "" "getopt_long_only"; then
1479   getopt_long_only="yes"
1480 fi
1481 print_config "getopt_long_only()" "$getopt_long_only"
1482
1483 ##########################################
1484 # inet_aton() probe
1485 if test "$inet_aton" != "yes" ; then
1486   inet_aton="no"
1487 fi
1488 cat > $TMPC << EOF
1489 #ifdef _WIN32
1490 #include <winsock2.h>
1491 #else
1492 #include <sys/socket.h>
1493 #include <arpa/inet.h>
1494 #endif
1495 #include <stdio.h>
1496 int main(int argc, char **argv)
1497 {
1498   struct in_addr in;
1499   return inet_aton(NULL, &in);
1500 }
1501 EOF
1502 if compile_prog "" "" "inet_aton"; then
1503   inet_aton="yes"
1504 fi
1505 print_config "inet_aton" "$inet_aton"
1506
1507 ##########################################
1508 # socklen_t probe
1509 if test "$socklen_t" != "yes" ; then
1510   socklen_t="no"
1511 fi
1512 cat > $TMPC << EOF
1513 #ifdef _WIN32
1514 #include <winsock2.h>
1515 #include <ws2tcpip.h>
1516 #else
1517 #include <sys/socket.h>
1518 #endif
1519 int main(int argc, char **argv)
1520 {
1521   socklen_t len = 0;
1522   return len;
1523 }
1524 EOF
1525 if compile_prog "" "" "socklen_t"; then
1526   socklen_t="yes"
1527 fi
1528 print_config "socklen_t" "$socklen_t"
1529
1530 ##########################################
1531 # Whether or not __thread is supported for TLS
1532 if test "$tls_thread" != "yes" ; then
1533   tls_thread="no"
1534 fi
1535 cat > $TMPC << EOF
1536 #include <stdio.h>
1537 static __thread int ret;
1538 int main(int argc, char **argv)
1539 {
1540   return ret;
1541 }
1542 EOF
1543 if compile_prog "" "" "__thread"; then
1544   tls_thread="yes"
1545 fi
1546 print_config "__thread" "$tls_thread"
1547
1548 ##########################################
1549 # Check if we have required gtk/glib support for gfio
1550 if test "$gfio" != "yes" ; then
1551   gfio="no"
1552 fi
1553 if test "$gfio_check" = "yes" ; then
1554   cat > $TMPC << EOF
1555 #include <glib.h>
1556 #include <cairo.h>
1557 #include <gtk/gtk.h>
1558 int main(void)
1559 {
1560   gdk_threads_enter();
1561   gdk_threads_leave();
1562
1563   return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1564 }
1565 EOF
1566 GTK_CFLAGS=$(${cross_prefix}pkg-config --cflags gtk+-2.0 gthread-2.0)
1567 ORG_LDFLAGS=$LDFLAGS
1568 LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1569 if test "$?" != "0" ; then
1570   echo "configure: gtk and gthread not found"
1571   exit 1
1572 fi
1573 GTK_LIBS=$(${cross_prefix}pkg-config --libs gtk+-2.0 gthread-2.0)
1574 if test "$?" != "0" ; then
1575   echo "configure: gtk and gthread not found"
1576   exit 1
1577 fi
1578 gfio="yes"
1579 if check_min_lib_version gtk+-2.0 2.18.0 "gfio"; then
1580   if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1581     GFIO_LIBS="$LIBS $GTK_LIBS"
1582     CFLAGS="$CFLAGS $GTK_CFLAGS"
1583   else
1584     echo "Please install gtk and gdk libraries"
1585     gfio="no"
1586   fi
1587 else
1588   gfio="no"
1589 fi
1590 LDFLAGS=$ORG_LDFLAGS
1591 fi
1592
1593 if test "$gfio_check" = "yes" ; then
1594   print_config "gtk 2.18 or higher" "$gfio"
1595 fi
1596
1597 ##########################################
1598 # Check whether we have getrusage(RUSAGE_THREAD)
1599 if test "$rusage_thread" != "yes" ; then
1600   rusage_thread="no"
1601 fi
1602 cat > $TMPC << EOF
1603 #include <sys/time.h>
1604 #include <sys/resource.h>
1605 int main(int argc, char **argv)
1606 {
1607   struct rusage ru;
1608   getrusage(RUSAGE_THREAD, &ru);
1609   return 0;
1610 }
1611 EOF
1612 if compile_prog "" "" "RUSAGE_THREAD"; then
1613   rusage_thread="yes"
1614 fi
1615 print_config "RUSAGE_THREAD" "$rusage_thread"
1616
1617 ##########################################
1618 # Check whether we have SCHED_IDLE
1619 if test "$sched_idle" != "yes" ; then
1620   sched_idle="no"
1621 fi
1622 cat > $TMPC << EOF
1623 #include <sched.h>
1624 int main(int argc, char **argv)
1625 {
1626   struct sched_param p = { };
1627
1628   return sched_setscheduler(0, SCHED_IDLE, &p);
1629 }
1630 EOF
1631 if compile_prog "" "" "SCHED_IDLE"; then
1632   sched_idle="yes"
1633 fi
1634 print_config "SCHED_IDLE" "$sched_idle"
1635
1636 ##########################################
1637 # Check whether we have TCP_NODELAY
1638 if test "$tcp_nodelay" != "yes" ; then
1639   tcp_nodelay="no"
1640 fi
1641 cat > $TMPC << EOF
1642 #ifdef _WIN32
1643 #include <winsock2.h>
1644 #else
1645 #include <stdio.h>
1646 #include <sys/types.h>
1647 #include <sys/socket.h>
1648 #include <netinet/tcp.h>
1649 #endif
1650 int main(int argc, char **argv)
1651 {
1652   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1653 }
1654 EOF
1655 if compile_prog "" "" "TCP_NODELAY"; then
1656   tcp_nodelay="yes"
1657 elif compile_prog "" "-lws2_32" "TCP_NODELAY"; then
1658   tcp_nodelay="yes"
1659   LIBS="$LIBS -lws2_32"
1660 fi
1661 print_config "TCP_NODELAY" "$tcp_nodelay"
1662
1663 ##########################################
1664 # Check whether we have SO_SNDBUF
1665 if test "$window_size" != "yes" ; then
1666   window_size="no"
1667 fi
1668 cat > $TMPC << EOF
1669 #ifdef _WIN32
1670 #include <winsock2.h>
1671 #else
1672 #include <stdio.h>
1673 #include <sys/types.h>
1674 #include <sys/socket.h>
1675 #include <netinet/tcp.h>
1676 #endif
1677 int main(int argc, char **argv)
1678 {
1679   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1680   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1681 }
1682 EOF
1683 if compile_prog "" "" "SO_SNDBUF"; then
1684   window_size="yes"
1685 elif compile_prog "" "-lws2_32" "SO_SNDBUF"; then
1686   window_size="yes"
1687   LIBS="$LIBS -lws2_32"
1688 fi
1689 print_config "Net engine window_size" "$window_size"
1690
1691 ##########################################
1692 # Check whether we have TCP_MAXSEG
1693 if test "$mss" != "yes" ; then
1694   mss="no"
1695 fi
1696 cat > $TMPC << EOF
1697 #ifdef _WIN32
1698 #include <winsock2.h>
1699 #else
1700 #include <stdio.h>
1701 #include <sys/types.h>
1702 #include <sys/socket.h>
1703 #include <netinet/tcp.h>
1704 #include <arpa/inet.h>
1705 #include <netinet/in.h>
1706 #endif
1707 int main(int argc, char **argv)
1708 {
1709   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1710 }
1711 EOF
1712 if compile_prog "" "" "TCP_MAXSEG"; then
1713   mss="yes"
1714 elif compile_prog "" "-lws2_32" "TCP_MAXSEG"; then
1715   mss="yes"
1716   LIBS="$LIBS -lws2_32"
1717 fi
1718 print_config "TCP_MAXSEG" "$mss"
1719
1720 ##########################################
1721 # Check whether we have RLIMIT_MEMLOCK
1722 if test "$rlimit_memlock" != "yes" ; then
1723   rlimit_memlock="no"
1724 fi
1725 cat > $TMPC << EOF
1726 #include <sys/time.h>
1727 #include <sys/resource.h>
1728 int main(int argc, char **argv)
1729 {
1730   struct rlimit rl;
1731   return getrlimit(RLIMIT_MEMLOCK, &rl);
1732 }
1733 EOF
1734 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1735   rlimit_memlock="yes"
1736 fi
1737 print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1738
1739 ##########################################
1740 # Check whether we have pwritev/preadv
1741 if test "$pwritev" != "yes" ; then
1742   pwritev="no"
1743 fi
1744 cat > $TMPC << EOF
1745 #include <stdio.h>
1746 #include <sys/uio.h>
1747 int main(int argc, char **argv)
1748 {
1749   struct iovec iov[1] = { };
1750
1751   return pwritev(0, iov, 1, 0) + preadv(0, iov, 1, 0);
1752 }
1753 EOF
1754 if compile_prog "" "" "pwritev"; then
1755   pwritev="yes"
1756 fi
1757 print_config "pwritev/preadv" "$pwritev"
1758
1759 ##########################################
1760 # Check whether we have pwritev2/preadv2
1761 if test "$pwritev2" != "yes" ; then
1762   pwritev2="no"
1763 fi
1764 cat > $TMPC << EOF
1765 #include <stdio.h>
1766 #include <sys/uio.h>
1767 int main(int argc, char **argv)
1768 {
1769   struct iovec iov[1] = { };
1770
1771   return pwritev2(0, iov, 1, 0, 0) + preadv2(0, iov, 1, 0, 0);
1772 }
1773 EOF
1774 if compile_prog "" "" "pwritev2"; then
1775   pwritev2="yes"
1776 fi
1777 print_config "pwritev2/preadv2" "$pwritev2"
1778
1779 ##########################################
1780 # Check whether we have the required functions for ipv6
1781 if test "$ipv6" != "yes" ; then
1782   ipv6="no"
1783 fi
1784 cat > $TMPC << EOF
1785 #ifdef _WIN32
1786 #include <winsock2.h>
1787 #include <ws2tcpip.h>
1788 #else
1789 #include <sys/types.h>
1790 #include <sys/socket.h>
1791 #include <netinet/in.h>
1792 #include <netdb.h>
1793 #endif
1794 #include <stdio.h>
1795 int main(int argc, char **argv)
1796 {
1797   struct addrinfo hints = { };
1798   struct in6_addr addr = in6addr_any;
1799   int ret;
1800
1801   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1802   freeaddrinfo(NULL);
1803   printf("%s %d\n", gai_strerror(ret), addr.s6_addr[0]);
1804
1805   return 0;
1806 }
1807 EOF
1808 if compile_prog "" "" "ipv6"; then
1809   ipv6="yes"
1810 fi
1811 print_config "IPv6 helpers" "$ipv6"
1812
1813 ##########################################
1814 # check for http
1815 if test "$http" != "yes" ; then
1816   http="no"
1817 fi
1818 # check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
1819 cat > $TMPC << EOF
1820 #include <curl/curl.h>
1821 #include <openssl/hmac.h>
1822
1823 int main(int argc, char **argv)
1824 {
1825   CURL *curl;
1826   HMAC_CTX *ctx;
1827
1828   curl = curl_easy_init();
1829   curl_easy_cleanup(curl);
1830
1831   ctx = HMAC_CTX_new();
1832   HMAC_CTX_reset(ctx);
1833   HMAC_CTX_free(ctx);
1834   return 0;
1835 }
1836 EOF
1837 # openssl < 1.1.0 uses the HMAC_CTX type directly
1838 cat > $TMPC2 << EOF
1839 #include <curl/curl.h>
1840 #include <openssl/hmac.h>
1841
1842 int main(int argc, char **argv)
1843 {
1844   CURL *curl;
1845   HMAC_CTX ctx;
1846
1847   curl = curl_easy_init();
1848   curl_easy_cleanup(curl);
1849
1850   HMAC_CTX_init(&ctx);
1851   HMAC_CTX_cleanup(&ctx);
1852   return 0;
1853 }
1854 EOF
1855 if test "$disable_http" != "yes"; then
1856   HTTP_LIBS="-lcurl -lssl -lcrypto"
1857   if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
1858     output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
1859     http="yes"
1860   elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
1861     http="yes"
1862   fi
1863 fi
1864 print_config "http engine" "$http"
1865
1866 ##########################################
1867 # check for rados
1868 if test "$rados" != "yes" ; then
1869   rados="no"
1870 fi
1871 cat > $TMPC << EOF
1872 #include <rados/librados.h>
1873
1874 int main(int argc, char **argv)
1875 {
1876   rados_t cluster;
1877   rados_ioctx_t io_ctx;
1878   const char cluster_name[] = "ceph";
1879   const char user_name[] = "client.admin";
1880   const char pool[] = "rados";
1881
1882   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1883   rados_create2(&cluster, cluster_name, user_name, 0);
1884   rados_ioctx_create(cluster, pool, &io_ctx);
1885
1886   return 0;
1887 }
1888 EOF
1889 if test "$disable_rados" != "yes"  && compile_prog "" "-lrados" "rados"; then
1890   rados="yes"
1891 fi
1892 print_config "Rados engine" "$rados"
1893
1894 ##########################################
1895 # check for rbd
1896 if test "$rbd" != "yes" ; then
1897   rbd="no"
1898 fi
1899 cat > $TMPC << EOF
1900 #include <rbd/librbd.h>
1901
1902 int main(int argc, char **argv)
1903 {
1904   rados_t cluster;
1905   rados_ioctx_t io_ctx;
1906   const char cluster_name[] = "ceph";
1907   const char user_name[] = "client.admin";
1908   const char pool[] = "rbd";
1909   int major, minor, extra;
1910
1911   rbd_version(&major, &minor, &extra);
1912   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1913   rados_create2(&cluster, cluster_name, user_name, 0);
1914   rados_ioctx_create(cluster, pool, &io_ctx);
1915
1916   return 0;
1917 }
1918 EOF
1919 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1920   rbd="yes"
1921 fi
1922 print_config "Rados Block Device engine" "$rbd"
1923
1924 ##########################################
1925 # check for rbd_poll
1926 if test "$rbd_poll" != "yes" ; then
1927   rbd_poll="no"
1928 fi
1929 if test "$rbd" = "yes"; then
1930 cat > $TMPC << EOF
1931 #include <rbd/librbd.h>
1932 #include <sys/eventfd.h>
1933
1934 int main(int argc, char **argv)
1935 {
1936   rbd_image_t image;
1937   rbd_completion_t comp;
1938
1939   int fd = eventfd(0, EFD_NONBLOCK);
1940   rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1941   rbd_poll_io_events(image, comp, 1);
1942
1943   return 0;
1944 }
1945 EOF
1946 if compile_prog "" "-lrbd -lrados" "rbd"; then
1947   rbd_poll="yes"
1948 fi
1949 print_config "rbd_poll" "$rbd_poll"
1950 fi
1951
1952 ##########################################
1953 # check for rbd_invalidate_cache()
1954 if test "$rbd_inval" != "yes" ; then
1955   rbd_inval="no"
1956 fi
1957 if test "$rbd" = "yes"; then
1958 cat > $TMPC << EOF
1959 #include <rbd/librbd.h>
1960
1961 int main(int argc, char **argv)
1962 {
1963   rbd_image_t image;
1964
1965   return rbd_invalidate_cache(image);
1966 }
1967 EOF
1968 if compile_prog "" "-lrbd -lrados" "rbd"; then
1969   rbd_inval="yes"
1970 fi
1971 print_config "rbd_invalidate_cache" "$rbd_inval"
1972 fi
1973
1974 ##########################################
1975 # Check whether we have setvbuf
1976 if test "$setvbuf" != "yes" ; then
1977   setvbuf="no"
1978 fi
1979 cat > $TMPC << EOF
1980 #include <stdio.h>
1981 int main(int argc, char **argv)
1982 {
1983   FILE *f = NULL;
1984   char buf[80];
1985   setvbuf(f, buf, _IOFBF, sizeof(buf));
1986   return 0;
1987 }
1988 EOF
1989 if compile_prog "" "" "setvbuf"; then
1990   setvbuf="yes"
1991 fi
1992 print_config "setvbuf" "$setvbuf"
1993
1994 ##########################################
1995 # check for gfapi
1996 if test "$gfapi" != "yes" ; then
1997   gfapi="no"
1998 fi
1999 cat > $TMPC << EOF
2000 #include <glusterfs/api/glfs.h>
2001
2002 int main(int argc, char **argv)
2003 {
2004   glfs_t *g = glfs_new("foo");
2005
2006   return 0;
2007 }
2008 EOF
2009 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
2010   gfapi="yes"
2011 fi
2012 print_config "Gluster API engine" "$gfapi"
2013
2014 ##########################################
2015 # check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
2016 if test "$gfapi" = "yes" ; then
2017 gf_fadvise="no"
2018 cat > $TMPC << EOF
2019 #include <glusterfs/api/glfs.h>
2020
2021 int main(int argc, char **argv)
2022 {
2023   struct glfs_fd *fd;
2024   int ret = glfs_fadvise(fd, 0, 0, 1);
2025
2026   return 0;
2027 }
2028 EOF
2029 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
2030   gf_fadvise="yes"
2031 fi
2032 print_config "Gluster API use fadvise" "$gf_fadvise"
2033 fi
2034
2035 ##########################################
2036 # check for newer gfapi
2037 if test "$gfapi" = "yes" ; then
2038 gf_new="no"
2039 cat > $TMPC << EOF
2040 #include <glusterfs/api/glfs.h>
2041
2042 int main(int argc, char **argv)
2043 {
2044   return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
2045 }
2046 EOF
2047 if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
2048   gf_new="yes"
2049 fi
2050 print_config "Gluster new API" "$gf_new"
2051 fi
2052
2053 ##########################################
2054 # check for gfapi trim support
2055 if test "$gf_trim" != "yes" ; then
2056   gf_trim="no"
2057 fi
2058 if test "$gfapi" = "yes" ; then
2059 cat > $TMPC << EOF
2060 #include <glusterfs/api/glfs.h>
2061
2062 int main(int argc, char **argv)
2063 {
2064   return glfs_discard_async(NULL, 0, 0);
2065 }
2066 EOF
2067 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
2068   gf_trim="yes"
2069 fi
2070 print_config "Gluster API trim support" "$gf_trim"
2071 fi
2072
2073 ##########################################
2074 # Check if we support stckf on s390
2075 if test "$s390_z196_facilities" != "yes" ; then
2076   s390_z196_facilities="no"
2077 fi
2078 cat > $TMPC << EOF
2079 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
2080 int main(int argc, char **argv)
2081 {
2082     /* We want just 1 double word to be returned.  */
2083     register unsigned long reg0 asm("0") = 0;
2084     unsigned long stfle_bits;
2085     asm volatile(".machine push"        "\n\t"
2086                  ".machine \"z9-109\""  "\n\t"
2087                  "stfle %0"             "\n\t"
2088                  ".machine pop"         "\n"
2089                  : "=QS" (stfle_bits), "+d" (reg0)
2090                  : : "cc");
2091
2092     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
2093       return 0;
2094     else
2095       return -1;
2096 }
2097 EOF
2098 if compile_prog "" "" "s390_z196_facilities"; then
2099   $TMPE
2100   if [ $? -eq 0 ]; then
2101         s390_z196_facilities="yes"
2102   fi
2103 fi
2104 print_config "s390_z196_facilities" "$s390_z196_facilities"
2105
2106 ##########################################
2107 # Check if we have required environment variables configured for libhdfs
2108 if test "$libhdfs" = "yes" ; then
2109   hdfs_conf_error=0
2110   if test "$JAVA_HOME" = "" ; then
2111     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
2112     hdfs_conf_error=1
2113   fi
2114   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
2115     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs include path"
2116     hdfs_conf_error=1
2117   fi
2118   if test "$FIO_LIBHDFS_LIB" = "" ; then
2119     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
2120     hdfs_conf_error=1
2121   fi
2122   if test "$hdfs_conf_error" = "1" ; then
2123     feature_not_found "libhdfs" ""
2124   fi
2125   FIO_HDFS_CPU=$cpu
2126   if test "$FIO_HDFS_CPU" = "x86_64" ; then
2127     FIO_HDFS_CPU="amd64"
2128   fi
2129 fi
2130 print_config "HDFS engine" "$libhdfs"
2131
2132 ##########################################
2133 # Check whether we have MTD
2134 if test "$mtd" != "yes" ; then
2135   mtd="no"
2136 fi
2137 cat > $TMPC << EOF
2138 #include <string.h>
2139 #include <mtd/mtd-user.h>
2140 #include <sys/ioctl.h>
2141 int main(int argc, char **argv)
2142 {
2143   struct mtd_write_req ops;
2144   struct mtd_info_user info;
2145   memset(&ops, 0, sizeof(ops));
2146   info.type = MTD_MLCNANDFLASH;
2147   return ioctl(0, MEMGETINFO, &info);
2148 }
2149 EOF
2150 if compile_prog "" "" "mtd"; then
2151   mtd="yes"
2152 fi
2153 print_config "MTD" "$mtd"
2154
2155 ##########################################
2156 # Check whether we have libpmem
2157 if test "$libpmem" != "yes" ; then
2158   libpmem="no"
2159 fi
2160 cat > $TMPC << EOF
2161 #include <libpmem.h>
2162 #include <stdlib.h>
2163 int main(int argc, char **argv)
2164 {
2165   return pmem_is_pmem(NULL, 0);
2166 }
2167 EOF
2168 if compile_prog "" "-lpmem" "libpmem"; then
2169   libpmem="yes"
2170 fi
2171 print_config "libpmem" "$libpmem"
2172
2173 ##########################################
2174 # Check whether libpmem's version >= 1.5
2175 if test "$libpmem1_5" != "yes" ; then
2176   libpmem1_5="no"
2177 fi
2178 if test "$libpmem" = "yes"; then
2179   cat > $TMPC << EOF
2180 #include <libpmem.h>
2181 #include <stdlib.h>
2182 int main(int argc, char **argv)
2183 {
2184   pmem_memcpy(NULL, NULL, 0, 0);
2185   return 0;
2186 }
2187 EOF
2188   if compile_prog "" "-lpmem" "libpmem1_5"; then
2189     libpmem1_5="yes"
2190   fi
2191 fi
2192 print_config "libpmem1_5" "$libpmem1_5"
2193
2194 ##########################################
2195 # Check whether we have libpmemblk
2196 # libpmem is a prerequisite
2197 if test "$libpmemblk" != "yes" ; then
2198   libpmemblk="no"
2199 fi
2200 if test "$libpmem" = "yes"; then
2201   cat > $TMPC << EOF
2202 #include <libpmemblk.h>
2203 int main(int argc, char **argv)
2204 {
2205   PMEMblkpool *pbp;
2206   pbp = pmemblk_open("", 0);
2207   return 0;
2208 }
2209 EOF
2210   if compile_prog "" "-lpmemblk" "libpmemblk"; then
2211     libpmemblk="yes"
2212   fi
2213 fi
2214 print_config "libpmemblk" "$libpmemblk"
2215
2216 # Choose libpmem-based ioengines
2217 if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
2218   devdax="yes"
2219   if test "$libpmem1_5" = "yes"; then
2220     pmem="yes"
2221   fi
2222   if test "$libpmemblk" = "yes"; then
2223     pmemblk="yes"
2224   fi
2225 fi
2226
2227 ##########################################
2228 # Report whether pmemblk engine is enabled
2229 print_config "PMDK pmemblk engine" "$pmemblk"
2230
2231 ##########################################
2232 # Report whether dev-dax engine is enabled
2233 print_config "PMDK dev-dax engine" "$devdax"
2234
2235 ##########################################
2236 # Report whether libpmem engine is enabled
2237 print_config "PMDK libpmem engine" "$pmem"
2238
2239 ##########################################
2240 # Check whether we support DDN's IME
2241 if test "$libime" != "yes" ; then
2242   libime="no"
2243 fi
2244 cat > $TMPC << EOF
2245 #include <ime_native.h>
2246 int main(int argc, char **argv)
2247 {
2248   int rc;
2249   ime_native_init();
2250   rc = ime_native_finalize();
2251   return 0;
2252 }
2253 EOF
2254 if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
2255   libime="yes"
2256   CFLAGS="-I${ime_path}/include $CFLAGS"
2257   LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
2258   LIBS="-lim_client $LIBS"
2259 fi
2260 print_config "DDN's Infinite Memory Engine" "$libime"
2261
2262 ##########################################
2263 # Check if we have libiscsi
2264 if test "$libiscsi" != "no" ; then
2265   if check_min_lib_version libiscsi 1.9.0; then
2266     libiscsi="yes"
2267     libiscsi_cflags=$(pkg-config --cflags libiscsi)
2268     libiscsi_libs=$(pkg-config --libs libiscsi)
2269   else
2270     libiscsi="no"
2271   fi
2272 fi
2273 print_config "iscsi engine" "$libiscsi"
2274
2275 ##########################################
2276 # Check if we have libnbd (for NBD support)
2277 if test "$libnbd" != "no" ; then
2278   if check_min_lib_version libnbd 0.9.8; then
2279     libnbd="yes"
2280     libnbd_cflags=$(pkg-config --cflags libnbd)
2281     libnbd_libs=$(pkg-config --libs libnbd)
2282   else
2283     libnbd="no"
2284   fi
2285 fi
2286 print_config "NBD engine" "$libnbd"
2287
2288 ##########################################
2289 # check for dfs (DAOS File System)
2290 if test "$dfs" != "no" ; then
2291   cat > $TMPC << EOF
2292 #include <fcntl.h>
2293 #include <daos.h>
2294 #include <daos_fs.h>
2295
2296 int main(int argc, char **argv)
2297 {
2298   daos_handle_t poh;
2299   daos_handle_t coh;
2300   dfs_t         *dfs;
2301
2302   (void) dfs_mount(poh, coh, O_RDWR, &dfs);
2303
2304   return 0;
2305 }
2306 EOF
2307   if compile_prog "" "-luuid -ldfs -ldaos" "dfs"; then
2308     dfs="yes"
2309   else
2310     dfs="no"
2311   fi
2312 fi
2313 print_config "DAOS File System (dfs) Engine" "$dfs"
2314
2315 ##########################################
2316 # Check if we have libnfs (for userspace nfs support).
2317 if test "$disable_nfs" != "yes"; then
2318   if $(pkg-config libnfs > /dev/null 2>&1); then
2319     libnfs="yes"
2320     libnfs_cflags=$(pkg-config --cflags libnfs)
2321     libnfs_libs=$(pkg-config --libs libnfs)
2322   else
2323     if test "$libnfs" = "yes" ; then
2324       echo "libnfs" "Install libnfs"
2325     fi
2326   fi
2327 fi
2328 print_config "NFS engine" "$libnfs"
2329
2330 ##########################################
2331 # Check if we have lex/yacc available
2332 yacc="no"
2333 yacc_is_bison="no"
2334 lex="no"
2335 arith="no"
2336 if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
2337 if test "$targetos" != "SunOS" ; then
2338 if has lex; then
2339   lex="yes"
2340 fi
2341 if has bison; then
2342   yacc="yes"
2343   yacc_is_bison="yes"
2344 elif has yacc; then
2345   yacc="yes"
2346 fi
2347 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
2348   arith="yes"
2349 fi
2350
2351 if test "$arith" = "yes" ; then
2352 cat > $TMPC << EOF
2353 extern int yywrap(void);
2354
2355 int main(int argc, char **argv)
2356 {
2357   yywrap();
2358   return 0;
2359 }
2360 EOF
2361 if compile_prog "" "-lfl" "flex"; then
2362   LIBS="-lfl $LIBS"
2363 elif compile_prog "" "-ll" "lex"; then
2364   LIBS="-ll $LIBS"
2365 else
2366   arith="no"
2367 fi
2368 fi
2369 fi
2370 fi
2371
2372 # Check if lex fails using -o
2373 if test "$arith" = "yes" ; then
2374 if test "$force_no_lex_o" = "yes" ; then
2375   lex_use_o="no"
2376 else
2377 if lex -o lex.yy.c exp/expression-parser.l 2> /dev/null; then
2378   lex_use_o="yes"
2379 else
2380   lex_use_o="no"
2381 fi
2382 fi
2383 fi
2384
2385 print_config "lex/yacc for arithmetic" "$arith"
2386
2387 ##########################################
2388 # Check whether we have setmntent/getmntent
2389 if test "$getmntent" != "yes" ; then
2390   getmntent="no"
2391 fi
2392 cat > $TMPC << EOF
2393 #include <stdio.h>
2394 #include <mntent.h>
2395 int main(int argc, char **argv)
2396 {
2397   FILE *mtab = setmntent(NULL, "r");
2398   struct mntent *mnt = getmntent(mtab);
2399   endmntent(mtab);
2400   return mnt != NULL;
2401 }
2402 EOF
2403 if compile_prog "" "" "getmntent"; then
2404   getmntent="yes"
2405 fi
2406 print_config "getmntent" "$getmntent"
2407
2408 ##########################################
2409 # Check whether we have getmntinfo
2410 # These are originally added for BSDs, but may also work
2411 # on other operating systems with getmntinfo(3).
2412
2413 # getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
2414 # Note that NetBSD needs -Werror to catch warning as error.
2415 if test "$getmntinfo" != "yes" ; then
2416   getmntinfo="no"
2417 fi
2418 cat > $TMPC << EOF
2419 #include <stdio.h>
2420 #include <sys/param.h>
2421 #include <sys/mount.h>
2422 int main(int argc, char **argv)
2423 {
2424   struct statfs *st;
2425   return getmntinfo(&st, MNT_NOWAIT);
2426 }
2427 EOF
2428 if compile_prog "-Werror" "" "getmntinfo"; then
2429   getmntinfo="yes"
2430 fi
2431 print_config "getmntinfo" "$getmntinfo"
2432
2433 # getmntinfo(3) for NetBSD.
2434 if test "$getmntinfo_statvfs" != "yes" ; then
2435   getmntinfo_statvfs="no"
2436 fi
2437 cat > $TMPC << EOF
2438 #include <stdio.h>
2439 #include <sys/statvfs.h>
2440 int main(int argc, char **argv)
2441 {
2442   struct statvfs *st;
2443   return getmntinfo(&st, MNT_NOWAIT);
2444 }
2445 EOF
2446 # Skip the test if the one with statfs arg is detected.
2447 if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2448   getmntinfo_statvfs="yes"
2449   print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
2450 fi
2451
2452 ##########################################
2453 # Check whether we have _Static_assert
2454 if test "$static_assert" != "yes" ; then
2455   static_assert="no"
2456 fi
2457 cat > $TMPC << EOF
2458 #include <assert.h>
2459 #include <stdlib.h>
2460 #include <stddef.h>
2461
2462 struct foo {
2463   int a, b;
2464 };
2465
2466 int main(int argc, char **argv)
2467 {
2468   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
2469   return 0 ;
2470 }
2471 EOF
2472 if compile_prog "" "" "static_assert"; then
2473     static_assert="yes"
2474 fi
2475 print_config "Static Assert" "$static_assert"
2476
2477 ##########################################
2478 # Check whether we have bool / stdbool.h
2479 if test "$have_bool" != "yes" ; then
2480   have_bool="no"
2481 fi
2482 cat > $TMPC << EOF
2483 #include <stdbool.h>
2484 int main(int argc, char **argv)
2485 {
2486   bool var = true;
2487   return var != false;
2488 }
2489 EOF
2490 if compile_prog "" "" "bool"; then
2491   have_bool="yes"
2492 fi
2493 print_config "bool" "$have_bool"
2494
2495 ##########################################
2496 # Check whether we have strndup()
2497 strndup="no"
2498 cat > $TMPC << EOF
2499 #include <string.h>
2500 #include <stdlib.h>
2501 int main(int argc, char **argv)
2502 {
2503   char *res = strndup("test string", 8);
2504
2505   free(res);
2506   return 0;
2507 }
2508 EOF
2509 if compile_prog "" "" "strndup"; then
2510   strndup="yes"
2511 fi
2512 print_config "strndup" "$strndup"
2513
2514 ##########################################
2515 # <valgrind/drd.h> probe
2516 # Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2517 # also available but not the other way around.
2518 if test "$valgrind_dev" != "yes" ; then
2519   valgrind_dev="no"
2520 fi
2521 cat > $TMPC << EOF
2522 #include <valgrind/drd.h>
2523 int main(int argc, char **argv)
2524 {
2525   return 0;
2526 }
2527 EOF
2528 if compile_prog "" "" "valgrind_dev"; then
2529   valgrind_dev="yes"
2530 fi
2531 print_config "Valgrind headers" "$valgrind_dev"
2532
2533 if test "$targetos" = "Linux" ; then
2534 ##########################################
2535 # <linux/blkzoned.h> probe
2536 if test "$linux_blkzoned" != "yes" ; then
2537   linux_blkzoned="no"
2538 fi
2539 cat > $TMPC << EOF
2540 #include <linux/blkzoned.h>
2541 int main(int argc, char **argv)
2542 {
2543   return 0;
2544 }
2545 EOF
2546 if compile_prog "" "" "linux_blkzoned"; then
2547   linux_blkzoned="yes"
2548 fi
2549 print_config "Zoned block device support" "$linux_blkzoned"
2550
2551 ##########################################
2552 # Check BLK_ZONE_REP_CAPACITY
2553 cat > $TMPC << EOF
2554 #include <linux/blkzoned.h>
2555 int main(void)
2556 {
2557   return BLK_ZONE_REP_CAPACITY;
2558 }
2559 EOF
2560 if compile_prog "" "" "blkzoned report capacity"; then
2561   output_sym "CONFIG_HAVE_REP_CAPACITY"
2562   rep_capacity="yes"
2563 else
2564   rep_capacity="no"
2565 fi
2566 print_config "Zoned block device capacity" "$rep_capacity"
2567 fi
2568
2569 ##########################################
2570 # libzbc probe
2571 cat > $TMPC << EOF
2572 #include <libzbc/zbc.h>
2573 int main(int argc, char **argv)
2574 {
2575   struct zbc_device *dev = NULL;
2576
2577   return zbc_open("foo=bar", O_RDONLY, &dev);
2578 }
2579 EOF
2580 if test "$libzbc" != "no" ; then
2581   if [ -e /usr/include/libzbc/libzbc ]; then
2582     # SUSE Linux.
2583     CFLAGS="$CFLAGS -I/usr/include/libzbc"
2584   fi
2585   if compile_prog "" "-lzbc" "libzbc"; then
2586     libzbc="yes"
2587     if ! check_min_lib_version libzbc 5; then
2588       libzbc="no"
2589     fi
2590   else
2591     if test "$libzbc" = "yes" ; then
2592       feature_not_found "libzbc" "libzbc or libzbc/zbc.h"
2593     fi
2594     libzbc="no"
2595   fi
2596 fi
2597 print_config "libzbc engine" "$libzbc"
2598
2599 if test "$targetos" = "Linux" ; then
2600 ##########################################
2601 # Check NVME_URING_CMD support
2602 cat > $TMPC << EOF
2603 #include <linux/nvme_ioctl.h>
2604 int main(void)
2605 {
2606   struct nvme_uring_cmd *cmd;
2607
2608   return sizeof(struct nvme_uring_cmd);
2609 }
2610 EOF
2611 if compile_prog "" "" "nvme uring cmd"; then
2612   output_sym "CONFIG_NVME_URING_CMD"
2613   nvme_uring_cmd="yes"
2614 else
2615   nvme_uring_cmd="no"
2616 fi
2617 print_config "NVMe uring command support" "$nvme_uring_cmd"
2618 fi
2619
2620 ##########################################
2621 # Check if we have xnvme
2622 if test "$xnvme" != "no" ; then
2623   if check_min_lib_version xnvme 0.2.0; then
2624     xnvme="yes"
2625     xnvme_cflags=$(pkg-config --cflags xnvme)
2626     xnvme_libs=$(pkg-config --libs xnvme)
2627   else
2628     xnvme="no"
2629   fi
2630 fi
2631 print_config "xnvme engine" "$xnvme"
2632
2633 ##########################################
2634 # check march=armv8-a+crc+crypto
2635 if test "$march_armv8_a_crc_crypto" != "yes" ; then
2636   march_armv8_a_crc_crypto="no"
2637 fi
2638 if test "$cpu" = "arm64" ; then
2639   cat > $TMPC <<EOF
2640 #include <arm_acle.h>
2641 #include <arm_neon.h>
2642 #include <sys/auxv.h>
2643
2644 int main(void)
2645 {
2646   /* Can we also do a runtime probe? */
2647 #if __linux__
2648   return getauxval(AT_HWCAP);
2649 #else
2650 # error "Don't know how to do runtime probe for ARM CRC32c"
2651 #endif
2652 }
2653 EOF
2654   if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
2655     march_armv8_a_crc_crypto="yes"
2656     CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
2657     march_set="yes"
2658   fi
2659 fi
2660 print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2661
2662 ##########################################
2663 # cuda probe
2664 if test "$cuda" != "no" ; then
2665 cat > $TMPC << EOF
2666 #include <cuda.h>
2667 int main(int argc, char **argv)
2668 {
2669   return cuInit(0);
2670 }
2671 EOF
2672   if compile_prog "" "-lcuda" "cuda"; then
2673     cuda="yes"
2674     LIBS="-lcuda $LIBS"
2675   else
2676     if test "$cuda" = "yes" ; then
2677       feature_not_found "cuda" ""
2678     fi
2679     cuda="no"
2680   fi
2681 fi
2682 print_config "cuda" "$cuda"
2683
2684 ##########################################
2685 # libcufile probe
2686 if test "$libcufile" != "no" ; then
2687 cat > $TMPC << EOF
2688 #include <cufile.h>
2689
2690 int main(int argc, char* argv[]) {
2691    cuFileDriverOpen();
2692    return 0;
2693 }
2694 EOF
2695   if compile_prog "" "-lcuda -lcudart -lcufile" "libcufile"; then
2696     libcufile="yes"
2697     LIBS="-lcuda -lcudart -lcufile $LIBS"
2698   else
2699     if test "$libcufile" = "yes" ; then
2700       feature_not_found "libcufile" ""
2701     fi
2702     libcufile="no"
2703   fi
2704 fi
2705 print_config "libcufile" "$libcufile"
2706
2707 ##########################################
2708 # check for cc -march=native
2709 build_native="no"
2710 cat > $TMPC << EOF
2711 int main(int argc, char **argv)
2712 {
2713   return 0;
2714 }
2715 EOF
2716 if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2717    compile_prog "-march=native" "" "march=native"; then
2718   build_native="yes"
2719 fi
2720 print_config "Build march=native" "$build_native"
2721
2722 ##########################################
2723 # check for -lcunit
2724 if test "$cunit" != "yes" ; then
2725   cunit="no"
2726 fi
2727 cat > $TMPC << EOF
2728 #include <CUnit/CUnit.h>
2729 #include <CUnit/Basic.h>
2730 int main(void)
2731 {
2732   if (CU_initialize_registry() != CUE_SUCCESS)
2733     return CU_get_error();
2734   CU_basic_set_mode(CU_BRM_VERBOSE);
2735   CU_basic_run_tests();
2736   CU_cleanup_registry();
2737   return CU_get_error();
2738 }
2739 EOF
2740 if compile_prog "" "-lcunit" "CUnit"; then
2741   cunit="yes"
2742 fi
2743 print_config "CUnit" "$cunit"
2744
2745 ##########################################
2746 # check for __kernel_rwf_t
2747 __kernel_rwf_t="no"
2748 cat > $TMPC << EOF
2749 #include <linux/fs.h>
2750 int main(int argc, char **argv)
2751 {
2752   __kernel_rwf_t x;
2753   x = 0;
2754   return x;
2755 }
2756 EOF
2757 if compile_prog "" "" "__kernel_rwf_t"; then
2758   __kernel_rwf_t="yes"
2759 fi
2760 print_config "__kernel_rwf_t" "$__kernel_rwf_t"
2761
2762 ##########################################
2763 # check if gcc has -Wimplicit-fallthrough=2
2764 fallthrough="no"
2765 cat > $TMPC << EOF
2766 int main(int argc, char **argv)
2767 {
2768   return 0;
2769 }
2770 EOF
2771 if compile_prog "-Wimplicit-fallthrough=2" "" "-Wimplicit-fallthrough=2"; then
2772   fallthrough="yes"
2773 fi
2774 print_config "-Wimplicit-fallthrough=2" "$fallthrough"
2775
2776 ##########################################
2777 # check for MADV_HUGEPAGE support
2778 if test "$thp" != "yes" ; then
2779   thp="no"
2780 fi
2781 if test "$esx" != "yes" ; then
2782   cat > $TMPC <<EOF
2783 #include <sys/mman.h>
2784 int main(void)
2785 {
2786   return madvise(0, 0x1000, MADV_HUGEPAGE);
2787 }
2788 EOF
2789   if compile_prog "" "" "thp" ; then
2790     thp=yes
2791   else
2792     if test "$thp" = "yes" ; then
2793       feature_not_found "Transparent Huge Page" ""
2794     fi
2795     thp=no
2796   fi
2797 fi
2798 print_config "MADV_HUGEPAGE" "$thp"
2799
2800 ##########################################
2801 # check for gettid()
2802 gettid="no"
2803 cat > $TMPC << EOF
2804 #include <unistd.h>
2805 int main(int argc, char **argv)
2806 {
2807   return gettid();
2808 }
2809 EOF
2810 if compile_prog "" "" "gettid"; then
2811   gettid="yes"
2812 fi
2813 print_config "gettid" "$gettid"
2814
2815 ##########################################
2816 # check for statx(2) support by libc
2817 statx="no"
2818 cat > $TMPC << EOF
2819 #include <unistd.h>
2820 #include <sys/stat.h>
2821
2822 int main(int argc, char **argv)
2823 {
2824         struct statx st;
2825         return statx(-1, *argv, 0, 0, &st);
2826 }
2827 EOF
2828 if compile_prog "" "" "statx"; then
2829   statx="yes"
2830 fi
2831 print_config "statx(2)/libc" "$statx"
2832
2833 ##########################################
2834 # check for statx(2) support by kernel
2835 statx_syscall="no"
2836 cat > $TMPC << EOF
2837 #include <unistd.h>
2838 #include <linux/stat.h>
2839 #include <sys/stat.h>
2840 #include <sys/syscall.h>
2841
2842 static int _statx(int dfd, const char *pathname, int flags, unsigned int mask,
2843                   struct statx *buffer)
2844 {
2845         return syscall(__NR_statx, dfd, pathname, flags, mask, buffer);
2846 }
2847
2848 int main(int argc, char **argv)
2849 {
2850         struct statx st;
2851         return _statx(-1, *argv, 0, 0, &st);
2852 }
2853 EOF
2854 if compile_prog "" "" "statx_syscall"; then
2855   statx_syscall="yes"
2856 fi
2857 print_config "statx(2)/syscall" "$statx_syscall"
2858
2859 ##########################################
2860 # check for Windows PDB generation support
2861 if test "pdb" != "no" ; then
2862   cat > $TMPC <<EOF
2863 int main(void)
2864 {
2865   return 0;
2866 }
2867 EOF
2868   if compile_prog "-g -gcodeview" "-fuse-ld=lld -Wl,-pdb,$TMPO" "pdb"; then
2869     pdb=yes
2870   else
2871     if test "$pdb" = "yes"; then
2872       feature_not_found "PDB" "clang and lld"
2873     fi
2874     pdb=no
2875   fi
2876 else
2877   pdb=no
2878 fi
2879 print_config "Windows PDB generation" "$pdb"
2880
2881 ##########################################
2882 # check for timerfd support
2883 timerfd_create="no"
2884 if test "$esx" != "yes" ; then
2885 cat > $TMPC << EOF
2886 #include <sys/time.h>
2887 #include <sys/timerfd.h>
2888
2889 int main(int argc, char **argv)
2890 {
2891         return timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
2892 }
2893 EOF
2894   if compile_prog "" "" "timerfd_create"; then
2895     timerfd_create="yes"
2896   fi
2897 fi
2898 print_config "timerfd_create" "$timerfd_create"
2899
2900 #############################################################################
2901
2902 if test "$wordsize" = "64" ; then
2903   output_sym "CONFIG_64BIT"
2904 elif test "$wordsize" = "32" ; then
2905   output_sym "CONFIG_32BIT"
2906 else
2907   fatal "Unknown wordsize!"
2908 fi
2909 if test "$bigendian" = "yes" ; then
2910   output_sym "CONFIG_BIG_ENDIAN"
2911 else
2912   output_sym "CONFIG_LITTLE_ENDIAN"
2913 fi
2914 if test "$zlib" = "yes" ; then
2915   output_sym "CONFIG_ZLIB"
2916 fi
2917 if test "$libaio" = "yes" ; then
2918   output_sym "CONFIG_LIBAIO"
2919   if test "$libaio_rw_flags" = "yes" ; then
2920     output_sym "CONFIG_LIBAIO_RW_FLAGS"
2921   fi
2922 fi
2923 if test "$posix_aio" = "yes" ; then
2924   output_sym "CONFIG_POSIXAIO"
2925 fi
2926 if test "$posix_aio_fsync" = "yes" ; then
2927   output_sym "CONFIG_POSIXAIO_FSYNC"
2928 fi
2929 if test "$posix_pshared" = "yes" ; then
2930   output_sym "CONFIG_PSHARED"
2931 fi
2932 if test "$pthread_condattr_setclock" = "yes" ; then
2933   output_sym "CONFIG_PTHREAD_CONDATTR_SETCLOCK"
2934 fi
2935 if test "$pthread_sigmask" = "yes" ; then
2936   output_sym "CONFIG_PTHREAD_SIGMASK"
2937 fi
2938 if test "$pthread_getaffinity" = "yes" ; then
2939   output_sym "CONFIG_PTHREAD_GETAFFINITY"
2940 fi
2941 if test "$have_asprintf" = "yes" ; then
2942     output_sym "CONFIG_HAVE_ASPRINTF"
2943 fi
2944 if test "$have_vasprintf" = "yes" ; then
2945     output_sym "CONFIG_HAVE_VASPRINTF"
2946 fi
2947 if test "$linux_fallocate" = "yes" ; then
2948   output_sym "CONFIG_LINUX_FALLOCATE"
2949 fi
2950 if test "$posix_fallocate" = "yes" ; then
2951   output_sym "CONFIG_POSIX_FALLOCATE"
2952 fi
2953 if test "$fdatasync" = "yes" ; then
2954   output_sym "CONFIG_FDATASYNC"
2955 fi
2956 if test "$pipe" = "yes" ; then
2957   output_sym "CONFIG_PIPE"
2958 fi
2959 if test "$pipe2" = "yes" ; then
2960   output_sym "CONFIG_PIPE2"
2961 fi
2962 if test "$pread" = "yes" ; then
2963   output_sym "CONFIG_PREAD"
2964 fi
2965 if test "$sync_file_range" = "yes" ; then
2966   output_sym "CONFIG_SYNC_FILE_RANGE"
2967 fi
2968 if test "$sfaa" = "yes" ; then
2969   output_sym "CONFIG_SFAA"
2970 fi
2971 if test "$sync_sync" = "yes" ; then
2972   output_sym "CONFIG_SYNC_SYNC"
2973 fi
2974 if test "$cmp_swap" = "yes" ; then
2975   output_sym "CONFIG_CMP_SWAP"
2976 fi
2977 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2978   output_sym "CONFIG_RDMA"
2979 fi
2980 # librpma is supported on the 'x86_64' architecture for now
2981 if test "$cpu" = "x86_64" -a "$libverbs" = "yes" -a "$rdmacm" = "yes" \
2982     -a "$librpma" = "yes" -a "$libpmem" = "yes" ; then
2983   output_sym "CONFIG_LIBRPMA_APM"
2984 fi
2985 if test "$cpu" = "x86_64" -a "$libverbs" = "yes" -a "$rdmacm" = "yes" \
2986     -a "$librpma" = "yes" -a "$libpmem" = "yes" -a "$libprotobuf_c" = "yes" ; then
2987   output_sym "CONFIG_LIBRPMA_GPSPM"
2988 fi
2989 if test "$clock_gettime" = "yes" ; then
2990   output_sym "CONFIG_CLOCK_GETTIME"
2991 fi
2992 if test "$clock_monotonic" = "yes" ; then
2993   output_sym "CONFIG_CLOCK_MONOTONIC"
2994 fi
2995 if test "$clockid_t" = "yes"; then
2996   output_sym "CONFIG_CLOCKID_T"
2997 fi
2998 if test "$gettimeofday" = "yes" ; then
2999   output_sym "CONFIG_GETTIMEOFDAY"
3000 fi
3001 if test "$posix_fadvise" = "yes" ; then
3002   output_sym "CONFIG_POSIX_FADVISE"
3003 fi
3004 if test "$linux_3arg_affinity" = "yes" ; then
3005   output_sym "CONFIG_3ARG_AFFINITY"
3006 elif test "$linux_2arg_affinity" = "yes" ; then
3007   output_sym "CONFIG_2ARG_AFFINITY"
3008 fi
3009 if test "$strsep" = "yes" ; then
3010   output_sym "CONFIG_STRSEP"
3011 fi
3012 if test "$strcasestr" = "yes" ; then
3013   output_sym "CONFIG_STRCASESTR"
3014 fi
3015 if test "$strlcat" = "yes" ; then
3016   output_sym "CONFIG_STRLCAT"
3017 fi
3018 if test "$getopt_long_only" = "yes" ; then
3019   output_sym "CONFIG_GETOPT_LONG_ONLY"
3020 fi
3021 if test "$inet_aton" = "yes" ; then
3022   output_sym "CONFIG_INET_ATON"
3023 fi
3024 if test "$socklen_t" = "yes" ; then
3025   output_sym "CONFIG_SOCKLEN_T"
3026 fi
3027 if test "$ext4_me" = "yes" ; then
3028   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
3029 fi
3030 if test "$linux_splice" = "yes" ; then
3031   output_sym "CONFIG_LINUX_SPLICE"
3032 fi
3033 if test "$libnuma_v2" = "yes" ; then
3034   output_sym "CONFIG_LIBNUMA"
3035 fi
3036 if test "$solaris_aio" = "yes" ; then
3037   output_sym "CONFIG_SOLARISAIO"
3038 fi
3039 if test "$tls_thread" = "yes" ; then
3040   output_sym "CONFIG_TLS_THREAD"
3041 fi
3042 if test "$rusage_thread" = "yes" ; then
3043   output_sym "CONFIG_RUSAGE_THREAD"
3044 fi
3045 if test "$gfio" = "yes" ; then
3046   output_sym "CONFIG_GFIO"
3047 fi
3048 if test "$esx" = "yes" ; then
3049   output_sym "CONFIG_ESX"
3050   output_sym "CONFIG_NO_SHM"
3051 fi
3052 if test "$sched_idle" = "yes" ; then
3053   output_sym "CONFIG_SCHED_IDLE"
3054 fi
3055 if test "$tcp_nodelay" = "yes" ; then
3056   output_sym "CONFIG_TCP_NODELAY"
3057 fi
3058 if test "$window_size" = "yes" ; then
3059   output_sym "CONFIG_NET_WINDOWSIZE"
3060 fi
3061 if test "$mss" = "yes" ; then
3062   output_sym "CONFIG_NET_MSS"
3063 fi
3064 if test "$rlimit_memlock" = "yes" ; then
3065   output_sym "CONFIG_RLIMIT_MEMLOCK"
3066 fi
3067 if test "$pwritev" = "yes" ; then
3068   output_sym "CONFIG_PWRITEV"
3069 fi
3070 if test "$pwritev2" = "yes" ; then
3071   output_sym "CONFIG_PWRITEV2"
3072 fi
3073 if test "$ipv6" = "yes" ; then
3074   output_sym "CONFIG_IPV6"
3075 fi
3076 if test "$http" = "yes" ; then
3077   output_sym "CONFIG_HTTP"
3078 fi
3079 if test "$rados" = "yes" ; then
3080   output_sym "CONFIG_RADOS"
3081 fi
3082 if test "$rbd" = "yes" ; then
3083   output_sym "CONFIG_RBD"
3084 fi
3085 if test "$rbd_poll" = "yes" ; then
3086   output_sym "CONFIG_RBD_POLL"
3087 fi
3088 if test "$rbd_inval" = "yes" ; then
3089   output_sym "CONFIG_RBD_INVAL"
3090 fi
3091 if test "$setvbuf" = "yes" ; then
3092   output_sym "CONFIG_SETVBUF"
3093 fi
3094 if test "$s390_z196_facilities" = "yes" ; then
3095   output_sym "CONFIG_S390_Z196_FACILITIES"
3096   CFLAGS="$CFLAGS -march=z9-109"
3097   march_set="yes"
3098 fi
3099 if test "$gfapi" = "yes" ; then
3100   output_sym "CONFIG_GFAPI"
3101 fi
3102 if test "$gf_fadvise" = "yes" ; then
3103   output_sym "CONFIG_GF_FADVISE"
3104 fi
3105 if test "$gf_trim" = "yes" ; then
3106   output_sym "CONFIG_GF_TRIM"
3107 fi
3108 if test "$gf_new" = "yes" ; then
3109   output_sym "CONFIG_GF_NEW_API"
3110 fi
3111 if test "$libhdfs" = "yes" ; then
3112   output_sym "CONFIG_LIBHDFS"
3113   echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
3114   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
3115   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
3116   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
3117 fi
3118 if test "$mtd" = "yes" ; then
3119   output_sym "CONFIG_MTD"
3120 fi
3121 if test "$pmemblk" = "yes" ; then
3122   output_sym "CONFIG_PMEMBLK"
3123 fi
3124 if test "$devdax" = "yes" ; then
3125   output_sym "CONFIG_LINUX_DEVDAX"
3126 fi
3127 if test "$pmem" = "yes" ; then
3128   output_sym "CONFIG_LIBPMEM"
3129 fi
3130 if test "$libime" = "yes" ; then
3131   output_sym "CONFIG_IME"
3132 fi
3133 if test "$arith" = "yes" ; then
3134   output_sym "CONFIG_ARITHMETIC"
3135   if test "$yacc_is_bison" = "yes" ; then
3136     echo "YACC=bison -y" >> $config_host_mak
3137   else
3138     echo "YACC=yacc" >> $config_host_mak
3139   fi
3140   if test "$lex_use_o" = "yes" ; then
3141     echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
3142   fi
3143 fi
3144 if test "$getmntent" = "yes" ; then
3145   output_sym "CONFIG_GETMNTENT"
3146 fi
3147 if test "$getmntinfo" = "yes" ; then
3148   output_sym "CONFIG_GETMNTINFO"
3149 fi
3150 if test "$getmntinfo_statvfs" = "yes" ; then
3151   output_sym "CONFIG_GETMNTINFO_STATVFS"
3152 fi
3153 if test "$static_assert" = "yes" ; then
3154   output_sym "CONFIG_STATIC_ASSERT"
3155 fi
3156 if test "$have_bool" = "yes" ; then
3157   output_sym "CONFIG_HAVE_BOOL"
3158 fi
3159 if test "$strndup" = "yes" ; then
3160   output_sym "CONFIG_HAVE_STRNDUP"
3161 fi
3162 if test "$disable_opt" = "yes" ; then
3163   output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
3164 fi
3165 if test "$valgrind_dev" = "yes"; then
3166   output_sym "CONFIG_VALGRIND_DEV"
3167 fi
3168 if test "$linux_blkzoned" = "yes" ; then
3169   output_sym "CONFIG_HAS_BLKZONED"
3170 fi
3171 if test "$libzbc" = "yes" ; then
3172   output_sym "CONFIG_LIBZBC"
3173 fi
3174 if test "$zlib" = "no" ; then
3175   echo "Consider installing zlib1g-dev (zlib-devel) as some fio features depend on it."
3176   if test "$build_static" = "yes"; then
3177     echo "Note that some distros have separate packages for static libraries."
3178   fi
3179 fi
3180 if test "$march_armv8_a_crc_crypto" = "yes" ; then
3181   output_sym "ARCH_HAVE_CRC_CRYPTO"
3182 fi
3183 if test "$cuda" = "yes" ; then
3184   output_sym "CONFIG_CUDA"
3185 fi
3186 if test "$libcufile" = "yes" ; then
3187   output_sym "CONFIG_LIBCUFILE"
3188 fi
3189 if test "$dfs" = "yes" ; then
3190   output_sym "CONFIG_DFS"
3191 fi
3192 if test "$libnfs" = "yes" ; then
3193   output_sym "CONFIG_NFS"
3194 fi
3195 if test "$march_set" = "no" && test "$build_native" = "yes" ; then
3196   output_sym "CONFIG_BUILD_NATIVE"
3197 fi
3198 if test "$cunit" = "yes" ; then
3199   output_sym "CONFIG_HAVE_CUNIT"
3200 fi
3201 if test "$__kernel_rwf_t" = "yes"; then
3202   output_sym "CONFIG_HAVE_KERNEL_RWF_T"
3203 fi
3204 if test "$gettid" = "yes"; then
3205   output_sym "CONFIG_HAVE_GETTID"
3206 fi
3207 if test "$statx" = "yes"; then
3208   output_sym "CONFIG_HAVE_STATX"
3209 fi
3210 if test "$statx_syscall" = "yes"; then
3211   output_sym "CONFIG_HAVE_STATX_SYSCALL"
3212 fi
3213 if test "$timerfd_create" = "yes"; then
3214   output_sym "CONFIG_HAVE_TIMERFD_CREATE"
3215 fi
3216 if test "$fallthrough" = "yes"; then
3217   CFLAGS="$CFLAGS -Wimplicit-fallthrough"
3218 fi
3219 if test "$thp" = "yes" ; then
3220   output_sym "CONFIG_HAVE_THP"
3221 fi
3222 if test "$libiscsi" = "yes" ; then
3223   output_sym "CONFIG_LIBISCSI"
3224   echo "CONFIG_LIBISCSI=m" >> $config_host_mak
3225   echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
3226   echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
3227 fi
3228 if test "$libnbd" = "yes" ; then
3229   output_sym "CONFIG_LIBNBD"
3230   echo "CONFIG_LIBNBD=m" >> $config_host_mak
3231   echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
3232   echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
3233 fi
3234 if test "$libnfs" = "yes" ; then
3235   output_sym "CONFIG_LIBNFS"
3236   echo "CONFIG_LIBNFS=m" >> $config_host_mak
3237   echo "LIBNFS_CFLAGS=$libnfs_cflags" >> $config_host_mak
3238   echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
3239 fi
3240 if test "$xnvme" = "yes" ; then
3241   output_sym "CONFIG_LIBXNVME"
3242   echo "LIBXNVME_CFLAGS=$xnvme_cflags" >> $config_host_mak
3243   echo "LIBXNVME_LIBS=$xnvme_libs" >> $config_host_mak
3244 fi
3245 if test "$dynamic_engines" = "yes" ; then
3246   output_sym "CONFIG_DYNAMIC_ENGINES"
3247 fi
3248 if test "$pdb" = yes; then
3249   output_sym "CONFIG_PDB"
3250 fi
3251 if test "$fcntl_sync" = "yes" ; then
3252   output_sym "CONFIG_FCNTL_SYNC"
3253 fi
3254 if test "$asan" = "yes"; then
3255   CFLAGS="$CFLAGS -fsanitize=address"
3256   LDFLAGS="$LDFLAGS -fsanitize=address"
3257 fi
3258 print_config "Lib-based ioengines dynamic" "$dynamic_engines"
3259 cat > $TMPC << EOF
3260 int main(int argc, char **argv)
3261 {
3262   return 0;
3263 }
3264 EOF
3265 if test "$disable_tcmalloc" != "yes"; then
3266   if compile_prog "" "-ltcmalloc" "tcmalloc"; then
3267     tcmalloc="yes"
3268     LIBS="-ltcmalloc $LIBS"
3269   elif compile_prog "" "-l:libtcmalloc_minimal.so.4" "tcmalloc_minimal4"; then
3270     tcmalloc="yes"
3271     LIBS="-l:libtcmalloc_minimal.so.4 $LIBS"
3272   else
3273     tcmalloc="no"
3274   fi
3275 fi
3276 print_config "TCMalloc support" "$tcmalloc"
3277
3278 echo "LIBS+=$LIBS" >> $config_host_mak
3279 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
3280 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
3281 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
3282 echo "CC=$cc" >> $config_host_mak
3283 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
3284 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
3285
3286 if [ `dirname $0` != "." -a ! -e Makefile ]; then
3287     cat > Makefile <<EOF
3288 SRCDIR:=`dirname $0`
3289 include \$(SRCDIR)/Makefile
3290 EOF
3291 fi