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