server: use scalloc() for sk_out allocation
[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"
17TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
18TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
19
20# NB: do not call "exit" in the trap handler; this is buggy with some shells;
21# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
22trap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
23
24rm -rf config.log
25
26config_host_mak="config-host.mak"
27config_host_h="config-host.h"
28
29rm -rf $config_host_mak
30rm -rf $config_host_h
31
32fatal() {
33 echo $@
34 echo "Configure failed, check config.log and/or the above output"
35 rm -rf $config_host_mak
36 rm -rf $config_host_h
37 exit 1
38}
39
40# Print result for each configuration test
41print_config() {
42 printf "%-30s%s\n" "$1" "$2"
43}
44
45# Default CFLAGS
46CFLAGS="-D_GNU_SOURCE -include config-host.h"
47BUILD_CFLAGS=""
48
49# Print a helpful header at the top of config.log
50echo "# FIO configure log $(date)" >> config.log
51printf "# Configured with:" >> config.log
52printf " '%s'" "$0" "$@" >> config.log
53echo >> config.log
54echo "#" >> config.log
55
56# Print configure header at the top of $config_host_h
57echo "/*" > $config_host_h
58echo " * Automatically generated by configure - do not modify" >> $config_host_h
59printf " * Configured with:" >> $config_host_h
60printf " * '%s'" "$0" "$@" >> $config_host_h
61echo "" >> $config_host_h
62echo " */" >> $config_host_h
63
64do_cc() {
65 # Run the compiler, capturing its output to the log.
66 echo $cc "$@" >> config.log
67 $cc "$@" >> config.log 2>&1 || return $?
68 # Test passed. If this is an --enable-werror build, rerun
69 # the test with -Werror and bail out if it fails. This
70 # makes warning-generating-errors in configure test code
71 # obvious to developers.
72 if test "$werror" != "yes"; then
73 return 0
74 fi
75 # Don't bother rerunning the compile if we were already using -Werror
76 case "$*" in
77 *-Werror*)
78 return 0
79 ;;
80 esac
81 echo $cc -Werror "$@" >> config.log
82 $cc -Werror "$@" >> config.log 2>&1 && return $?
83 echo "ERROR: configure test passed without -Werror but failed with -Werror."
84 echo "This is probably a bug in the configure script. The failing command"
85 echo "will be at the bottom of config.log."
86 fatal "You can run configure with --disable-werror to bypass this check."
87}
88
89compile_object() {
90 do_cc $CFLAGS -c -o $TMPO $TMPC
91}
92
93compile_prog() {
94 local_cflags="$1"
95 local_ldflags="$2 $LIBS"
96 echo "Compiling test case $3" >> config.log
97 do_cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
98}
99
100feature_not_found() {
101 feature=$1
102 packages=$2
103
104 echo "ERROR"
105 echo "ERROR: User requested feature $feature"
106 if test ! -z "$packages" ; then
107 echo "ERROR: That feature needs $packages installed"
108 fi
109 echo "ERROR: configure was not able to find it"
110 fatal "ERROR"
111}
112
113has() {
114 type "$1" >/dev/null 2>&1
115}
116
117check_define() {
118 cat > $TMPC <<EOF
119#if !defined($1)
120#error $1 not defined
121#endif
122int main(void)
123{
124 return 0;
125}
126EOF
127 compile_object
128}
129
130output_sym() {
131 echo "$1=y" >> $config_host_mak
132 echo "#define $1" >> $config_host_h
133}
134
135targetos=""
136cpu=""
137
138# default options
139show_help="no"
140exit_val=0
141gfio_check="no"
142libhdfs="no"
143pmemblk="no"
144devdax="no"
145pmem="no"
146disable_lex=""
147disable_pmem="no"
148disable_native="no"
149march_set="no"
150prefix=/usr/local
151
152# parse options
153for opt do
154 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
155 case "$opt" in
156 --prefix=*) prefix="$optarg"
157 ;;
158 --cpu=*) cpu="$optarg"
159 ;;
160 # esx is cross compiled and cannot be detect through simple uname calls
161 --esx)
162 esx="yes"
163 ;;
164 --cc=*) CC="$optarg"
165 ;;
166 --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
167 ;;
168 --build-32bit-win) build_32bit_win="yes"
169 ;;
170 --build-static) build_static="yes"
171 ;;
172 --enable-gfio) gfio_check="yes"
173 ;;
174 --disable-numa) disable_numa="yes"
175 ;;
176 --disable-rdma) disable_rdma="yes"
177 ;;
178 --disable-rados) disable_rados="yes"
179 ;;
180 --disable-rbd) disable_rbd="yes"
181 ;;
182 --disable-gfapi) disable_gfapi="yes"
183 ;;
184 --enable-libhdfs) libhdfs="yes"
185 ;;
186 --disable-lex) disable_lex="yes"
187 ;;
188 --enable-lex) disable_lex="no"
189 ;;
190 --disable-shm) no_shm="yes"
191 ;;
192 --disable-optimizations) disable_opt="yes"
193 ;;
194 --disable-pmem) disable_pmem="yes"
195 ;;
196 --enable-cuda) enable_cuda="yes"
197 ;;
198 --disable-native) disable_native="yes"
199 ;;
200 --help)
201 show_help="yes"
202 ;;
203 *)
204 echo "Bad option $opt"
205 show_help="yes"
206 exit_val=1
207 esac
208done
209
210if test "$show_help" = "yes" ; then
211 echo "--prefix= Use this directory as installation prefix"
212 echo "--cpu= Specify target CPU if auto-detect fails"
213 echo "--cc= Specify compiler to use"
214 echo "--extra-cflags= Specify extra CFLAGS to pass to compiler"
215 echo "--build-32bit-win Enable 32-bit build on Windows"
216 echo "--build-static Build a static fio"
217 echo "--esx Configure build options for esx"
218 echo "--enable-gfio Enable building of gtk gfio"
219 echo "--disable-numa Disable libnuma even if found"
220 echo "--disable-rdma Disable RDMA support even if found"
221 echo "--disable-gfapi Disable gfapi"
222 echo "--enable-libhdfs Enable hdfs support"
223 echo "--disable-lex Disable use of lex/yacc for math"
224 echo "--disable-pmem Disable pmem based engines even if found"
225 echo "--enable-lex Enable use of lex/yacc for math"
226 echo "--disable-shm Disable SHM support"
227 echo "--disable-optimizations Don't enable compiler optimizations"
228 echo "--enable-cuda Enable GPUDirect RDMA support"
229 echo "--disable-native Don't build for native host"
230 exit $exit_val
231fi
232
233cross_prefix=${cross_prefix-${CROSS_COMPILE}}
234# Preferred compiler (can be overriden later after we know the platform):
235# ${CC} (if set)
236# ${cross_prefix}gcc (if cross-prefix specified)
237# gcc if available
238# clang if available
239if test -z "${CC}${cross_prefix}"; then
240 if has gcc; then
241 cc=gcc
242 elif has clang; then
243 cc=clang
244 fi
245else
246 cc="${CC-${cross_prefix}gcc}"
247fi
248
249if check_define __ANDROID__ ; then
250 targetos="Android"
251elif check_define __linux__ ; then
252 targetos="Linux"
253elif check_define __OpenBSD__ ; then
254 targetos='OpenBSD'
255elif check_define __NetBSD__ ; then
256 targetos='NetBSD'
257elif check_define __sun__ ; then
258 targetos='SunOS'
259 CFLAGS="$CFLAGS -D_REENTRANT"
260elif check_define _WIN32 ; then
261 targetos='CYGWIN'
262else
263 targetos=`uname -s`
264fi
265
266echo "# Automatically generated by configure - do not modify" > $config_host_mak
267printf "# Configured with:" >> $config_host_mak
268printf " '%s'" "$0" "$@" >> $config_host_mak
269echo >> $config_host_mak
270echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
271
272if test "$no_shm" = "yes" ; then
273 output_sym "CONFIG_NO_SHM"
274fi
275
276if test "$disable_opt" = "yes" ; then
277 output_sym "CONFIG_FIO_NO_OPT"
278fi
279
280# Some host OSes need non-standard checks for which CPU to use.
281# Note that these checks are broken for cross-compilation: if you're
282# cross-compiling to one of these OSes then you'll need to specify
283# the correct CPU with the --cpu option.
284case $targetos in
285AIX|OpenBSD|NetBSD)
286 # Unless explicitly enabled, turn off lex.
287 # OpenBSD will hit syntax error when enabled.
288 if test -z "$disable_lex" ; then
289 disable_lex="yes"
290 else
291 force_no_lex_o="yes"
292 fi
293 ;;
294Darwin)
295 # on Leopard most of the system is 32-bit, so we have to ask the kernel if
296 # we can run 64-bit userspace code.
297 # If the user didn't specify a CPU explicitly and the kernel says this is
298 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
299 # detection code.
300 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
301 cpu="x86_64"
302 fi
303 # Error at compile time linking of weak/partial symbols if possible...
304cat > $TMPC <<EOF
305int main(void)
306{
307 return 0;
308}
309EOF
310 if compile_prog "" "-Wl,-no_weak_imports" "disable weak symbols"; then
311 echo "Disabling weak symbols"
312 LDFLAGS="$LDFLAGS -Wl,-no_weak_imports"
313 fi
314 ;;
315SunOS)
316 # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
317 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
318 cpu="x86_64"
319 fi
320 LIBS="-lnsl -lsocket"
321 ;;
322CYGWIN*)
323 # We still force some options, so keep this message here.
324 echo "Forcing some known good options on Windows"
325 if test -z "${CC}${cross_prefix}"; then
326 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
327 cc="i686-w64-mingw32-gcc"
328 else
329 cc="x86_64-w64-mingw32-gcc"
330 fi
331 fi
332 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
333 output_sym "CONFIG_32BIT"
334 else
335 output_sym "CONFIG_64BIT_LLP64"
336 fi
337 # We need this to be output_sym'd here because this is Windows specific.
338 # The regular configure path never sets this config.
339 output_sym "CONFIG_WINDOWSAIO"
340 # We now take the regular configuration path without having exit 0 here.
341 # Flags below are still necessary mostly for MinGW.
342 socklen_t="yes"
343 sfaa="yes"
344 sync_sync="yes"
345 cmp_swap="yes"
346 rusage_thread="yes"
347 fdatasync="yes"
348 clock_gettime="yes" # clock_monotonic probe has dependency on this
349 clock_monotonic="yes"
350 gettimeofday="yes"
351 sched_idle="yes"
352 tcp_nodelay="yes"
353 tls_thread="yes"
354 static_assert="yes"
355 ipv6="yes"
356 mkdir_two="no"
357 echo "BUILD_CFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
358 ;;
359esac
360
361# Now we know the target platform we can have another guess at the preferred
362# compiler when it wasn't explictly set
363if test -z "${CC}${cross_prefix}"; then
364 if test "$targetos" = "FreeBSD" || test "$targetos" = "Darwin"; then
365 if has clang; then
366 cc=clang
367 fi
368 fi
369fi
370if test -z "$cc"; then
371 echo "configure: failed to find compiler"
372 exit 1
373fi
374
375if test ! -z "$cpu" ; then
376 # command line argument
377 :
378elif check_define __i386__ ; then
379 cpu="i386"
380elif check_define __x86_64__ ; then
381 cpu="x86_64"
382elif check_define __sparc__ ; then
383 if check_define __arch64__ ; then
384 cpu="sparc64"
385 else
386 cpu="sparc"
387 fi
388elif check_define _ARCH_PPC ; then
389 if check_define _ARCH_PPC64 ; then
390 cpu="ppc64"
391 else
392 cpu="ppc"
393 fi
394elif check_define __mips__ ; then
395 cpu="mips"
396elif check_define __ia64__ ; then
397 cpu="ia64"
398elif check_define __s390__ ; then
399 if check_define __s390x__ ; then
400 cpu="s390x"
401 else
402 cpu="s390"
403 fi
404elif check_define __arm__ ; then
405 cpu="arm"
406elif check_define __aarch64__ ; then
407 cpu="aarch64"
408elif check_define __hppa__ ; then
409 cpu="hppa"
410else
411 cpu=`uname -m`
412fi
413
414# Normalise host CPU name and set ARCH.
415case "$cpu" in
416 ia64|ppc|ppc64|s390|s390x|sparc64)
417 cpu="$cpu"
418 ;;
419 i386|i486|i586|i686|i86pc|BePC)
420 cpu="x86"
421 ;;
422 x86_64|amd64)
423 cpu="x86_64"
424 ;;
425 armv*b|armv*l|arm)
426 cpu="arm"
427 ;;
428 aarch64)
429 cpu="arm64"
430 ;;
431 hppa|parisc|parisc64)
432 cpu="hppa"
433 ;;
434 mips*)
435 cpu="mips"
436 ;;
437 sparc|sun4[cdmuv])
438 cpu="sparc"
439 ;;
440 *)
441 echo "Unknown CPU"
442 ;;
443esac
444
445##########################################
446# check cross compile
447
448if test "$cross_compile" != "yes" ; then
449 cross_compile="no"
450fi
451cat > $TMPC <<EOF
452int main(void)
453{
454 return 0;
455}
456EOF
457if compile_prog "" "" "cross"; then
458 $TMPE 2>/dev/null || cross_compile="yes"
459else
460 fatal "compile test failed"
461fi
462
463##########################################
464# check endianness
465if test "$bigendian" != "yes" ; then
466 bigendian="no"
467fi
468if test "$cross_compile" = "no" ; then
469 cat > $TMPC <<EOF
470#include <inttypes.h>
471int main(void)
472{
473 volatile uint32_t i=0x01234567;
474 return (*((uint8_t*)(&i))) == 0x67;
475}
476EOF
477 if compile_prog "" "" "endian"; then
478 $TMPE && bigendian="yes"
479 fi
480else
481 # If we're cross compiling, try our best to work it out and rely on the
482 # run-time check to fail if we get it wrong.
483 cat > $TMPC <<EOF
484#include <endian.h>
485int main(void)
486{
487#if __BYTE_ORDER != __BIG_ENDIAN
488# error "Unknown endianness"
489#endif
490}
491EOF
492 compile_prog "" "" "endian" && bigendian="yes"
493 check_define "__ARMEB__" && bigendian="yes"
494 check_define "__MIPSEB__" && bigendian="yes"
495fi
496
497
498print_config "Operating system" "$targetos"
499print_config "CPU" "$cpu"
500print_config "Big endian" "$bigendian"
501print_config "Compiler" "$cc"
502print_config "Cross compile" "$cross_compile"
503echo
504
505##########################################
506# See if we need to build a static build
507if test "$build_static" = "yes" ; then
508 CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
509 LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
510else
511 build_static="no"
512fi
513print_config "Static build" "$build_static"
514
515##########################################
516# check for wordsize
517wordsize="0"
518cat > $TMPC <<EOF
519#include <limits.h>
520#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
521int main(void)
522{
523 BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
524 return 0;
525}
526EOF
527if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
528 wordsize="32"
529elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
530 wordsize="64"
531else
532 fatal "Unknown wordsize"
533fi
534print_config "Wordsize" "$wordsize"
535
536##########################################
537# zlib probe
538if test "$zlib" != "yes" ; then
539 zlib="no"
540fi
541cat > $TMPC <<EOF
542#include <zlib.h>
543int main(void)
544{
545 z_stream stream;
546 if (inflateInit(&stream) != Z_OK)
547 return 1;
548 return 0;
549}
550EOF
551if compile_prog "" "-lz" "zlib" ; then
552 zlib=yes
553 LIBS="-lz $LIBS"
554fi
555print_config "zlib" "$zlib"
556
557##########################################
558# linux-aio probe
559if test "$libaio" != "yes" ; then
560 libaio="no"
561fi
562if test "$esx" != "yes" ; then
563 cat > $TMPC <<EOF
564#include <libaio.h>
565#include <stddef.h>
566int main(void)
567{
568 io_setup(0, NULL);
569 return 0;
570}
571EOF
572 if compile_prog "" "-laio" "libaio" ; then
573 libaio=yes
574 LIBS="-laio $LIBS"
575 else
576 if test "$libaio" = "yes" ; then
577 feature_not_found "linux AIO" "libaio-dev or libaio-devel"
578 fi
579 libaio=no
580 fi
581fi
582print_config "Linux AIO support" "$libaio"
583
584##########################################
585# posix aio probe
586if test "$posix_aio" != "yes" ; then
587 posix_aio="no"
588fi
589if test "$posix_aio_lrt" != "yes" ; then
590 posix_aio_lrt="no"
591fi
592cat > $TMPC <<EOF
593#include <aio.h>
594int main(void)
595{
596 struct aiocb cb;
597 aio_read(&cb);
598 return 0;
599}
600EOF
601if compile_prog "" "" "posixaio" ; then
602 posix_aio="yes"
603elif compile_prog "" "-lrt" "posixaio"; then
604 posix_aio="yes"
605 posix_aio_lrt="yes"
606 LIBS="-lrt $LIBS"
607fi
608print_config "POSIX AIO support" "$posix_aio"
609print_config "POSIX AIO support needs -lrt" "$posix_aio_lrt"
610
611##########################################
612# posix aio fsync probe
613if test "$posix_aio_fsync" != "yes" ; then
614 posix_aio_fsync="no"
615fi
616if test "$posix_aio" = "yes" ; then
617 cat > $TMPC <<EOF
618#include <fcntl.h>
619#include <aio.h>
620int main(void)
621{
622 struct aiocb cb;
623 return aio_fsync(O_SYNC, &cb);
624 return 0;
625}
626EOF
627 if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
628 posix_aio_fsync=yes
629 fi
630fi
631print_config "POSIX AIO fsync" "$posix_aio_fsync"
632
633##########################################
634# POSIX pshared attribute probe
635if test "$posix_pshared" != "yes" ; then
636 posix_pshared="no"
637fi
638cat > $TMPC <<EOF
639#include <unistd.h>
640int main(void)
641{
642#if defined(_POSIX_THREAD_PROCESS_SHARED) && ((_POSIX_THREAD_PROCESS_SHARED + 0) > 0)
643# if defined(__CYGWIN__)
644# error "_POSIX_THREAD_PROCESS_SHARED is buggy on Cygwin"
645# elif defined(__APPLE__)
646# include <AvailabilityMacros.h>
647# include <TargetConditionals.h>
648# if TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
649# error "_POSIX_THREAD_PROCESS_SHARED is buggy/unsupported prior to OSX 10.7"
650# endif
651# endif
652#else
653# error "_POSIX_THREAD_PROCESS_SHARED is unsupported"
654#endif
655 return 0;
656}
657EOF
658if compile_prog "" "$LIBS" "posix_pshared" ; then
659 posix_pshared=yes
660fi
661print_config "POSIX pshared support" "$posix_pshared"
662
663##########################################
664# solaris aio probe
665if test "$solaris_aio" != "yes" ; then
666 solaris_aio="no"
667fi
668cat > $TMPC <<EOF
669#include <sys/types.h>
670#include <sys/asynch.h>
671#include <unistd.h>
672int main(void)
673{
674 aio_result_t res;
675 return aioread(0, NULL, 0, 0, SEEK_SET, &res);
676 return 0;
677}
678EOF
679if compile_prog "" "-laio" "solarisaio" ; then
680 solaris_aio=yes
681 LIBS="-laio $LIBS"
682fi
683print_config "Solaris AIO support" "$solaris_aio"
684
685##########################################
686# __sync_fetch_and_add test
687if test "$sfaa" != "yes" ; then
688 sfaa="no"
689fi
690cat > $TMPC << EOF
691#include <inttypes.h>
692static int sfaa(uint64_t *ptr)
693{
694 return __sync_fetch_and_add(ptr, 0);
695}
696
697int main(int argc, char **argv)
698{
699 uint64_t val = 42;
700 sfaa(&val);
701 return val;
702}
703EOF
704if compile_prog "" "" "__sync_fetch_and_add()" ; then
705 sfaa="yes"
706fi
707print_config "__sync_fetch_and_add" "$sfaa"
708
709##########################################
710# __sync_synchronize() test
711if test "$sync_sync" != "yes" ; then
712 sync_sync="no"
713fi
714cat > $TMPC << EOF
715#include <inttypes.h>
716
717int main(int argc, char **argv)
718{
719 __sync_synchronize();
720 return 0;
721}
722EOF
723if compile_prog "" "" "__sync_synchronize()" ; then
724 sync_sync="yes"
725fi
726print_config "__sync_synchronize" "$sync_sync"
727
728##########################################
729# __sync_val_compare_and_swap() test
730if test "$cmp_swap" != "yes" ; then
731 cmp_swap="no"
732fi
733cat > $TMPC << EOF
734#include <inttypes.h>
735
736int main(int argc, char **argv)
737{
738 int x = 0;
739 return __sync_val_compare_and_swap(&x, 1, 2);
740}
741EOF
742if compile_prog "" "" "__sync_val_compare_and_swap()" ; then
743 cmp_swap="yes"
744fi
745print_config "__sync_val_compare_and_swap" "$cmp_swap"
746
747##########################################
748# libverbs probe
749if test "$libverbs" != "yes" ; then
750 libverbs="no"
751fi
752cat > $TMPC << EOF
753#include <infiniband/verbs.h>
754int main(int argc, char **argv)
755{
756 struct ibv_pd *pd = ibv_alloc_pd(NULL);
757 return 0;
758}
759EOF
760if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
761 libverbs="yes"
762 LIBS="-libverbs $LIBS"
763fi
764print_config "libverbs" "$libverbs"
765
766##########################################
767# rdmacm probe
768if test "$rdmacm" != "yes" ; then
769 rdmacm="no"
770fi
771cat > $TMPC << EOF
772#include <stdio.h>
773#include <rdma/rdma_cma.h>
774int main(int argc, char **argv)
775{
776 rdma_destroy_qp(NULL);
777 return 0;
778}
779EOF
780if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
781 rdmacm="yes"
782 LIBS="-lrdmacm $LIBS"
783fi
784print_config "rdmacm" "$rdmacm"
785
786##########################################
787# asprintf() and vasprintf() probes
788if test "$have_asprintf" != "yes" ; then
789 have_asprintf="no"
790fi
791cat > $TMPC << EOF
792#include <stdio.h>
793
794int main(int argc, char **argv)
795{
796 return asprintf(NULL, "%s", "str") == 0;
797}
798EOF
799if compile_prog "" "" "have_asprintf"; then
800 have_asprintf="yes"
801fi
802print_config "asprintf()" "$have_asprintf"
803
804if test "$have_vasprintf" != "yes" ; then
805 have_vasprintf="no"
806fi
807cat > $TMPC << EOF
808#include <stdio.h>
809
810int main(int argc, char **argv)
811{
812 return vasprintf(NULL, "%s", NULL) == 0;
813}
814EOF
815if compile_prog "" "" "have_vasprintf"; then
816 have_vasprintf="yes"
817fi
818print_config "vasprintf()" "$have_vasprintf"
819
820##########################################
821# Linux fallocate probe
822if test "$linux_fallocate" != "yes" ; then
823 linux_fallocate="no"
824fi
825cat > $TMPC << EOF
826#include <stdio.h>
827#include <fcntl.h>
828#include <linux/falloc.h>
829int main(int argc, char **argv)
830{
831 int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
832 return r;
833}
834EOF
835if compile_prog "" "" "linux_fallocate"; then
836 linux_fallocate="yes"
837fi
838print_config "Linux fallocate" "$linux_fallocate"
839
840##########################################
841# POSIX fadvise probe
842if test "$posix_fadvise" != "yes" ; then
843 posix_fadvise="no"
844fi
845cat > $TMPC << EOF
846#include <stdio.h>
847#include <fcntl.h>
848int main(int argc, char **argv)
849{
850 int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
851 return r;
852}
853EOF
854if compile_prog "" "" "posix_fadvise"; then
855 posix_fadvise="yes"
856fi
857print_config "POSIX fadvise" "$posix_fadvise"
858
859##########################################
860# POSIX fallocate probe
861if test "$posix_fallocate" != "yes" ; then
862 posix_fallocate="no"
863fi
864cat > $TMPC << EOF
865#include <stdio.h>
866#include <fcntl.h>
867int main(int argc, char **argv)
868{
869 int r = posix_fallocate(0, 0, 1024);
870 return r;
871}
872EOF
873if compile_prog "" "" "posix_fallocate"; then
874 posix_fallocate="yes"
875fi
876print_config "POSIX fallocate" "$posix_fallocate"
877
878##########################################
879# sched_set/getaffinity 2 or 3 argument test
880if test "$linux_2arg_affinity" != "yes" ; then
881 linux_2arg_affinity="no"
882fi
883if test "$linux_3arg_affinity" != "yes" ; then
884 linux_3arg_affinity="no"
885fi
886cat > $TMPC << EOF
887#include <sched.h>
888int main(int argc, char **argv)
889{
890 cpu_set_t mask;
891 return sched_setaffinity(0, sizeof(mask), &mask);
892}
893EOF
894if compile_prog "" "" "sched_setaffinity(,,)"; then
895 linux_3arg_affinity="yes"
896else
897 cat > $TMPC << EOF
898#include <sched.h>
899int main(int argc, char **argv)
900{
901 cpu_set_t mask;
902 return sched_setaffinity(0, &mask);
903}
904EOF
905 if compile_prog "" "" "sched_setaffinity(,)"; then
906 linux_2arg_affinity="yes"
907 fi
908fi
909print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
910print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
911
912##########################################
913# clock_gettime probe
914if test "$clock_gettime" != "yes" ; then
915 clock_gettime="no"
916fi
917cat > $TMPC << EOF
918#include <stdio.h>
919#include <time.h>
920int main(int argc, char **argv)
921{
922 return clock_gettime(0, NULL);
923}
924EOF
925if compile_prog "" "" "clock_gettime"; then
926 clock_gettime="yes"
927elif compile_prog "" "-lrt" "clock_gettime"; then
928 clock_gettime="yes"
929 LIBS="-lrt $LIBS"
930fi
931print_config "clock_gettime" "$clock_gettime"
932
933##########################################
934# CLOCK_MONOTONIC probe
935if test "$clock_monotonic" != "yes" ; then
936 clock_monotonic="no"
937fi
938if test "$clock_gettime" = "yes" ; then
939 cat > $TMPC << EOF
940#include <stdio.h>
941#include <time.h>
942int main(int argc, char **argv)
943{
944 return clock_gettime(CLOCK_MONOTONIC, NULL);
945}
946EOF
947 if compile_prog "" "$LIBS" "clock monotonic"; then
948 clock_monotonic="yes"
949 fi
950fi
951print_config "CLOCK_MONOTONIC" "$clock_monotonic"
952
953##########################################
954# CLOCK_MONOTONIC_RAW probe
955if test "$clock_monotonic_raw" != "yes" ; then
956 clock_monotonic_raw="no"
957fi
958if test "$clock_gettime" = "yes" ; then
959 cat > $TMPC << EOF
960#include <stdio.h>
961#include <time.h>
962int main(int argc, char **argv)
963{
964 return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
965}
966EOF
967 if compile_prog "" "$LIBS" "clock monotonic"; then
968 clock_monotonic_raw="yes"
969 fi
970fi
971print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
972
973##########################################
974# CLOCK_MONOTONIC_PRECISE probe
975if test "$clock_monotonic_precise" != "yes" ; then
976 clock_monotonic_precise="no"
977fi
978if test "$clock_gettime" = "yes" ; then
979 cat > $TMPC << EOF
980#include <stdio.h>
981#include <time.h>
982int main(int argc, char **argv)
983{
984 return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
985}
986EOF
987 if compile_prog "" "$LIBS" "clock monotonic precise"; then
988 clock_monotonic_precise="yes"
989 fi
990fi
991print_config "CLOCK_MONOTONIC_PRECISE" "$clock_monotonic_precise"
992
993##########################################
994# clockid_t probe
995if test "$clockid_t" != "yes" ; then
996 clockid_t="no"
997fi
998cat > $TMPC << EOF
999#include <time.h>
1000#include <string.h>
1001int main(int argc, char **argv)
1002{
1003 volatile clockid_t cid;
1004 memset((void*)&cid, 0, sizeof(cid));
1005 return 0;
1006}
1007EOF
1008if compile_prog "" "$LIBS" "clockid_t"; then
1009 clockid_t="yes"
1010fi
1011print_config "clockid_t" "$clockid_t"
1012
1013##########################################
1014# gettimeofday() probe
1015if test "$gettimeofday" != "yes" ; then
1016 gettimeofday="no"
1017fi
1018cat > $TMPC << EOF
1019#include <sys/time.h>
1020#include <stdio.h>
1021int main(int argc, char **argv)
1022{
1023 struct timeval tv;
1024 return gettimeofday(&tv, NULL);
1025}
1026EOF
1027if compile_prog "" "" "gettimeofday"; then
1028 gettimeofday="yes"
1029fi
1030print_config "gettimeofday" "$gettimeofday"
1031
1032##########################################
1033# fdatasync() probe
1034if test "$fdatasync" != "yes" ; then
1035 fdatasync="no"
1036fi
1037cat > $TMPC << EOF
1038#include <stdio.h>
1039#include <unistd.h>
1040int main(int argc, char **argv)
1041{
1042 return fdatasync(0);
1043}
1044EOF
1045if compile_prog "" "" "fdatasync"; then
1046 fdatasync="yes"
1047fi
1048print_config "fdatasync" "$fdatasync"
1049
1050##########################################
1051# sync_file_range() probe
1052if test "$sync_file_range" != "yes" ; then
1053 sync_file_range="no"
1054fi
1055cat > $TMPC << EOF
1056#include <stdio.h>
1057#include <unistd.h>
1058#include <fcntl.h>
1059#include <linux/fs.h>
1060int main(int argc, char **argv)
1061{
1062 unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
1063 SYNC_FILE_RANGE_WAIT_AFTER;
1064 return sync_file_range(0, 0, 0, flags);
1065}
1066EOF
1067if compile_prog "" "" "sync_file_range"; then
1068 sync_file_range="yes"
1069fi
1070print_config "sync_file_range" "$sync_file_range"
1071
1072##########################################
1073# ext4 move extent probe
1074if test "$ext4_me" != "yes" ; then
1075 ext4_me="no"
1076fi
1077cat > $TMPC << EOF
1078#include <fcntl.h>
1079#include <sys/ioctl.h>
1080int main(int argc, char **argv)
1081{
1082 struct move_extent me;
1083 return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1084}
1085EOF
1086if compile_prog "" "" "ext4 move extent" ; then
1087 ext4_me="yes"
1088elif test $targetos = "Linux" ; then
1089 # On Linux, just default to it on and let it error at runtime if we really
1090 # don't have it. None of my updated systems have it defined, but it does
1091 # work. Takes a while to bubble back.
1092 ext4_me="yes"
1093fi
1094print_config "EXT4 move extent" "$ext4_me"
1095
1096##########################################
1097# splice probe
1098if test "$linux_splice" != "yes" ; then
1099 linux_splice="no"
1100fi
1101cat > $TMPC << EOF
1102#include <stdio.h>
1103#include <fcntl.h>
1104int main(int argc, char **argv)
1105{
1106 return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1107}
1108EOF
1109if compile_prog "" "" "linux splice"; then
1110 linux_splice="yes"
1111fi
1112print_config "Linux splice(2)" "$linux_splice"
1113
1114##########################################
1115# GUASI probe
1116if test "$guasi" != "yes" ; then
1117 guasi="no"
1118fi
1119cat > $TMPC << EOF
1120#include <guasi.h>
1121#include <guasi_syscalls.h>
1122int main(int argc, char **argv)
1123{
1124 guasi_t ctx = guasi_create(0, 0, 0);
1125 return 0;
1126}
1127EOF
1128if compile_prog "" "" "guasi"; then
1129 guasi="yes"
1130fi
1131print_config "GUASI" "$guasi"
1132
1133##########################################
1134# fusion-aw probe
1135if test "$fusion_aw" != "yes" ; then
1136 fusion_aw="no"
1137fi
1138cat > $TMPC << EOF
1139#include <nvm/nvm_primitives.h>
1140int main(int argc, char **argv)
1141{
1142 nvm_version_t ver_info;
1143 nvm_handle_t handle;
1144
1145 handle = nvm_get_handle(0, &ver_info);
1146 return nvm_atomic_write(handle, 0, 0, 0);
1147}
1148EOF
1149if compile_prog "" "-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread" "fusion-aw"; then
1150 LIBS="-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread $LIBS"
1151 fusion_aw="yes"
1152fi
1153print_config "Fusion-io atomic engine" "$fusion_aw"
1154
1155##########################################
1156# libnuma probe
1157if test "$libnuma" != "yes" ; then
1158 libnuma="no"
1159fi
1160cat > $TMPC << EOF
1161#include <numa.h>
1162int main(int argc, char **argv)
1163{
1164 return numa_available();
1165}
1166EOF
1167if test "$disable_numa" != "yes" && compile_prog "" "-lnuma" "libnuma"; then
1168 libnuma="yes"
1169 LIBS="-lnuma $LIBS"
1170fi
1171print_config "libnuma" "$libnuma"
1172
1173##########################################
1174# libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1175if test "$libnuma" = "yes" ; then
1176libnuma_v2="no"
1177cat > $TMPC << EOF
1178#include <numa.h>
1179int main(int argc, char **argv)
1180{
1181 struct bitmask *mask = numa_parse_nodestring(NULL);
1182 return mask->size == 0;
1183}
1184EOF
1185if compile_prog "" "" "libnuma api"; then
1186 libnuma_v2="yes"
1187fi
1188print_config "libnuma v2" "$libnuma_v2"
1189fi
1190
1191##########################################
1192# strsep() probe
1193if test "$strsep" != "yes" ; then
1194 strsep="no"
1195fi
1196cat > $TMPC << EOF
1197#include <string.h>
1198int main(int argc, char **argv)
1199{
1200 static char *string = "This is a string";
1201 strsep(&string, "needle");
1202 return 0;
1203}
1204EOF
1205if compile_prog "" "" "strsep"; then
1206 strsep="yes"
1207fi
1208print_config "strsep" "$strsep"
1209
1210##########################################
1211# strcasestr() probe
1212if test "$strcasestr" != "yes" ; then
1213 strcasestr="no"
1214fi
1215cat > $TMPC << EOF
1216#include <string.h>
1217int main(int argc, char **argv)
1218{
1219 return strcasestr(argv[0], argv[1]) != NULL;
1220}
1221EOF
1222if compile_prog "" "" "strcasestr"; then
1223 strcasestr="yes"
1224fi
1225print_config "strcasestr" "$strcasestr"
1226
1227##########################################
1228# strlcat() probe
1229if test "$strlcat" != "yes" ; then
1230 strlcat="no"
1231fi
1232cat > $TMPC << EOF
1233#include <string.h>
1234int main(int argc, char **argv)
1235{
1236 static char dst[64];
1237 static char *string = "This is a string";
1238 memset(dst, 0, sizeof(dst));
1239 strlcat(dst, string, sizeof(dst));
1240 return 0;
1241}
1242EOF
1243if compile_prog "" "" "strlcat"; then
1244 strlcat="yes"
1245fi
1246print_config "strlcat" "$strlcat"
1247
1248##########################################
1249# getopt_long_only() probe
1250if test "$getopt_long_only" != "yes" ; then
1251 getopt_long_only="no"
1252fi
1253cat > $TMPC << EOF
1254#include <unistd.h>
1255#include <stdio.h>
1256#include <getopt.h>
1257int main(int argc, char **argv)
1258{
1259 int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
1260 return c;
1261}
1262EOF
1263if compile_prog "" "" "getopt_long_only"; then
1264 getopt_long_only="yes"
1265fi
1266print_config "getopt_long_only()" "$getopt_long_only"
1267
1268##########################################
1269# inet_aton() probe
1270if test "$inet_aton" != "yes" ; then
1271 inet_aton="no"
1272fi
1273cat > $TMPC << EOF
1274#include <sys/socket.h>
1275#include <arpa/inet.h>
1276#include <stdio.h>
1277int main(int argc, char **argv)
1278{
1279 struct in_addr in;
1280 return inet_aton(NULL, &in);
1281}
1282EOF
1283if compile_prog "" "" "inet_aton"; then
1284 inet_aton="yes"
1285fi
1286print_config "inet_aton" "$inet_aton"
1287
1288##########################################
1289# socklen_t probe
1290if test "$socklen_t" != "yes" ; then
1291 socklen_t="no"
1292fi
1293cat > $TMPC << EOF
1294#include <sys/socket.h>
1295int main(int argc, char **argv)
1296{
1297 socklen_t len = 0;
1298 return len;
1299}
1300EOF
1301if compile_prog "" "" "socklen_t"; then
1302 socklen_t="yes"
1303fi
1304print_config "socklen_t" "$socklen_t"
1305
1306##########################################
1307# Whether or not __thread is supported for TLS
1308if test "$tls_thread" != "yes" ; then
1309 tls_thread="no"
1310fi
1311cat > $TMPC << EOF
1312#include <stdio.h>
1313static __thread int ret;
1314int main(int argc, char **argv)
1315{
1316 return ret;
1317}
1318EOF
1319if compile_prog "" "" "__thread"; then
1320 tls_thread="yes"
1321fi
1322print_config "__thread" "$tls_thread"
1323
1324##########################################
1325# Check if we have required gtk/glib support for gfio
1326if test "$gfio" != "yes" ; then
1327 gfio="no"
1328fi
1329if test "$gfio_check" = "yes" ; then
1330 cat > $TMPC << EOF
1331#include <glib.h>
1332#include <cairo.h>
1333#include <gtk/gtk.h>
1334int main(void)
1335{
1336 gdk_threads_enter();
1337 gdk_threads_leave();
1338
1339 return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1340}
1341EOF
1342GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
1343ORG_LDFLAGS=$LDFLAGS
1344LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1345if test "$?" != "0" ; then
1346 echo "configure: gtk and gthread not found"
1347 exit 1
1348fi
1349GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
1350if test "$?" != "0" ; then
1351 echo "configure: gtk and gthread not found"
1352 exit 1
1353fi
1354if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1355 $TMPE
1356 if test "$?" = "0" ; then
1357 gfio="yes"
1358 GFIO_LIBS="$LIBS $GTK_LIBS"
1359 CFLAGS="$CFLAGS $GTK_CFLAGS"
1360 else
1361 echo "GTK found, but need version 2.18 or higher"
1362 gfio="no"
1363 fi
1364else
1365 echo "Please install gtk and gdk libraries"
1366 gfio="no"
1367fi
1368LDFLAGS=$ORG_LDFLAGS
1369fi
1370
1371if test "$gfio_check" = "yes" ; then
1372 print_config "gtk 2.18 or higher" "$gfio"
1373fi
1374
1375##########################################
1376# Check whether we have getrusage(RUSAGE_THREAD)
1377if test "$rusage_thread" != "yes" ; then
1378 rusage_thread="no"
1379fi
1380cat > $TMPC << EOF
1381#include <sys/time.h>
1382#include <sys/resource.h>
1383int main(int argc, char **argv)
1384{
1385 struct rusage ru;
1386 getrusage(RUSAGE_THREAD, &ru);
1387 return 0;
1388}
1389EOF
1390if compile_prog "" "" "RUSAGE_THREAD"; then
1391 rusage_thread="yes"
1392fi
1393print_config "RUSAGE_THREAD" "$rusage_thread"
1394
1395##########################################
1396# Check whether we have SCHED_IDLE
1397if test "$sched_idle" != "yes" ; then
1398 sched_idle="no"
1399fi
1400cat > $TMPC << EOF
1401#include <sched.h>
1402int main(int argc, char **argv)
1403{
1404 struct sched_param p;
1405 return sched_setscheduler(0, SCHED_IDLE, &p);
1406}
1407EOF
1408if compile_prog "" "" "SCHED_IDLE"; then
1409 sched_idle="yes"
1410fi
1411print_config "SCHED_IDLE" "$sched_idle"
1412
1413##########################################
1414# Check whether we have TCP_NODELAY
1415if test "$tcp_nodelay" != "yes" ; then
1416 tcp_nodelay="no"
1417fi
1418cat > $TMPC << EOF
1419#include <stdio.h>
1420#include <sys/types.h>
1421#include <sys/socket.h>
1422#include <netinet/tcp.h>
1423int main(int argc, char **argv)
1424{
1425 return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1426}
1427EOF
1428if compile_prog "" "" "TCP_NODELAY"; then
1429 tcp_nodelay="yes"
1430fi
1431print_config "TCP_NODELAY" "$tcp_nodelay"
1432
1433##########################################
1434# Check whether we have SO_SNDBUF
1435if test "$window_size" != "yes" ; then
1436 window_size="no"
1437fi
1438cat > $TMPC << EOF
1439#include <stdio.h>
1440#include <sys/types.h>
1441#include <sys/socket.h>
1442#include <netinet/tcp.h>
1443int main(int argc, char **argv)
1444{
1445 setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1446 setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1447}
1448EOF
1449if compile_prog "" "" "SO_SNDBUF"; then
1450 window_size="yes"
1451fi
1452print_config "Net engine window_size" "$window_size"
1453
1454##########################################
1455# Check whether we have TCP_MAXSEG
1456if test "$mss" != "yes" ; then
1457 mss="no"
1458fi
1459cat > $TMPC << EOF
1460#include <stdio.h>
1461#include <sys/types.h>
1462#include <sys/socket.h>
1463#include <netinet/tcp.h>
1464#include <arpa/inet.h>
1465#include <netinet/in.h>
1466int main(int argc, char **argv)
1467{
1468 return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1469}
1470EOF
1471if compile_prog "" "" "TCP_MAXSEG"; then
1472 mss="yes"
1473fi
1474print_config "TCP_MAXSEG" "$mss"
1475
1476##########################################
1477# Check whether we have RLIMIT_MEMLOCK
1478if test "$rlimit_memlock" != "yes" ; then
1479 rlimit_memlock="no"
1480fi
1481cat > $TMPC << EOF
1482#include <sys/time.h>
1483#include <sys/resource.h>
1484int main(int argc, char **argv)
1485{
1486 struct rlimit rl;
1487 return getrlimit(RLIMIT_MEMLOCK, &rl);
1488}
1489EOF
1490if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1491 rlimit_memlock="yes"
1492fi
1493print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1494
1495##########################################
1496# Check whether we have pwritev/preadv
1497if test "$pwritev" != "yes" ; then
1498 pwritev="no"
1499fi
1500cat > $TMPC << EOF
1501#include <stdio.h>
1502#include <sys/uio.h>
1503int main(int argc, char **argv)
1504{
1505 return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1506}
1507EOF
1508if compile_prog "" "" "pwritev"; then
1509 pwritev="yes"
1510fi
1511print_config "pwritev/preadv" "$pwritev"
1512
1513##########################################
1514# Check whether we have pwritev2/preadv2
1515if test "$pwritev2" != "yes" ; then
1516 pwritev2="no"
1517fi
1518cat > $TMPC << EOF
1519#include <stdio.h>
1520#include <sys/uio.h>
1521int main(int argc, char **argv)
1522{
1523 return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1524}
1525EOF
1526if compile_prog "" "" "pwritev2"; then
1527 pwritev2="yes"
1528fi
1529print_config "pwritev2/preadv2" "$pwritev2"
1530
1531##########################################
1532# Check whether we have the required functions for ipv6
1533if test "$ipv6" != "yes" ; then
1534 ipv6="no"
1535fi
1536cat > $TMPC << EOF
1537#include <sys/types.h>
1538#include <sys/socket.h>
1539#include <netinet/in.h>
1540#include <netdb.h>
1541#include <stdio.h>
1542int main(int argc, char **argv)
1543{
1544 struct addrinfo hints;
1545 struct in6_addr addr;
1546 int ret;
1547
1548 ret = getaddrinfo(NULL, NULL, &hints, NULL);
1549 freeaddrinfo(NULL);
1550 printf("%s\n", gai_strerror(ret));
1551 addr = in6addr_any;
1552 return 0;
1553}
1554EOF
1555if compile_prog "" "" "ipv6"; then
1556 ipv6="yes"
1557fi
1558print_config "IPv6 helpers" "$ipv6"
1559
1560##########################################
1561# check for rados
1562if test "$rados" != "yes" ; then
1563 rados="no"
1564fi
1565cat > $TMPC << EOF
1566#include <rados/librados.h>
1567
1568int main(int argc, char **argv)
1569{
1570 rados_t cluster;
1571 rados_ioctx_t io_ctx;
1572 const char cluster_name[] = "ceph";
1573 const char user_name[] = "client.admin";
1574 const char pool[] = "rados";
1575
1576 /* The rados_create2 signature required was only introduced in ceph 0.65 */
1577 rados_create2(&cluster, cluster_name, user_name, 0);
1578 rados_ioctx_create(cluster, pool, &io_ctx);
1579
1580 return 0;
1581}
1582EOF
1583if test "$disable_rados" != "yes" && compile_prog "" "-lrados" "rados"; then
1584 LIBS="-lrados $LIBS"
1585 rados="yes"
1586fi
1587print_config "Rados engine" "$rados"
1588
1589##########################################
1590# check for rbd
1591if test "$rbd" != "yes" ; then
1592 rbd="no"
1593fi
1594cat > $TMPC << EOF
1595#include <rbd/librbd.h>
1596
1597int main(int argc, char **argv)
1598{
1599 rados_t cluster;
1600 rados_ioctx_t io_ctx;
1601 const char cluster_name[] = "ceph";
1602 const char user_name[] = "client.admin";
1603 const char pool[] = "rbd";
1604 int major, minor, extra;
1605
1606 rbd_version(&major, &minor, &extra);
1607 /* The rados_create2 signature required was only introduced in ceph 0.65 */
1608 rados_create2(&cluster, cluster_name, user_name, 0);
1609 rados_ioctx_create(cluster, pool, &io_ctx);
1610
1611 return 0;
1612}
1613EOF
1614if test "$disable_rbd" != "yes" && compile_prog "" "-lrbd -lrados" "rbd"; then
1615 LIBS="-lrbd -lrados $LIBS"
1616 rbd="yes"
1617fi
1618print_config "Rados Block Device engine" "$rbd"
1619
1620##########################################
1621# check for rbd_poll
1622if test "$rbd_poll" != "yes" ; then
1623 rbd_poll="no"
1624fi
1625if test "$rbd" = "yes"; then
1626cat > $TMPC << EOF
1627#include <rbd/librbd.h>
1628#include <sys/eventfd.h>
1629
1630int main(int argc, char **argv)
1631{
1632 rbd_image_t image;
1633 rbd_completion_t comp;
1634
1635 int fd = eventfd(0, EFD_NONBLOCK);
1636 rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1637 rbd_poll_io_events(image, comp, 1);
1638
1639 return 0;
1640}
1641EOF
1642if compile_prog "" "-lrbd -lrados" "rbd"; then
1643 rbd_poll="yes"
1644fi
1645print_config "rbd_poll" "$rbd_poll"
1646fi
1647
1648##########################################
1649# check for rbd_invalidate_cache()
1650if test "$rbd_inval" != "yes" ; then
1651 rbd_inval="no"
1652fi
1653if test "$rbd" = "yes"; then
1654cat > $TMPC << EOF
1655#include <rbd/librbd.h>
1656
1657int main(int argc, char **argv)
1658{
1659 rbd_image_t image;
1660
1661 return rbd_invalidate_cache(image);
1662}
1663EOF
1664if compile_prog "" "-lrbd -lrados" "rbd"; then
1665 rbd_inval="yes"
1666fi
1667print_config "rbd_invalidate_cache" "$rbd_inval"
1668fi
1669
1670##########################################
1671# Check whether we have setvbuf
1672if test "$setvbuf" != "yes" ; then
1673 setvbuf="no"
1674fi
1675cat > $TMPC << EOF
1676#include <stdio.h>
1677int main(int argc, char **argv)
1678{
1679 FILE *f = NULL;
1680 char buf[80];
1681 setvbuf(f, buf, _IOFBF, sizeof(buf));
1682 return 0;
1683}
1684EOF
1685if compile_prog "" "" "setvbuf"; then
1686 setvbuf="yes"
1687fi
1688print_config "setvbuf" "$setvbuf"
1689
1690##########################################
1691# check for gfapi
1692if test "$gfapi" != "yes" ; then
1693 gfapi="no"
1694fi
1695cat > $TMPC << EOF
1696#include <glusterfs/api/glfs.h>
1697
1698int main(int argc, char **argv)
1699{
1700 glfs_t *g = glfs_new("foo");
1701
1702 return 0;
1703}
1704EOF
1705if test "$disable_gfapi" != "yes" && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1706 LIBS="-lgfapi -lglusterfs $LIBS"
1707 gfapi="yes"
1708fi
1709print_config "Gluster API engine" "$gfapi"
1710
1711##########################################
1712# check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
1713if test "$gfapi" = "yes" ; then
1714gf_fadvise="no"
1715cat > $TMPC << EOF
1716#include <glusterfs/api/glfs.h>
1717
1718int main(int argc, char **argv)
1719{
1720 struct glfs_fd *fd;
1721 int ret = glfs_fadvise(fd, 0, 0, 1);
1722
1723 return 0;
1724}
1725EOF
1726if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1727 gf_fadvise="yes"
1728fi
1729print_config "Gluster API use fadvise" "$gf_fadvise"
1730fi
1731
1732##########################################
1733# check for gfapi trim support
1734if test "$gf_trim" != "yes" ; then
1735 gf_trim="no"
1736fi
1737if test "$gfapi" = "yes" ; then
1738cat > $TMPC << EOF
1739#include <glusterfs/api/glfs.h>
1740
1741int main(int argc, char **argv)
1742{
1743 return glfs_discard_async(NULL, 0, 0);
1744}
1745EOF
1746if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1747 gf_trim="yes"
1748fi
1749print_config "Gluster API trim support" "$gf_trim"
1750fi
1751
1752##########################################
1753# Check if we support stckf on s390
1754if test "$s390_z196_facilities" != "yes" ; then
1755 s390_z196_facilities="no"
1756fi
1757cat > $TMPC << EOF
1758#define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1759int main(int argc, char **argv)
1760{
1761 /* We want just 1 double word to be returned. */
1762 register unsigned long reg0 asm("0") = 0;
1763 unsigned long stfle_bits;
1764 asm volatile(".machine push" "\n\t"
1765 ".machine \"z9-109\"" "\n\t"
1766 "stfle %0" "\n\t"
1767 ".machine pop" "\n"
1768 : "=QS" (stfle_bits), "+d" (reg0)
1769 : : "cc");
1770
1771 if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1772 return 0;
1773 else
1774 return -1;
1775}
1776EOF
1777if compile_prog "" "" "s390_z196_facilities"; then
1778 $TMPE
1779 if [ $? -eq 0 ]; then
1780 s390_z196_facilities="yes"
1781 fi
1782fi
1783print_config "s390_z196_facilities" "$s390_z196_facilities"
1784
1785##########################################
1786# Check if we have required environment variables configured for libhdfs
1787if test "$libhdfs" = "yes" ; then
1788 hdfs_conf_error=0
1789 if test "$JAVA_HOME" = "" ; then
1790 echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1791 hdfs_conf_error=1
1792 fi
1793 if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1794 echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1795 hdfs_conf_error=1
1796 fi
1797 if test "$FIO_LIBHDFS_LIB" = "" ; then
1798 echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1799 hdfs_conf_error=1
1800 fi
1801 if test "$hdfs_conf_error" = "1" ; then
1802 exit 1
1803 fi
1804 FIO_HDFS_CPU=$cpu
1805 if test "$FIO_HDFS_CPU" = "x86_64" ; then
1806 FIO_HDFS_CPU="amd64"
1807 fi
1808fi
1809print_config "HDFS engine" "$libhdfs"
1810
1811##########################################
1812# Check whether we have MTD
1813if test "$mtd" != "yes" ; then
1814 mtd="no"
1815fi
1816cat > $TMPC << EOF
1817#include <string.h>
1818#include <mtd/mtd-user.h>
1819#include <sys/ioctl.h>
1820int main(int argc, char **argv)
1821{
1822 struct mtd_write_req ops;
1823 struct mtd_info_user info;
1824 memset(&ops, 0, sizeof(ops));
1825 info.type = MTD_MLCNANDFLASH;
1826 return ioctl(0, MEMGETINFO, &info);
1827}
1828EOF
1829if compile_prog "" "" "mtd"; then
1830 mtd="yes"
1831fi
1832print_config "MTD" "$mtd"
1833
1834##########################################
1835# Check whether we have libpmem
1836if test "$libpmem" != "yes" ; then
1837 libpmem="no"
1838fi
1839cat > $TMPC << EOF
1840#include <libpmem.h>
1841int main(int argc, char **argv)
1842{
1843 int rc;
1844 rc = pmem_is_pmem(0, 0);
1845 return 0;
1846}
1847EOF
1848if compile_prog "" "-lpmem" "libpmem"; then
1849 libpmem="yes"
1850 LIBS="-lpmem $LIBS"
1851fi
1852print_config "libpmem" "$libpmem"
1853
1854##########################################
1855# Check whether we have libpmemblk
1856# libpmem is a prerequisite
1857if test "$libpmemblk" != "yes" ; then
1858 libpmemblk="no"
1859fi
1860if test "$libpmem" = "yes"; then
1861 cat > $TMPC << EOF
1862#include <libpmemblk.h>
1863int main(int argc, char **argv)
1864{
1865 PMEMblkpool *pbp;
1866 pbp = pmemblk_open("", 0);
1867 return 0;
1868}
1869EOF
1870 if compile_prog "" "-lpmemblk" "libpmemblk"; then
1871 libpmemblk="yes"
1872 LIBS="-lpmemblk $LIBS"
1873 fi
1874fi
1875print_config "libpmemblk" "$libpmemblk"
1876
1877# Choose the ioengines
1878if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
1879 pmem="yes"
1880 devdax="yes"
1881 if test "$libpmemblk" = "yes"; then
1882 pmemblk="yes"
1883 fi
1884fi
1885
1886##########################################
1887# Report whether pmemblk engine is enabled
1888print_config "NVML pmemblk engine" "$pmemblk"
1889
1890##########################################
1891# Report whether dev-dax engine is enabled
1892print_config "NVML dev-dax engine" "$devdax"
1893
1894##########################################
1895# Report whether libpmem engine is enabled
1896print_config "NVML libpmem engine" "$pmem"
1897
1898##########################################
1899# Check if we have lex/yacc available
1900yacc="no"
1901yacc_is_bison="no"
1902lex="no"
1903arith="no"
1904if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
1905if test "$targetos" != "SunOS" ; then
1906LEX=$(which lex 2> /dev/null)
1907if test -x "$LEX" ; then
1908 lex="yes"
1909fi
1910YACC=$(which bison 2> /dev/null)
1911if test -x "$YACC" ; then
1912 yacc="yes"
1913 yacc_is_bison="yes"
1914else
1915 YACC=$(which yacc 2> /dev/null)
1916 if test -x "$YACC" ; then
1917 yacc="yes"
1918 fi
1919fi
1920if test "$yacc" = "yes" && test "$lex" = "yes" ; then
1921 arith="yes"
1922fi
1923
1924if test "$arith" = "yes" ; then
1925cat > $TMPC << EOF
1926extern int yywrap(void);
1927
1928int main(int argc, char **argv)
1929{
1930 yywrap();
1931 return 0;
1932}
1933EOF
1934if compile_prog "" "-ll" "lex"; then
1935 LIBS="-ll $LIBS"
1936else
1937 arith="no"
1938fi
1939fi
1940fi
1941fi
1942
1943# Check if lex fails using -o
1944if test "$arith" = "yes" ; then
1945if test "$force_no_lex_o" = "yes" ; then
1946 lex_use_o="no"
1947else
1948$LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null
1949if test "$?" = "0" ; then
1950 lex_use_o="yes"
1951else
1952 lex_use_o="no"
1953fi
1954fi
1955fi
1956
1957print_config "lex/yacc for arithmetic" "$arith"
1958
1959##########################################
1960# Check whether we have setmntent/getmntent
1961if test "$getmntent" != "yes" ; then
1962 getmntent="no"
1963fi
1964cat > $TMPC << EOF
1965#include <stdio.h>
1966#include <mntent.h>
1967int main(int argc, char **argv)
1968{
1969 FILE *mtab = setmntent(NULL, "r");
1970 struct mntent *mnt = getmntent(mtab);
1971 endmntent(mtab);
1972 return 0;
1973}
1974EOF
1975if compile_prog "" "" "getmntent"; then
1976 getmntent="yes"
1977fi
1978print_config "getmntent" "$getmntent"
1979
1980##########################################
1981# Check whether we have getmntinfo
1982# These are originally added for BSDs, but may also work
1983# on other operating systems with getmntinfo(3).
1984
1985# getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
1986# Note that NetBSD needs -Werror to catch warning as error.
1987if test "$getmntinfo" != "yes" ; then
1988 getmntinfo="no"
1989fi
1990cat > $TMPC << EOF
1991#include <stdio.h>
1992#include <sys/param.h>
1993#include <sys/mount.h>
1994int main(int argc, char **argv)
1995{
1996 struct statfs *st;
1997 return getmntinfo(&st, MNT_NOWAIT);
1998}
1999EOF
2000if compile_prog "-Werror" "" "getmntinfo"; then
2001 getmntinfo="yes"
2002fi
2003print_config "getmntinfo" "$getmntinfo"
2004
2005# getmntinfo(3) for NetBSD.
2006if test "$getmntinfo_statvfs" != "yes" ; then
2007 getmntinfo_statvfs="no"
2008fi
2009cat > $TMPC << EOF
2010#include <stdio.h>
2011#include <sys/statvfs.h>
2012int main(int argc, char **argv)
2013{
2014 struct statvfs *st;
2015 return getmntinfo(&st, MNT_NOWAIT);
2016}
2017EOF
2018# Skip the test if the one with statfs arg is detected.
2019if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2020 getmntinfo_statvfs="yes"
2021 print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
2022fi
2023
2024##########################################
2025# Check whether we have _Static_assert
2026if test "$static_assert" != "yes" ; then
2027 static_assert="no"
2028fi
2029cat > $TMPC << EOF
2030#include <assert.h>
2031#include <stdlib.h>
2032#include <stddef.h>
2033
2034struct foo {
2035 int a, b;
2036};
2037
2038int main(int argc, char **argv)
2039{
2040 _Static_assert(offsetof(struct foo, a) == 0 , "Check");
2041 return 0 ;
2042}
2043EOF
2044if compile_prog "" "" "static_assert"; then
2045 static_assert="yes"
2046fi
2047print_config "Static Assert" "$static_assert"
2048
2049##########################################
2050# Check whether we have bool / stdbool.h
2051if test "$have_bool" != "yes" ; then
2052 have_bool="no"
2053fi
2054cat > $TMPC << EOF
2055#include <stdbool.h>
2056int main(int argc, char **argv)
2057{
2058 bool var = true;
2059 return var != false;
2060}
2061EOF
2062if compile_prog "" "" "bool"; then
2063 have_bool="yes"
2064fi
2065print_config "bool" "$have_bool"
2066
2067##########################################
2068# Check whether we have strndup()
2069strndup="no"
2070cat > $TMPC << EOF
2071#include <string.h>
2072#include <stdlib.h>
2073int main(int argc, char **argv)
2074{
2075 char *res = strndup("test string", 8);
2076
2077 free(res);
2078 return 0;
2079}
2080EOF
2081if compile_prog "" "" "strndup"; then
2082 strndup="yes"
2083fi
2084print_config "strndup" "$strndup"
2085
2086##########################################
2087# <valgrind/drd.h> probe
2088# Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2089# also available but not the other way around.
2090if test "$valgrind_dev" != "yes" ; then
2091 valgrind_dev="no"
2092fi
2093cat > $TMPC << EOF
2094#include <valgrind/drd.h>
2095int main(int argc, char **argv)
2096{
2097 return 0;
2098}
2099EOF
2100if compile_prog "" "" "valgrind_dev"; then
2101 valgrind_dev="yes"
2102fi
2103print_config "Valgrind headers" "$valgrind_dev"
2104
2105# check march=armv8-a+crc+crypto
2106if test "$march_armv8_a_crc_crypto" != "yes" ; then
2107 march_armv8_a_crc_crypto="no"
2108fi
2109if test "$cpu" = "arm64" ; then
2110 cat > $TMPC <<EOF
2111#include <sys/auxv.h>
2112#include <arm_acle.h>
2113#include <arm_neon.h>
2114
2115int main(void)
2116{
2117 return 0;
2118}
2119EOF
2120 if compile_prog "-march=armv8-a+crc+crypto" "" ""; then
2121 march_armv8_a_crc_crypto="yes"
2122 CFLAGS="$CFLAGS -march=armv8-a+crc+crypto -DARCH_HAVE_CRC_CRYPTO"
2123 march_set="yes"
2124 fi
2125fi
2126print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2127
2128##########################################
2129# cuda probe
2130if test "$cuda" != "yes" ; then
2131 cuda="no"
2132fi
2133cat > $TMPC << EOF
2134#include <cuda.h>
2135int main(int argc, char **argv)
2136{
2137 return cuInit(0);
2138}
2139EOF
2140if test "$enable_cuda" = "yes" && compile_prog "" "-lcuda" "cuda"; then
2141 cuda="yes"
2142 LIBS="-lcuda $LIBS"
2143fi
2144print_config "cuda" "$cuda"
2145
2146##########################################
2147# mkdir() probe. mingw apparently has a one-argument mkdir :/
2148mkdir_two="no"
2149cat > $TMPC << EOF
2150#include <sys/stat.h>
2151#include <sys/types.h>
2152int main(int argc, char **argv)
2153{
2154 return mkdir("/tmp/bla", 0600);
2155}
2156EOF
2157if compile_prog "" "" "mkdir(a, b)"; then
2158 mkdir_two="yes"
2159fi
2160print_config "mkdir(a, b)" "$mkdir_two"
2161
2162##########################################
2163# check for cc -march=native
2164build_native="no"
2165cat > $TMPC << EOF
2166int main(int argc, char **argv)
2167{
2168 return 0;
2169}
2170EOF
2171if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2172 compile_prog "-march=native" "" "march=native"; then
2173 build_native="yes"
2174fi
2175print_config "Build march=native" "$build_native"
2176
2177#############################################################################
2178
2179if test "$wordsize" = "64" ; then
2180 output_sym "CONFIG_64BIT"
2181elif test "$wordsize" = "32" ; then
2182 output_sym "CONFIG_32BIT"
2183else
2184 fatal "Unknown wordsize!"
2185fi
2186if test "$bigendian" = "yes" ; then
2187 output_sym "CONFIG_BIG_ENDIAN"
2188else
2189 output_sym "CONFIG_LITTLE_ENDIAN"
2190fi
2191if test "$zlib" = "yes" ; then
2192 output_sym "CONFIG_ZLIB"
2193fi
2194if test "$libaio" = "yes" ; then
2195 output_sym "CONFIG_LIBAIO"
2196fi
2197if test "$posix_aio" = "yes" ; then
2198 output_sym "CONFIG_POSIXAIO"
2199fi
2200if test "$posix_aio_fsync" = "yes" ; then
2201 output_sym "CONFIG_POSIXAIO_FSYNC"
2202fi
2203if test "$posix_pshared" = "yes" ; then
2204 output_sym "CONFIG_PSHARED"
2205fi
2206if test "$have_asprintf" = "yes" ; then
2207 output_sym "HAVE_ASPRINTF"
2208fi
2209if test "$have_vasprintf" = "yes" ; then
2210 output_sym "HAVE_VASPRINTF"
2211fi
2212if test "$linux_fallocate" = "yes" ; then
2213 output_sym "CONFIG_LINUX_FALLOCATE"
2214fi
2215if test "$posix_fallocate" = "yes" ; then
2216 output_sym "CONFIG_POSIX_FALLOCATE"
2217fi
2218if test "$fdatasync" = "yes" ; then
2219 output_sym "CONFIG_FDATASYNC"
2220fi
2221if test "$sync_file_range" = "yes" ; then
2222 output_sym "CONFIG_SYNC_FILE_RANGE"
2223fi
2224if test "$sfaa" = "yes" ; then
2225 output_sym "CONFIG_SFAA"
2226fi
2227if test "$sync_sync" = "yes" ; then
2228 output_sym "CONFIG_SYNC_SYNC"
2229fi
2230if test "$cmp_swap" = "yes" ; then
2231 output_sym "CONFIG_CMP_SWAP"
2232fi
2233if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2234 output_sym "CONFIG_RDMA"
2235fi
2236if test "$clock_gettime" = "yes" ; then
2237 output_sym "CONFIG_CLOCK_GETTIME"
2238fi
2239if test "$clock_monotonic" = "yes" ; then
2240 output_sym "CONFIG_CLOCK_MONOTONIC"
2241fi
2242if test "$clock_monotonic_raw" = "yes" ; then
2243 output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2244fi
2245if test "$clock_monotonic_precise" = "yes" ; then
2246 output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
2247fi
2248if test "$clockid_t" = "yes"; then
2249 output_sym "CONFIG_CLOCKID_T"
2250fi
2251if test "$gettimeofday" = "yes" ; then
2252 output_sym "CONFIG_GETTIMEOFDAY"
2253fi
2254if test "$posix_fadvise" = "yes" ; then
2255 output_sym "CONFIG_POSIX_FADVISE"
2256fi
2257if test "$linux_3arg_affinity" = "yes" ; then
2258 output_sym "CONFIG_3ARG_AFFINITY"
2259elif test "$linux_2arg_affinity" = "yes" ; then
2260 output_sym "CONFIG_2ARG_AFFINITY"
2261fi
2262if test "$strsep" = "yes" ; then
2263 output_sym "CONFIG_STRSEP"
2264fi
2265if test "$strcasestr" = "yes" ; then
2266 output_sym "CONFIG_STRCASESTR"
2267fi
2268if test "$strlcat" = "yes" ; then
2269 output_sym "CONFIG_STRLCAT"
2270fi
2271if test "$getopt_long_only" = "yes" ; then
2272 output_sym "CONFIG_GETOPT_LONG_ONLY"
2273fi
2274if test "$inet_aton" = "yes" ; then
2275 output_sym "CONFIG_INET_ATON"
2276fi
2277if test "$socklen_t" = "yes" ; then
2278 output_sym "CONFIG_SOCKLEN_T"
2279fi
2280if test "$ext4_me" = "yes" ; then
2281 output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
2282fi
2283if test "$linux_splice" = "yes" ; then
2284 output_sym "CONFIG_LINUX_SPLICE"
2285fi
2286if test "$guasi" = "yes" ; then
2287 output_sym "CONFIG_GUASI"
2288fi
2289if test "$fusion_aw" = "yes" ; then
2290 output_sym "CONFIG_FUSION_AW"
2291fi
2292if test "$libnuma_v2" = "yes" ; then
2293 output_sym "CONFIG_LIBNUMA"
2294fi
2295if test "$solaris_aio" = "yes" ; then
2296 output_sym "CONFIG_SOLARISAIO"
2297fi
2298if test "$tls_thread" = "yes" ; then
2299 output_sym "CONFIG_TLS_THREAD"
2300fi
2301if test "$rusage_thread" = "yes" ; then
2302 output_sym "CONFIG_RUSAGE_THREAD"
2303fi
2304if test "$gfio" = "yes" ; then
2305 output_sym "CONFIG_GFIO"
2306fi
2307if test "$esx" = "yes" ; then
2308 output_sym "CONFIG_ESX"
2309 output_sym "CONFIG_NO_SHM"
2310fi
2311if test "$sched_idle" = "yes" ; then
2312 output_sym "CONFIG_SCHED_IDLE"
2313fi
2314if test "$tcp_nodelay" = "yes" ; then
2315 output_sym "CONFIG_TCP_NODELAY"
2316fi
2317if test "$window_size" = "yes" ; then
2318 output_sym "CONFIG_NET_WINDOWSIZE"
2319fi
2320if test "$mss" = "yes" ; then
2321 output_sym "CONFIG_NET_MSS"
2322fi
2323if test "$rlimit_memlock" = "yes" ; then
2324 output_sym "CONFIG_RLIMIT_MEMLOCK"
2325fi
2326if test "$pwritev" = "yes" ; then
2327 output_sym "CONFIG_PWRITEV"
2328fi
2329if test "$pwritev2" = "yes" ; then
2330 output_sym "CONFIG_PWRITEV2"
2331fi
2332if test "$ipv6" = "yes" ; then
2333 output_sym "CONFIG_IPV6"
2334fi
2335if test "$rados" = "yes" ; then
2336 output_sym "CONFIG_RADOS"
2337fi
2338if test "$rbd" = "yes" ; then
2339 output_sym "CONFIG_RBD"
2340fi
2341if test "$rbd_poll" = "yes" ; then
2342 output_sym "CONFIG_RBD_POLL"
2343fi
2344if test "$rbd_inval" = "yes" ; then
2345 output_sym "CONFIG_RBD_INVAL"
2346fi
2347if test "$setvbuf" = "yes" ; then
2348 output_sym "CONFIG_SETVBUF"
2349fi
2350if test "$s390_z196_facilities" = "yes" ; then
2351 output_sym "CONFIG_S390_Z196_FACILITIES"
2352 CFLAGS="$CFLAGS -march=z9-109"
2353 march_set="yes"
2354fi
2355if test "$gfapi" = "yes" ; then
2356 output_sym "CONFIG_GFAPI"
2357fi
2358if test "$gf_fadvise" = "yes" ; then
2359 output_sym "CONFIG_GF_FADVISE"
2360fi
2361if test "$gf_trim" = "yes" ; then
2362 output_sym "CONFIG_GF_TRIM"
2363fi
2364if test "$libhdfs" = "yes" ; then
2365 output_sym "CONFIG_LIBHDFS"
2366 echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
2367 echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2368 echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2369 echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
2370 fi
2371if test "$mtd" = "yes" ; then
2372 output_sym "CONFIG_MTD"
2373fi
2374if test "$pmemblk" = "yes" ; then
2375 output_sym "CONFIG_PMEMBLK"
2376fi
2377if test "$devdax" = "yes" ; then
2378 output_sym "CONFIG_LINUX_DEVDAX"
2379fi
2380if test "$pmem" = "yes" ; then
2381 output_sym "CONFIG_LIBPMEM"
2382fi
2383if test "$arith" = "yes" ; then
2384 output_sym "CONFIG_ARITHMETIC"
2385 if test "$yacc_is_bison" = "yes" ; then
2386 echo "YACC=$YACC -y" >> $config_host_mak
2387 else
2388 echo "YACC=$YACC" >> $config_host_mak
2389 fi
2390 if test "$lex_use_o" = "yes" ; then
2391 echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2392 fi
2393fi
2394if test "$getmntent" = "yes" ; then
2395 output_sym "CONFIG_GETMNTENT"
2396fi
2397if test "$getmntinfo" = "yes" ; then
2398 output_sym "CONFIG_GETMNTINFO"
2399fi
2400if test "$getmntinfo_statvfs" = "yes" ; then
2401 output_sym "CONFIG_GETMNTINFO_STATVFS"
2402fi
2403if test "$static_assert" = "yes" ; then
2404 output_sym "CONFIG_STATIC_ASSERT"
2405fi
2406if test "$have_bool" = "yes" ; then
2407 output_sym "CONFIG_HAVE_BOOL"
2408fi
2409if test "$strndup" = "yes" ; then
2410 output_sym "CONFIG_HAVE_STRNDUP"
2411fi
2412if test "$disable_opt" = "yes" ; then
2413 output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2414fi
2415if test "$valgrind_dev" = "yes"; then
2416 output_sym "CONFIG_VALGRIND_DEV"
2417fi
2418if test "$zlib" = "no" ; then
2419 echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it."
2420 if test "$build_static" = "yes"; then
2421 echo "Note that some distros have separate packages for static libraries."
2422 fi
2423fi
2424if test "$cuda" = "yes" ; then
2425 output_sym "CONFIG_CUDA"
2426fi
2427if test "$mkdir_two" = "yes" ; then
2428 output_sym "CONFIG_HAVE_MKDIR_TWO"
2429fi
2430if test "$march_set" = "no" && test "$build_native" = "yes" ; then
2431 output_sym "CONFIG_BUILD_NATIVE"
2432fi
2433
2434echo "LIBS+=$LIBS" >> $config_host_mak
2435echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
2436echo "CFLAGS+=$CFLAGS" >> $config_host_mak
2437echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
2438echo "CC=$cc" >> $config_host_mak
2439echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
2440echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
2441
2442if [ `dirname $0` != "." -a ! -e Makefile ]; then
2443 cat > Makefile <<EOF
2444SRCDIR:=`dirname $0`
2445include \$(SRCDIR)/Makefile
2446EOF
2447fi