add documentation about filename_format directory behavior
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this 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 TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
18 TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
19
20 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
21 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
22 trap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
23
24 rm -rf config.log
25
26 config_host_mak="config-host.mak"
27 config_host_h="config-host.h"
28
29 rm -rf $config_host_mak
30 rm -rf $config_host_h
31
32 fatal() {
33   echo $@
34   echo "Configure failed, check config.log and/or the above output"
35   rm -rf $config_host_mak
36   rm -rf $config_host_h
37   exit 1
38 }
39
40 # Print result for each configuration test
41 print_config() {
42   printf "%-30s%s\n" "$1" "$2"
43 }
44
45 # Default CFLAGS
46 CFLAGS="-D_GNU_SOURCE -include config-host.h"
47 BUILD_CFLAGS=""
48
49 # Print a helpful header at the top of config.log
50 echo "# FIO configure log $(date)" >> config.log
51 printf "# Configured with:" >> config.log
52 printf " '%s'" "$0" "$@" >> config.log
53 echo >> config.log
54 echo "#" >> config.log
55
56 # Print configure header at the top of $config_host_h
57 echo "/*" > $config_host_h
58 echo " * Automatically generated by configure - do not modify" >> $config_host_h
59 printf " * Configured with:" >> $config_host_h
60 printf " * '%s'" "$0" "$@" >> $config_host_h
61 echo "" >> $config_host_h
62 echo " */" >> $config_host_h
63
64 do_cc() {
65     # Run the compiler, capturing its output to the log.
66     echo $cc "$@" >> config.log
67     $cc "$@" >> config.log 2>&1 || return $?
68     # Test passed. If this is an --enable-werror build, rerun
69     # the test with -Werror and bail out if it fails. This
70     # makes warning-generating-errors in configure test code
71     # obvious to developers.
72     if test "$werror" != "yes"; then
73         return 0
74     fi
75     # Don't bother rerunning the compile if we were already using -Werror
76     case "$*" in
77         *-Werror*)
78            return 0
79         ;;
80     esac
81     echo $cc -Werror "$@" >> config.log
82     $cc -Werror "$@" >> config.log 2>&1 && return $?
83     echo "ERROR: configure test passed without -Werror but failed with -Werror."
84     echo "This is probably a bug in the configure script. The failing command"
85     echo "will be at the bottom of config.log."
86     fatal "You can run configure with --disable-werror to bypass this check."
87 }
88
89 compile_object() {
90   do_cc $CFLAGS -c -o $TMPO $TMPC
91 }
92
93 compile_prog() {
94   local_cflags="$1"
95   local_ldflags="$2 $LIBS"
96   echo "Compiling test case $3" >> config.log
97   do_cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
98 }
99
100 feature_not_found() {
101   feature=$1
102   packages=$2
103
104   echo "ERROR"
105   echo "ERROR: User requested feature $feature"
106   if test ! -z "$packages" ; then
107     echo "ERROR: That feature needs $packages installed"
108   fi
109   echo "ERROR: configure was not able to find it"
110   fatal "ERROR"
111 }
112
113 has() {
114   type "$1" >/dev/null 2>&1
115 }
116
117 check_define() {
118   cat > $TMPC <<EOF
119 #if !defined($1)
120 #error $1 not defined
121 #endif
122 int main(void)
123 {
124   return 0;
125 }
126 EOF
127   compile_object
128 }
129
130 output_sym() {
131   echo "$1=y" >> $config_host_mak
132   echo "#define $1" >> $config_host_h
133 }
134
135 targetos=""
136 cpu=""
137
138 # default options
139 show_help="no"
140 exit_val=0
141 gfio_check="no"
142 libhdfs="no"
143 pmemblk="no"
144 devdax="no"
145 disable_lex=""
146 disable_pmem="no"
147 prefix=/usr/local
148
149 # parse options
150 for opt do
151   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
152   case "$opt" in
153   --prefix=*) prefix="$optarg"
154   ;;
155   --cpu=*) cpu="$optarg"
156   ;;
157   #  esx is cross compiled and cannot be detect through simple uname calls
158   --esx)
159   esx="yes"
160   ;;
161   --cc=*) CC="$optarg"
162   ;;
163   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
164   ;;
165   --build-32bit-win) build_32bit_win="yes"
166   ;;
167   --build-static) build_static="yes"
168   ;;
169   --enable-gfio) gfio_check="yes"
170   ;;
171   --disable-numa) disable_numa="yes"
172   ;;
173   --disable-rdma) disable_rdma="yes"
174   ;;
175   --disable-rbd) disable_rbd="yes"
176   ;;
177   --disable-rbd-blkin) disable_rbd_blkin="yes"
178   ;;
179   --disable-gfapi) disable_gfapi="yes"
180   ;;
181   --enable-libhdfs) libhdfs="yes"
182   ;;
183   --disable-lex) disable_lex="yes"
184   ;;
185   --enable-lex) disable_lex="no"
186   ;;
187   --disable-shm) no_shm="yes"
188   ;;
189   --disable-optimizations) disable_opt="yes"
190   ;;
191   --disable-pmem) disable_pmem="yes"
192   ;;
193   --enable-cuda) enable_cuda="yes"
194   ;;
195   --help)
196     show_help="yes"
197     ;;
198   *)
199   echo "Bad option $opt"
200   show_help="yes"
201   exit_val=1
202   esac
203 done
204
205 if test "$show_help" = "yes" ; then
206   echo "--prefix=               Use this directory as installation prefix"
207   echo "--cpu=                  Specify target CPU if auto-detect fails"
208   echo "--cc=                   Specify compiler to use"
209   echo "--extra-cflags=         Specify extra CFLAGS to pass to compiler"
210   echo "--build-32bit-win       Enable 32-bit build on Windows"
211   echo "--build-static          Build a static fio"
212   echo "--esx                   Configure build options for esx"
213   echo "--enable-gfio           Enable building of gtk gfio"
214   echo "--disable-numa          Disable libnuma even if found"
215   echo "--disable-rdma          Disable RDMA support even if found"
216   echo "--disable-gfapi         Disable gfapi"
217   echo "--enable-libhdfs        Enable hdfs support"
218   echo "--disable-lex           Disable use of lex/yacc for math"
219   echo "--disable-pmem          Disable pmem based engines even if found"
220   echo "--enable-lex            Enable use of lex/yacc for math"
221   echo "--disable-shm           Disable SHM support"
222   echo "--disable-optimizations Don't enable compiler optimizations"
223   echo "--enable-cuda           Enable GPUDirect RDMA support"
224   exit $exit_val
225 fi
226
227 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
228 # Preferred compiler (can be overriden later after we know the platform):
229 #  ${CC} (if set)
230 #  ${cross_prefix}gcc (if cross-prefix specified)
231 #  gcc if available
232 #  clang if available
233 if test -z "${CC}${cross_prefix}"; then
234   if has gcc; then
235     cc=gcc
236   elif has clang; then
237     cc=clang
238   fi
239 else
240   cc="${CC-${cross_prefix}gcc}"
241 fi
242
243 if check_define __ANDROID__ ; then
244   targetos="Android"
245 elif check_define __linux__ ; then
246   targetos="Linux"
247 elif check_define __OpenBSD__ ; then
248   targetos='OpenBSD'
249 elif check_define __sun__ ; then
250   targetos='SunOS'
251   CFLAGS="$CFLAGS -D_REENTRANT"
252 elif check_define _WIN32 ; then
253   targetos='CYGWIN'
254 else
255   targetos=`uname -s`
256 fi
257
258 echo "# Automatically generated by configure - do not modify" > $config_host_mak
259 printf "# Configured with:" >> $config_host_mak
260 printf " '%s'" "$0" "$@" >> $config_host_mak
261 echo >> $config_host_mak
262 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
263
264 if test "$no_shm" = "yes" ; then
265   output_sym "CONFIG_NO_SHM"
266 fi
267
268 if test "$disable_opt" = "yes" ; then
269   output_sym "CONFIG_FIO_NO_OPT"
270 fi
271
272 # Some host OSes need non-standard checks for which CPU to use.
273 # Note that these checks are broken for cross-compilation: if you're
274 # cross-compiling to one of these OSes then you'll need to specify
275 # the correct CPU with the --cpu option.
276 case $targetos in
277 AIX|OpenBSD)
278   # Unless explicitly enabled, turn off lex.
279   # OpenBSD will hit syntax error when enabled.
280   if test -z "$disable_lex" ; then
281     disable_lex="yes"
282   else
283     force_no_lex_o="yes"
284   fi
285   ;;
286 Darwin)
287   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
288   # we can run 64-bit userspace code.
289   # If the user didn't specify a CPU explicitly and the kernel says this is
290   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
291   # detection code.
292   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
293     cpu="x86_64"
294   fi
295   # Error at compile time linking of weak/partial symbols if possible...
296 cat > $TMPC <<EOF
297 int main(void)
298 {
299   return 0;
300 }
301 EOF
302   if compile_prog "" "-Wl,-no_weak_imports" "disable weak symbols"; then
303     echo "Disabling weak symbols"
304     LDFLAGS="$LDFLAGS -Wl,-no_weak_imports"
305   fi
306   ;;
307 SunOS)
308   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
309   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
310     cpu="x86_64"
311   fi
312   LIBS="-lnsl -lsocket"
313   ;;
314 CYGWIN*)
315   # We still force some options, so keep this message here.
316   echo "Forcing some known good options on Windows"
317   if test -z "${CC}${cross_prefix}"; then
318     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
319       cc="i686-w64-mingw32-gcc"
320       if test -e "../zlib/contrib/vstudio/vc14/x86/ZlibStatReleaseWithoutAsm/zlibstat.lib"; then
321         echo "Building with zlib support"
322         output_sym "CONFIG_ZLIB"
323         echo "LIBS=../zlib/contrib/vstudio/vc14/x86/ZlibStatReleaseWithoutAsm/zlibstat.lib" >> $config_host_mak
324       fi
325     else
326       cc="x86_64-w64-mingw32-gcc"
327       if test -e "../zlib/contrib/vstudio/vc14/x64/ZlibStatReleaseWithoutAsm/zlibstat.lib"; then
328         echo "Building with zlib support"
329         output_sym "CONFIG_ZLIB"
330         echo "LIBS=../zlib/contrib/vstudio/vc14/x64/ZlibStatReleaseWithoutAsm/zlibstat.lib" >> $config_host_mak
331       fi
332     fi
333   fi
334   if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
335     output_sym "CONFIG_32BIT"
336   else
337     output_sym "CONFIG_64BIT_LLP64"
338   fi
339   # We need this to be output_sym'd here because this is Windows specific.
340   # The regular configure path never sets this config.
341   output_sym "CONFIG_WINDOWSAIO"
342   # We now take the regular configuration path without having exit 0 here.
343   # Flags below are still necessary mostly for MinGW.
344   socklen_t="yes"
345   sfaa="yes"
346   rusage_thread="yes"
347   fdatasync="yes"
348   clock_gettime="yes" # clock_monotonic probe has dependency on this
349   clock_monotonic="yes"
350   gettimeofday="yes"
351   sched_idle="yes"
352   tcp_nodelay="yes"
353   tls_thread="yes"
354   static_assert="yes"
355   ipv6="yes"
356   echo "BUILD_CFLAGS=$CFLAGS -I../zlib -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
357   ;;
358 esac
359
360 # Now we know the target platform we can have another guess at the preferred
361 # compiler when it wasn't explictly set
362 if test -z "${CC}${cross_prefix}"; then
363   if test "$targetos" = "FreeBSD" || test "$targetos" = "Darwin"; then
364     if has clang; then
365       cc=clang
366     fi
367   fi
368 fi
369 if test -z "$cc"; then
370     echo "configure: failed to find compiler"
371     exit 1
372 fi
373
374 if test ! -z "$cpu" ; then
375   # command line argument
376   :
377 elif check_define __i386__ ; then
378   cpu="i386"
379 elif check_define __x86_64__ ; then
380   cpu="x86_64"
381 elif check_define __sparc__ ; then
382   if check_define __arch64__ ; then
383     cpu="sparc64"
384   else
385     cpu="sparc"
386   fi
387 elif check_define _ARCH_PPC ; then
388   if check_define _ARCH_PPC64 ; then
389     cpu="ppc64"
390   else
391     cpu="ppc"
392   fi
393 elif check_define __mips__ ; then
394   cpu="mips"
395 elif check_define __ia64__ ; then
396   cpu="ia64"
397 elif check_define __s390__ ; then
398   if check_define __s390x__ ; then
399     cpu="s390x"
400   else
401     cpu="s390"
402   fi
403 elif check_define __arm__ ; then
404   cpu="arm"
405 elif check_define __aarch64__ ; then
406   cpu="aarch64"
407 elif check_define __hppa__ ; then
408   cpu="hppa"
409 else
410   cpu=`uname -m`
411 fi
412
413 # Normalise host CPU name and set ARCH.
414 case "$cpu" in
415   ia64|ppc|ppc64|s390|s390x|sparc64)
416     cpu="$cpu"
417   ;;
418   i386|i486|i586|i686|i86pc|BePC)
419     cpu="x86"
420   ;;
421   x86_64|amd64)
422     cpu="x86_64"
423   ;;
424   armv*b|armv*l|arm)
425     cpu="arm"
426   ;;
427   aarch64)
428     cpu="arm64"
429   ;;
430   hppa|parisc|parisc64)
431     cpu="hppa"
432   ;;
433   mips*)
434     cpu="mips"
435   ;;
436   sparc|sun4[cdmuv])
437     cpu="sparc"
438   ;;
439   *)
440   echo "Unknown CPU"
441   ;;
442 esac
443
444 ##########################################
445 # check cross compile
446
447 if test "$cross_compile" != "yes" ; then
448   cross_compile="no"
449 fi
450 cat > $TMPC <<EOF
451 int main(void)
452 {
453   return 0;
454 }
455 EOF
456 if compile_prog "" "" "cross"; then
457   $TMPE 2>/dev/null || cross_compile="yes"
458 else
459   fatal "compile test failed"
460 fi
461
462 ##########################################
463 # check endianness
464 if test "$bigendian" != "yes" ; then
465   bigendian="no"
466 fi
467 if test "$cross_compile" = "no" ; then
468   cat > $TMPC <<EOF
469 #include <inttypes.h>
470 int main(void)
471 {
472   volatile uint32_t i=0x01234567;
473   return (*((uint8_t*)(&i))) == 0x67;
474 }
475 EOF
476   if compile_prog "" "" "endian"; then
477     $TMPE && bigendian="yes"
478   fi
479 else
480   # If we're cross compiling, try our best to work it out and rely on the
481   # run-time check to fail if we get it wrong.
482   cat > $TMPC <<EOF
483 #include <endian.h>
484 int main(void)
485 {
486 #if __BYTE_ORDER != __BIG_ENDIAN
487 # error "Unknown endianness"
488 #endif
489 }
490 EOF
491   compile_prog "" "" "endian" && bigendian="yes"
492   check_define "__ARMEB__" && bigendian="yes"
493   check_define "__MIPSEB__" && bigendian="yes"
494 fi
495
496
497 print_config "Operating system" "$targetos"
498 print_config "CPU" "$cpu"
499 print_config "Big endian" "$bigendian"
500 print_config "Compiler" "$cc"
501 print_config "Cross compile" "$cross_compile"
502 echo
503
504 ##########################################
505 # See if we need to build a static build
506 if test "$build_static" = "yes" ; then
507   CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
508   LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
509 else
510   build_static="no"
511 fi
512 print_config "Static build" "$build_static"
513
514 ##########################################
515 # check for wordsize
516 wordsize="0"
517 cat > $TMPC <<EOF
518 #include <limits.h>
519 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
520 int main(void)
521 {
522   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
523   return 0;
524 }
525 EOF
526 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
527   wordsize="32"
528 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
529   wordsize="64"
530 else
531   fatal "Unknown wordsize"
532 fi
533 print_config "Wordsize" "$wordsize"
534
535 ##########################################
536 # zlib probe
537 if test "$zlib" != "yes" ; then
538   zlib="no"
539 fi
540 cat > $TMPC <<EOF
541 #include <zlib.h>
542 int main(void)
543 {
544   z_stream stream;
545   if (inflateInit(&stream) != Z_OK)
546     return 1;
547   return 0;
548 }
549 EOF
550 if compile_prog "" "-lz" "zlib" ; then
551   zlib=yes
552   LIBS="-lz $LIBS"
553 fi
554 print_config "zlib" "$zlib"
555
556 ##########################################
557 # linux-aio probe
558 if test "$libaio" != "yes" ; then
559   libaio="no"
560 fi
561 if test "$esx" != "yes" ; then
562   cat > $TMPC <<EOF
563 #include <libaio.h>
564 #include <stddef.h>
565 int main(void)
566 {
567   io_setup(0, NULL);
568   return 0;
569 }
570 EOF
571   if compile_prog "" "-laio" "libaio" ; then
572     libaio=yes
573     LIBS="-laio $LIBS"
574   else
575     if test "$libaio" = "yes" ; then
576       feature_not_found "linux AIO" "libaio-dev or libaio-devel"
577     fi
578     libaio=no
579   fi
580 fi
581 print_config "Linux AIO support" "$libaio"
582
583 ##########################################
584 # posix aio probe
585 if test "$posix_aio" != "yes" ; then
586   posix_aio="no"
587 fi
588 if test "$posix_aio_lrt" != "yes" ; then
589   posix_aio_lrt="no"
590 fi
591 cat > $TMPC <<EOF
592 #include <aio.h>
593 int main(void)
594 {
595   struct aiocb cb;
596   aio_read(&cb);
597   return 0;
598 }
599 EOF
600 if compile_prog "" "" "posixaio" ; then
601   posix_aio="yes"
602 elif compile_prog "" "-lrt" "posixaio"; then
603   posix_aio="yes"
604   posix_aio_lrt="yes"
605   LIBS="-lrt $LIBS"
606 fi
607 print_config "POSIX AIO support" "$posix_aio"
608 print_config "POSIX AIO support needs -lrt" "$posix_aio_lrt"
609
610 ##########################################
611 # posix aio fsync probe
612 if test "$posix_aio_fsync" != "yes" ; then
613   posix_aio_fsync="no"
614 fi
615 if test "$posix_aio" = "yes" ; then
616   cat > $TMPC <<EOF
617 #include <fcntl.h>
618 #include <aio.h>
619 int main(void)
620 {
621   struct aiocb cb;
622   return aio_fsync(O_SYNC, &cb);
623   return 0;
624 }
625 EOF
626   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
627     posix_aio_fsync=yes
628   fi
629 fi
630 print_config "POSIX AIO fsync" "$posix_aio_fsync"
631
632 ##########################################
633 # POSIX pshared attribute probe
634 if test "$posix_pshared" != "yes" ; then
635   posix_pshared="no"
636 fi
637 cat > $TMPC <<EOF
638 #include <unistd.h>
639 int main(void)
640 {
641 #if defined(_POSIX_THREAD_PROCESS_SHARED) && ((_POSIX_THREAD_PROCESS_SHARED + 0) > 0)
642 # if defined(__CYGWIN__)
643 #  error "_POSIX_THREAD_PROCESS_SHARED is buggy on Cygwin"
644 # elif defined(__APPLE__)
645 #  include <AvailabilityMacros.h>
646 #  include <TargetConditionals.h>
647 #  if TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
648 #   error "_POSIX_THREAD_PROCESS_SHARED is buggy/unsupported prior to OSX 10.7"
649 #  endif
650 # endif
651 #else
652 # error "_POSIX_THREAD_PROCESS_SHARED is unsupported"
653 #endif
654   return 0;
655 }
656 EOF
657 if compile_prog "" "$LIBS" "posix_pshared" ; then
658   posix_pshared=yes
659 fi
660 print_config "POSIX pshared support" "$posix_pshared"
661
662 ##########################################
663 # solaris aio probe
664 if test "$solaris_aio" != "yes" ; then
665   solaris_aio="no"
666 fi
667 cat > $TMPC <<EOF
668 #include <sys/types.h>
669 #include <sys/asynch.h>
670 #include <unistd.h>
671 int main(void)
672 {
673   aio_result_t res;
674   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
675   return 0;
676 }
677 EOF
678 if compile_prog "" "-laio" "solarisaio" ; then
679   solaris_aio=yes
680   LIBS="-laio $LIBS"
681 fi
682 print_config "Solaris AIO support" "$solaris_aio"
683
684 ##########################################
685 # __sync_fetch_and_add test
686 if test "$sfaa" != "yes" ; then
687   sfaa="no"
688 fi
689 cat > $TMPC << EOF
690 #include <inttypes.h>
691 static int sfaa(uint64_t *ptr)
692 {
693   return __sync_fetch_and_add(ptr, 0);
694 }
695
696 int main(int argc, char **argv)
697 {
698   uint64_t val = 42;
699   sfaa(&val);
700   return val;
701 }
702 EOF
703 if compile_prog "" "" "__sync_fetch_and_add()" ; then
704     sfaa="yes"
705 fi
706 print_config "__sync_fetch_and_add" "$sfaa"
707
708 ##########################################
709 # libverbs probe
710 if test "$libverbs" != "yes" ; then
711   libverbs="no"
712 fi
713 cat > $TMPC << EOF
714 #include <infiniband/verbs.h>
715 int main(int argc, char **argv)
716 {
717   struct ibv_pd *pd = ibv_alloc_pd(NULL);
718   return 0;
719 }
720 EOF
721 if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
722     libverbs="yes"
723     LIBS="-libverbs $LIBS"
724 fi
725 print_config "libverbs" "$libverbs"
726
727 ##########################################
728 # rdmacm probe
729 if test "$rdmacm" != "yes" ; then
730   rdmacm="no"
731 fi
732 cat > $TMPC << EOF
733 #include <stdio.h>
734 #include <rdma/rdma_cma.h>
735 int main(int argc, char **argv)
736 {
737   rdma_destroy_qp(NULL);
738   return 0;
739 }
740 EOF
741 if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
742     rdmacm="yes"
743     LIBS="-lrdmacm $LIBS"
744 fi
745 print_config "rdmacm" "$rdmacm"
746
747 ##########################################
748 # Linux fallocate probe
749 if test "$linux_fallocate" != "yes" ; then
750   linux_fallocate="no"
751 fi
752 cat > $TMPC << EOF
753 #include <stdio.h>
754 #include <fcntl.h>
755 #include <linux/falloc.h>
756 int main(int argc, char **argv)
757 {
758   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
759   return r;
760 }
761 EOF
762 if compile_prog "" "" "linux_fallocate"; then
763     linux_fallocate="yes"
764 fi
765 print_config "Linux fallocate" "$linux_fallocate"
766
767 ##########################################
768 # POSIX fadvise probe
769 if test "$posix_fadvise" != "yes" ; then
770   posix_fadvise="no"
771 fi
772 cat > $TMPC << EOF
773 #include <stdio.h>
774 #include <fcntl.h>
775 int main(int argc, char **argv)
776 {
777   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
778   return r;
779 }
780 EOF
781 if compile_prog "" "" "posix_fadvise"; then
782     posix_fadvise="yes"
783 fi
784 print_config "POSIX fadvise" "$posix_fadvise"
785
786 ##########################################
787 # POSIX fallocate probe
788 if test "$posix_fallocate" != "yes" ; then
789   posix_fallocate="no"
790 fi
791 cat > $TMPC << EOF
792 #include <stdio.h>
793 #include <fcntl.h>
794 int main(int argc, char **argv)
795 {
796   int r = posix_fallocate(0, 0, 1024);
797   return r;
798 }
799 EOF
800 if compile_prog "" "" "posix_fallocate"; then
801     posix_fallocate="yes"
802 fi
803 print_config "POSIX fallocate" "$posix_fallocate"
804
805 ##########################################
806 # sched_set/getaffinity 2 or 3 argument test
807 if test "$linux_2arg_affinity" != "yes" ; then
808   linux_2arg_affinity="no"
809 fi
810 if test "$linux_3arg_affinity" != "yes" ; then
811   linux_3arg_affinity="no"
812 fi
813 cat > $TMPC << EOF
814 #include <sched.h>
815 int main(int argc, char **argv)
816 {
817   cpu_set_t mask;
818   return sched_setaffinity(0, sizeof(mask), &mask);
819 }
820 EOF
821 if compile_prog "" "" "sched_setaffinity(,,)"; then
822   linux_3arg_affinity="yes"
823 else
824   cat > $TMPC << EOF
825 #include <sched.h>
826 int main(int argc, char **argv)
827 {
828   cpu_set_t mask;
829   return sched_setaffinity(0, &mask);
830 }
831 EOF
832   if compile_prog "" "" "sched_setaffinity(,)"; then
833     linux_2arg_affinity="yes"
834   fi
835 fi
836 print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
837 print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
838
839 ##########################################
840 # clock_gettime probe
841 if test "$clock_gettime" != "yes" ; then
842   clock_gettime="no"
843 fi
844 cat > $TMPC << EOF
845 #include <stdio.h>
846 #include <time.h>
847 int main(int argc, char **argv)
848 {
849   return clock_gettime(0, NULL);
850 }
851 EOF
852 if compile_prog "" "" "clock_gettime"; then
853     clock_gettime="yes"
854 elif compile_prog "" "-lrt" "clock_gettime"; then
855     clock_gettime="yes"
856     LIBS="-lrt $LIBS"
857 fi
858 print_config "clock_gettime" "$clock_gettime"
859
860 ##########################################
861 # CLOCK_MONOTONIC probe
862 if test "$clock_monotonic" != "yes" ; then
863   clock_monotonic="no"
864 fi
865 if test "$clock_gettime" = "yes" ; then
866   cat > $TMPC << EOF
867 #include <stdio.h>
868 #include <time.h>
869 int main(int argc, char **argv)
870 {
871   return clock_gettime(CLOCK_MONOTONIC, NULL);
872 }
873 EOF
874   if compile_prog "" "$LIBS" "clock monotonic"; then
875       clock_monotonic="yes"
876   fi
877 fi
878 print_config "CLOCK_MONOTONIC" "$clock_monotonic"
879
880 ##########################################
881 # CLOCK_MONOTONIC_RAW probe
882 if test "$clock_monotonic_raw" != "yes" ; then
883   clock_monotonic_raw="no"
884 fi
885 if test "$clock_gettime" = "yes" ; then
886   cat > $TMPC << EOF
887 #include <stdio.h>
888 #include <time.h>
889 int main(int argc, char **argv)
890 {
891   return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
892 }
893 EOF
894   if compile_prog "" "$LIBS" "clock monotonic"; then
895       clock_monotonic_raw="yes"
896   fi
897 fi
898 print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
899
900 ##########################################
901 # CLOCK_MONOTONIC_PRECISE probe
902 if test "$clock_monotonic_precise" != "yes" ; then
903   clock_monotonic_precise="no"
904 fi
905 if test "$clock_gettime" = "yes" ; then
906   cat > $TMPC << EOF
907 #include <stdio.h>
908 #include <time.h>
909 int main(int argc, char **argv)
910 {
911   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
912 }
913 EOF
914   if compile_prog "" "$LIBS" "clock monotonic precise"; then
915       clock_monotonic_precise="yes"
916   fi
917 fi
918 print_config "CLOCK_MONOTONIC_PRECISE" "$clock_monotonic_precise"
919
920 ##########################################
921 # clockid_t probe
922 if test "$clockid_t" != "yes" ; then
923   clockid_t="no"
924 fi
925 cat > $TMPC << EOF
926 #include <time.h>
927 #include <string.h>
928 int main(int argc, char **argv)
929 {
930   volatile clockid_t cid;
931   memset((void*)&cid, 0, sizeof(cid));
932   return 0;
933 }
934 EOF
935 if compile_prog "" "$LIBS" "clockid_t"; then
936   clockid_t="yes"
937 fi
938 print_config "clockid_t" "$clockid_t"
939
940 ##########################################
941 # gettimeofday() probe
942 if test "$gettimeofday" != "yes" ; then
943   gettimeofday="no"
944 fi
945 cat > $TMPC << EOF
946 #include <sys/time.h>
947 #include <stdio.h>
948 int main(int argc, char **argv)
949 {
950   struct timeval tv;
951   return gettimeofday(&tv, NULL);
952 }
953 EOF
954 if compile_prog "" "" "gettimeofday"; then
955     gettimeofday="yes"
956 fi
957 print_config "gettimeofday" "$gettimeofday"
958
959 ##########################################
960 # fdatasync() probe
961 if test "$fdatasync" != "yes" ; then
962   fdatasync="no"
963 fi
964 cat > $TMPC << EOF
965 #include <stdio.h>
966 #include <unistd.h>
967 int main(int argc, char **argv)
968 {
969   return fdatasync(0);
970 }
971 EOF
972 if compile_prog "" "" "fdatasync"; then
973   fdatasync="yes"
974 fi
975 print_config "fdatasync" "$fdatasync"
976
977 ##########################################
978 # sync_file_range() probe
979 if test "$sync_file_range" != "yes" ; then
980   sync_file_range="no"
981 fi
982 cat > $TMPC << EOF
983 #include <stdio.h>
984 #include <unistd.h>
985 #include <fcntl.h>
986 #include <linux/fs.h>
987 int main(int argc, char **argv)
988 {
989   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
990                         SYNC_FILE_RANGE_WAIT_AFTER;
991   return sync_file_range(0, 0, 0, flags);
992 }
993 EOF
994 if compile_prog "" "" "sync_file_range"; then
995   sync_file_range="yes"
996 fi
997 print_config "sync_file_range" "$sync_file_range"
998
999 ##########################################
1000 # ext4 move extent probe
1001 if test "$ext4_me" != "yes" ; then
1002   ext4_me="no"
1003 fi
1004 cat > $TMPC << EOF
1005 #include <fcntl.h>
1006 #include <sys/ioctl.h>
1007 int main(int argc, char **argv)
1008 {
1009   struct move_extent me;
1010   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1011 }
1012 EOF
1013 if compile_prog "" "" "ext4 move extent" ; then
1014   ext4_me="yes"
1015 elif test $targetos = "Linux" ; then
1016   # On Linux, just default to it on and let it error at runtime if we really
1017   # don't have it. None of my updated systems have it defined, but it does
1018   # work. Takes a while to bubble back.
1019   ext4_me="yes"
1020 fi
1021 print_config "EXT4 move extent" "$ext4_me"
1022
1023 ##########################################
1024 # splice probe
1025 if test "$linux_splice" != "yes" ; then
1026   linux_splice="no"
1027 fi
1028 cat > $TMPC << EOF
1029 #include <stdio.h>
1030 #include <fcntl.h>
1031 int main(int argc, char **argv)
1032 {
1033   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1034 }
1035 EOF
1036 if compile_prog "" "" "linux splice"; then
1037   linux_splice="yes"
1038 fi
1039 print_config "Linux splice(2)" "$linux_splice"
1040
1041 ##########################################
1042 # GUASI probe
1043 if test "$guasi" != "yes" ; then
1044   guasi="no"
1045 fi
1046 cat > $TMPC << EOF
1047 #include <guasi.h>
1048 #include <guasi_syscalls.h>
1049 int main(int argc, char **argv)
1050 {
1051   guasi_t ctx = guasi_create(0, 0, 0);
1052   return 0;
1053 }
1054 EOF
1055 if compile_prog "" "" "guasi"; then
1056   guasi="yes"
1057 fi
1058 print_config "GUASI" "$guasi"
1059
1060 ##########################################
1061 # fusion-aw probe
1062 if test "$fusion_aw" != "yes" ; then
1063   fusion_aw="no"
1064 fi
1065 cat > $TMPC << EOF
1066 #include <nvm/nvm_primitives.h>
1067 int main(int argc, char **argv)
1068 {
1069   nvm_version_t ver_info;
1070   nvm_handle_t handle;
1071
1072   handle = nvm_get_handle(0, &ver_info);
1073   return nvm_atomic_write(handle, 0, 0, 0);
1074 }
1075 EOF
1076 if compile_prog "" "-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread" "fusion-aw"; then
1077   LIBS="-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread $LIBS"
1078   fusion_aw="yes"
1079 fi
1080 print_config "Fusion-io atomic engine" "$fusion_aw"
1081
1082 ##########################################
1083 # libnuma probe
1084 if test "$libnuma" != "yes" ; then
1085   libnuma="no"
1086 fi
1087 cat > $TMPC << EOF
1088 #include <numa.h>
1089 int main(int argc, char **argv)
1090 {
1091   return numa_available();
1092 }
1093 EOF
1094 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
1095   libnuma="yes"
1096   LIBS="-lnuma $LIBS"
1097 fi
1098 print_config "libnuma" "$libnuma"
1099
1100 ##########################################
1101 # libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1102 if test "$libnuma" = "yes" ; then
1103 libnuma_v2="no"
1104 cat > $TMPC << EOF
1105 #include <numa.h>
1106 int main(int argc, char **argv)
1107 {
1108   struct bitmask *mask = numa_parse_nodestring(NULL);
1109   return mask->size == 0;
1110 }
1111 EOF
1112 if compile_prog "" "" "libnuma api"; then
1113   libnuma_v2="yes"
1114 fi
1115 print_config "libnuma v2" "$libnuma_v2"
1116 fi
1117
1118 ##########################################
1119 # strsep() probe
1120 if test "$strsep" != "yes" ; then
1121   strsep="no"
1122 fi
1123 cat > $TMPC << EOF
1124 #include <string.h>
1125 int main(int argc, char **argv)
1126 {
1127   static char *string = "This is a string";
1128   strsep(&string, "needle");
1129   return 0;
1130 }
1131 EOF
1132 if compile_prog "" "" "strsep"; then
1133   strsep="yes"
1134 fi
1135 print_config "strsep" "$strsep"
1136
1137 ##########################################
1138 # strcasestr() probe
1139 if test "$strcasestr" != "yes" ; then
1140   strcasestr="no"
1141 fi
1142 cat > $TMPC << EOF
1143 #include <string.h>
1144 int main(int argc, char **argv)
1145 {
1146   return strcasestr(argv[0], argv[1]) != NULL;
1147 }
1148 EOF
1149 if compile_prog "" "" "strcasestr"; then
1150   strcasestr="yes"
1151 fi
1152 print_config "strcasestr" "$strcasestr"
1153
1154 ##########################################
1155 # strlcat() probe
1156 if test "$strlcat" != "yes" ; then
1157   strlcat="no"
1158 fi
1159 cat > $TMPC << EOF
1160 #include <string.h>
1161 int main(int argc, char **argv)
1162 {
1163   static char dst[64];
1164   static char *string = "This is a string";
1165   memset(dst, 0, sizeof(dst));
1166   strlcat(dst, string, sizeof(dst));
1167   return 0;
1168 }
1169 EOF
1170 if compile_prog "" "" "strlcat"; then
1171   strlcat="yes"
1172 fi
1173 print_config "strlcat" "$strlcat"
1174
1175 ##########################################
1176 # getopt_long_only() probe
1177 if test "$getopt_long_only" != "yes" ; then
1178   getopt_long_only="no"
1179 fi
1180 cat > $TMPC << EOF
1181 #include <unistd.h>
1182 #include <stdio.h>
1183 #include <getopt.h>
1184 int main(int argc, char **argv)
1185 {
1186   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
1187   return c;
1188 }
1189 EOF
1190 if compile_prog "" "" "getopt_long_only"; then
1191   getopt_long_only="yes"
1192 fi
1193 print_config "getopt_long_only()" "$getopt_long_only"
1194
1195 ##########################################
1196 # inet_aton() probe
1197 if test "$inet_aton" != "yes" ; then
1198   inet_aton="no"
1199 fi
1200 cat > $TMPC << EOF
1201 #include <sys/socket.h>
1202 #include <arpa/inet.h>
1203 #include <stdio.h>
1204 int main(int argc, char **argv)
1205 {
1206   struct in_addr in;
1207   return inet_aton(NULL, &in);
1208 }
1209 EOF
1210 if compile_prog "" "" "inet_aton"; then
1211   inet_aton="yes"
1212 fi
1213 print_config "inet_aton" "$inet_aton"
1214
1215 ##########################################
1216 # socklen_t probe
1217 if test "$socklen_t" != "yes" ; then
1218   socklen_t="no"
1219 fi
1220 cat > $TMPC << EOF
1221 #include <sys/socket.h>
1222 int main(int argc, char **argv)
1223 {
1224   socklen_t len = 0;
1225   return len;
1226 }
1227 EOF
1228 if compile_prog "" "" "socklen_t"; then
1229   socklen_t="yes"
1230 fi
1231 print_config "socklen_t" "$socklen_t"
1232
1233 ##########################################
1234 # Whether or not __thread is supported for TLS
1235 if test "$tls_thread" != "yes" ; then
1236   tls_thread="no"
1237 fi
1238 cat > $TMPC << EOF
1239 #include <stdio.h>
1240 static __thread int ret;
1241 int main(int argc, char **argv)
1242 {
1243   return ret;
1244 }
1245 EOF
1246 if compile_prog "" "" "__thread"; then
1247   tls_thread="yes"
1248 fi
1249 print_config "__thread" "$tls_thread"
1250
1251 ##########################################
1252 # Check if we have required gtk/glib support for gfio
1253 if test "$gfio" != "yes" ; then
1254   gfio="no"
1255 fi
1256 if test "$gfio_check" = "yes" ; then
1257   cat > $TMPC << EOF
1258 #include <glib.h>
1259 #include <cairo.h>
1260 #include <gtk/gtk.h>
1261 int main(void)
1262 {
1263   gdk_threads_enter();
1264   gdk_threads_leave();
1265
1266   return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1267 }
1268 EOF
1269 GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
1270 ORG_LDFLAGS=$LDFLAGS
1271 LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1272 if test "$?" != "0" ; then
1273   echo "configure: gtk and gthread not found"
1274   exit 1
1275 fi
1276 GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
1277 if test "$?" != "0" ; then
1278   echo "configure: gtk and gthread not found"
1279   exit 1
1280 fi
1281 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1282   $TMPE
1283   if test "$?" = "0" ; then
1284     gfio="yes"
1285     GFIO_LIBS="$LIBS $GTK_LIBS"
1286     CFLAGS="$CFLAGS $GTK_CFLAGS"
1287   else
1288     echo "GTK found, but need version 2.18 or higher"
1289     gfio="no"
1290   fi
1291 else
1292   echo "Please install gtk and gdk libraries"
1293   gfio="no"
1294 fi
1295 LDFLAGS=$ORG_LDFLAGS
1296 fi
1297
1298 if test "$gfio_check" = "yes" ; then
1299   print_config "gtk 2.18 or higher" "$gfio"
1300 fi
1301
1302 ##########################################
1303 # Check whether we have getrusage(RUSAGE_THREAD)
1304 if test "$rusage_thread" != "yes" ; then
1305   rusage_thread="no"
1306 fi
1307 cat > $TMPC << EOF
1308 #include <sys/time.h>
1309 #include <sys/resource.h>
1310 int main(int argc, char **argv)
1311 {
1312   struct rusage ru;
1313   getrusage(RUSAGE_THREAD, &ru);
1314   return 0;
1315 }
1316 EOF
1317 if compile_prog "" "" "RUSAGE_THREAD"; then
1318   rusage_thread="yes"
1319 fi
1320 print_config "RUSAGE_THREAD" "$rusage_thread"
1321
1322 ##########################################
1323 # Check whether we have SCHED_IDLE
1324 if test "$sched_idle" != "yes" ; then
1325   sched_idle="no"
1326 fi
1327 cat > $TMPC << EOF
1328 #include <sched.h>
1329 int main(int argc, char **argv)
1330 {
1331   struct sched_param p;
1332   return sched_setscheduler(0, SCHED_IDLE, &p);
1333 }
1334 EOF
1335 if compile_prog "" "" "SCHED_IDLE"; then
1336   sched_idle="yes"
1337 fi
1338 print_config "SCHED_IDLE" "$sched_idle"
1339
1340 ##########################################
1341 # Check whether we have TCP_NODELAY
1342 if test "$tcp_nodelay" != "yes" ; then
1343   tcp_nodelay="no"
1344 fi
1345 cat > $TMPC << EOF
1346 #include <stdio.h>
1347 #include <sys/types.h>
1348 #include <sys/socket.h>
1349 #include <netinet/tcp.h>
1350 int main(int argc, char **argv)
1351 {
1352   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1353 }
1354 EOF
1355 if compile_prog "" "" "TCP_NODELAY"; then
1356   tcp_nodelay="yes"
1357 fi
1358 print_config "TCP_NODELAY" "$tcp_nodelay"
1359
1360 ##########################################
1361 # Check whether we have SO_SNDBUF
1362 if test "$window_size" != "yes" ; then
1363   window_size="no"
1364 fi
1365 cat > $TMPC << EOF
1366 #include <stdio.h>
1367 #include <sys/types.h>
1368 #include <sys/socket.h>
1369 #include <netinet/tcp.h>
1370 int main(int argc, char **argv)
1371 {
1372   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1373   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1374 }
1375 EOF
1376 if compile_prog "" "" "SO_SNDBUF"; then
1377   window_size="yes"
1378 fi
1379 print_config "Net engine window_size" "$window_size"
1380
1381 ##########################################
1382 # Check whether we have TCP_MAXSEG
1383 if test "$mss" != "yes" ; then
1384   mss="no"
1385 fi
1386 cat > $TMPC << EOF
1387 #include <stdio.h>
1388 #include <sys/types.h>
1389 #include <sys/socket.h>
1390 #include <netinet/tcp.h>
1391 #include <arpa/inet.h>
1392 #include <netinet/in.h>
1393 int main(int argc, char **argv)
1394 {
1395   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1396 }
1397 EOF
1398 if compile_prog "" "" "TCP_MAXSEG"; then
1399   mss="yes"
1400 fi
1401 print_config "TCP_MAXSEG" "$mss"
1402
1403 ##########################################
1404 # Check whether we have RLIMIT_MEMLOCK
1405 if test "$rlimit_memlock" != "yes" ; then
1406   rlimit_memlock="no"
1407 fi
1408 cat > $TMPC << EOF
1409 #include <sys/time.h>
1410 #include <sys/resource.h>
1411 int main(int argc, char **argv)
1412 {
1413   struct rlimit rl;
1414   return getrlimit(RLIMIT_MEMLOCK, &rl);
1415 }
1416 EOF
1417 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1418   rlimit_memlock="yes"
1419 fi
1420 print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1421
1422 ##########################################
1423 # Check whether we have pwritev/preadv
1424 if test "$pwritev" != "yes" ; then
1425   pwritev="no"
1426 fi
1427 cat > $TMPC << EOF
1428 #include <stdio.h>
1429 #include <sys/uio.h>
1430 int main(int argc, char **argv)
1431 {
1432   return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1433 }
1434 EOF
1435 if compile_prog "" "" "pwritev"; then
1436   pwritev="yes"
1437 fi
1438 print_config "pwritev/preadv" "$pwritev"
1439
1440 ##########################################
1441 # Check whether we have pwritev2/preadv2
1442 if test "$pwritev2" != "yes" ; then
1443   pwritev2="no"
1444 fi
1445 cat > $TMPC << EOF
1446 #include <stdio.h>
1447 #include <sys/uio.h>
1448 int main(int argc, char **argv)
1449 {
1450   return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1451 }
1452 EOF
1453 if compile_prog "" "" "pwritev2"; then
1454   pwritev2="yes"
1455 fi
1456 print_config "pwritev2/preadv2" "$pwritev2"
1457
1458 ##########################################
1459 # Check whether we have the required functions for ipv6
1460 if test "$ipv6" != "yes" ; then
1461   ipv6="no"
1462 fi
1463 cat > $TMPC << EOF
1464 #include <sys/types.h>
1465 #include <sys/socket.h>
1466 #include <netinet/in.h>
1467 #include <netdb.h>
1468 #include <stdio.h>
1469 int main(int argc, char **argv)
1470 {
1471   struct addrinfo hints;
1472   struct in6_addr addr;
1473   int ret;
1474
1475   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1476   freeaddrinfo(NULL);
1477   printf("%s\n", gai_strerror(ret));
1478   addr = in6addr_any;
1479   return 0;
1480 }
1481 EOF
1482 if compile_prog "" "" "ipv6"; then
1483   ipv6="yes"
1484 fi
1485 print_config "IPv6 helpers" "$ipv6"
1486
1487 ##########################################
1488 # check for rbd
1489 if test "$rbd" != "yes" ; then
1490   rbd="no"
1491 fi
1492 cat > $TMPC << EOF
1493 #include <rbd/librbd.h>
1494
1495 int main(int argc, char **argv)
1496 {
1497   rados_t cluster;
1498   rados_ioctx_t io_ctx;
1499   const char cluster_name[] = "ceph";
1500   const char user_name[] = "client.admin";
1501   const char pool[] = "rbd";
1502   int major, minor, extra;
1503
1504   rbd_version(&major, &minor, &extra);
1505   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1506   rados_create2(&cluster, cluster_name, user_name, 0);
1507   rados_ioctx_create(cluster, pool, &io_ctx);
1508
1509   return 0;
1510 }
1511 EOF
1512 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1513   LIBS="-lrbd -lrados $LIBS"
1514   rbd="yes"
1515 fi
1516 print_config "Rados Block Device engine" "$rbd"
1517
1518 ##########################################
1519 # check for rbd_poll
1520 if test "$rbd_poll" != "yes" ; then
1521   rbd_poll="no"
1522 fi
1523 if test "$rbd" = "yes"; then
1524 cat > $TMPC << EOF
1525 #include <rbd/librbd.h>
1526 #include <sys/eventfd.h>
1527
1528 int main(int argc, char **argv)
1529 {
1530   rbd_image_t image;
1531   rbd_completion_t comp;
1532
1533   int fd = eventfd(0, EFD_NONBLOCK);
1534   rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1535   rbd_poll_io_events(image, comp, 1);
1536
1537   return 0;
1538 }
1539 EOF
1540 if compile_prog "" "-lrbd -lrados" "rbd"; then
1541   rbd_poll="yes"
1542 fi
1543 print_config "rbd_poll" "$rbd_poll"
1544 fi
1545
1546 ##########################################
1547 # check for rbd_invaidate_cache()
1548 if test "$rbd_inval" != "yes" ; then
1549   rbd_inval="no"
1550 fi
1551 if test "$rbd" = "yes"; then
1552 cat > $TMPC << EOF
1553 #include <rbd/librbd.h>
1554
1555 int main(int argc, char **argv)
1556 {
1557   rbd_image_t image;
1558
1559   return rbd_invalidate_cache(image);
1560 }
1561 EOF
1562 if compile_prog "" "-lrbd -lrados" "rbd"; then
1563   rbd_inval="yes"
1564 fi
1565 print_config "rbd_invalidate_cache" "$rbd_inval"
1566 fi
1567
1568 ##########################################
1569 # check for blkin
1570 if test "$rbd_blkin" != "yes" ; then
1571   rbd_blkin="no"
1572 fi
1573 cat > $TMPC << EOF
1574 #include <rbd/librbd.h>
1575 #include <zipkin_c.h>
1576
1577 int main(int argc, char **argv)
1578 {
1579   int r;
1580   struct blkin_trace_info t_info;
1581   blkin_init_trace_info(&t_info);
1582   rbd_completion_t completion;
1583   rbd_image_t image;
1584   uint64_t off;
1585   size_t len;
1586   const char *buf;
1587   r = rbd_aio_write_traced(image, off, len, buf, completion, &t_info);
1588   return 0;
1589 }
1590 EOF
1591 if test "$disable_rbd" != "yes" && test "$disable_rbd_blkin" != "yes" \
1592  && compile_prog "" "-lrbd -lrados -lblkin" "rbd_blkin"; then
1593   LIBS="-lblkin $LIBS"
1594   rbd_blkin="yes"
1595 fi
1596 print_config "rbd blkin tracing" "$rbd_blkin"
1597
1598 ##########################################
1599 # Check whether we have setvbuf
1600 if test "$setvbuf" != "yes" ; then
1601   setvbuf="no"
1602 fi
1603 cat > $TMPC << EOF
1604 #include <stdio.h>
1605 int main(int argc, char **argv)
1606 {
1607   FILE *f = NULL;
1608   char buf[80];
1609   setvbuf(f, buf, _IOFBF, sizeof(buf));
1610   return 0;
1611 }
1612 EOF
1613 if compile_prog "" "" "setvbuf"; then
1614   setvbuf="yes"
1615 fi
1616 print_config "setvbuf" "$setvbuf"
1617
1618 ##########################################
1619 # check for gfapi
1620 if test "$gfapi" != "yes" ; then
1621   gfapi="no"
1622 fi
1623 cat > $TMPC << EOF
1624 #include <glusterfs/api/glfs.h>
1625
1626 int main(int argc, char **argv)
1627 {
1628   glfs_t *g = glfs_new("foo");
1629
1630   return 0;
1631 }
1632 EOF
1633 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1634   LIBS="-lgfapi -lglusterfs $LIBS"
1635   gfapi="yes"
1636 fi
1637 print_config "Gluster API engine" "$gfapi"
1638
1639 ##########################################
1640 # check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
1641 if test "$gfapi" = "yes" ; then
1642 gf_fadvise="no"
1643 cat > $TMPC << EOF
1644 #include <glusterfs/api/glfs.h>
1645
1646 int main(int argc, char **argv)
1647 {
1648   struct glfs_fd *fd;
1649   int ret = glfs_fadvise(fd, 0, 0, 1);
1650
1651   return 0;
1652 }
1653 EOF
1654 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1655   gf_fadvise="yes"
1656 fi
1657 print_config "Gluster API use fadvise" "$gf_fadvise"
1658 fi
1659
1660 ##########################################
1661 # check for gfapi trim support
1662 if test "$gf_trim" != "yes" ; then
1663   gf_trim="no"
1664 fi
1665 if test "$gfapi" = "yes" ; then
1666 cat > $TMPC << EOF
1667 #include <glusterfs/api/glfs.h>
1668
1669 int main(int argc, char **argv)
1670 {
1671   return glfs_discard_async(NULL, 0, 0);
1672 }
1673 EOF
1674 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1675   gf_trim="yes"
1676 fi
1677 print_config "Gluster API trim support" "$gf_trim"
1678 fi
1679
1680 ##########################################
1681 # Check if we support stckf on s390
1682 if test "$s390_z196_facilities" != "yes" ; then
1683   s390_z196_facilities="no"
1684 fi
1685 cat > $TMPC << EOF
1686 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1687 int main(int argc, char **argv)
1688 {
1689     /* We want just 1 double word to be returned.  */
1690     register unsigned long reg0 asm("0") = 0;
1691     unsigned long stfle_bits;
1692     asm volatile(".machine push"        "\n\t"
1693                  ".machine \"z9-109\""  "\n\t"
1694                  "stfle %0"             "\n\t"
1695                  ".machine pop"         "\n"
1696                  : "=QS" (stfle_bits), "+d" (reg0)
1697                  : : "cc");
1698
1699     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1700       return 0;
1701     else
1702       return -1;
1703 }
1704 EOF
1705 if compile_prog "" "" "s390_z196_facilities"; then
1706   $TMPE
1707   if [ $? -eq 0 ]; then
1708         s390_z196_facilities="yes"
1709   fi
1710 fi
1711 print_config "s390_z196_facilities" "$s390_z196_facilities"
1712
1713 ##########################################
1714 # Check if we have required environment variables configured for libhdfs
1715 if test "$libhdfs" = "yes" ; then
1716   hdfs_conf_error=0
1717   if test "$JAVA_HOME" = "" ; then
1718     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1719     hdfs_conf_error=1
1720   fi
1721   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1722     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1723     hdfs_conf_error=1
1724   fi
1725   if test "$FIO_LIBHDFS_LIB" = "" ; then
1726     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1727     hdfs_conf_error=1
1728   fi
1729   if test "$hdfs_conf_error" = "1" ; then
1730     exit 1
1731   fi
1732   FIO_HDFS_CPU=$cpu
1733   if test "$FIO_HDFS_CPU" = "x86_64" ; then
1734     FIO_HDFS_CPU="amd64"
1735   fi
1736 fi
1737 print_config "HDFS engine" "$libhdfs"
1738
1739 ##########################################
1740 # Check whether we have MTD
1741 if test "$mtd" != "yes" ; then
1742   mtd="no"
1743 fi
1744 cat > $TMPC << EOF
1745 #include <string.h>
1746 #include <mtd/mtd-user.h>
1747 #include <sys/ioctl.h>
1748 int main(int argc, char **argv)
1749 {
1750   struct mtd_write_req ops;
1751   struct mtd_info_user info;
1752   memset(&ops, 0, sizeof(ops));
1753   info.type = MTD_MLCNANDFLASH;
1754   return ioctl(0, MEMGETINFO, &info);
1755 }
1756 EOF
1757 if compile_prog "" "" "mtd"; then
1758   mtd="yes"
1759 fi
1760 print_config "MTD" "$mtd"
1761
1762 ##########################################
1763 # Check whether we have libpmem
1764 if test "$libpmem" != "yes" ; then
1765   libpmem="no"
1766 fi
1767 cat > $TMPC << EOF
1768 #include <libpmem.h>
1769 int main(int argc, char **argv)
1770 {
1771   int rc;
1772   rc = pmem_is_pmem(0, 0);
1773   return 0;
1774 }
1775 EOF
1776 if compile_prog "" "-lpmem" "libpmem"; then
1777   libpmem="yes"
1778   LIBS="-lpmem $LIBS"
1779 fi
1780 print_config "libpmem" "$libpmem"
1781
1782 ##########################################
1783 # Check whether we have libpmemblk
1784 # libpmem is a prerequisite
1785 if test "$libpmemblk" != "yes" ; then
1786   libpmemblk="no"
1787 fi
1788 if test "$libpmem" = "yes"; then
1789   cat > $TMPC << EOF
1790 #include <libpmemblk.h>
1791 int main(int argc, char **argv)
1792 {
1793   PMEMblkpool *pbp;
1794   pbp = pmemblk_open("", 0);
1795   return 0;
1796 }
1797 EOF
1798   if compile_prog "" "-lpmemblk" "libpmemblk"; then
1799     libpmemblk="yes"
1800     LIBS="-lpmemblk $LIBS"
1801   fi
1802 fi
1803 print_config "libpmemblk" "$libpmemblk"
1804
1805 # Choose the ioengines
1806 if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
1807   devdax="yes"
1808   if test "$libpmemblk" = "yes"; then
1809     pmemblk="yes"
1810   fi
1811 fi
1812
1813 ##########################################
1814 # Report whether pmemblk engine is enabled
1815 print_config "NVML pmemblk engine" "$pmemblk"
1816
1817 ##########################################
1818 # Report whether dev-dax engine is enabled
1819 print_config "NVML dev-dax engine" "$devdax"
1820
1821 ##########################################
1822 # Check if we have lex/yacc available
1823 yacc="no"
1824 yacc_is_bison="no"
1825 lex="no"
1826 arith="no"
1827 if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
1828 if test "$targetos" != "SunOS" ; then
1829 LEX=$(which lex 2> /dev/null)
1830 if test -x "$LEX" ; then
1831   lex="yes"
1832 fi
1833 YACC=$(which bison 2> /dev/null)
1834 if test -x "$YACC" ; then
1835   yacc="yes"
1836   yacc_is_bison="yes"
1837 else
1838   YACC=$(which yacc 2> /dev/null)
1839   if test -x "$YACC" ; then
1840     yacc="yes"
1841   fi
1842 fi
1843 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
1844   arith="yes"
1845 fi
1846
1847 if test "$arith" = "yes" ; then
1848 cat > $TMPC << EOF
1849 extern int yywrap(void);
1850
1851 int main(int argc, char **argv)
1852 {
1853   yywrap();
1854   return 0;
1855 }
1856 EOF
1857 if compile_prog "" "-ll" "lex"; then
1858   LIBS="-ll $LIBS"
1859 else
1860   arith="no"
1861 fi
1862 fi
1863 fi
1864 fi
1865
1866 # Check if lex fails using -o
1867 if test "$arith" = "yes" ; then
1868 if test "$force_no_lex_o" = "yes" ; then
1869   lex_use_o="no"
1870 else
1871 $LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null
1872 if test "$?" = "0" ; then
1873   lex_use_o="yes"
1874 else
1875   lex_use_o="no"
1876 fi
1877 fi
1878 fi
1879
1880 print_config "lex/yacc for arithmetic" "$arith"
1881
1882 ##########################################
1883 # Check whether we have setmntent/getmntent
1884 if test "$getmntent" != "yes" ; then
1885   getmntent="no"
1886 fi
1887 cat > $TMPC << EOF
1888 #include <stdio.h>
1889 #include <mntent.h>
1890 int main(int argc, char **argv)
1891 {
1892   FILE *mtab = setmntent(NULL, "r");
1893   struct mntent *mnt = getmntent(mtab);
1894   endmntent(mtab);
1895   return 0;
1896 }
1897 EOF
1898 if compile_prog "" "" "getmntent"; then
1899   getmntent="yes"
1900 fi
1901 print_config "getmntent" "$getmntent"
1902
1903 ##########################################
1904 # Check whether we have getmntinfo
1905 # These are originally added for BSDs, but may also work
1906 # on other operating systems with getmntinfo(3).
1907
1908 # getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
1909 # Note that NetBSD needs -Werror to catch warning as error.
1910 if test "$getmntinfo" != "yes" ; then
1911   getmntinfo="no"
1912 fi
1913 cat > $TMPC << EOF
1914 #include <stdio.h>
1915 #include <sys/param.h>
1916 #include <sys/mount.h>
1917 int main(int argc, char **argv)
1918 {
1919   struct statfs *st;
1920   return getmntinfo(&st, MNT_NOWAIT);
1921 }
1922 EOF
1923 if compile_prog "-Werror" "" "getmntinfo"; then
1924   getmntinfo="yes"
1925 fi
1926 print_config "getmntinfo" "$getmntinfo"
1927
1928 # getmntinfo(3) for NetBSD.
1929 if test "$getmntinfo_statvfs" != "yes" ; then
1930   getmntinfo_statvfs="no"
1931 fi
1932 cat > $TMPC << EOF
1933 #include <stdio.h>
1934 #include <sys/statvfs.h>
1935 int main(int argc, char **argv)
1936 {
1937   struct statvfs *st;
1938   return getmntinfo(&st, MNT_NOWAIT);
1939 }
1940 EOF
1941 # Skip the test if the one with statfs arg is detected.
1942 if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
1943   getmntinfo_statvfs="yes"
1944   print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
1945 fi
1946
1947 ##########################################
1948 # Check whether we have _Static_assert
1949 if test "$static_assert" != "yes" ; then
1950   static_assert="no"
1951 fi
1952 cat > $TMPC << EOF
1953 #include <assert.h>
1954 #include <stdlib.h>
1955 #include <stddef.h>
1956
1957 struct foo {
1958   int a, b;
1959 };
1960
1961 int main(int argc, char **argv)
1962 {
1963   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
1964   return 0 ;
1965 }
1966 EOF
1967 if compile_prog "" "" "static_assert"; then
1968     static_assert="yes"
1969 fi
1970 print_config "Static Assert" "$static_assert"
1971
1972 ##########################################
1973 # Check whether we have bool / stdbool.h
1974 if test "$have_bool" != "yes" ; then
1975   have_bool="no"
1976 fi
1977 cat > $TMPC << EOF
1978 #include <stdbool.h>
1979 int main(int argc, char **argv)
1980 {
1981   bool var = true;
1982   return var != false;
1983 }
1984 EOF
1985 if compile_prog "" "" "bool"; then
1986   have_bool="yes"
1987 fi
1988 print_config "bool" "$have_bool"
1989
1990 ##########################################
1991 # Check whether we have strndup()
1992 strndup="no"
1993 cat > $TMPC << EOF
1994 #include <string.h>
1995 #include <stdlib.h>
1996 int main(int argc, char **argv)
1997 {
1998   char *res = strndup("test string", 8);
1999
2000   free(res);
2001   return 0;
2002 }
2003 EOF
2004 if compile_prog "" "" "strndup"; then
2005   strndup="yes"
2006 fi
2007 print_config "strndup" "$strndup"
2008
2009 ##########################################
2010 # check march=armv8-a+crc+crypto
2011 if test "$march_armv8_a_crc_crypto" != "yes" ; then
2012   march_armv8_a_crc_crypto="no"
2013 fi
2014 if test "$cpu" = "arm64" ; then
2015   cat > $TMPC <<EOF
2016 #include <sys/auxv.h>
2017 #include <arm_acle.h>
2018 #include <arm_neon.h>
2019
2020 int main(void)
2021 {
2022   return 0;
2023 }
2024 EOF
2025   if compile_prog "-march=armv8-a+crc+crypto" "" ""; then
2026     march_armv8_a_crc_crypto="yes"
2027     CFLAGS="$CFLAGS -march=armv8-a+crc+crypto -DARCH_HAVE_CRC_CRYPTO"
2028   fi
2029 fi
2030 print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2031
2032 ##########################################
2033 # cuda probe
2034 if test "$cuda" != "yes" ; then
2035   cuda="no"
2036 fi
2037 cat > $TMPC << EOF
2038 #include <cuda.h>
2039 int main(int argc, char **argv)
2040 {
2041   return cuInit(0);
2042 }
2043 EOF
2044 if test "$enable_cuda" = "yes" && compile_prog "" "-lcuda" "cuda"; then
2045   cuda="yes"
2046   LIBS="-lcuda $LIBS"
2047 fi
2048 print_config "cuda" "$cuda"
2049
2050 #############################################################################
2051
2052 if test "$wordsize" = "64" ; then
2053   output_sym "CONFIG_64BIT"
2054 elif test "$wordsize" = "32" ; then
2055   output_sym "CONFIG_32BIT"
2056 else
2057   fatal "Unknown wordsize!"
2058 fi
2059 if test "$bigendian" = "yes" ; then
2060   output_sym "CONFIG_BIG_ENDIAN"
2061 else
2062   output_sym "CONFIG_LITTLE_ENDIAN"
2063 fi
2064 if test "$zlib" = "yes" ; then
2065   output_sym "CONFIG_ZLIB"
2066 fi
2067 if test "$libaio" = "yes" ; then
2068   output_sym "CONFIG_LIBAIO"
2069 fi
2070 if test "$posix_aio" = "yes" ; then
2071   output_sym "CONFIG_POSIXAIO"
2072 fi
2073 if test "$posix_aio_fsync" = "yes" ; then
2074   output_sym "CONFIG_POSIXAIO_FSYNC"
2075 fi
2076 if test "$posix_pshared" = "yes" ; then
2077   output_sym "CONFIG_PSHARED"
2078 fi
2079 if test "$linux_fallocate" = "yes" ; then
2080   output_sym "CONFIG_LINUX_FALLOCATE"
2081 fi
2082 if test "$posix_fallocate" = "yes" ; then
2083   output_sym "CONFIG_POSIX_FALLOCATE"
2084 fi
2085 if test "$fdatasync" = "yes" ; then
2086   output_sym "CONFIG_FDATASYNC"
2087 fi
2088 if test "$sync_file_range" = "yes" ; then
2089   output_sym "CONFIG_SYNC_FILE_RANGE"
2090 fi
2091 if test "$sfaa" = "yes" ; then
2092   output_sym "CONFIG_SFAA"
2093 fi
2094 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2095   output_sym "CONFIG_RDMA"
2096 fi
2097 if test "$clock_gettime" = "yes" ; then
2098   output_sym "CONFIG_CLOCK_GETTIME"
2099 fi
2100 if test "$clock_monotonic" = "yes" ; then
2101   output_sym "CONFIG_CLOCK_MONOTONIC"
2102 fi
2103 if test "$clock_monotonic_raw" = "yes" ; then
2104   output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2105 fi
2106 if test "$clock_monotonic_precise" = "yes" ; then
2107   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
2108 fi
2109 if test "$clockid_t" = "yes"; then
2110   output_sym "CONFIG_CLOCKID_T"
2111 fi
2112 if test "$gettimeofday" = "yes" ; then
2113   output_sym "CONFIG_GETTIMEOFDAY"
2114 fi
2115 if test "$posix_fadvise" = "yes" ; then
2116   output_sym "CONFIG_POSIX_FADVISE"
2117 fi
2118 if test "$linux_3arg_affinity" = "yes" ; then
2119   output_sym "CONFIG_3ARG_AFFINITY"
2120 elif test "$linux_2arg_affinity" = "yes" ; then
2121   output_sym "CONFIG_2ARG_AFFINITY"
2122 fi
2123 if test "$strsep" = "yes" ; then
2124   output_sym "CONFIG_STRSEP"
2125 fi
2126 if test "$strcasestr" = "yes" ; then
2127   output_sym "CONFIG_STRCASESTR"
2128 fi
2129 if test "$strlcat" = "yes" ; then
2130   output_sym "CONFIG_STRLCAT"
2131 fi
2132 if test "$getopt_long_only" = "yes" ; then
2133   output_sym "CONFIG_GETOPT_LONG_ONLY"
2134 fi
2135 if test "$inet_aton" = "yes" ; then
2136   output_sym "CONFIG_INET_ATON"
2137 fi
2138 if test "$socklen_t" = "yes" ; then
2139   output_sym "CONFIG_SOCKLEN_T"
2140 fi
2141 if test "$ext4_me" = "yes" ; then
2142   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
2143 fi
2144 if test "$linux_splice" = "yes" ; then
2145   output_sym "CONFIG_LINUX_SPLICE"
2146 fi
2147 if test "$guasi" = "yes" ; then
2148   output_sym "CONFIG_GUASI"
2149 fi
2150 if test "$fusion_aw" = "yes" ; then
2151   output_sym "CONFIG_FUSION_AW"
2152 fi
2153 if test "$libnuma_v2" = "yes" ; then
2154   output_sym "CONFIG_LIBNUMA"
2155 fi
2156 if test "$solaris_aio" = "yes" ; then
2157   output_sym "CONFIG_SOLARISAIO"
2158 fi
2159 if test "$tls_thread" = "yes" ; then
2160   output_sym "CONFIG_TLS_THREAD"
2161 fi
2162 if test "$rusage_thread" = "yes" ; then
2163   output_sym "CONFIG_RUSAGE_THREAD"
2164 fi
2165 if test "$gfio" = "yes" ; then
2166   output_sym "CONFIG_GFIO"
2167 fi
2168 if test "$esx" = "yes" ; then
2169   output_sym "CONFIG_ESX"
2170   output_sym "CONFIG_NO_SHM"
2171 fi
2172 if test "$sched_idle" = "yes" ; then
2173   output_sym "CONFIG_SCHED_IDLE"
2174 fi
2175 if test "$tcp_nodelay" = "yes" ; then
2176   output_sym "CONFIG_TCP_NODELAY"
2177 fi
2178 if test "$window_size" = "yes" ; then
2179   output_sym "CONFIG_NET_WINDOWSIZE"
2180 fi
2181 if test "$mss" = "yes" ; then
2182   output_sym "CONFIG_NET_MSS"
2183 fi
2184 if test "$rlimit_memlock" = "yes" ; then
2185   output_sym "CONFIG_RLIMIT_MEMLOCK"
2186 fi
2187 if test "$pwritev" = "yes" ; then
2188   output_sym "CONFIG_PWRITEV"
2189 fi
2190 if test "$pwritev2" = "yes" ; then
2191   output_sym "CONFIG_PWRITEV2"
2192 fi
2193 if test "$ipv6" = "yes" ; then
2194   output_sym "CONFIG_IPV6"
2195 fi
2196 if test "$rbd" = "yes" ; then
2197   output_sym "CONFIG_RBD"
2198 fi
2199 if test "$rbd_poll" = "yes" ; then
2200   output_sym "CONFIG_RBD_POLL"
2201 fi
2202 if test "$rbd_inval" = "yes" ; then
2203   output_sym "CONFIG_RBD_INVAL"
2204 fi
2205 if test "$rbd_blkin" = "yes" ; then
2206   output_sym "CONFIG_RBD_BLKIN"
2207 fi
2208 if test "$setvbuf" = "yes" ; then
2209   output_sym "CONFIG_SETVBUF"
2210 fi
2211 if test "$s390_z196_facilities" = "yes" ; then
2212   output_sym "CONFIG_S390_Z196_FACILITIES"
2213   CFLAGS="$CFLAGS -march=z9-109"
2214 fi
2215 if test "$gfapi" = "yes" ; then
2216   output_sym "CONFIG_GFAPI"
2217 fi
2218 if test "$gf_fadvise" = "yes" ; then
2219   output_sym "CONFIG_GF_FADVISE"
2220 fi
2221 if test "$gf_trim" = "yes" ; then
2222   output_sym "CONFIG_GF_TRIM"
2223 fi
2224 if test "$libhdfs" = "yes" ; then
2225   output_sym "CONFIG_LIBHDFS"
2226   echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
2227   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2228   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2229   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
2230  fi
2231 if test "$mtd" = "yes" ; then
2232   output_sym "CONFIG_MTD"
2233 fi
2234 if test "$pmemblk" = "yes" ; then
2235   output_sym "CONFIG_PMEMBLK"
2236 fi
2237 if test "$devdax" = "yes" ; then
2238   output_sym "CONFIG_LINUX_DEVDAX"
2239 fi
2240 if test "$arith" = "yes" ; then
2241   output_sym "CONFIG_ARITHMETIC"
2242   if test "$yacc_is_bison" = "yes" ; then
2243     echo "YACC=$YACC -y" >> $config_host_mak
2244   else
2245     echo "YACC=$YACC" >> $config_host_mak
2246   fi
2247   if test "$lex_use_o" = "yes" ; then
2248     echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2249   fi
2250 fi
2251 if test "$getmntent" = "yes" ; then
2252   output_sym "CONFIG_GETMNTENT"
2253 fi
2254 if test "$getmntinfo" = "yes" ; then
2255   output_sym "CONFIG_GETMNTINFO"
2256 fi
2257 if test "$getmntinfo_statvfs" = "yes" ; then
2258   output_sym "CONFIG_GETMNTINFO_STATVFS"
2259 fi
2260 if test "$static_assert" = "yes" ; then
2261   output_sym "CONFIG_STATIC_ASSERT"
2262 fi
2263 if test "$have_bool" = "yes" ; then
2264   output_sym "CONFIG_HAVE_BOOL"
2265 fi
2266 if test "$strndup" = "yes" ; then
2267   output_sym "CONFIG_HAVE_STRNDUP"
2268 fi
2269 if test "$disable_opt" = "yes" ; then
2270   output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2271 fi
2272 if test "$zlib" = "no" ; then
2273   echo "Consider installing zlib-dev (zlib-devel), some fio features depend on it."
2274 fi
2275 if test "$cuda" = "yes" ; then
2276   output_sym "CONFIG_CUDA"
2277 fi
2278
2279 echo "LIBS+=$LIBS" >> $config_host_mak
2280 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
2281 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
2282 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
2283 echo "CC=$cc" >> $config_host_mak
2284 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
2285 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
2286
2287 if [ `dirname $0` != "." -a ! -e Makefile ]; then
2288     cat > Makefile <<EOF
2289 SRCDIR:=`dirname $0`
2290 include \$(SRCDIR)/Makefile
2291 EOF
2292 fi