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