Merge branch 'issue-1735' of https://github.com/yygcode/fio
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this is easier than autoconf and enemies.
5 #
6
7 # set temporary file name
8 if test ! -z "$TMPDIR" ; then
9     TMPDIR1="${TMPDIR}"
10 elif test ! -z "$TEMPDIR" ; then
11     TMPDIR1="${TEMPDIR}"
12 else
13     TMPDIR1="/tmp"
14 fi
15
16 TMPC="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.c"
17 TMPC2="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}-2.c"
18 TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
19 TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
20
21 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
22 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
23 trap "rm -f $TMPC $TMPC2 $TMPO $TMPE" EXIT INT QUIT TERM
24
25 rm -rf config.log
26
27 config_host_mak="config-host.mak"
28 config_host_h="config-host.h"
29
30 rm -rf $config_host_mak
31 rm -rf $config_host_h
32
33 fatal() {
34   echo $@
35   echo "Configure failed, check config.log and/or the above output"
36   rm -rf $config_host_mak
37   rm -rf $config_host_h
38   exit 1
39 }
40
41 # Print result for each configuration test
42 print_config() {
43   printf "%-30s%s\n" "$1" "$2"
44 }
45
46 # Default CFLAGS
47 CFLAGS="-D_GNU_SOURCE -include config-host.h $CFLAGS"
48 CONFIGURE_CFLAGS="-Werror-implicit-function-declaration"
49 BUILD_CFLAGS=""
50
51 # Print a helpful header at the top of config.log
52 echo "# FIO configure log $(date)" >> config.log
53 printf "# Configured with:" >> config.log
54 printf " '%s'" "$0" "$@" >> config.log
55 echo >> config.log
56 echo "#" >> config.log
57
58 # Print configure header at the top of $config_host_h
59 echo "/*" > $config_host_h
60 echo " * Automatically generated by configure - do not modify" >> $config_host_h
61 printf " * Configured with:" >> $config_host_h
62 printf " * '%s'" "$0" "$@" >> $config_host_h
63 echo "" >> $config_host_h
64 echo " */" >> $config_host_h
65
66 do_cc() {
67     # Run the compiler, capturing its output to the log.
68     echo $cc "$@" >> config.log
69     $cc "$@" >> config.log 2>&1 || return $?
70     # Test passed. If this is an --enable-werror build, rerun
71     # the test with -Werror and bail out if it fails. This
72     # makes warning-generating-errors in configure test code
73     # obvious to developers.
74     if test "$werror" != "yes"; then
75         return 0
76     fi
77     # Don't bother rerunning the compile if we were already using -Werror
78     case "$*" in
79         *-Werror*)
80            return 0
81         ;;
82     esac
83     echo $cc -Werror "$@" >> config.log
84     $cc -Werror "$@" >> config.log 2>&1 && return $?
85     echo "ERROR: configure test passed without -Werror but failed with -Werror."
86     echo "This is probably a bug in the configure script. The failing command"
87     echo "will be at the bottom of config.log."
88     fatal "You can run configure with --disable-werror to bypass this check."
89 }
90
91 compile_object() {
92   do_cc $CFLAGS $CONFIGURE_CFLAGS -c -o $TMPO $TMPC
93 }
94
95 compile_prog() {
96   local_cflags="$1"
97   local_ldflags="$2 $LIBS"
98   echo "Compiling test case $3" >> config.log
99   do_cc $CFLAGS $CONFIGURE_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
100 }
101
102 feature_not_found() {
103   feature=$1
104   packages=$2
105
106   echo "ERROR"
107   echo "ERROR: User requested feature $feature"
108   if test ! -z "$packages" ; then
109     echo "ERROR: That feature needs $packages installed"
110   fi
111   echo "ERROR: configure was not able to find it"
112   fatal "ERROR"
113 }
114
115 has() {
116   type "$1" >/dev/null 2>&1
117 }
118
119 num() {
120   echo "$1" | grep -E -q "^[0-9]+$"
121 }
122
123 check_define() {
124   cat > $TMPC <<EOF
125 #if !defined($1)
126 #error $1 not defined
127 #endif
128 int main(void)
129 {
130   return 0;
131 }
132 EOF
133   compile_object
134 }
135
136 check_val() {
137     cat > $TMPC <<EOF
138 #if $1 == $2
139 int main(void)
140 {
141   return 0;
142 }
143 #else
144 #error $1 is not equal $2
145 #endif
146 EOF
147   compile_object
148 }
149
150 output_sym() {
151   echo "$1=y" >> $config_host_mak
152   echo "#define $1" >> $config_host_h
153 }
154
155 check_min_lib_version() {
156   _feature=$3
157
158   if pkg-config --atleast-version="$2" "$1" > /dev/null 2>&1; then
159     return 0
160   fi
161   : "${_feature:=${1}}"
162   if 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=$(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=$(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 vsock
1733 if test "$vsock" != "yes" ; then
1734   vsock="no"
1735 fi
1736 cat > $TMPC << EOF
1737 #include <sys/types.h>
1738 #include <sys/socket.h>
1739 #include <linux/vm_sockets.h>
1740 int main(int argc, char **argv)
1741 {
1742   return socket(AF_VSOCK, SOCK_STREAM, 0);
1743 }
1744 EOF
1745 if compile_prog "" "" "vsock"; then
1746   vsock="yes"
1747 fi
1748 print_config "vsock" "$vsock"
1749
1750 ##########################################
1751 # Check whether we have SO_SNDBUF
1752 if test "$window_size" != "yes" ; then
1753   window_size="no"
1754 fi
1755 cat > $TMPC << EOF
1756 #ifdef _WIN32
1757 #include <winsock2.h>
1758 #else
1759 #include <stdio.h>
1760 #include <sys/types.h>
1761 #include <sys/socket.h>
1762 #include <netinet/tcp.h>
1763 #endif
1764 int main(int argc, char **argv)
1765 {
1766   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1767   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1768 }
1769 EOF
1770 if compile_prog "" "" "SO_SNDBUF"; then
1771   window_size="yes"
1772 elif compile_prog "" "-lws2_32" "SO_SNDBUF"; then
1773   window_size="yes"
1774   LIBS="$LIBS -lws2_32"
1775 fi
1776 print_config "Net engine window_size" "$window_size"
1777
1778 ##########################################
1779 # Check whether we have TCP_MAXSEG
1780 if test "$mss" != "yes" ; then
1781   mss="no"
1782 fi
1783 cat > $TMPC << EOF
1784 #ifdef _WIN32
1785 #include <winsock2.h>
1786 #else
1787 #include <stdio.h>
1788 #include <sys/types.h>
1789 #include <sys/socket.h>
1790 #include <netinet/tcp.h>
1791 #include <arpa/inet.h>
1792 #include <netinet/in.h>
1793 #endif
1794 int main(int argc, char **argv)
1795 {
1796   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1797 }
1798 EOF
1799 if compile_prog "" "" "TCP_MAXSEG"; then
1800   mss="yes"
1801 elif compile_prog "" "-lws2_32" "TCP_MAXSEG"; then
1802   mss="yes"
1803   LIBS="$LIBS -lws2_32"
1804 fi
1805 print_config "TCP_MAXSEG" "$mss"
1806
1807 ##########################################
1808 # Check whether we have RLIMIT_MEMLOCK
1809 if test "$rlimit_memlock" != "yes" ; then
1810   rlimit_memlock="no"
1811 fi
1812 cat > $TMPC << EOF
1813 #include <sys/time.h>
1814 #include <sys/resource.h>
1815 int main(int argc, char **argv)
1816 {
1817   struct rlimit rl;
1818   return getrlimit(RLIMIT_MEMLOCK, &rl);
1819 }
1820 EOF
1821 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1822   rlimit_memlock="yes"
1823 fi
1824 print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1825
1826 ##########################################
1827 # Check whether we have pwritev/preadv
1828 if test "$pwritev" != "yes" ; then
1829   pwritev="no"
1830 fi
1831 cat > $TMPC << EOF
1832 #include <stdio.h>
1833 #include <sys/uio.h>
1834 int main(int argc, char **argv)
1835 {
1836   struct iovec iov[1] = { };
1837
1838   return pwritev(0, iov, 1, 0) + preadv(0, iov, 1, 0);
1839 }
1840 EOF
1841 if compile_prog "" "" "pwritev"; then
1842   pwritev="yes"
1843 fi
1844 print_config "pwritev/preadv" "$pwritev"
1845
1846 ##########################################
1847 # Check whether we have pwritev2/preadv2
1848 if test "$pwritev2" != "yes" ; then
1849   pwritev2="no"
1850 fi
1851 cat > $TMPC << EOF
1852 #include <stdio.h>
1853 #include <sys/uio.h>
1854 int main(int argc, char **argv)
1855 {
1856   struct iovec iov[1] = { };
1857
1858   return pwritev2(0, iov, 1, 0, 0) + preadv2(0, iov, 1, 0, 0);
1859 }
1860 EOF
1861 if compile_prog "" "" "pwritev2"; then
1862   pwritev2="yes"
1863 fi
1864 print_config "pwritev2/preadv2" "$pwritev2"
1865
1866 ##########################################
1867 # Check whether we have the required functions for ipv6
1868 if test "$ipv6" != "yes" ; then
1869   ipv6="no"
1870 fi
1871 cat > $TMPC << EOF
1872 #ifdef _WIN32
1873 #include <winsock2.h>
1874 #include <ws2tcpip.h>
1875 #else
1876 #include <sys/types.h>
1877 #include <sys/socket.h>
1878 #include <netinet/in.h>
1879 #include <netdb.h>
1880 #endif
1881 #include <stdio.h>
1882 int main(int argc, char **argv)
1883 {
1884   struct addrinfo hints = { };
1885   struct in6_addr addr = in6addr_any;
1886   int ret;
1887
1888   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1889   freeaddrinfo(NULL);
1890   printf("%s %d\n", gai_strerror(ret), addr.s6_addr[0]);
1891
1892   return 0;
1893 }
1894 EOF
1895 if compile_prog "" "" "ipv6"; then
1896   ipv6="yes"
1897 fi
1898 print_config "IPv6 helpers" "$ipv6"
1899
1900 ##########################################
1901 # check for http
1902 if test "$http" != "yes" ; then
1903   http="no"
1904 fi
1905 # check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
1906 cat > $TMPC << 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   ctx = HMAC_CTX_new();
1919   HMAC_CTX_reset(ctx);
1920   HMAC_CTX_free(ctx);
1921   return 0;
1922 }
1923 EOF
1924 # openssl < 1.1.0 uses the HMAC_CTX type directly
1925 cat > $TMPC2 << EOF
1926 #include <curl/curl.h>
1927 #include <openssl/hmac.h>
1928
1929 int main(int argc, char **argv)
1930 {
1931   CURL *curl;
1932   HMAC_CTX ctx;
1933
1934   curl = curl_easy_init();
1935   curl_easy_cleanup(curl);
1936
1937   HMAC_CTX_init(&ctx);
1938   HMAC_CTX_cleanup(&ctx);
1939   return 0;
1940 }
1941 EOF
1942 if test "$disable_http" != "yes"; then
1943   HTTP_LIBS="-lcurl -lssl -lcrypto"
1944   if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
1945     output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
1946     http="yes"
1947   elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
1948     http="yes"
1949   fi
1950 fi
1951 print_config "http engine" "$http"
1952
1953 ##########################################
1954 # check for rados
1955 if test "$rados" != "yes" ; then
1956   rados="no"
1957 fi
1958 cat > $TMPC << EOF
1959 #include <rados/librados.h>
1960
1961 int main(int argc, char **argv)
1962 {
1963   rados_t cluster;
1964   rados_ioctx_t io_ctx;
1965   const char cluster_name[] = "ceph";
1966   const char user_name[] = "client.admin";
1967   const char pool[] = "rados";
1968
1969   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1970   rados_create2(&cluster, cluster_name, user_name, 0);
1971   rados_ioctx_create(cluster, pool, &io_ctx);
1972
1973   return 0;
1974 }
1975 EOF
1976 if test "$disable_rados" != "yes"  && compile_prog "" "-lrados" "rados"; then
1977   rados="yes"
1978 fi
1979 print_config "Rados engine" "$rados"
1980
1981 ##########################################
1982 # check for rbd
1983 if test "$rbd" != "yes" ; then
1984   rbd="no"
1985 fi
1986 cat > $TMPC << EOF
1987 #include <rbd/librbd.h>
1988
1989 int main(int argc, char **argv)
1990 {
1991   rados_t cluster;
1992   rados_ioctx_t io_ctx;
1993   const char cluster_name[] = "ceph";
1994   const char user_name[] = "client.admin";
1995   const char pool[] = "rbd";
1996   int major, minor, extra;
1997
1998   rbd_version(&major, &minor, &extra);
1999   /* The rados_create2 signature required was only introduced in ceph 0.65 */
2000   rados_create2(&cluster, cluster_name, user_name, 0);
2001   rados_ioctx_create(cluster, pool, &io_ctx);
2002
2003   return 0;
2004 }
2005 EOF
2006 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
2007   rbd="yes"
2008 fi
2009 print_config "Rados Block Device engine" "$rbd"
2010
2011 ##########################################
2012 # check for rbd_poll
2013 if test "$rbd_poll" != "yes" ; then
2014   rbd_poll="no"
2015 fi
2016 if test "$rbd" = "yes"; then
2017 cat > $TMPC << EOF
2018 #include <rbd/librbd.h>
2019 #include <sys/eventfd.h>
2020
2021 int main(int argc, char **argv)
2022 {
2023   rbd_image_t image;
2024   rbd_completion_t comp;
2025
2026   int fd = eventfd(0, EFD_NONBLOCK);
2027   rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
2028   rbd_poll_io_events(image, comp, 1);
2029
2030   return 0;
2031 }
2032 EOF
2033 if compile_prog "" "-lrbd -lrados" "rbd"; then
2034   rbd_poll="yes"
2035 fi
2036 print_config "rbd_poll" "$rbd_poll"
2037 fi
2038
2039 ##########################################
2040 # check for rbd_invalidate_cache()
2041 if test "$rbd_inval" != "yes" ; then
2042   rbd_inval="no"
2043 fi
2044 if test "$rbd" = "yes"; then
2045 cat > $TMPC << EOF
2046 #include <rbd/librbd.h>
2047
2048 int main(int argc, char **argv)
2049 {
2050   rbd_image_t image;
2051
2052   return rbd_invalidate_cache(image);
2053 }
2054 EOF
2055 if compile_prog "" "-lrbd -lrados" "rbd"; then
2056   rbd_inval="yes"
2057 fi
2058 print_config "rbd_invalidate_cache" "$rbd_inval"
2059 fi
2060
2061 ##########################################
2062 # Check whether we have setvbuf
2063 if test "$setvbuf" != "yes" ; then
2064   setvbuf="no"
2065 fi
2066 cat > $TMPC << EOF
2067 #include <stdio.h>
2068 int main(int argc, char **argv)
2069 {
2070   FILE *f = NULL;
2071   char buf[80];
2072   setvbuf(f, buf, _IOFBF, sizeof(buf));
2073   return 0;
2074 }
2075 EOF
2076 if compile_prog "" "" "setvbuf"; then
2077   setvbuf="yes"
2078 fi
2079 print_config "setvbuf" "$setvbuf"
2080
2081 ##########################################
2082 # check for gfapi
2083 if test "$gfapi" != "yes" ; then
2084   gfapi="no"
2085 fi
2086 cat > $TMPC << EOF
2087 #include <glusterfs/api/glfs.h>
2088
2089 int main(int argc, char **argv)
2090 {
2091   glfs_t *g = glfs_new("foo");
2092
2093   return 0;
2094 }
2095 EOF
2096 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
2097   gfapi="yes"
2098 fi
2099 print_config "Gluster API engine" "$gfapi"
2100
2101 ##########################################
2102 # check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
2103 if test "$gfapi" = "yes" ; then
2104 gf_fadvise="no"
2105 cat > $TMPC << EOF
2106 #include <glusterfs/api/glfs.h>
2107
2108 int main(int argc, char **argv)
2109 {
2110   struct glfs_fd *fd;
2111   int ret = glfs_fadvise(fd, 0, 0, 1);
2112
2113   return 0;
2114 }
2115 EOF
2116 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
2117   gf_fadvise="yes"
2118 fi
2119 print_config "Gluster API use fadvise" "$gf_fadvise"
2120 fi
2121
2122 ##########################################
2123 # check for newer gfapi
2124 if test "$gfapi" = "yes" ; then
2125 gf_new="no"
2126 cat > $TMPC << EOF
2127 #include <glusterfs/api/glfs.h>
2128
2129 int main(int argc, char **argv)
2130 {
2131   return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
2132 }
2133 EOF
2134 if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
2135   gf_new="yes"
2136 fi
2137 print_config "Gluster new API" "$gf_new"
2138 fi
2139
2140 ##########################################
2141 # check for gfapi trim support
2142 if test "$gf_trim" != "yes" ; then
2143   gf_trim="no"
2144 fi
2145 if test "$gfapi" = "yes" ; then
2146 cat > $TMPC << EOF
2147 #include <glusterfs/api/glfs.h>
2148
2149 int main(int argc, char **argv)
2150 {
2151   return glfs_discard_async(NULL, 0, 0);
2152 }
2153 EOF
2154 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
2155   gf_trim="yes"
2156 fi
2157 print_config "Gluster API trim support" "$gf_trim"
2158 fi
2159
2160 ##########################################
2161 # Check if we support stckf on s390
2162 if test "$s390_z196_facilities" != "yes" ; then
2163   s390_z196_facilities="no"
2164 fi
2165 cat > $TMPC << EOF
2166 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
2167 int main(int argc, char **argv)
2168 {
2169     /* We want just 1 double word to be returned.  */
2170     register unsigned long reg0 asm("0") = 0;
2171     unsigned long stfle_bits;
2172     asm volatile(".machine push"        "\n\t"
2173                  ".machine \"z9-109\""  "\n\t"
2174                  "stfle %0"             "\n\t"
2175                  ".machine pop"         "\n"
2176                  : "=QS" (stfle_bits), "+d" (reg0)
2177                  : : "cc");
2178
2179     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
2180       return 0;
2181     else
2182       return -1;
2183 }
2184 EOF
2185 if compile_prog "" "" "s390_z196_facilities"; then
2186   $TMPE
2187   if [ $? -eq 0 ]; then
2188         s390_z196_facilities="yes"
2189   fi
2190 fi
2191 print_config "s390_z196_facilities" "$s390_z196_facilities"
2192
2193 ##########################################
2194 # Check if we have required environment variables configured for libhdfs
2195 if test "$libhdfs" = "yes" ; then
2196   hdfs_conf_error=0
2197   if test "$JAVA_HOME" = "" ; then
2198     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
2199     hdfs_conf_error=1
2200   fi
2201   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
2202     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs include path"
2203     hdfs_conf_error=1
2204   fi
2205   if test "$FIO_LIBHDFS_LIB" = "" ; then
2206     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
2207     hdfs_conf_error=1
2208   fi
2209   if test "$hdfs_conf_error" = "1" ; then
2210     feature_not_found "libhdfs" ""
2211   fi
2212   FIO_HDFS_CPU=$cpu
2213   if test "$FIO_HDFS_CPU" = "x86_64" ; then
2214     FIO_HDFS_CPU="amd64"
2215   fi
2216 fi
2217 print_config "HDFS engine" "$libhdfs"
2218
2219 ##########################################
2220 # Check whether we have MTD
2221 if test "$mtd" != "yes" ; then
2222   mtd="no"
2223 fi
2224 cat > $TMPC << EOF
2225 #include <string.h>
2226 #include <mtd/mtd-user.h>
2227 #include <sys/ioctl.h>
2228 int main(int argc, char **argv)
2229 {
2230   struct mtd_write_req ops;
2231   struct mtd_info_user info;
2232   memset(&ops, 0, sizeof(ops));
2233   info.type = MTD_MLCNANDFLASH;
2234   return ioctl(0, MEMGETINFO, &info);
2235 }
2236 EOF
2237 if compile_prog "" "" "mtd"; then
2238   mtd="yes"
2239 fi
2240 print_config "MTD" "$mtd"
2241
2242 ##########################################
2243 # Check whether we have libpmem
2244 if test "$libpmem" != "yes" ; then
2245   libpmem="no"
2246 fi
2247 cat > $TMPC << EOF
2248 #include <libpmem.h>
2249 #include <stdlib.h>
2250 int main(int argc, char **argv)
2251 {
2252   return pmem_is_pmem(NULL, 0);
2253 }
2254 EOF
2255 if compile_prog "" "-lpmem" "libpmem"; then
2256   libpmem="yes"
2257 fi
2258 print_config "libpmem" "$libpmem"
2259
2260 ##########################################
2261 # Check whether libpmem's version >= 1.5
2262 if test "$libpmem1_5" != "yes" ; then
2263   libpmem1_5="no"
2264 fi
2265 if test "$libpmem" = "yes"; then
2266   cat > $TMPC << EOF
2267 #include <libpmem.h>
2268 #include <stdlib.h>
2269 int main(int argc, char **argv)
2270 {
2271   pmem_memcpy(NULL, NULL, 0, 0);
2272   return 0;
2273 }
2274 EOF
2275   if compile_prog "" "-lpmem" "libpmem1_5"; then
2276     libpmem1_5="yes"
2277   fi
2278 fi
2279 print_config "libpmem1_5" "$libpmem1_5"
2280
2281 ##########################################
2282 # Check whether we have libpmem2
2283 if test "$libpmem2" != "yes" ; then
2284   libpmem2="no"
2285 fi
2286 cat > $TMPC << EOF
2287 #include <libpmem2.h>
2288 int main(int argc, char **argv)
2289 {
2290   struct pmem2_config *cfg;
2291   pmem2_config_new(&cfg);
2292   pmem2_config_delete(&cfg);
2293   return 0;
2294 }
2295 EOF
2296 if compile_prog "" "-lpmem2" "libpmem2"; then
2297   libpmem2="yes"
2298 fi
2299 print_config "libpmem2" "$libpmem2"
2300
2301 # Choose libpmem-based ioengines
2302 if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
2303   devdax="yes"
2304   if test "$libpmem1_5" = "yes"; then
2305     pmem="yes"
2306   fi
2307 fi
2308
2309 ##########################################
2310 # Report whether dev-dax engine is enabled
2311 print_config "PMDK dev-dax engine" "$devdax"
2312
2313 ##########################################
2314 # Report whether libpmem engine is enabled
2315 print_config "PMDK libpmem engine" "$pmem"
2316
2317 ##########################################
2318 # Check whether we support DDN's IME
2319 if test "$libime" != "yes" ; then
2320   libime="no"
2321 fi
2322 cat > $TMPC << EOF
2323 #include <ime_native.h>
2324 int main(int argc, char **argv)
2325 {
2326   int rc;
2327   ime_native_init();
2328   rc = ime_native_finalize();
2329   return 0;
2330 }
2331 EOF
2332 if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
2333   libime="yes"
2334   CFLAGS="-I${ime_path}/include $CFLAGS"
2335   LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
2336   LIBS="-lim_client $LIBS"
2337 fi
2338 print_config "DDN's Infinite Memory Engine" "$libime"
2339
2340 ##########################################
2341 # Check if we have libiscsi
2342 if test "$libiscsi" != "no" ; then
2343   if check_min_lib_version libiscsi 1.9.0; then
2344     libiscsi="yes"
2345     libiscsi_cflags=$(pkg-config --cflags libiscsi)
2346     libiscsi_libs=$(pkg-config --libs libiscsi)
2347   else
2348     libiscsi="no"
2349   fi
2350 fi
2351 print_config "iscsi engine" "$libiscsi"
2352
2353 ##########################################
2354 # Check if we have libnbd (for NBD support)
2355 if test "$libnbd" != "no" ; then
2356   if check_min_lib_version libnbd 0.9.8; then
2357     libnbd="yes"
2358     libnbd_cflags=$(pkg-config --cflags libnbd)
2359     libnbd_libs=$(pkg-config --libs libnbd)
2360   else
2361     libnbd="no"
2362   fi
2363 fi
2364 print_config "NBD engine" "$libnbd"
2365
2366 ##########################################
2367 # check for dfs (DAOS File System)
2368 if test "$dfs" != "no" ; then
2369   cat > $TMPC << EOF
2370 #include <fcntl.h>
2371 #include <daos.h>
2372 #include <daos_fs.h>
2373
2374 int main(int argc, char **argv)
2375 {
2376   daos_handle_t poh;
2377   daos_handle_t coh;
2378   dfs_t         *dfs;
2379
2380   (void) dfs_mount(poh, coh, O_RDWR, &dfs);
2381
2382   return 0;
2383 }
2384 EOF
2385   if compile_prog "" "-luuid -ldfs -ldaos" "dfs"; then
2386     dfs="yes"
2387   else
2388     dfs="no"
2389   fi
2390 fi
2391 print_config "DAOS File System (dfs) Engine" "$dfs"
2392
2393 ##########################################
2394 # Check if we have libnfs (for userspace nfs support).
2395 if test "$libnfs" != "no" ; then
2396   if $(pkg-config libnfs > /dev/null 2>&1); then
2397     libnfs="yes"
2398     libnfs_cflags=$(pkg-config --cflags libnfs)
2399     libnfs_libs=$(pkg-config --libs libnfs)
2400   else
2401     if test "$libnfs" = "yes" ; then
2402       feature_not_found "libnfs" "libnfs"
2403     fi
2404     libnfs="no"
2405   fi
2406 fi
2407 print_config "NFS engine" "$libnfs"
2408
2409 ##########################################
2410 # Check if we have lex/yacc available
2411 yacc="no"
2412 yacc_is_bison="no"
2413 lex="no"
2414 arith="no"
2415 if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
2416 if test "$targetos" != "SunOS" ; then
2417 if has lex; then
2418   lex="yes"
2419 fi
2420 if has bison; then
2421   yacc="yes"
2422   yacc_is_bison="yes"
2423 elif has yacc; then
2424   yacc="yes"
2425 fi
2426 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
2427   arith="yes"
2428 fi
2429
2430 if test "$arith" = "yes" ; then
2431 cat > $TMPC << EOF
2432 extern int yywrap(void);
2433
2434 int main(int argc, char **argv)
2435 {
2436   yywrap();
2437   return 0;
2438 }
2439 EOF
2440 if compile_prog "" "-lfl" "flex"; then
2441   LIBS="-lfl $LIBS"
2442 elif compile_prog "" "-ll" "lex"; then
2443   LIBS="-ll $LIBS"
2444 else
2445   arith="no"
2446 fi
2447 fi
2448 fi
2449 fi
2450
2451 # Check if lex fails using -o
2452 if test "$arith" = "yes" ; then
2453 if test "$force_no_lex_o" = "yes" ; then
2454   lex_use_o="no"
2455 else
2456 if lex -o lex.yy.c exp/expression-parser.l 2> /dev/null; then
2457   lex_use_o="yes"
2458 else
2459   lex_use_o="no"
2460 fi
2461 fi
2462 fi
2463
2464 print_config "lex/yacc for arithmetic" "$arith"
2465
2466 ##########################################
2467 # Check whether we have setmntent/getmntent
2468 if test "$getmntent" != "yes" ; then
2469   getmntent="no"
2470 fi
2471 cat > $TMPC << EOF
2472 #include <stdio.h>
2473 #include <mntent.h>
2474 int main(int argc, char **argv)
2475 {
2476   FILE *mtab = setmntent(NULL, "r");
2477   struct mntent *mnt = getmntent(mtab);
2478   endmntent(mtab);
2479   return mnt != NULL;
2480 }
2481 EOF
2482 if compile_prog "" "" "getmntent"; then
2483   getmntent="yes"
2484 fi
2485 print_config "getmntent" "$getmntent"
2486
2487 ##########################################
2488 # Check whether we have getmntinfo
2489 # These are originally added for BSDs, but may also work
2490 # on other operating systems with getmntinfo(3).
2491
2492 # getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
2493 # Note that NetBSD needs -Werror to catch warning as error.
2494 if test "$getmntinfo" != "yes" ; then
2495   getmntinfo="no"
2496 fi
2497 cat > $TMPC << EOF
2498 #include <stdio.h>
2499 #include <sys/param.h>
2500 #include <sys/mount.h>
2501 int main(int argc, char **argv)
2502 {
2503   struct statfs *st;
2504   return getmntinfo(&st, MNT_NOWAIT);
2505 }
2506 EOF
2507 if compile_prog "-Werror" "" "getmntinfo"; then
2508   getmntinfo="yes"
2509 fi
2510 print_config "getmntinfo" "$getmntinfo"
2511
2512 # getmntinfo(3) for NetBSD.
2513 if test "$getmntinfo_statvfs" != "yes" ; then
2514   getmntinfo_statvfs="no"
2515 fi
2516 cat > $TMPC << EOF
2517 #include <stdio.h>
2518 #include <sys/statvfs.h>
2519 int main(int argc, char **argv)
2520 {
2521   struct statvfs *st;
2522   return getmntinfo(&st, MNT_NOWAIT);
2523 }
2524 EOF
2525 # Skip the test if the one with statfs arg is detected.
2526 if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2527   getmntinfo_statvfs="yes"
2528   print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
2529 fi
2530
2531 ##########################################
2532 # Check whether we have _Static_assert
2533 if test "$static_assert" != "yes" ; then
2534   static_assert="no"
2535 fi
2536 cat > $TMPC << EOF
2537 #include <assert.h>
2538 #include <stdlib.h>
2539 #include <stddef.h>
2540
2541 struct foo {
2542   int a, b;
2543 };
2544
2545 int main(int argc, char **argv)
2546 {
2547   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
2548   return 0 ;
2549 }
2550 EOF
2551 if compile_prog "" "" "static_assert"; then
2552     static_assert="yes"
2553 fi
2554 print_config "Static Assert" "$static_assert"
2555
2556 ##########################################
2557 # Check whether we have bool / stdbool.h
2558 if test "$have_bool" != "yes" ; then
2559   have_bool="no"
2560 fi
2561 cat > $TMPC << EOF
2562 #include <stdbool.h>
2563 int main(int argc, char **argv)
2564 {
2565   bool var = true;
2566   return var != false;
2567 }
2568 EOF
2569 if compile_prog "" "" "bool"; then
2570   have_bool="yes"
2571 fi
2572 print_config "bool" "$have_bool"
2573
2574 ##########################################
2575 # Check whether we have strndup()
2576 strndup="no"
2577 cat > $TMPC << EOF
2578 #include <string.h>
2579 #include <stdlib.h>
2580 int main(int argc, char **argv)
2581 {
2582   char *res = strndup("test string", 8);
2583
2584   free(res);
2585   return 0;
2586 }
2587 EOF
2588 if compile_prog "" "" "strndup"; then
2589   strndup="yes"
2590 fi
2591 print_config "strndup" "$strndup"
2592
2593 ##########################################
2594 # <valgrind/drd.h> probe
2595 # Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2596 # also available but not the other way around.
2597 if test "$valgrind_dev" != "yes" ; then
2598   valgrind_dev="no"
2599 fi
2600 cat > $TMPC << EOF
2601 #include <valgrind/drd.h>
2602 int main(int argc, char **argv)
2603 {
2604   return 0;
2605 }
2606 EOF
2607 if compile_prog "" "" "valgrind_dev"; then
2608   valgrind_dev="yes"
2609 fi
2610 print_config "Valgrind headers" "$valgrind_dev"
2611
2612 if test "$targetos" = "Linux" || test "$targetos" = "Android"; then
2613 ##########################################
2614 # <linux/blkzoned.h> probe
2615 if test "$linux_blkzoned" != "yes" ; then
2616   linux_blkzoned="no"
2617 fi
2618 cat > $TMPC << EOF
2619 #include <linux/blkzoned.h>
2620 int main(int argc, char **argv)
2621 {
2622   return 0;
2623 }
2624 EOF
2625 if compile_prog "" "" "linux_blkzoned"; then
2626   linux_blkzoned="yes"
2627 fi
2628 print_config "Zoned block device support" "$linux_blkzoned"
2629
2630 ##########################################
2631 # Check BLK_ZONE_REP_CAPACITY
2632 cat > $TMPC << EOF
2633 #include <linux/blkzoned.h>
2634 int main(void)
2635 {
2636   return BLK_ZONE_REP_CAPACITY;
2637 }
2638 EOF
2639 if compile_prog "" "" "blkzoned report capacity"; then
2640   output_sym "CONFIG_HAVE_REP_CAPACITY"
2641   rep_capacity="yes"
2642 else
2643   rep_capacity="no"
2644 fi
2645 print_config "Zoned block device capacity" "$rep_capacity"
2646 fi
2647
2648 ##########################################
2649 # libzbc probe
2650 cat > $TMPC << EOF
2651 #include <libzbc/zbc.h>
2652 int main(int argc, char **argv)
2653 {
2654   struct zbc_device *dev = NULL;
2655
2656   return zbc_open("foo=bar", O_RDONLY, &dev);
2657 }
2658 EOF
2659 if test "$libzbc" != "no" ; then
2660   if [ -e /usr/include/libzbc/libzbc ]; then
2661     # SUSE Linux.
2662     CFLAGS="$CFLAGS -I/usr/include/libzbc"
2663   fi
2664   if compile_prog "" "-lzbc" "libzbc"; then
2665     libzbc="yes"
2666     if ! check_min_lib_version libzbc 5; then
2667       libzbc="no"
2668     fi
2669   else
2670     if test "$libzbc" = "yes" ; then
2671       feature_not_found "libzbc" "libzbc or libzbc/zbc.h"
2672     fi
2673     libzbc="no"
2674   fi
2675 fi
2676 print_config "libzbc engine" "$libzbc"
2677
2678 if test "$targetos" = "Linux" || test "$targetos" = "Android"; then
2679 ##########################################
2680 # Check NVME_URING_CMD support
2681 cat > $TMPC << EOF
2682 #include <linux/nvme_ioctl.h>
2683 int main(void)
2684 {
2685   return sizeof(struct nvme_uring_cmd);
2686 }
2687 EOF
2688 if compile_prog "" "" "nvme uring cmd"; then
2689   output_sym "CONFIG_NVME_URING_CMD"
2690   nvme_uring_cmd="yes"
2691 else
2692   nvme_uring_cmd="no"
2693 fi
2694 print_config "NVMe uring command support" "$nvme_uring_cmd"
2695 fi
2696
2697 ##########################################
2698 # Check if we have xnvme
2699 if test "$xnvme" != "no" ; then
2700   if check_min_lib_version xnvme 0.7.4; then
2701     xnvme="yes"
2702     xnvme_cflags=$(pkg-config --cflags xnvme)
2703     xnvme_libs=$(pkg-config --libs xnvme)
2704   else
2705     xnvme="no"
2706   fi
2707 fi
2708 print_config "xnvme engine" "$xnvme"
2709
2710 if test "$targetos" = "Linux" ; then
2711 ##########################################
2712 # Check ISA-L support
2713 cat > $TMPC << EOF
2714 #include <isa-l/crc.h>
2715 #include <stddef.h>
2716 int main(void)
2717 {
2718   return crc16_t10dif(0, NULL, 4096);
2719 }
2720 EOF
2721 if test "$isal" != "no" ; then
2722   if compile_prog "" "-lisal" "ISAL"; then
2723     isal="yes"
2724     LIBS="-lisal $LIBS"
2725   else
2726     isal="no"
2727   fi
2728 fi
2729 print_config "isal" "$isal"
2730 fi
2731
2732 ##########################################
2733 # Check if we have libblkio
2734 if test "$libblkio" != "no" ; then
2735   if check_min_lib_version blkio 1.0.0; then
2736     libblkio="yes"
2737     libblkio_cflags=$(pkg-config --cflags blkio)
2738     libblkio_libs=$(pkg-config --libs blkio)
2739   else
2740     if test "$libblkio" = "yes" ; then
2741       feature_not_found "libblkio" "libblkio-dev or libblkio-devel"
2742     fi
2743     libblkio="no"
2744   fi
2745 fi
2746 print_config "libblkio engine" "$libblkio"
2747
2748 ##########################################
2749 # check march=armv8-a+crc+crypto
2750 march_armv8_a_crc_crypto="no"
2751 if test "$cpu" = "arm64" ; then
2752   cat > $TMPC <<EOF
2753 #if __linux__
2754 #include <arm_acle.h>
2755 #include <arm_neon.h>
2756 #include <sys/auxv.h>
2757 #endif
2758
2759 int main(void)
2760 {
2761   /* Can we also do a runtime probe? */
2762 #if __linux__
2763   return getauxval(AT_HWCAP);
2764 #elif defined(__APPLE__)
2765   return 0;
2766 #else
2767 # error "Don't know how to do runtime probe for ARM CRC32c"
2768 #endif
2769 }
2770 EOF
2771   if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
2772     march_armv8_a_crc_crypto="yes"
2773     CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
2774     march_set="yes"
2775   fi
2776 fi
2777 print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2778
2779 ##########################################
2780 # cuda probe
2781 if test "$cuda" != "no" ; then
2782 cat > $TMPC << EOF
2783 #include <cuda.h>
2784 int main(int argc, char **argv)
2785 {
2786   return cuInit(0);
2787 }
2788 EOF
2789   if compile_prog "" "-lcuda" "cuda"; then
2790     cuda="yes"
2791     LIBS="-lcuda $LIBS"
2792   else
2793     if test "$cuda" = "yes" ; then
2794       feature_not_found "cuda" ""
2795     fi
2796     cuda="no"
2797   fi
2798 fi
2799 print_config "cuda" "$cuda"
2800
2801 ##########################################
2802 # libcufile probe
2803 if test "$libcufile" != "no" ; then
2804 cat > $TMPC << EOF
2805 #include <cufile.h>
2806
2807 int main(int argc, char* argv[]) {
2808    cuFileDriverOpen();
2809    return 0;
2810 }
2811 EOF
2812   if compile_prog "" "-lcuda -lcudart -lcufile -ldl" "libcufile"; then
2813     libcufile="yes"
2814     LIBS="-lcuda -lcudart -lcufile -ldl $LIBS"
2815   else
2816     if test "$libcufile" = "yes" ; then
2817       feature_not_found "libcufile" ""
2818     fi
2819     libcufile="no"
2820   fi
2821 fi
2822 print_config "libcufile" "$libcufile"
2823
2824 ##########################################
2825 # check for cc -march=native
2826 build_native="no"
2827 cat > $TMPC << EOF
2828 int main(int argc, char **argv)
2829 {
2830   return 0;
2831 }
2832 EOF
2833 if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2834    compile_prog "-march=native" "" "march=native"; then
2835   build_native="yes"
2836 fi
2837 print_config "Build march=native" "$build_native"
2838
2839 ##########################################
2840 # check for -lcunit
2841 if test "$cunit" != "yes" ; then
2842   cunit="no"
2843 fi
2844 cat > $TMPC << EOF
2845 #include <CUnit/CUnit.h>
2846 #include <CUnit/Basic.h>
2847 int main(void)
2848 {
2849   if (CU_initialize_registry() != CUE_SUCCESS)
2850     return CU_get_error();
2851   CU_basic_set_mode(CU_BRM_VERBOSE);
2852   CU_basic_run_tests();
2853   CU_cleanup_registry();
2854   return CU_get_error();
2855 }
2856 EOF
2857 if compile_prog "" "-lcunit" "CUnit"; then
2858   cunit="yes"
2859 fi
2860 print_config "CUnit" "$cunit"
2861
2862 ##########################################
2863 # check for __kernel_rwf_t
2864 __kernel_rwf_t="no"
2865 cat > $TMPC << EOF
2866 #include <linux/fs.h>
2867 int main(int argc, char **argv)
2868 {
2869   __kernel_rwf_t x;
2870   x = 0;
2871   return x;
2872 }
2873 EOF
2874 if compile_prog "" "" "__kernel_rwf_t"; then
2875   __kernel_rwf_t="yes"
2876 fi
2877 print_config "__kernel_rwf_t" "$__kernel_rwf_t"
2878
2879 ##########################################
2880 # check if gcc has -Wimplicit-fallthrough=2
2881 fallthrough="no"
2882 cat > $TMPC << EOF
2883 int main(int argc, char **argv)
2884 {
2885   return 0;
2886 }
2887 EOF
2888 if compile_prog "-Wimplicit-fallthrough=2" "" "-Wimplicit-fallthrough=2"; then
2889   fallthrough="yes"
2890 fi
2891 print_config "-Wimplicit-fallthrough=2" "$fallthrough"
2892
2893 ##########################################
2894 # check if the compiler has -Wno-stringop-concatenation
2895 no_stringop="no"
2896 cat > $TMPC << EOF
2897 #include <stdio.h>
2898
2899 int main(int argc, char **argv)
2900 {
2901         return printf("%s\n", argv[0]);
2902 }
2903 EOF
2904 if compile_prog "-Wno-stringop-truncation -Werror" "" "no_stringop"; then
2905   no_stringop="yes"
2906 fi
2907 print_config "-Wno-stringop-truncation" "$no_stringop"
2908
2909 ##########################################
2910 # check for MADV_HUGEPAGE support
2911 if test "$thp" != "yes" ; then
2912   thp="no"
2913 fi
2914 if test "$esx" != "yes" ; then
2915   cat > $TMPC <<EOF
2916 #include <sys/mman.h>
2917 int main(void)
2918 {
2919   return madvise(0, 0x1000, MADV_HUGEPAGE);
2920 }
2921 EOF
2922   if compile_prog "" "" "thp" ; then
2923     thp=yes
2924   else
2925     if test "$thp" = "yes" ; then
2926       feature_not_found "Transparent Huge Page" ""
2927     fi
2928     thp=no
2929   fi
2930 fi
2931 print_config "MADV_HUGEPAGE" "$thp"
2932
2933 ##########################################
2934 # check for gettid()
2935 gettid="no"
2936 cat > $TMPC << EOF
2937 #include <unistd.h>
2938 int main(int argc, char **argv)
2939 {
2940   return gettid();
2941 }
2942 EOF
2943 if compile_prog "" "" "gettid"; then
2944   gettid="yes"
2945 fi
2946 print_config "gettid" "$gettid"
2947
2948 ##########################################
2949 # check for statx(2) support by libc
2950 statx="no"
2951 cat > $TMPC << EOF
2952 #include <unistd.h>
2953 #include <sys/stat.h>
2954
2955 int main(int argc, char **argv)
2956 {
2957         struct statx st;
2958         return statx(-1, *argv, 0, 0, &st);
2959 }
2960 EOF
2961 if compile_prog "" "" "statx"; then
2962   statx="yes"
2963 fi
2964 print_config "statx(2)/libc" "$statx"
2965
2966 ##########################################
2967 # check for statx(2) support by kernel
2968 statx_syscall="no"
2969 cat > $TMPC << EOF
2970 #include <unistd.h>
2971 #include <linux/stat.h>
2972 #include <sys/stat.h>
2973 #include <sys/syscall.h>
2974
2975 static int _statx(int dfd, const char *pathname, int flags, unsigned int mask,
2976                   struct statx *buffer)
2977 {
2978         return syscall(__NR_statx, dfd, pathname, flags, mask, buffer);
2979 }
2980
2981 int main(int argc, char **argv)
2982 {
2983         struct statx st;
2984         return _statx(-1, *argv, 0, 0, &st);
2985 }
2986 EOF
2987 if compile_prog "" "" "statx_syscall"; then
2988   statx_syscall="yes"
2989 fi
2990 print_config "statx(2)/syscall" "$statx_syscall"
2991
2992 ##########################################
2993 # check for Windows PDB generation support
2994 if test "pdb" != "no" ; then
2995   cat > $TMPC <<EOF
2996 int main(void)
2997 {
2998   return 0;
2999 }
3000 EOF
3001   if compile_prog "-g -gcodeview" "-fuse-ld=lld -Wl,-pdb,$TMPO" "pdb"; then
3002     pdb=yes
3003   else
3004     if test "$pdb" = "yes"; then
3005       feature_not_found "PDB" "clang and lld"
3006     fi
3007     pdb=no
3008   fi
3009 else
3010   pdb=no
3011 fi
3012 print_config "Windows PDB generation" "$pdb"
3013
3014 ##########################################
3015 # check for timerfd support
3016 timerfd_create="no"
3017 if test "$esx" != "yes" ; then
3018 cat > $TMPC << EOF
3019 #include <sys/time.h>
3020 #include <sys/timerfd.h>
3021
3022 int main(int argc, char **argv)
3023 {
3024         return timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
3025 }
3026 EOF
3027   if compile_prog "" "" "timerfd_create"; then
3028     timerfd_create="yes"
3029   fi
3030 fi
3031 print_config "timerfd_create" "$timerfd_create"
3032
3033 #############################################################################
3034
3035 if test "$wordsize" = "64" ; then
3036   output_sym "CONFIG_64BIT"
3037 elif test "$wordsize" = "32" ; then
3038   output_sym "CONFIG_32BIT"
3039 else
3040   fatal "Unknown wordsize!"
3041 fi
3042 if test "$bigendian" = "yes" ; then
3043   output_sym "CONFIG_BIG_ENDIAN"
3044 else
3045   output_sym "CONFIG_LITTLE_ENDIAN"
3046 fi
3047 if test "$zlib" = "yes" ; then
3048   output_sym "CONFIG_ZLIB"
3049 fi
3050 if test "$libaio" = "yes" ; then
3051   output_sym "CONFIG_LIBAIO"
3052   if test "$libaio_rw_flags" = "yes" ; then
3053     output_sym "CONFIG_LIBAIO_RW_FLAGS"
3054   fi
3055 fi
3056 if test "$posix_aio" = "yes" ; then
3057   output_sym "CONFIG_POSIXAIO"
3058 fi
3059 if test "$posix_aio_fsync" = "yes" ; then
3060   output_sym "CONFIG_POSIXAIO_FSYNC"
3061 fi
3062 if test "$posix_pshared" = "yes" ; then
3063   output_sym "CONFIG_PSHARED"
3064 fi
3065 if test "$pthread_condattr_setclock" = "yes" ; then
3066   output_sym "CONFIG_PTHREAD_CONDATTR_SETCLOCK"
3067 fi
3068 if test "$pthread_sigmask" = "yes" ; then
3069   output_sym "CONFIG_PTHREAD_SIGMASK"
3070 fi
3071 if test "$pthread_getaffinity" = "yes" ; then
3072   output_sym "CONFIG_PTHREAD_GETAFFINITY"
3073 fi
3074 if test "$have_asprintf" = "yes" ; then
3075     output_sym "CONFIG_HAVE_ASPRINTF"
3076 fi
3077 if test "$have_vasprintf" = "yes" ; then
3078     output_sym "CONFIG_HAVE_VASPRINTF"
3079 fi
3080 if test "$linux_fallocate" = "yes" ; then
3081   output_sym "CONFIG_LINUX_FALLOCATE"
3082 fi
3083 if test "$posix_fallocate" = "yes" ; then
3084   output_sym "CONFIG_POSIX_FALLOCATE"
3085 fi
3086 if test "$fdatasync" = "yes" ; then
3087   output_sym "CONFIG_FDATASYNC"
3088 fi
3089 if test "$pipe" = "yes" ; then
3090   output_sym "CONFIG_PIPE"
3091 fi
3092 if test "$pipe2" = "yes" ; then
3093   output_sym "CONFIG_PIPE2"
3094 fi
3095 if test "$pread" = "yes" ; then
3096   output_sym "CONFIG_PREAD"
3097 fi
3098 if test "$sync_file_range" = "yes" ; then
3099   output_sym "CONFIG_SYNC_FILE_RANGE"
3100 fi
3101 if test "$ASharedMemory_create" = "yes" ; then
3102   output_sym "CONFIG_ASHAREDMEMORY_CREATE"
3103 fi
3104 if test "$sfaa" = "yes" ; then
3105   output_sym "CONFIG_SFAA"
3106 fi
3107 if test "$sync_sync" = "yes" ; then
3108   output_sym "CONFIG_SYNC_SYNC"
3109 fi
3110 if test "$cmp_swap" = "yes" ; then
3111   output_sym "CONFIG_CMP_SWAP"
3112 fi
3113 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
3114   output_sym "CONFIG_RDMA"
3115 fi
3116 # librpma is supported on the 'x86_64' architecture for now
3117 if test "$cpu" = "x86_64" -a "$libverbs" = "yes" -a "$rdmacm" = "yes" \
3118     -a "$librpma" = "yes" \
3119     && test "$libpmem" = "yes" -o "$libpmem2" = "yes" ; then
3120   output_sym "CONFIG_LIBRPMA_APM"
3121 fi
3122 if test "$cpu" = "x86_64" -a "$libverbs" = "yes" -a "$rdmacm" = "yes" \
3123     -a "$librpma" = "yes" -a "$libprotobuf_c" = "yes" \
3124     && test "$libpmem" = "yes" -o "$libpmem2" = "yes" ; then
3125   output_sym "CONFIG_LIBRPMA_GPSPM"
3126 fi
3127 if test "$clock_gettime" = "yes" ; then
3128   output_sym "CONFIG_CLOCK_GETTIME"
3129 fi
3130 if test "$clock_monotonic" = "yes" ; then
3131   output_sym "CONFIG_CLOCK_MONOTONIC"
3132 fi
3133 if test "$clockid_t" = "yes"; then
3134   output_sym "CONFIG_CLOCKID_T"
3135 fi
3136 if test "$gettimeofday" = "yes" ; then
3137   output_sym "CONFIG_GETTIMEOFDAY"
3138 fi
3139 if test "$posix_fadvise" = "yes" ; then
3140   output_sym "CONFIG_POSIX_FADVISE"
3141 fi
3142 if test "$linux_3arg_affinity" = "yes" ; then
3143   output_sym "CONFIG_3ARG_AFFINITY"
3144 elif test "$linux_2arg_affinity" = "yes" ; then
3145   output_sym "CONFIG_2ARG_AFFINITY"
3146 fi
3147 if test "$strsep" = "yes" ; then
3148   output_sym "CONFIG_STRSEP"
3149 fi
3150 if test "$strcasestr" = "yes" ; then
3151   output_sym "CONFIG_STRCASESTR"
3152 fi
3153 if test "$strlcat" = "yes" ; then
3154   output_sym "CONFIG_STRLCAT"
3155 fi
3156 if test "$getopt_long_only" = "yes" ; then
3157   output_sym "CONFIG_GETOPT_LONG_ONLY"
3158 fi
3159 if test "$inet_aton" = "yes" ; then
3160   output_sym "CONFIG_INET_ATON"
3161 fi
3162 if test "$socklen_t" = "yes" ; then
3163   output_sym "CONFIG_SOCKLEN_T"
3164 fi
3165 if test "$ext4_me" = "yes" ; then
3166   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
3167 fi
3168 if test "$linux_splice" = "yes" ; then
3169   output_sym "CONFIG_LINUX_SPLICE"
3170 fi
3171 if test "$libnuma_v2" = "yes" ; then
3172   output_sym "CONFIG_LIBNUMA"
3173 fi
3174 if test "$solaris_aio" = "yes" ; then
3175   output_sym "CONFIG_SOLARISAIO"
3176 fi
3177 if test "$tls_thread" = "yes" ; then
3178   output_sym "CONFIG_TLS_THREAD"
3179 fi
3180 if test "$rusage_thread" = "yes" ; then
3181   output_sym "CONFIG_RUSAGE_THREAD"
3182 fi
3183 if test "$gfio" = "yes" ; then
3184   output_sym "CONFIG_GFIO"
3185 fi
3186 if test "$esx" = "yes" ; then
3187   output_sym "CONFIG_ESX"
3188   output_sym "CONFIG_NO_SHM"
3189 fi
3190 if test "$sched_idle" = "yes" ; then
3191   output_sym "CONFIG_SCHED_IDLE"
3192 fi
3193 if test "$tcp_nodelay" = "yes" ; then
3194   output_sym "CONFIG_TCP_NODELAY"
3195 fi
3196 if test "$window_size" = "yes" ; then
3197   output_sym "CONFIG_NET_WINDOWSIZE"
3198 fi
3199 if test "$mss" = "yes" ; then
3200   output_sym "CONFIG_NET_MSS"
3201 fi
3202 if test "$rlimit_memlock" = "yes" ; then
3203   output_sym "CONFIG_RLIMIT_MEMLOCK"
3204 fi
3205 if test "$pwritev" = "yes" ; then
3206   output_sym "CONFIG_PWRITEV"
3207 fi
3208 if test "$pwritev2" = "yes" ; then
3209   output_sym "CONFIG_PWRITEV2"
3210 fi
3211 if test "$ipv6" = "yes" ; then
3212   output_sym "CONFIG_IPV6"
3213 fi
3214 if test "$vsock" = "yes"; then
3215   output_sym "CONFIG_VSOCK"
3216 fi
3217 if test "$http" = "yes" ; then
3218   output_sym "CONFIG_HTTP"
3219 fi
3220 if test "$rados" = "yes" ; then
3221   output_sym "CONFIG_RADOS"
3222 fi
3223 if test "$rbd" = "yes" ; then
3224   output_sym "CONFIG_RBD"
3225 fi
3226 if test "$rbd_poll" = "yes" ; then
3227   output_sym "CONFIG_RBD_POLL"
3228 fi
3229 if test "$rbd_inval" = "yes" ; then
3230   output_sym "CONFIG_RBD_INVAL"
3231 fi
3232 if test "$setvbuf" = "yes" ; then
3233   output_sym "CONFIG_SETVBUF"
3234 fi
3235 if test "$s390_z196_facilities" = "yes" ; then
3236   output_sym "CONFIG_S390_Z196_FACILITIES"
3237   CFLAGS="$CFLAGS -march=z9-109"
3238   march_set="yes"
3239 fi
3240 if test "$gfapi" = "yes" ; then
3241   output_sym "CONFIG_GFAPI"
3242 fi
3243 if test "$gf_fadvise" = "yes" ; then
3244   output_sym "CONFIG_GF_FADVISE"
3245 fi
3246 if test "$gf_trim" = "yes" ; then
3247   output_sym "CONFIG_GF_TRIM"
3248 fi
3249 if test "$gf_new" = "yes" ; then
3250   output_sym "CONFIG_GF_NEW_API"
3251 fi
3252 if test "$libhdfs" = "yes" ; then
3253   output_sym "CONFIG_LIBHDFS"
3254   echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
3255   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
3256   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
3257   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
3258 fi
3259 if test "$mtd" = "yes" ; then
3260   output_sym "CONFIG_MTD"
3261 fi
3262 if test "$devdax" = "yes" ; then
3263   output_sym "CONFIG_LINUX_DEVDAX"
3264 fi
3265 if test "$pmem" = "yes" ; then
3266   output_sym "CONFIG_LIBPMEM"
3267 fi
3268 if test "$libpmem2" = "yes" ; then
3269   output_sym "CONFIG_LIBPMEM2_INSTALLED"
3270 fi
3271 if test "$libime" = "yes" ; then
3272   output_sym "CONFIG_IME"
3273 fi
3274 if test "$arith" = "yes" ; then
3275   output_sym "CONFIG_ARITHMETIC"
3276   if test "$yacc_is_bison" = "yes" ; then
3277     echo "YACC=bison -y" >> $config_host_mak
3278   else
3279     echo "YACC=yacc" >> $config_host_mak
3280   fi
3281   if test "$lex_use_o" = "yes" ; then
3282     echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
3283   fi
3284 fi
3285 if test "$getmntent" = "yes" ; then
3286   output_sym "CONFIG_GETMNTENT"
3287 fi
3288 if test "$getmntinfo" = "yes" ; then
3289   output_sym "CONFIG_GETMNTINFO"
3290 fi
3291 if test "$getmntinfo_statvfs" = "yes" ; then
3292   output_sym "CONFIG_GETMNTINFO_STATVFS"
3293 fi
3294 if test "$static_assert" = "yes" ; then
3295   output_sym "CONFIG_STATIC_ASSERT"
3296 fi
3297 if test "$have_bool" = "yes" ; then
3298   output_sym "CONFIG_HAVE_BOOL"
3299 fi
3300 if test "$strndup" = "yes" ; then
3301   output_sym "CONFIG_HAVE_STRNDUP"
3302 fi
3303 if test "$disable_opt" = "yes" ; then
3304   output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
3305 fi
3306 if test "$valgrind_dev" = "yes"; then
3307   output_sym "CONFIG_VALGRIND_DEV"
3308 fi
3309 if test "$linux_blkzoned" = "yes" ; then
3310   output_sym "CONFIG_HAS_BLKZONED"
3311 fi
3312 if test "$libzbc" = "yes" ; then
3313   output_sym "CONFIG_LIBZBC"
3314 fi
3315 if test "$zlib" = "no" ; then
3316   echo "Consider installing zlib1g-dev (zlib-devel) as some fio features depend on it."
3317   if test "$build_static" = "yes"; then
3318     echo "Note that some distros have separate packages for static libraries."
3319   fi
3320 fi
3321 if test "$march_armv8_a_crc_crypto" = "yes" ; then
3322   output_sym "ARCH_HAVE_CRC_CRYPTO"
3323 fi
3324 if test "$cuda" = "yes" ; then
3325   output_sym "CONFIG_CUDA"
3326 fi
3327 if test "$libcufile" = "yes" ; then
3328   output_sym "CONFIG_LIBCUFILE"
3329 fi
3330 if test "$dfs" = "yes" ; then
3331   output_sym "CONFIG_DFS"
3332 fi
3333 if test "$march_set" = "no" && test "$build_native" = "yes" ; then
3334   output_sym "CONFIG_BUILD_NATIVE"
3335 fi
3336 if test "$cunit" = "yes" ; then
3337   output_sym "CONFIG_HAVE_CUNIT"
3338 fi
3339 if test "$__kernel_rwf_t" = "yes"; then
3340   output_sym "CONFIG_HAVE_KERNEL_RWF_T"
3341 fi
3342 if test "$gettid" = "yes"; then
3343   output_sym "CONFIG_HAVE_GETTID"
3344 fi
3345 if test "$statx" = "yes"; then
3346   output_sym "CONFIG_HAVE_STATX"
3347 fi
3348 if test "$statx_syscall" = "yes"; then
3349   output_sym "CONFIG_HAVE_STATX_SYSCALL"
3350 fi
3351 if test "$timerfd_create" = "yes"; then
3352   output_sym "CONFIG_HAVE_TIMERFD_CREATE"
3353 fi
3354 if test "$fallthrough" = "yes"; then
3355   CFLAGS="$CFLAGS -Wimplicit-fallthrough"
3356 fi
3357 if test "$no_stringop" = "yes"; then
3358   output_sym "CONFIG_HAVE_NO_STRINGOP"
3359 fi
3360 if test "$thp" = "yes" ; then
3361   output_sym "CONFIG_HAVE_THP"
3362 fi
3363 if test "$libiscsi" = "yes" ; then
3364   output_sym "CONFIG_LIBISCSI"
3365   echo "CONFIG_LIBISCSI=m" >> $config_host_mak
3366   echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
3367   echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
3368 fi
3369 if test "$libnbd" = "yes" ; then
3370   output_sym "CONFIG_LIBNBD"
3371   echo "CONFIG_LIBNBD=m" >> $config_host_mak
3372   echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
3373   echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
3374 fi
3375 if test "$libnfs" = "yes" ; then
3376   output_sym "CONFIG_LIBNFS"
3377   echo "LIBNFS_CFLAGS=$libnfs_cflags" >> $config_host_mak
3378   echo "LIBNFS_LIBS=$libnfs_libs" >> $config_host_mak
3379 fi
3380 if test "$xnvme" = "yes" ; then
3381   output_sym "CONFIG_LIBXNVME"
3382   echo "LIBXNVME_CFLAGS=$xnvme_cflags" >> $config_host_mak
3383   echo "LIBXNVME_LIBS=$xnvme_libs" >> $config_host_mak
3384 fi
3385 if test "$isal" = "yes" ; then
3386   output_sym "CONFIG_LIBISAL"
3387 fi
3388 if test "$libblkio" = "yes" ; then
3389   output_sym "CONFIG_LIBBLKIO"
3390   echo "LIBBLKIO_CFLAGS=$libblkio_cflags" >> $config_host_mak
3391   echo "LIBBLKIO_LIBS=$libblkio_libs" >> $config_host_mak
3392 fi
3393 if test "$dynamic_engines" = "yes" ; then
3394   output_sym "CONFIG_DYNAMIC_ENGINES"
3395 fi
3396 if test "$pdb" = yes; then
3397   output_sym "CONFIG_PDB"
3398 fi
3399 if test "$fcntl_sync" = "yes" ; then
3400   output_sym "CONFIG_FCNTL_SYNC"
3401 fi
3402 if test "$asan" = "yes"; then
3403   CFLAGS="$CFLAGS -fsanitize=address"
3404   LDFLAGS="$LDFLAGS -fsanitize=address"
3405 fi
3406 print_config "Lib-based ioengines dynamic" "$dynamic_engines"
3407 cat > $TMPC << EOF
3408 int main(int argc, char **argv)
3409 {
3410   return 0;
3411 }
3412 EOF
3413 if test "$disable_tcmalloc" != "yes"; then
3414   if compile_prog "" "-ltcmalloc" "tcmalloc"; then
3415     tcmalloc="yes"
3416     LIBS="-ltcmalloc $LIBS"
3417   elif compile_prog "" "-l:libtcmalloc_minimal.so.4" "tcmalloc_minimal4"; then
3418     tcmalloc="yes"
3419     LIBS="-l:libtcmalloc_minimal.so.4 $LIBS"
3420   else
3421     tcmalloc="no"
3422   fi
3423 fi
3424 print_config "TCMalloc support" "$tcmalloc"
3425 if ! num "$seed_buckets"; then
3426   seed_buckets=4
3427 elif test "$seed_buckets" -lt 2; then
3428   seed_buckets=2
3429 elif test "$seed_buckets" -gt 16; then
3430   seed_buckets=16
3431 fi
3432 echo "#define CONFIG_SEED_BUCKETS $seed_buckets" >> $config_host_h
3433 print_config "seed_buckets" "$seed_buckets"
3434
3435 echo "LIBS+=$LIBS" >> $config_host_mak
3436 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
3437 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
3438 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
3439 echo "CC=$cc" >> $config_host_mak
3440 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
3441 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
3442
3443 if [ `dirname $0` != "." -a ! -e Makefile ]; then
3444     cat > Makefile <<EOF
3445 SRCDIR:=`dirname $0`
3446 include \$(SRCDIR)/Makefile
3447 EOF
3448 fi