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