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