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