2d6588ae3d61cce2a25f49e2604c29566f133615
[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 # clockid_t probe
1129 if test "$clockid_t" != "yes" ; then
1130   clockid_t="no"
1131 fi
1132 cat > $TMPC << EOF
1133 #include <time.h>
1134 #include <string.h>
1135 int main(int argc, char **argv)
1136 {
1137   volatile clockid_t cid;
1138   memset((void*)&cid, 0, sizeof(cid));
1139   return 0;
1140 }
1141 EOF
1142 if compile_prog "" "$LIBS" "clockid_t"; then
1143   clockid_t="yes"
1144 fi
1145 print_config "clockid_t" "$clockid_t"
1146
1147 ##########################################
1148 # gettimeofday() probe
1149 if test "$gettimeofday" != "yes" ; then
1150   gettimeofday="no"
1151 fi
1152 cat > $TMPC << EOF
1153 #include <sys/time.h>
1154 #include <stdio.h>
1155 int main(int argc, char **argv)
1156 {
1157   struct timeval tv;
1158   return gettimeofday(&tv, NULL);
1159 }
1160 EOF
1161 if compile_prog "" "" "gettimeofday"; then
1162     gettimeofday="yes"
1163 fi
1164 print_config "gettimeofday" "$gettimeofday"
1165
1166 ##########################################
1167 # fdatasync() probe
1168 if test "$fdatasync" != "yes" ; then
1169   fdatasync="no"
1170 fi
1171 cat > $TMPC << EOF
1172 #include <stdio.h>
1173 #include <unistd.h>
1174 int main(int argc, char **argv)
1175 {
1176   return fdatasync(0);
1177 }
1178 EOF
1179 if compile_prog "" "" "fdatasync"; then
1180   fdatasync="yes"
1181 fi
1182 print_config "fdatasync" "$fdatasync"
1183
1184 ##########################################
1185 # pipe() probe
1186 if test "$pipe" != "yes" ; then
1187   pipe="no"
1188 fi
1189 cat > $TMPC << EOF
1190 #include <unistd.h>
1191 int main(int argc, char **argv)
1192 {
1193   int fd[2];
1194   return pipe(fd);
1195 }
1196 EOF
1197 if compile_prog "" "" "pipe"; then
1198   pipe="yes"
1199 fi
1200 print_config "pipe()" "$pipe"
1201
1202 ##########################################
1203 # pipe2() probe
1204 if test "$pipe2" != "yes" ; then
1205   pipe2="no"
1206 fi
1207 cat > $TMPC << EOF
1208 #include <unistd.h>
1209 int main(int argc, char **argv)
1210 {
1211   int fd[2];
1212   return pipe2(fd, 0);
1213 }
1214 EOF
1215 if compile_prog "" "" "pipe2"; then
1216   pipe2="yes"
1217 fi
1218 print_config "pipe2()" "$pipe2"
1219
1220 ##########################################
1221 # pread() probe
1222 if test "$pread" != "yes" ; then
1223   pread="no"
1224 fi
1225 cat > $TMPC << EOF
1226 #include <unistd.h>
1227 int main(int argc, char **argv)
1228 {
1229   return pread(0, NULL, 0, 0);
1230 }
1231 EOF
1232 if compile_prog "" "" "pread"; then
1233   pread="yes"
1234 fi
1235 print_config "pread()" "$pread"
1236
1237 ##########################################
1238 # sync_file_range() probe
1239 if test "$sync_file_range" != "yes" ; then
1240   sync_file_range="no"
1241 fi
1242 cat > $TMPC << EOF
1243 #include <stdio.h>
1244 #include <unistd.h>
1245 #include <fcntl.h>
1246 #include <linux/fs.h>
1247 int main(int argc, char **argv)
1248 {
1249   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
1250                         SYNC_FILE_RANGE_WAIT_AFTER;
1251   return sync_file_range(0, 0, 0, flags);
1252 }
1253 EOF
1254 if compile_prog "" "" "sync_file_range"; then
1255   sync_file_range="yes"
1256 fi
1257 print_config "sync_file_range" "$sync_file_range"
1258
1259 ##########################################
1260 # ext4 move extent probe
1261 if test "$ext4_me" != "yes" ; then
1262   ext4_me="no"
1263 fi
1264 cat > $TMPC << EOF
1265 #include <fcntl.h>
1266 #include <sys/ioctl.h>
1267 int main(int argc, char **argv)
1268 {
1269   struct move_extent me;
1270   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1271 }
1272 EOF
1273 if compile_prog "" "" "ext4 move extent" ; then
1274   ext4_me="yes"
1275 elif test $targetos = "Linux" ; then
1276   # On Linux, just default to it on and let it error at runtime if we really
1277   # don't have it. None of my updated systems have it defined, but it does
1278   # work. Takes a while to bubble back.
1279   ext4_me="yes"
1280 fi
1281 print_config "EXT4 move extent" "$ext4_me"
1282
1283 ##########################################
1284 # splice probe
1285 if test "$linux_splice" != "yes" ; then
1286   linux_splice="no"
1287 fi
1288 cat > $TMPC << EOF
1289 #include <stdio.h>
1290 #include <fcntl.h>
1291 int main(int argc, char **argv)
1292 {
1293   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1294 }
1295 EOF
1296 if compile_prog "" "" "linux splice"; then
1297   linux_splice="yes"
1298 fi
1299 print_config "Linux splice(2)" "$linux_splice"
1300
1301 ##########################################
1302 # libnuma probe
1303 if test "$libnuma" != "yes" ; then
1304   libnuma="no"
1305 fi
1306 cat > $TMPC << EOF
1307 #include <numa.h>
1308 int main(int argc, char **argv)
1309 {
1310   return numa_available();
1311 }
1312 EOF
1313 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
1314   libnuma="yes"
1315   LIBS="-lnuma $LIBS"
1316 fi
1317 print_config "libnuma" "$libnuma"
1318
1319 ##########################################
1320 # libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1321 if test "$libnuma" = "yes" ; then
1322 libnuma_v2="no"
1323 cat > $TMPC << EOF
1324 #include <numa.h>
1325 int main(int argc, char **argv)
1326 {
1327   struct bitmask *mask = numa_parse_nodestring(NULL);
1328   return mask->size == 0;
1329 }
1330 EOF
1331 if compile_prog "" "" "libnuma api"; then
1332   libnuma_v2="yes"
1333 fi
1334 print_config "libnuma v2" "$libnuma_v2"
1335 fi
1336
1337 ##########################################
1338 # strsep() probe
1339 if test "$strsep" != "yes" ; then
1340   strsep="no"
1341 fi
1342 cat > $TMPC << EOF
1343 #include <string.h>
1344 int main(int argc, char **argv)
1345 {
1346   static char *string = "This is a string";
1347   strsep(&string, "needle");
1348   return 0;
1349 }
1350 EOF
1351 if compile_prog "" "" "strsep"; then
1352   strsep="yes"
1353 fi
1354 print_config "strsep" "$strsep"
1355
1356 ##########################################
1357 # strcasestr() probe
1358 if test "$strcasestr" != "yes" ; then
1359   strcasestr="no"
1360 fi
1361 cat > $TMPC << EOF
1362 #include <string.h>
1363 int main(int argc, char **argv)
1364 {
1365   return strcasestr(argv[0], argv[1]) != NULL;
1366 }
1367 EOF
1368 if compile_prog "" "" "strcasestr"; then
1369   strcasestr="yes"
1370 fi
1371 print_config "strcasestr" "$strcasestr"
1372
1373 ##########################################
1374 # strlcat() probe
1375 if test "$strlcat" != "yes" ; then
1376   strlcat="no"
1377 fi
1378 cat > $TMPC << EOF
1379 #include <string.h>
1380 int main(int argc, char **argv)
1381 {
1382   static char dst[64];
1383   static char *string = "This is a string";
1384   memset(dst, 0, sizeof(dst));
1385   strlcat(dst, string, sizeof(dst));
1386   return 0;
1387 }
1388 EOF
1389 if compile_prog "" "" "strlcat"; then
1390   strlcat="yes"
1391 fi
1392 print_config "strlcat" "$strlcat"
1393
1394 ##########################################
1395 # getopt_long_only() probe
1396 if test "$getopt_long_only" != "yes" ; then
1397   getopt_long_only="no"
1398 fi
1399 cat > $TMPC << EOF
1400 #include <unistd.h>
1401 #include <stdio.h>
1402 #include <getopt.h>
1403 int main(int argc, char **argv)
1404 {
1405   int c = getopt_long_only(argc, argv, "", NULL, NULL);
1406   return c;
1407 }
1408 EOF
1409 if compile_prog "" "" "getopt_long_only"; then
1410   getopt_long_only="yes"
1411 fi
1412 print_config "getopt_long_only()" "$getopt_long_only"
1413
1414 ##########################################
1415 # inet_aton() probe
1416 if test "$inet_aton" != "yes" ; then
1417   inet_aton="no"
1418 fi
1419 cat > $TMPC << EOF
1420 #ifdef _WIN32
1421 #include <winsock2.h>
1422 #else
1423 #include <sys/socket.h>
1424 #include <arpa/inet.h>
1425 #endif
1426 #include <stdio.h>
1427 int main(int argc, char **argv)
1428 {
1429   struct in_addr in;
1430   return inet_aton(NULL, &in);
1431 }
1432 EOF
1433 if compile_prog "" "" "inet_aton"; then
1434   inet_aton="yes"
1435 fi
1436 print_config "inet_aton" "$inet_aton"
1437
1438 ##########################################
1439 # socklen_t probe
1440 if test "$socklen_t" != "yes" ; then
1441   socklen_t="no"
1442 fi
1443 cat > $TMPC << EOF
1444 #ifdef _WIN32
1445 #include <winsock2.h>
1446 #include <ws2tcpip.h>
1447 #else
1448 #include <sys/socket.h>
1449 #endif
1450 int main(int argc, char **argv)
1451 {
1452   socklen_t len = 0;
1453   return len;
1454 }
1455 EOF
1456 if compile_prog "" "" "socklen_t"; then
1457   socklen_t="yes"
1458 fi
1459 print_config "socklen_t" "$socklen_t"
1460
1461 ##########################################
1462 # Whether or not __thread is supported for TLS
1463 if test "$tls_thread" != "yes" ; then
1464   tls_thread="no"
1465 fi
1466 cat > $TMPC << EOF
1467 #include <stdio.h>
1468 static __thread int ret;
1469 int main(int argc, char **argv)
1470 {
1471   return ret;
1472 }
1473 EOF
1474 if compile_prog "" "" "__thread"; then
1475   tls_thread="yes"
1476 fi
1477 print_config "__thread" "$tls_thread"
1478
1479 ##########################################
1480 # Check if we have required gtk/glib support for gfio
1481 if test "$gfio" != "yes" ; then
1482   gfio="no"
1483 fi
1484 if test "$gfio_check" = "yes" ; then
1485   cat > $TMPC << EOF
1486 #include <glib.h>
1487 #include <cairo.h>
1488 #include <gtk/gtk.h>
1489 int main(void)
1490 {
1491   gdk_threads_enter();
1492   gdk_threads_leave();
1493
1494   return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1495 }
1496 EOF
1497 GTK_CFLAGS=$(${cross_prefix}pkg-config --cflags gtk+-2.0 gthread-2.0)
1498 ORG_LDFLAGS=$LDFLAGS
1499 LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1500 if test "$?" != "0" ; then
1501   echo "configure: gtk and gthread not found"
1502   exit 1
1503 fi
1504 GTK_LIBS=$(${cross_prefix}pkg-config --libs gtk+-2.0 gthread-2.0)
1505 if test "$?" != "0" ; then
1506   echo "configure: gtk and gthread not found"
1507   exit 1
1508 fi
1509 gfio="yes"
1510 if check_min_lib_version gtk+-2.0 2.18.0 "gfio"; then
1511   if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1512     GFIO_LIBS="$LIBS $GTK_LIBS"
1513     CFLAGS="$CFLAGS $GTK_CFLAGS"
1514   else
1515     echo "Please install gtk and gdk libraries"
1516     gfio="no"
1517   fi
1518 else
1519   gfio="no"
1520 fi
1521 LDFLAGS=$ORG_LDFLAGS
1522 fi
1523
1524 if test "$gfio_check" = "yes" ; then
1525   print_config "gtk 2.18 or higher" "$gfio"
1526 fi
1527
1528 ##########################################
1529 # Check whether we have getrusage(RUSAGE_THREAD)
1530 if test "$rusage_thread" != "yes" ; then
1531   rusage_thread="no"
1532 fi
1533 cat > $TMPC << EOF
1534 #include <sys/time.h>
1535 #include <sys/resource.h>
1536 int main(int argc, char **argv)
1537 {
1538   struct rusage ru;
1539   getrusage(RUSAGE_THREAD, &ru);
1540   return 0;
1541 }
1542 EOF
1543 if compile_prog "" "" "RUSAGE_THREAD"; then
1544   rusage_thread="yes"
1545 fi
1546 print_config "RUSAGE_THREAD" "$rusage_thread"
1547
1548 ##########################################
1549 # Check whether we have SCHED_IDLE
1550 if test "$sched_idle" != "yes" ; then
1551   sched_idle="no"
1552 fi
1553 cat > $TMPC << EOF
1554 #include <sched.h>
1555 int main(int argc, char **argv)
1556 {
1557   struct sched_param p;
1558   return sched_setscheduler(0, SCHED_IDLE, &p);
1559 }
1560 EOF
1561 if compile_prog "" "" "SCHED_IDLE"; then
1562   sched_idle="yes"
1563 fi
1564 print_config "SCHED_IDLE" "$sched_idle"
1565
1566 ##########################################
1567 # Check whether we have TCP_NODELAY
1568 if test "$tcp_nodelay" != "yes" ; then
1569   tcp_nodelay="no"
1570 fi
1571 cat > $TMPC << EOF
1572 #ifdef _WIN32
1573 #include <winsock2.h>
1574 #else
1575 #include <stdio.h>
1576 #include <sys/types.h>
1577 #include <sys/socket.h>
1578 #include <netinet/tcp.h>
1579 #endif
1580 int main(int argc, char **argv)
1581 {
1582   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1583 }
1584 EOF
1585 if compile_prog "" "" "TCP_NODELAY"; then
1586   tcp_nodelay="yes"
1587 elif compile_prog "" "-lws2_32" "TCP_NODELAY"; then
1588   tcp_nodelay="yes"
1589   LIBS="$LIBS -lws2_32"
1590 fi
1591 print_config "TCP_NODELAY" "$tcp_nodelay"
1592
1593 ##########################################
1594 # Check whether we have SO_SNDBUF
1595 if test "$window_size" != "yes" ; then
1596   window_size="no"
1597 fi
1598 cat > $TMPC << EOF
1599 #ifdef _WIN32
1600 #include <winsock2.h>
1601 #else
1602 #include <stdio.h>
1603 #include <sys/types.h>
1604 #include <sys/socket.h>
1605 #include <netinet/tcp.h>
1606 #endif
1607 int main(int argc, char **argv)
1608 {
1609   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1610   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1611 }
1612 EOF
1613 if compile_prog "" "" "SO_SNDBUF"; then
1614   window_size="yes"
1615 elif compile_prog "" "-lws2_32" "SO_SNDBUF"; then
1616   window_size="yes"
1617   LIBS="$LIBS -lws2_32"
1618 fi
1619 print_config "Net engine window_size" "$window_size"
1620
1621 ##########################################
1622 # Check whether we have TCP_MAXSEG
1623 if test "$mss" != "yes" ; then
1624   mss="no"
1625 fi
1626 cat > $TMPC << EOF
1627 #ifdef _WIN32
1628 #include <winsock2.h>
1629 #else
1630 #include <stdio.h>
1631 #include <sys/types.h>
1632 #include <sys/socket.h>
1633 #include <netinet/tcp.h>
1634 #include <arpa/inet.h>
1635 #include <netinet/in.h>
1636 #endif
1637 int main(int argc, char **argv)
1638 {
1639   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1640 }
1641 EOF
1642 if compile_prog "" "" "TCP_MAXSEG"; then
1643   mss="yes"
1644 elif compile_prog "" "-lws2_32" "TCP_MAXSEG"; then
1645   mss="yes"
1646   LIBS="$LIBS -lws2_32"
1647 fi
1648 print_config "TCP_MAXSEG" "$mss"
1649
1650 ##########################################
1651 # Check whether we have RLIMIT_MEMLOCK
1652 if test "$rlimit_memlock" != "yes" ; then
1653   rlimit_memlock="no"
1654 fi
1655 cat > $TMPC << EOF
1656 #include <sys/time.h>
1657 #include <sys/resource.h>
1658 int main(int argc, char **argv)
1659 {
1660   struct rlimit rl;
1661   return getrlimit(RLIMIT_MEMLOCK, &rl);
1662 }
1663 EOF
1664 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1665   rlimit_memlock="yes"
1666 fi
1667 print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1668
1669 ##########################################
1670 # Check whether we have pwritev/preadv
1671 if test "$pwritev" != "yes" ; then
1672   pwritev="no"
1673 fi
1674 cat > $TMPC << EOF
1675 #include <stdio.h>
1676 #include <sys/uio.h>
1677 int main(int argc, char **argv)
1678 {
1679   return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1680 }
1681 EOF
1682 if compile_prog "" "" "pwritev"; then
1683   pwritev="yes"
1684 fi
1685 print_config "pwritev/preadv" "$pwritev"
1686
1687 ##########################################
1688 # Check whether we have pwritev2/preadv2
1689 if test "$pwritev2" != "yes" ; then
1690   pwritev2="no"
1691 fi
1692 cat > $TMPC << EOF
1693 #include <stdio.h>
1694 #include <sys/uio.h>
1695 int main(int argc, char **argv)
1696 {
1697   return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1698 }
1699 EOF
1700 if compile_prog "" "" "pwritev2"; then
1701   pwritev2="yes"
1702 fi
1703 print_config "pwritev2/preadv2" "$pwritev2"
1704
1705 ##########################################
1706 # Check whether we have the required functions for ipv6
1707 if test "$ipv6" != "yes" ; then
1708   ipv6="no"
1709 fi
1710 cat > $TMPC << EOF
1711 #ifdef _WIN32
1712 #include <winsock2.h>
1713 #include <ws2tcpip.h>
1714 #else
1715 #include <sys/types.h>
1716 #include <sys/socket.h>
1717 #include <netinet/in.h>
1718 #include <netdb.h>
1719 #endif
1720 #include <stdio.h>
1721 int main(int argc, char **argv)
1722 {
1723   struct addrinfo hints;
1724   struct in6_addr addr;
1725   int ret;
1726
1727   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1728   freeaddrinfo(NULL);
1729   printf("%s\n", gai_strerror(ret));
1730   addr = in6addr_any;
1731   return 0;
1732 }
1733 EOF
1734 if compile_prog "" "" "ipv6"; then
1735   ipv6="yes"
1736 fi
1737 print_config "IPv6 helpers" "$ipv6"
1738
1739 ##########################################
1740 # check for http
1741 if test "$http" != "yes" ; then
1742   http="no"
1743 fi
1744 # check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
1745 cat > $TMPC << EOF
1746 #include <curl/curl.h>
1747 #include <openssl/hmac.h>
1748
1749 int main(int argc, char **argv)
1750 {
1751   CURL *curl;
1752   HMAC_CTX *ctx;
1753
1754   curl = curl_easy_init();
1755   curl_easy_cleanup(curl);
1756
1757   ctx = HMAC_CTX_new();
1758   HMAC_CTX_reset(ctx);
1759   HMAC_CTX_free(ctx);
1760   return 0;
1761 }
1762 EOF
1763 # openssl < 1.1.0 uses the HMAC_CTX type directly
1764 cat > $TMPC2 << EOF
1765 #include <curl/curl.h>
1766 #include <openssl/hmac.h>
1767
1768 int main(int argc, char **argv)
1769 {
1770   CURL *curl;
1771   HMAC_CTX ctx;
1772
1773   curl = curl_easy_init();
1774   curl_easy_cleanup(curl);
1775
1776   HMAC_CTX_init(&ctx);
1777   HMAC_CTX_cleanup(&ctx);
1778   return 0;
1779 }
1780 EOF
1781 if test "$disable_http" != "yes"; then
1782   HTTP_LIBS="-lcurl -lssl -lcrypto"
1783   if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
1784     output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
1785     http="yes"
1786   elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
1787     http="yes"
1788   fi
1789 fi
1790 print_config "http engine" "$http"
1791
1792 ##########################################
1793 # check for rados
1794 if test "$rados" != "yes" ; then
1795   rados="no"
1796 fi
1797 cat > $TMPC << EOF
1798 #include <rados/librados.h>
1799
1800 int main(int argc, char **argv)
1801 {
1802   rados_t cluster;
1803   rados_ioctx_t io_ctx;
1804   const char cluster_name[] = "ceph";
1805   const char user_name[] = "client.admin";
1806   const char pool[] = "rados";
1807
1808   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1809   rados_create2(&cluster, cluster_name, user_name, 0);
1810   rados_ioctx_create(cluster, pool, &io_ctx);
1811
1812   return 0;
1813 }
1814 EOF
1815 if test "$disable_rados" != "yes"  && compile_prog "" "-lrados" "rados"; then
1816   rados="yes"
1817 fi
1818 print_config "Rados engine" "$rados"
1819
1820 ##########################################
1821 # check for rbd
1822 if test "$rbd" != "yes" ; then
1823   rbd="no"
1824 fi
1825 cat > $TMPC << EOF
1826 #include <rbd/librbd.h>
1827
1828 int main(int argc, char **argv)
1829 {
1830   rados_t cluster;
1831   rados_ioctx_t io_ctx;
1832   const char cluster_name[] = "ceph";
1833   const char user_name[] = "client.admin";
1834   const char pool[] = "rbd";
1835   int major, minor, extra;
1836
1837   rbd_version(&major, &minor, &extra);
1838   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1839   rados_create2(&cluster, cluster_name, user_name, 0);
1840   rados_ioctx_create(cluster, pool, &io_ctx);
1841
1842   return 0;
1843 }
1844 EOF
1845 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1846   rbd="yes"
1847 fi
1848 print_config "Rados Block Device engine" "$rbd"
1849
1850 ##########################################
1851 # check for rbd_poll
1852 if test "$rbd_poll" != "yes" ; then
1853   rbd_poll="no"
1854 fi
1855 if test "$rbd" = "yes"; then
1856 cat > $TMPC << EOF
1857 #include <rbd/librbd.h>
1858 #include <sys/eventfd.h>
1859
1860 int main(int argc, char **argv)
1861 {
1862   rbd_image_t image;
1863   rbd_completion_t comp;
1864
1865   int fd = eventfd(0, EFD_NONBLOCK);
1866   rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1867   rbd_poll_io_events(image, comp, 1);
1868
1869   return 0;
1870 }
1871 EOF
1872 if compile_prog "" "-lrbd -lrados" "rbd"; then
1873   rbd_poll="yes"
1874 fi
1875 print_config "rbd_poll" "$rbd_poll"
1876 fi
1877
1878 ##########################################
1879 # check for rbd_invalidate_cache()
1880 if test "$rbd_inval" != "yes" ; then
1881   rbd_inval="no"
1882 fi
1883 if test "$rbd" = "yes"; then
1884 cat > $TMPC << EOF
1885 #include <rbd/librbd.h>
1886
1887 int main(int argc, char **argv)
1888 {
1889   rbd_image_t image;
1890
1891   return rbd_invalidate_cache(image);
1892 }
1893 EOF
1894 if compile_prog "" "-lrbd -lrados" "rbd"; then
1895   rbd_inval="yes"
1896 fi
1897 print_config "rbd_invalidate_cache" "$rbd_inval"
1898 fi
1899
1900 ##########################################
1901 # Check whether we have setvbuf
1902 if test "$setvbuf" != "yes" ; then
1903   setvbuf="no"
1904 fi
1905 cat > $TMPC << EOF
1906 #include <stdio.h>
1907 int main(int argc, char **argv)
1908 {
1909   FILE *f = NULL;
1910   char buf[80];
1911   setvbuf(f, buf, _IOFBF, sizeof(buf));
1912   return 0;
1913 }
1914 EOF
1915 if compile_prog "" "" "setvbuf"; then
1916   setvbuf="yes"
1917 fi
1918 print_config "setvbuf" "$setvbuf"
1919
1920 ##########################################
1921 # check for gfapi
1922 if test "$gfapi" != "yes" ; then
1923   gfapi="no"
1924 fi
1925 cat > $TMPC << EOF
1926 #include <glusterfs/api/glfs.h>
1927
1928 int main(int argc, char **argv)
1929 {
1930   glfs_t *g = glfs_new("foo");
1931
1932   return 0;
1933 }
1934 EOF
1935 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1936   gfapi="yes"
1937 fi
1938 print_config "Gluster API engine" "$gfapi"
1939
1940 ##########################################
1941 # check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
1942 if test "$gfapi" = "yes" ; then
1943 gf_fadvise="no"
1944 cat > $TMPC << EOF
1945 #include <glusterfs/api/glfs.h>
1946
1947 int main(int argc, char **argv)
1948 {
1949   struct glfs_fd *fd;
1950   int ret = glfs_fadvise(fd, 0, 0, 1);
1951
1952   return 0;
1953 }
1954 EOF
1955 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1956   gf_fadvise="yes"
1957 fi
1958 print_config "Gluster API use fadvise" "$gf_fadvise"
1959 fi
1960
1961 ##########################################
1962 # check for newer gfapi
1963 if test "$gfapi" = "yes" ; then
1964 gf_new="no"
1965 cat > $TMPC << EOF
1966 #include <glusterfs/api/glfs.h>
1967
1968 int main(int argc, char **argv)
1969 {
1970   return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
1971 }
1972 EOF
1973 if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
1974   gf_new="yes"
1975 fi
1976 print_config "Gluster new API" "$gf_new"
1977 fi
1978
1979 ##########################################
1980 # check for gfapi trim support
1981 if test "$gf_trim" != "yes" ; then
1982   gf_trim="no"
1983 fi
1984 if test "$gfapi" = "yes" ; then
1985 cat > $TMPC << EOF
1986 #include <glusterfs/api/glfs.h>
1987
1988 int main(int argc, char **argv)
1989 {
1990   return glfs_discard_async(NULL, 0, 0);
1991 }
1992 EOF
1993 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1994   gf_trim="yes"
1995 fi
1996 print_config "Gluster API trim support" "$gf_trim"
1997 fi
1998
1999 ##########################################
2000 # Check if we support stckf on s390
2001 if test "$s390_z196_facilities" != "yes" ; then
2002   s390_z196_facilities="no"
2003 fi
2004 cat > $TMPC << EOF
2005 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
2006 int main(int argc, char **argv)
2007 {
2008     /* We want just 1 double word to be returned.  */
2009     register unsigned long reg0 asm("0") = 0;
2010     unsigned long stfle_bits;
2011     asm volatile(".machine push"        "\n\t"
2012                  ".machine \"z9-109\""  "\n\t"
2013                  "stfle %0"             "\n\t"
2014                  ".machine pop"         "\n"
2015                  : "=QS" (stfle_bits), "+d" (reg0)
2016                  : : "cc");
2017
2018     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
2019       return 0;
2020     else
2021       return -1;
2022 }
2023 EOF
2024 if compile_prog "" "" "s390_z196_facilities"; then
2025   $TMPE
2026   if [ $? -eq 0 ]; then
2027         s390_z196_facilities="yes"
2028   fi
2029 fi
2030 print_config "s390_z196_facilities" "$s390_z196_facilities"
2031
2032 ##########################################
2033 # Check if we have required environment variables configured for libhdfs
2034 if test "$libhdfs" = "yes" ; then
2035   hdfs_conf_error=0
2036   if test "$JAVA_HOME" = "" ; then
2037     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
2038     hdfs_conf_error=1
2039   fi
2040   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
2041     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
2042     hdfs_conf_error=1
2043   fi
2044   if test "$FIO_LIBHDFS_LIB" = "" ; then
2045     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
2046     hdfs_conf_error=1
2047   fi
2048   if test "$hdfs_conf_error" = "1" ; then
2049     feature_not_found "libhdfs" ""
2050   fi
2051   FIO_HDFS_CPU=$cpu
2052   if test "$FIO_HDFS_CPU" = "x86_64" ; then
2053     FIO_HDFS_CPU="amd64"
2054   fi
2055 fi
2056 print_config "HDFS engine" "$libhdfs"
2057
2058 ##########################################
2059 # Check whether we have MTD
2060 if test "$mtd" != "yes" ; then
2061   mtd="no"
2062 fi
2063 cat > $TMPC << EOF
2064 #include <string.h>
2065 #include <mtd/mtd-user.h>
2066 #include <sys/ioctl.h>
2067 int main(int argc, char **argv)
2068 {
2069   struct mtd_write_req ops;
2070   struct mtd_info_user info;
2071   memset(&ops, 0, sizeof(ops));
2072   info.type = MTD_MLCNANDFLASH;
2073   return ioctl(0, MEMGETINFO, &info);
2074 }
2075 EOF
2076 if compile_prog "" "" "mtd"; then
2077   mtd="yes"
2078 fi
2079 print_config "MTD" "$mtd"
2080
2081 ##########################################
2082 # Check whether we have libpmem
2083 if test "$libpmem" != "yes" ; then
2084   libpmem="no"
2085 fi
2086 cat > $TMPC << EOF
2087 #include <libpmem.h>
2088 #include <stdlib.h>
2089 int main(int argc, char **argv)
2090 {
2091   int rc;
2092   rc = pmem_is_pmem(NULL, NULL);
2093   return 0;
2094 }
2095 EOF
2096 if compile_prog "" "-lpmem" "libpmem"; then
2097   libpmem="yes"
2098 fi
2099 print_config "libpmem" "$libpmem"
2100
2101 ##########################################
2102 # Check whether libpmem's version >= 1.5
2103 if test "$libpmem1_5" != "yes" ; then
2104   libpmem1_5="no"
2105 fi
2106 if test "$libpmem" = "yes"; then
2107   cat > $TMPC << EOF
2108 #include <libpmem.h>
2109 #include <stdlib.h>
2110 int main(int argc, char **argv)
2111 {
2112   pmem_memcpy(NULL, NULL, NULL, NULL);
2113   return 0;
2114 }
2115 EOF
2116   if compile_prog "" "-lpmem" "libpmem1_5"; then
2117     libpmem1_5="yes"
2118   fi
2119 fi
2120 print_config "libpmem1_5" "$libpmem1_5"
2121
2122 ##########################################
2123 # Check whether we have libpmemblk
2124 # libpmem is a prerequisite
2125 if test "$libpmemblk" != "yes" ; then
2126   libpmemblk="no"
2127 fi
2128 if test "$libpmem" = "yes"; then
2129   cat > $TMPC << EOF
2130 #include <libpmemblk.h>
2131 int main(int argc, char **argv)
2132 {
2133   PMEMblkpool *pbp;
2134   pbp = pmemblk_open("", 0);
2135   return 0;
2136 }
2137 EOF
2138   if compile_prog "" "-lpmemblk" "libpmemblk"; then
2139     libpmemblk="yes"
2140   fi
2141 fi
2142 print_config "libpmemblk" "$libpmemblk"
2143
2144 # Choose libpmem-based ioengines
2145 if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
2146   devdax="yes"
2147   if test "$libpmem1_5" = "yes"; then
2148     pmem="yes"
2149   fi
2150   if test "$libpmemblk" = "yes"; then
2151     pmemblk="yes"
2152   fi
2153 fi
2154
2155 ##########################################
2156 # Report whether pmemblk engine is enabled
2157 print_config "PMDK pmemblk engine" "$pmemblk"
2158
2159 ##########################################
2160 # Report whether dev-dax engine is enabled
2161 print_config "PMDK dev-dax engine" "$devdax"
2162
2163 ##########################################
2164 # Report whether libpmem engine is enabled
2165 print_config "PMDK libpmem engine" "$pmem"
2166
2167 ##########################################
2168 # Check whether we support DDN's IME
2169 if test "$libime" != "yes" ; then
2170   libime="no"
2171 fi
2172 cat > $TMPC << EOF
2173 #include <ime_native.h>
2174 int main(int argc, char **argv)
2175 {
2176   int rc;
2177   ime_native_init();
2178   rc = ime_native_finalize();
2179   return 0;
2180 }
2181 EOF
2182 if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
2183   libime="yes"
2184   CFLAGS="-I${ime_path}/include $CFLAGS"
2185   LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
2186   LIBS="-lim_client $LIBS"
2187 fi
2188 print_config "DDN's Infinite Memory Engine" "$libime"
2189
2190 ##########################################
2191 # Check if we have libiscsi
2192 if test "$libiscsi" != "no" ; then
2193   if check_min_lib_version libiscsi 1.9.0; then
2194     libiscsi="yes"
2195     libiscsi_cflags=$(pkg-config --cflags libiscsi)
2196     libiscsi_libs=$(pkg-config --libs libiscsi)
2197   else
2198     libiscsi="no"
2199   fi
2200 fi
2201 print_config "iscsi engine" "$libiscsi"
2202
2203 ##########################################
2204 # Check if we have libnbd (for NBD support)
2205 if test "$libnbd" != "no" ; then
2206   if check_min_lib_version libnbd 0.9.8; then
2207     libnbd="yes"
2208     libnbd_cflags=$(pkg-config --cflags libnbd)
2209     libnbd_libs=$(pkg-config --libs libnbd)
2210   else
2211     libnbd="no"
2212   fi
2213 fi
2214 print_config "NBD engine" "$libnbd"
2215
2216 ##########################################
2217 # Check if we have lex/yacc available
2218 yacc="no"
2219 yacc_is_bison="no"
2220 lex="no"
2221 arith="no"
2222 if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
2223 if test "$targetos" != "SunOS" ; then
2224 if has lex; then
2225   lex="yes"
2226 fi
2227 if has bison; then
2228   yacc="yes"
2229   yacc_is_bison="yes"
2230 elif has yacc; then
2231   yacc="yes"
2232 fi
2233 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
2234   arith="yes"
2235 fi
2236
2237 if test "$arith" = "yes" ; then
2238 cat > $TMPC << EOF
2239 extern int yywrap(void);
2240
2241 int main(int argc, char **argv)
2242 {
2243   yywrap();
2244   return 0;
2245 }
2246 EOF
2247 if compile_prog "" "-lfl" "flex"; then
2248   LIBS="-lfl $LIBS"
2249 elif compile_prog "" "-ll" "lex"; then
2250   LIBS="-ll $LIBS"
2251 else
2252   arith="no"
2253 fi
2254 fi
2255 fi
2256 fi
2257
2258 # Check if lex fails using -o
2259 if test "$arith" = "yes" ; then
2260 if test "$force_no_lex_o" = "yes" ; then
2261   lex_use_o="no"
2262 else
2263 if lex -o lex.yy.c exp/expression-parser.l 2> /dev/null; then
2264   lex_use_o="yes"
2265 else
2266   lex_use_o="no"
2267 fi
2268 fi
2269 fi
2270
2271 print_config "lex/yacc for arithmetic" "$arith"
2272
2273 ##########################################
2274 # Check whether we have setmntent/getmntent
2275 if test "$getmntent" != "yes" ; then
2276   getmntent="no"
2277 fi
2278 cat > $TMPC << EOF
2279 #include <stdio.h>
2280 #include <mntent.h>
2281 int main(int argc, char **argv)
2282 {
2283   FILE *mtab = setmntent(NULL, "r");
2284   struct mntent *mnt = getmntent(mtab);
2285   endmntent(mtab);
2286   return 0;
2287 }
2288 EOF
2289 if compile_prog "" "" "getmntent"; then
2290   getmntent="yes"
2291 fi
2292 print_config "getmntent" "$getmntent"
2293
2294 ##########################################
2295 # Check whether we have getmntinfo
2296 # These are originally added for BSDs, but may also work
2297 # on other operating systems with getmntinfo(3).
2298
2299 # getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
2300 # Note that NetBSD needs -Werror to catch warning as error.
2301 if test "$getmntinfo" != "yes" ; then
2302   getmntinfo="no"
2303 fi
2304 cat > $TMPC << EOF
2305 #include <stdio.h>
2306 #include <sys/param.h>
2307 #include <sys/mount.h>
2308 int main(int argc, char **argv)
2309 {
2310   struct statfs *st;
2311   return getmntinfo(&st, MNT_NOWAIT);
2312 }
2313 EOF
2314 if compile_prog "-Werror" "" "getmntinfo"; then
2315   getmntinfo="yes"
2316 fi
2317 print_config "getmntinfo" "$getmntinfo"
2318
2319 # getmntinfo(3) for NetBSD.
2320 if test "$getmntinfo_statvfs" != "yes" ; then
2321   getmntinfo_statvfs="no"
2322 fi
2323 cat > $TMPC << EOF
2324 #include <stdio.h>
2325 #include <sys/statvfs.h>
2326 int main(int argc, char **argv)
2327 {
2328   struct statvfs *st;
2329   return getmntinfo(&st, MNT_NOWAIT);
2330 }
2331 EOF
2332 # Skip the test if the one with statfs arg is detected.
2333 if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2334   getmntinfo_statvfs="yes"
2335   print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
2336 fi
2337
2338 ##########################################
2339 # Check whether we have _Static_assert
2340 if test "$static_assert" != "yes" ; then
2341   static_assert="no"
2342 fi
2343 cat > $TMPC << EOF
2344 #include <assert.h>
2345 #include <stdlib.h>
2346 #include <stddef.h>
2347
2348 struct foo {
2349   int a, b;
2350 };
2351
2352 int main(int argc, char **argv)
2353 {
2354   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
2355   return 0 ;
2356 }
2357 EOF
2358 if compile_prog "" "" "static_assert"; then
2359     static_assert="yes"
2360 fi
2361 print_config "Static Assert" "$static_assert"
2362
2363 ##########################################
2364 # Check whether we have bool / stdbool.h
2365 if test "$have_bool" != "yes" ; then
2366   have_bool="no"
2367 fi
2368 cat > $TMPC << EOF
2369 #include <stdbool.h>
2370 int main(int argc, char **argv)
2371 {
2372   bool var = true;
2373   return var != false;
2374 }
2375 EOF
2376 if compile_prog "" "" "bool"; then
2377   have_bool="yes"
2378 fi
2379 print_config "bool" "$have_bool"
2380
2381 ##########################################
2382 # Check whether we have strndup()
2383 strndup="no"
2384 cat > $TMPC << EOF
2385 #include <string.h>
2386 #include <stdlib.h>
2387 int main(int argc, char **argv)
2388 {
2389   char *res = strndup("test string", 8);
2390
2391   free(res);
2392   return 0;
2393 }
2394 EOF
2395 if compile_prog "" "" "strndup"; then
2396   strndup="yes"
2397 fi
2398 print_config "strndup" "$strndup"
2399
2400 ##########################################
2401 # <valgrind/drd.h> probe
2402 # Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2403 # also available but not the other way around.
2404 if test "$valgrind_dev" != "yes" ; then
2405   valgrind_dev="no"
2406 fi
2407 cat > $TMPC << EOF
2408 #include <valgrind/drd.h>
2409 int main(int argc, char **argv)
2410 {
2411   return 0;
2412 }
2413 EOF
2414 if compile_prog "" "" "valgrind_dev"; then
2415   valgrind_dev="yes"
2416 fi
2417 print_config "Valgrind headers" "$valgrind_dev"
2418
2419 if test "$targetos" = "Linux" ; then
2420 ##########################################
2421 # <linux/blkzoned.h> probe
2422 if test "$linux_blkzoned" != "yes" ; then
2423   linux_blkzoned="no"
2424 fi
2425 cat > $TMPC << EOF
2426 #include <linux/blkzoned.h>
2427 int main(int argc, char **argv)
2428 {
2429   return 0;
2430 }
2431 EOF
2432 if compile_prog "" "" "linux_blkzoned"; then
2433   linux_blkzoned="yes"
2434 fi
2435 print_config "Zoned block device support" "$linux_blkzoned"
2436
2437 ##########################################
2438 # Check BLK_ZONE_REP_CAPACITY
2439 cat > $TMPC << EOF
2440 #include <linux/blkzoned.h>
2441 int main(void)
2442 {
2443   return BLK_ZONE_REP_CAPACITY;
2444 }
2445 EOF
2446 if compile_prog "" "" "blkzoned report capacity"; then
2447   output_sym "CONFIG_HAVE_REP_CAPACITY"
2448   rep_capacity="yes"
2449 else
2450   rep_capacity="no"
2451 fi
2452 print_config "Zoned block device capacity" "$rep_capacity"
2453 fi
2454
2455 ##########################################
2456 # libzbc probe
2457 cat > $TMPC << EOF
2458 #include <libzbc/zbc.h>
2459 int main(int argc, char **argv)
2460 {
2461   struct zbc_device *dev = NULL;
2462
2463   return zbc_open("foo=bar", O_RDONLY, &dev);
2464 }
2465 EOF
2466 if test "$libzbc" != "no" ; then
2467   if compile_prog "" "-lzbc" "libzbc"; then
2468     libzbc="yes"
2469     if ! check_min_lib_version libzbc 5; then
2470       libzbc="no"
2471     fi
2472   else
2473     if test "$libzbc" = "yes" ; then
2474       feature_not_found "libzbc" "libzbc or libzbc/zbc.h"
2475     fi
2476     libzbc="no"
2477   fi
2478 fi
2479 print_config "libzbc engine" "$libzbc"
2480
2481 ##########################################
2482 # check march=armv8-a+crc+crypto
2483 if test "$march_armv8_a_crc_crypto" != "yes" ; then
2484   march_armv8_a_crc_crypto="no"
2485 fi
2486 if test "$cpu" = "arm64" ; then
2487   cat > $TMPC <<EOF
2488 #include <arm_acle.h>
2489 #include <arm_neon.h>
2490 #include <sys/auxv.h>
2491
2492 int main(void)
2493 {
2494   /* Can we also do a runtime probe? */
2495 #if __linux__
2496   return getauxval(AT_HWCAP);
2497 #else
2498 # error "Don't know how to do runtime probe for ARM CRC32c"
2499 #endif
2500 }
2501 EOF
2502   if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
2503     march_armv8_a_crc_crypto="yes"
2504     CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
2505     march_set="yes"
2506   fi
2507 fi
2508 print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2509
2510 ##########################################
2511 # cuda probe
2512 if test "$cuda" != "no" ; then
2513 cat > $TMPC << EOF
2514 #include <cuda.h>
2515 int main(int argc, char **argv)
2516 {
2517   return cuInit(0);
2518 }
2519 EOF
2520   if compile_prog "" "-lcuda" "cuda"; then
2521     cuda="yes"
2522     LIBS="-lcuda $LIBS"
2523   else
2524     if test "$cuda" = "yes" ; then
2525       feature_not_found "cuda" ""
2526     fi
2527     cuda="no"
2528   fi
2529 fi
2530 print_config "cuda" "$cuda"
2531
2532 ##########################################
2533 # check for cc -march=native
2534 build_native="no"
2535 cat > $TMPC << EOF
2536 int main(int argc, char **argv)
2537 {
2538   return 0;
2539 }
2540 EOF
2541 if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2542    compile_prog "-march=native" "" "march=native"; then
2543   build_native="yes"
2544 fi
2545 print_config "Build march=native" "$build_native"
2546
2547 ##########################################
2548 # check for -lcunit
2549 if test "$cunit" != "yes" ; then
2550   cunit="no"
2551 fi
2552 cat > $TMPC << EOF
2553 #include <CUnit/CUnit.h>
2554 #include <CUnit/Basic.h>
2555 int main(void)
2556 {
2557   if (CU_initialize_registry() != CUE_SUCCESS)
2558     return CU_get_error();
2559   CU_basic_set_mode(CU_BRM_VERBOSE);
2560   CU_basic_run_tests();
2561   CU_cleanup_registry();
2562   return CU_get_error();
2563 }
2564 EOF
2565 if compile_prog "" "-lcunit" "CUnit"; then
2566   cunit="yes"
2567 fi
2568 print_config "CUnit" "$cunit"
2569
2570 ##########################################
2571 # check for __kernel_rwf_t
2572 __kernel_rwf_t="no"
2573 cat > $TMPC << EOF
2574 #include <linux/fs.h>
2575 int main(int argc, char **argv)
2576 {
2577   __kernel_rwf_t x;
2578   x = 0;
2579   return x;
2580 }
2581 EOF
2582 if compile_prog "" "" "__kernel_rwf_t"; then
2583   __kernel_rwf_t="yes"
2584 fi
2585 print_config "__kernel_rwf_t" "$__kernel_rwf_t"
2586
2587 ##########################################
2588 # check if gcc has -Wimplicit-fallthrough=2
2589 fallthrough="no"
2590 cat > $TMPC << EOF
2591 int main(int argc, char **argv)
2592 {
2593   return 0;
2594 }
2595 EOF
2596 if compile_prog "-Wimplicit-fallthrough=2" "" "-Wimplicit-fallthrough=2"; then
2597   fallthrough="yes"
2598 fi
2599 print_config "-Wimplicit-fallthrough=2" "$fallthrough"
2600
2601 ##########################################
2602 # check for MADV_HUGEPAGE support
2603 if test "$thp" != "yes" ; then
2604   thp="no"
2605 fi
2606 if test "$esx" != "yes" ; then
2607   cat > $TMPC <<EOF
2608 #include <sys/mman.h>
2609 int main(void)
2610 {
2611   return madvise(0, 0x1000, MADV_HUGEPAGE);
2612 }
2613 EOF
2614   if compile_prog "" "" "thp" ; then
2615     thp=yes
2616   else
2617     if test "$thp" = "yes" ; then
2618       feature_not_found "Transparent Huge Page" ""
2619     fi
2620     thp=no
2621   fi
2622 fi
2623 print_config "MADV_HUGEPAGE" "$thp"
2624
2625 ##########################################
2626 # check for gettid()
2627 gettid="no"
2628 cat > $TMPC << EOF
2629 #include <unistd.h>
2630 int main(int argc, char **argv)
2631 {
2632   return gettid();
2633 }
2634 EOF
2635 if compile_prog "" "" "gettid"; then
2636   gettid="yes"
2637 fi
2638 print_config "gettid" "$gettid"
2639
2640 ##########################################
2641 # check for statx(2) support by libc
2642 statx="no"
2643 cat > $TMPC << EOF
2644 #include <unistd.h>
2645 #include <sys/stat.h>
2646
2647 int main(int argc, char **argv)
2648 {
2649         struct statx st;
2650         return statx(-1, *argv, 0, 0, &st);
2651 }
2652 EOF
2653 if compile_prog "" "" "statx"; then
2654   statx="yes"
2655 fi
2656 print_config "statx(2)/libc" "$statx"
2657
2658 ##########################################
2659 # check for statx(2) support by kernel
2660 statx_syscall="no"
2661 cat > $TMPC << EOF
2662 #include <unistd.h>
2663 #include <linux/stat.h>
2664 #include <sys/stat.h>
2665 #include <sys/syscall.h>
2666
2667 static int _statx(int dfd, const char *pathname, int flags, unsigned int mask,
2668                   struct statx *buffer)
2669 {
2670         return syscall(__NR_statx, dfd, pathname, flags, mask, buffer);
2671 }
2672
2673 int main(int argc, char **argv)
2674 {
2675         struct statx st;
2676         return _statx(-1, *argv, 0, 0, &st);
2677 }
2678 EOF
2679 if compile_prog "" "" "statx_syscall"; then
2680   statx_syscall="yes"
2681 fi
2682 print_config "statx(2)/syscall" "$statx_syscall"
2683
2684 ##########################################
2685 # check for Windows PDB generation support
2686 if test "pdb" != "no" ; then
2687   cat > $TMPC <<EOF
2688 int main(void)
2689 {
2690   return 0;
2691 }
2692 EOF
2693   if compile_prog "-g -gcodeview" "-fuse-ld=lld -Wl,-pdb,$TMPO" "pdb"; then
2694     pdb=yes
2695   else
2696     if test "$pdb" = "yes"; then
2697       feature_not_found "PDB" "clang and lld"
2698     fi
2699     pdb=no
2700   fi
2701 else
2702   pdb=no
2703 fi
2704 print_config "Windows PDB generation" "$pdb"
2705 #############################################################################
2706
2707 if test "$wordsize" = "64" ; then
2708   output_sym "CONFIG_64BIT"
2709 elif test "$wordsize" = "32" ; then
2710   output_sym "CONFIG_32BIT"
2711 else
2712   fatal "Unknown wordsize!"
2713 fi
2714 if test "$bigendian" = "yes" ; then
2715   output_sym "CONFIG_BIG_ENDIAN"
2716 else
2717   output_sym "CONFIG_LITTLE_ENDIAN"
2718 fi
2719 if test "$zlib" = "yes" ; then
2720   output_sym "CONFIG_ZLIB"
2721 fi
2722 if test "$libaio" = "yes" ; then
2723   output_sym "CONFIG_LIBAIO"
2724   if test "$libaio_rw_flags" = "yes" ; then
2725     output_sym "CONFIG_LIBAIO_RW_FLAGS"
2726   fi
2727   if test "$libaio_uring" = "yes" ; then
2728     output_sym "CONFIG_LIBAIO_URING"
2729   fi
2730 fi
2731 if test "$posix_aio" = "yes" ; then
2732   output_sym "CONFIG_POSIXAIO"
2733 fi
2734 if test "$posix_aio_fsync" = "yes" ; then
2735   output_sym "CONFIG_POSIXAIO_FSYNC"
2736 fi
2737 if test "$posix_pshared" = "yes" ; then
2738   output_sym "CONFIG_PSHARED"
2739 fi
2740 if test "$pthread_condattr_setclock" = "yes" ; then
2741   output_sym "CONFIG_PTHREAD_CONDATTR_SETCLOCK"
2742 fi
2743 if test "$pthread_sigmask" = "yes" ; then
2744   output_sym "CONFIG_PTHREAD_SIGMASK"
2745 fi
2746 if test "$have_asprintf" = "yes" ; then
2747     output_sym "CONFIG_HAVE_ASPRINTF"
2748 fi
2749 if test "$have_vasprintf" = "yes" ; then
2750     output_sym "CONFIG_HAVE_VASPRINTF"
2751 fi
2752 if test "$linux_fallocate" = "yes" ; then
2753   output_sym "CONFIG_LINUX_FALLOCATE"
2754 fi
2755 if test "$posix_fallocate" = "yes" ; then
2756   output_sym "CONFIG_POSIX_FALLOCATE"
2757 fi
2758 if test "$fdatasync" = "yes" ; then
2759   output_sym "CONFIG_FDATASYNC"
2760 fi
2761 if test "$pipe" = "yes" ; then
2762   output_sym "CONFIG_PIPE"
2763 fi
2764 if test "$pipe2" = "yes" ; then
2765   output_sym "CONFIG_PIPE2"
2766 fi
2767 if test "$pread" = "yes" ; then
2768   output_sym "CONFIG_PREAD"
2769 fi
2770 if test "$sync_file_range" = "yes" ; then
2771   output_sym "CONFIG_SYNC_FILE_RANGE"
2772 fi
2773 if test "$sfaa" = "yes" ; then
2774   output_sym "CONFIG_SFAA"
2775 fi
2776 if test "$sync_sync" = "yes" ; then
2777   output_sym "CONFIG_SYNC_SYNC"
2778 fi
2779 if test "$cmp_swap" = "yes" ; then
2780   output_sym "CONFIG_CMP_SWAP"
2781 fi
2782 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2783   output_sym "CONFIG_RDMA"
2784 fi
2785 if test "$clock_gettime" = "yes" ; then
2786   output_sym "CONFIG_CLOCK_GETTIME"
2787 fi
2788 if test "$clock_monotonic" = "yes" ; then
2789   output_sym "CONFIG_CLOCK_MONOTONIC"
2790 fi
2791 if test "$clock_monotonic_raw" = "yes" ; then
2792   output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2793 fi
2794 if test "$clock_monotonic_precise" = "yes" ; then
2795   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
2796 fi
2797 if test "$clockid_t" = "yes"; then
2798   output_sym "CONFIG_CLOCKID_T"
2799 fi
2800 if test "$gettimeofday" = "yes" ; then
2801   output_sym "CONFIG_GETTIMEOFDAY"
2802 fi
2803 if test "$posix_fadvise" = "yes" ; then
2804   output_sym "CONFIG_POSIX_FADVISE"
2805 fi
2806 if test "$linux_3arg_affinity" = "yes" ; then
2807   output_sym "CONFIG_3ARG_AFFINITY"
2808 elif test "$linux_2arg_affinity" = "yes" ; then
2809   output_sym "CONFIG_2ARG_AFFINITY"
2810 fi
2811 if test "$strsep" = "yes" ; then
2812   output_sym "CONFIG_STRSEP"
2813 fi
2814 if test "$strcasestr" = "yes" ; then
2815   output_sym "CONFIG_STRCASESTR"
2816 fi
2817 if test "$strlcat" = "yes" ; then
2818   output_sym "CONFIG_STRLCAT"
2819 fi
2820 if test "$getopt_long_only" = "yes" ; then
2821   output_sym "CONFIG_GETOPT_LONG_ONLY"
2822 fi
2823 if test "$inet_aton" = "yes" ; then
2824   output_sym "CONFIG_INET_ATON"
2825 fi
2826 if test "$socklen_t" = "yes" ; then
2827   output_sym "CONFIG_SOCKLEN_T"
2828 fi
2829 if test "$ext4_me" = "yes" ; then
2830   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
2831 fi
2832 if test "$linux_splice" = "yes" ; then
2833   output_sym "CONFIG_LINUX_SPLICE"
2834 fi
2835 if test "$libnuma_v2" = "yes" ; then
2836   output_sym "CONFIG_LIBNUMA"
2837 fi
2838 if test "$solaris_aio" = "yes" ; then
2839   output_sym "CONFIG_SOLARISAIO"
2840 fi
2841 if test "$tls_thread" = "yes" ; then
2842   output_sym "CONFIG_TLS_THREAD"
2843 fi
2844 if test "$rusage_thread" = "yes" ; then
2845   output_sym "CONFIG_RUSAGE_THREAD"
2846 fi
2847 if test "$gfio" = "yes" ; then
2848   output_sym "CONFIG_GFIO"
2849 fi
2850 if test "$esx" = "yes" ; then
2851   output_sym "CONFIG_ESX"
2852   output_sym "CONFIG_NO_SHM"
2853 fi
2854 if test "$sched_idle" = "yes" ; then
2855   output_sym "CONFIG_SCHED_IDLE"
2856 fi
2857 if test "$tcp_nodelay" = "yes" ; then
2858   output_sym "CONFIG_TCP_NODELAY"
2859 fi
2860 if test "$window_size" = "yes" ; then
2861   output_sym "CONFIG_NET_WINDOWSIZE"
2862 fi
2863 if test "$mss" = "yes" ; then
2864   output_sym "CONFIG_NET_MSS"
2865 fi
2866 if test "$rlimit_memlock" = "yes" ; then
2867   output_sym "CONFIG_RLIMIT_MEMLOCK"
2868 fi
2869 if test "$pwritev" = "yes" ; then
2870   output_sym "CONFIG_PWRITEV"
2871 fi
2872 if test "$pwritev2" = "yes" ; then
2873   output_sym "CONFIG_PWRITEV2"
2874 fi
2875 if test "$ipv6" = "yes" ; then
2876   output_sym "CONFIG_IPV6"
2877 fi
2878 if test "$http" = "yes" ; then
2879   output_sym "CONFIG_HTTP"
2880 fi
2881 if test "$rados" = "yes" ; then
2882   output_sym "CONFIG_RADOS"
2883 fi
2884 if test "$rbd" = "yes" ; then
2885   output_sym "CONFIG_RBD"
2886 fi
2887 if test "$rbd_poll" = "yes" ; then
2888   output_sym "CONFIG_RBD_POLL"
2889 fi
2890 if test "$rbd_inval" = "yes" ; then
2891   output_sym "CONFIG_RBD_INVAL"
2892 fi
2893 if test "$setvbuf" = "yes" ; then
2894   output_sym "CONFIG_SETVBUF"
2895 fi
2896 if test "$s390_z196_facilities" = "yes" ; then
2897   output_sym "CONFIG_S390_Z196_FACILITIES"
2898   CFLAGS="$CFLAGS -march=z9-109"
2899   march_set="yes"
2900 fi
2901 if test "$gfapi" = "yes" ; then
2902   output_sym "CONFIG_GFAPI"
2903 fi
2904 if test "$gf_fadvise" = "yes" ; then
2905   output_sym "CONFIG_GF_FADVISE"
2906 fi
2907 if test "$gf_trim" = "yes" ; then
2908   output_sym "CONFIG_GF_TRIM"
2909 fi
2910 if test "$gf_new" = "yes" ; then
2911   output_sym "CONFIG_GF_NEW_API"
2912 fi
2913 if test "$libhdfs" = "yes" ; then
2914   output_sym "CONFIG_LIBHDFS"
2915   echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
2916   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2917   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2918   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
2919 fi
2920 if test "$mtd" = "yes" ; then
2921   output_sym "CONFIG_MTD"
2922 fi
2923 if test "$pmemblk" = "yes" ; then
2924   output_sym "CONFIG_PMEMBLK"
2925 fi
2926 if test "$devdax" = "yes" ; then
2927   output_sym "CONFIG_LINUX_DEVDAX"
2928 fi
2929 if test "$pmem" = "yes" ; then
2930   output_sym "CONFIG_LIBPMEM"
2931 fi
2932 if test "$libime" = "yes" ; then
2933   output_sym "CONFIG_IME"
2934 fi
2935 if test "$arith" = "yes" ; then
2936   output_sym "CONFIG_ARITHMETIC"
2937   if test "$yacc_is_bison" = "yes" ; then
2938     echo "YACC=bison -y" >> $config_host_mak
2939   else
2940     echo "YACC=yacc" >> $config_host_mak
2941   fi
2942   if test "$lex_use_o" = "yes" ; then
2943     echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2944   fi
2945 fi
2946 if test "$getmntent" = "yes" ; then
2947   output_sym "CONFIG_GETMNTENT"
2948 fi
2949 if test "$getmntinfo" = "yes" ; then
2950   output_sym "CONFIG_GETMNTINFO"
2951 fi
2952 if test "$getmntinfo_statvfs" = "yes" ; then
2953   output_sym "CONFIG_GETMNTINFO_STATVFS"
2954 fi
2955 if test "$static_assert" = "yes" ; then
2956   output_sym "CONFIG_STATIC_ASSERT"
2957 fi
2958 if test "$have_bool" = "yes" ; then
2959   output_sym "CONFIG_HAVE_BOOL"
2960 fi
2961 if test "$strndup" = "yes" ; then
2962   output_sym "CONFIG_HAVE_STRNDUP"
2963 fi
2964 if test "$disable_opt" = "yes" ; then
2965   output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2966 fi
2967 if test "$valgrind_dev" = "yes"; then
2968   output_sym "CONFIG_VALGRIND_DEV"
2969 fi
2970 if test "$linux_blkzoned" = "yes" ; then
2971   output_sym "CONFIG_HAS_BLKZONED"
2972 fi
2973 if test "$libzbc" = "yes" ; then
2974   output_sym "CONFIG_LIBZBC"
2975 fi
2976 if test "$zlib" = "no" ; then
2977   echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it."
2978   if test "$build_static" = "yes"; then
2979     echo "Note that some distros have separate packages for static libraries."
2980   fi
2981 fi
2982 if test "$march_armv8_a_crc_crypto" = "yes" ; then
2983   output_sym "ARCH_HAVE_CRC_CRYPTO"
2984 fi
2985 if test "$cuda" = "yes" ; then
2986   output_sym "CONFIG_CUDA"
2987 fi
2988 if test "$march_set" = "no" && test "$build_native" = "yes" ; then
2989   output_sym "CONFIG_BUILD_NATIVE"
2990 fi
2991 if test "$cunit" = "yes" ; then
2992   output_sym "CONFIG_HAVE_CUNIT"
2993 fi
2994 if test "$__kernel_rwf_t" = "yes"; then
2995   output_sym "CONFIG_HAVE_KERNEL_RWF_T"
2996 fi
2997 if test "$gettid" = "yes"; then
2998   output_sym "CONFIG_HAVE_GETTID"
2999 fi
3000 if test "$statx" = "yes"; then
3001   output_sym "CONFIG_HAVE_STATX"
3002 fi
3003 if test "$statx_syscall" = "yes"; then
3004   output_sym "CONFIG_HAVE_STATX_SYSCALL"
3005 fi
3006 if test "$fallthrough" = "yes"; then
3007   CFLAGS="$CFLAGS -Wimplicit-fallthrough"
3008 fi
3009 if test "$thp" = "yes" ; then
3010   output_sym "CONFIG_HAVE_THP"
3011 fi
3012 if test "$libiscsi" = "yes" ; then
3013   output_sym "CONFIG_LIBISCSI"
3014   echo "CONFIG_LIBISCSI=m" >> $config_host_mak
3015   echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
3016   echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
3017 fi
3018 if test "$libnbd" = "yes" ; then
3019   output_sym "CONFIG_LIBNBD"
3020   echo "CONFIG_LIBNBD=m" >> $config_host_mak
3021   echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
3022   echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
3023 fi
3024 if test "$dynamic_engines" = "yes" ; then
3025   output_sym "CONFIG_DYNAMIC_ENGINES"
3026 fi
3027 if test "$pdb" = yes; then
3028   output_sym "CONFIG_PDB"
3029 fi
3030
3031 print_config "Lib-based ioengines dynamic" "$dynamic_engines"
3032 cat > $TMPC << EOF
3033 int main(int argc, char **argv)
3034 {
3035   return 0;
3036 }
3037 EOF
3038 if test "$disable_tcmalloc" != "yes"; then
3039   if compile_prog "" "-ltcmalloc" "tcmalloc"; then
3040     tcmalloc="yes"
3041     LIBS="-ltcmalloc $LIBS"
3042   elif compile_prog "" "-l:libtcmalloc_minimal.so.4" "tcmalloc_minimal4"; then
3043     tcmalloc="yes"
3044     LIBS="-l:libtcmalloc_minimal.so.4 $LIBS"
3045   else
3046     tcmalloc="no"
3047   fi
3048 fi
3049 print_config "TCMalloc support" "$tcmalloc"
3050
3051 echo "LIBS+=$LIBS" >> $config_host_mak
3052 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
3053 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
3054 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
3055 echo "CC=$cc" >> $config_host_mak
3056 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
3057 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
3058
3059 if [ `dirname $0` != "." -a ! -e Makefile ]; then
3060     cat > Makefile <<EOF
3061 SRCDIR:=`dirname $0`
3062 include \$(SRCDIR)/Makefile
3063 EOF
3064 fi