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