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