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