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