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