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