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