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