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