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