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