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