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