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