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