flow: fix bad overflowing math
[fio.git] / configure
... / ...
CommitLineData
1#!/bin/sh
2#
3# Fio configure script. Heavily influenced by the manual qemu configure
4# script. Sad this 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"
145disable_lex=""
146disable_pmem="no"
147prefix=/usr/local
148
149# parse options
150for opt do
151 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
152 case "$opt" in
153 --prefix=*) prefix="$optarg"
154 ;;
155 --cpu=*) cpu="$optarg"
156 ;;
157 # esx is cross compiled and cannot be detect through simple uname calls
158 --esx)
159 esx="yes"
160 ;;
161 --cc=*) CC="$optarg"
162 ;;
163 --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
164 ;;
165 --build-32bit-win) build_32bit_win="yes"
166 ;;
167 --build-static) build_static="yes"
168 ;;
169 --enable-gfio) gfio_check="yes"
170 ;;
171 --disable-numa) disable_numa="yes"
172 ;;
173 --disable-rdma) disable_rdma="yes"
174 ;;
175 --disable-rbd) disable_rbd="yes"
176 ;;
177 --disable-rbd-blkin) disable_rbd_blkin="yes"
178 ;;
179 --disable-gfapi) disable_gfapi="yes"
180 ;;
181 --enable-libhdfs) libhdfs="yes"
182 ;;
183 --disable-lex) disable_lex="yes"
184 ;;
185 --enable-lex) disable_lex="no"
186 ;;
187 --disable-shm) no_shm="yes"
188 ;;
189 --disable-optimizations) disable_opt="yes"
190 ;;
191 --disable-pmem) disable_pmem="yes"
192 ;;
193 --enable-cuda) enable_cuda="yes"
194 ;;
195 --help)
196 show_help="yes"
197 ;;
198 *)
199 echo "Bad option $opt"
200 show_help="yes"
201 exit_val=1
202 esac
203done
204
205if test "$show_help" = "yes" ; then
206 echo "--prefix= Use this directory as installation prefix"
207 echo "--cpu= Specify target CPU if auto-detect fails"
208 echo "--cc= Specify compiler to use"
209 echo "--extra-cflags= Specify extra CFLAGS to pass to compiler"
210 echo "--build-32bit-win Enable 32-bit build on Windows"
211 echo "--build-static Build a static fio"
212 echo "--esx Configure build options for esx"
213 echo "--enable-gfio Enable building of gtk gfio"
214 echo "--disable-numa Disable libnuma even if found"
215 echo "--disable-rdma Disable RDMA support even if found"
216 echo "--disable-gfapi Disable gfapi"
217 echo "--enable-libhdfs Enable hdfs support"
218 echo "--disable-lex Disable use of lex/yacc for math"
219 echo "--disable-pmem Disable pmem based engines even if found"
220 echo "--enable-lex Enable use of lex/yacc for math"
221 echo "--disable-shm Disable SHM support"
222 echo "--disable-optimizations Don't enable compiler optimizations"
223 echo "--enable-cuda Enable GPUDirect RDMA support"
224 exit $exit_val
225fi
226
227cross_prefix=${cross_prefix-${CROSS_COMPILE}}
228# Preferred compiler (can be overriden later after we know the platform):
229# ${CC} (if set)
230# ${cross_prefix}gcc (if cross-prefix specified)
231# gcc if available
232# clang if available
233if test -z "${CC}${cross_prefix}"; then
234 if has gcc; then
235 cc=gcc
236 elif has clang; then
237 cc=clang
238 fi
239else
240 cc="${CC-${cross_prefix}gcc}"
241fi
242
243if check_define __ANDROID__ ; then
244 targetos="Android"
245elif check_define __linux__ ; then
246 targetos="Linux"
247elif check_define __OpenBSD__ ; then
248 targetos='OpenBSD'
249elif check_define __sun__ ; then
250 targetos='SunOS'
251 CFLAGS="$CFLAGS -D_REENTRANT"
252elif check_define _WIN32 ; then
253 targetos='CYGWIN'
254else
255 targetos=`uname -s`
256fi
257
258echo "# Automatically generated by configure - do not modify" > $config_host_mak
259printf "# Configured with:" >> $config_host_mak
260printf " '%s'" "$0" "$@" >> $config_host_mak
261echo >> $config_host_mak
262echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
263
264if test "$no_shm" = "yes" ; then
265 output_sym "CONFIG_NO_SHM"
266fi
267
268if test "$disable_opt" = "yes" ; then
269 output_sym "CONFIG_FIO_NO_OPT"
270fi
271
272# Some host OSes need non-standard checks for which CPU to use.
273# Note that these checks are broken for cross-compilation: if you're
274# cross-compiling to one of these OSes then you'll need to specify
275# the correct CPU with the --cpu option.
276case $targetos in
277AIX|OpenBSD)
278 # Unless explicitly enabled, turn off lex.
279 # OpenBSD will hit syntax error when enabled.
280 if test -z "$disable_lex" ; then
281 disable_lex="yes"
282 else
283 force_no_lex_o="yes"
284 fi
285 ;;
286Darwin)
287 # on Leopard most of the system is 32-bit, so we have to ask the kernel if
288 # we can run 64-bit userspace code.
289 # If the user didn't specify a CPU explicitly and the kernel says this is
290 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
291 # detection code.
292 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
293 cpu="x86_64"
294 fi
295 # Error at compile time linking of weak/partial symbols if possible...
296cat > $TMPC <<EOF
297int main(void)
298{
299 return 0;
300}
301EOF
302 if compile_prog "" "-Wl,-no_weak_imports" "disable weak symbols"; then
303 echo "Disabling weak symbols"
304 LDFLAGS="$LDFLAGS -Wl,-no_weak_imports"
305 fi
306 ;;
307SunOS)
308 # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
309 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
310 cpu="x86_64"
311 fi
312 LIBS="-lnsl -lsocket"
313 ;;
314CYGWIN*)
315 # We still force some options, so keep this message here.
316 echo "Forcing some known good options on Windows"
317 if test -z "${CC}${cross_prefix}"; then
318 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
319 cc="i686-w64-mingw32-gcc"
320 if test -e "../zlib/contrib/vstudio/vc14/x86/ZlibStatReleaseWithoutAsm/zlibstat.lib"; then
321 echo "Building with zlib support"
322 output_sym "CONFIG_ZLIB"
323 echo "LIBS=../zlib/contrib/vstudio/vc14/x86/ZlibStatReleaseWithoutAsm/zlibstat.lib" >> $config_host_mak
324 fi
325 else
326 cc="x86_64-w64-mingw32-gcc"
327 if test -e "../zlib/contrib/vstudio/vc14/x64/ZlibStatReleaseWithoutAsm/zlibstat.lib"; then
328 echo "Building with zlib support"
329 output_sym "CONFIG_ZLIB"
330 echo "LIBS=../zlib/contrib/vstudio/vc14/x64/ZlibStatReleaseWithoutAsm/zlibstat.lib" >> $config_host_mak
331 fi
332 fi
333 fi
334 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
335 output_sym "CONFIG_32BIT"
336 else
337 output_sym "CONFIG_64BIT_LLP64"
338 fi
339 # We need this to be output_sym'd here because this is Windows specific.
340 # The regular configure path never sets this config.
341 output_sym "CONFIG_WINDOWSAIO"
342 # We now take the regular configuration path without having exit 0 here.
343 # Flags below are still necessary mostly for MinGW.
344 socklen_t="yes"
345 sfaa="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 -I../zlib -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# libverbs probe
711if test "$libverbs" != "yes" ; then
712 libverbs="no"
713fi
714cat > $TMPC << EOF
715#include <infiniband/verbs.h>
716int main(int argc, char **argv)
717{
718 struct ibv_pd *pd = ibv_alloc_pd(NULL);
719 return 0;
720}
721EOF
722if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
723 libverbs="yes"
724 LIBS="-libverbs $LIBS"
725fi
726print_config "libverbs" "$libverbs"
727
728##########################################
729# rdmacm probe
730if test "$rdmacm" != "yes" ; then
731 rdmacm="no"
732fi
733cat > $TMPC << EOF
734#include <stdio.h>
735#include <rdma/rdma_cma.h>
736int main(int argc, char **argv)
737{
738 rdma_destroy_qp(NULL);
739 return 0;
740}
741EOF
742if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
743 rdmacm="yes"
744 LIBS="-lrdmacm $LIBS"
745fi
746print_config "rdmacm" "$rdmacm"
747
748##########################################
749# Linux fallocate probe
750if test "$linux_fallocate" != "yes" ; then
751 linux_fallocate="no"
752fi
753cat > $TMPC << EOF
754#include <stdio.h>
755#include <fcntl.h>
756#include <linux/falloc.h>
757int main(int argc, char **argv)
758{
759 int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
760 return r;
761}
762EOF
763if compile_prog "" "" "linux_fallocate"; then
764 linux_fallocate="yes"
765fi
766print_config "Linux fallocate" "$linux_fallocate"
767
768##########################################
769# POSIX fadvise probe
770if test "$posix_fadvise" != "yes" ; then
771 posix_fadvise="no"
772fi
773cat > $TMPC << EOF
774#include <stdio.h>
775#include <fcntl.h>
776int main(int argc, char **argv)
777{
778 int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
779 return r;
780}
781EOF
782if compile_prog "" "" "posix_fadvise"; then
783 posix_fadvise="yes"
784fi
785print_config "POSIX fadvise" "$posix_fadvise"
786
787##########################################
788# POSIX fallocate probe
789if test "$posix_fallocate" != "yes" ; then
790 posix_fallocate="no"
791fi
792cat > $TMPC << EOF
793#include <stdio.h>
794#include <fcntl.h>
795int main(int argc, char **argv)
796{
797 int r = posix_fallocate(0, 0, 1024);
798 return r;
799}
800EOF
801if compile_prog "" "" "posix_fallocate"; then
802 posix_fallocate="yes"
803fi
804print_config "POSIX fallocate" "$posix_fallocate"
805
806##########################################
807# sched_set/getaffinity 2 or 3 argument test
808if test "$linux_2arg_affinity" != "yes" ; then
809 linux_2arg_affinity="no"
810fi
811if test "$linux_3arg_affinity" != "yes" ; then
812 linux_3arg_affinity="no"
813fi
814cat > $TMPC << EOF
815#include <sched.h>
816int main(int argc, char **argv)
817{
818 cpu_set_t mask;
819 return sched_setaffinity(0, sizeof(mask), &mask);
820}
821EOF
822if compile_prog "" "" "sched_setaffinity(,,)"; then
823 linux_3arg_affinity="yes"
824else
825 cat > $TMPC << EOF
826#include <sched.h>
827int main(int argc, char **argv)
828{
829 cpu_set_t mask;
830 return sched_setaffinity(0, &mask);
831}
832EOF
833 if compile_prog "" "" "sched_setaffinity(,)"; then
834 linux_2arg_affinity="yes"
835 fi
836fi
837print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
838print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
839
840##########################################
841# clock_gettime probe
842if test "$clock_gettime" != "yes" ; then
843 clock_gettime="no"
844fi
845cat > $TMPC << EOF
846#include <stdio.h>
847#include <time.h>
848int main(int argc, char **argv)
849{
850 return clock_gettime(0, NULL);
851}
852EOF
853if compile_prog "" "" "clock_gettime"; then
854 clock_gettime="yes"
855elif compile_prog "" "-lrt" "clock_gettime"; then
856 clock_gettime="yes"
857 LIBS="-lrt $LIBS"
858fi
859print_config "clock_gettime" "$clock_gettime"
860
861##########################################
862# CLOCK_MONOTONIC probe
863if test "$clock_monotonic" != "yes" ; then
864 clock_monotonic="no"
865fi
866if test "$clock_gettime" = "yes" ; then
867 cat > $TMPC << EOF
868#include <stdio.h>
869#include <time.h>
870int main(int argc, char **argv)
871{
872 return clock_gettime(CLOCK_MONOTONIC, NULL);
873}
874EOF
875 if compile_prog "" "$LIBS" "clock monotonic"; then
876 clock_monotonic="yes"
877 fi
878fi
879print_config "CLOCK_MONOTONIC" "$clock_monotonic"
880
881##########################################
882# CLOCK_MONOTONIC_RAW probe
883if test "$clock_monotonic_raw" != "yes" ; then
884 clock_monotonic_raw="no"
885fi
886if test "$clock_gettime" = "yes" ; then
887 cat > $TMPC << EOF
888#include <stdio.h>
889#include <time.h>
890int main(int argc, char **argv)
891{
892 return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
893}
894EOF
895 if compile_prog "" "$LIBS" "clock monotonic"; then
896 clock_monotonic_raw="yes"
897 fi
898fi
899print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
900
901##########################################
902# CLOCK_MONOTONIC_PRECISE probe
903if test "$clock_monotonic_precise" != "yes" ; then
904 clock_monotonic_precise="no"
905fi
906if test "$clock_gettime" = "yes" ; then
907 cat > $TMPC << EOF
908#include <stdio.h>
909#include <time.h>
910int main(int argc, char **argv)
911{
912 return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
913}
914EOF
915 if compile_prog "" "$LIBS" "clock monotonic precise"; then
916 clock_monotonic_precise="yes"
917 fi
918fi
919print_config "CLOCK_MONOTONIC_PRECISE" "$clock_monotonic_precise"
920
921##########################################
922# clockid_t probe
923if test "$clockid_t" != "yes" ; then
924 clockid_t="no"
925fi
926cat > $TMPC << EOF
927#include <time.h>
928#include <string.h>
929int main(int argc, char **argv)
930{
931 volatile clockid_t cid;
932 memset((void*)&cid, 0, sizeof(cid));
933 return 0;
934}
935EOF
936if compile_prog "" "$LIBS" "clockid_t"; then
937 clockid_t="yes"
938fi
939print_config "clockid_t" "$clockid_t"
940
941##########################################
942# gettimeofday() probe
943if test "$gettimeofday" != "yes" ; then
944 gettimeofday="no"
945fi
946cat > $TMPC << EOF
947#include <sys/time.h>
948#include <stdio.h>
949int main(int argc, char **argv)
950{
951 struct timeval tv;
952 return gettimeofday(&tv, NULL);
953}
954EOF
955if compile_prog "" "" "gettimeofday"; then
956 gettimeofday="yes"
957fi
958print_config "gettimeofday" "$gettimeofday"
959
960##########################################
961# fdatasync() probe
962if test "$fdatasync" != "yes" ; then
963 fdatasync="no"
964fi
965cat > $TMPC << EOF
966#include <stdio.h>
967#include <unistd.h>
968int main(int argc, char **argv)
969{
970 return fdatasync(0);
971}
972EOF
973if compile_prog "" "" "fdatasync"; then
974 fdatasync="yes"
975fi
976print_config "fdatasync" "$fdatasync"
977
978##########################################
979# sync_file_range() probe
980if test "$sync_file_range" != "yes" ; then
981 sync_file_range="no"
982fi
983cat > $TMPC << EOF
984#include <stdio.h>
985#include <unistd.h>
986#include <fcntl.h>
987#include <linux/fs.h>
988int main(int argc, char **argv)
989{
990 unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
991 SYNC_FILE_RANGE_WAIT_AFTER;
992 return sync_file_range(0, 0, 0, flags);
993}
994EOF
995if compile_prog "" "" "sync_file_range"; then
996 sync_file_range="yes"
997fi
998print_config "sync_file_range" "$sync_file_range"
999
1000##########################################
1001# ext4 move extent probe
1002if test "$ext4_me" != "yes" ; then
1003 ext4_me="no"
1004fi
1005cat > $TMPC << EOF
1006#include <fcntl.h>
1007#include <sys/ioctl.h>
1008int main(int argc, char **argv)
1009{
1010 struct move_extent me;
1011 return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1012}
1013EOF
1014if compile_prog "" "" "ext4 move extent" ; then
1015 ext4_me="yes"
1016elif test $targetos = "Linux" ; then
1017 # On Linux, just default to it on and let it error at runtime if we really
1018 # don't have it. None of my updated systems have it defined, but it does
1019 # work. Takes a while to bubble back.
1020 ext4_me="yes"
1021fi
1022print_config "EXT4 move extent" "$ext4_me"
1023
1024##########################################
1025# splice probe
1026if test "$linux_splice" != "yes" ; then
1027 linux_splice="no"
1028fi
1029cat > $TMPC << EOF
1030#include <stdio.h>
1031#include <fcntl.h>
1032int main(int argc, char **argv)
1033{
1034 return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1035}
1036EOF
1037if compile_prog "" "" "linux splice"; then
1038 linux_splice="yes"
1039fi
1040print_config "Linux splice(2)" "$linux_splice"
1041
1042##########################################
1043# GUASI probe
1044if test "$guasi" != "yes" ; then
1045 guasi="no"
1046fi
1047cat > $TMPC << EOF
1048#include <guasi.h>
1049#include <guasi_syscalls.h>
1050int main(int argc, char **argv)
1051{
1052 guasi_t ctx = guasi_create(0, 0, 0);
1053 return 0;
1054}
1055EOF
1056if compile_prog "" "" "guasi"; then
1057 guasi="yes"
1058fi
1059print_config "GUASI" "$guasi"
1060
1061##########################################
1062# fusion-aw probe
1063if test "$fusion_aw" != "yes" ; then
1064 fusion_aw="no"
1065fi
1066cat > $TMPC << EOF
1067#include <nvm/nvm_primitives.h>
1068int main(int argc, char **argv)
1069{
1070 nvm_version_t ver_info;
1071 nvm_handle_t handle;
1072
1073 handle = nvm_get_handle(0, &ver_info);
1074 return nvm_atomic_write(handle, 0, 0, 0);
1075}
1076EOF
1077if compile_prog "" "-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread" "fusion-aw"; then
1078 LIBS="-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread $LIBS"
1079 fusion_aw="yes"
1080fi
1081print_config "Fusion-io atomic engine" "$fusion_aw"
1082
1083##########################################
1084# libnuma probe
1085if test "$libnuma" != "yes" ; then
1086 libnuma="no"
1087fi
1088cat > $TMPC << EOF
1089#include <numa.h>
1090int main(int argc, char **argv)
1091{
1092 return numa_available();
1093}
1094EOF
1095if test "$disable_numa" != "yes" && compile_prog "" "-lnuma" "libnuma"; then
1096 libnuma="yes"
1097 LIBS="-lnuma $LIBS"
1098fi
1099print_config "libnuma" "$libnuma"
1100
1101##########################################
1102# libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1103if test "$libnuma" = "yes" ; then
1104libnuma_v2="no"
1105cat > $TMPC << EOF
1106#include <numa.h>
1107int main(int argc, char **argv)
1108{
1109 struct bitmask *mask = numa_parse_nodestring(NULL);
1110 return mask->size == 0;
1111}
1112EOF
1113if compile_prog "" "" "libnuma api"; then
1114 libnuma_v2="yes"
1115fi
1116print_config "libnuma v2" "$libnuma_v2"
1117fi
1118
1119##########################################
1120# strsep() probe
1121if test "$strsep" != "yes" ; then
1122 strsep="no"
1123fi
1124cat > $TMPC << EOF
1125#include <string.h>
1126int main(int argc, char **argv)
1127{
1128 static char *string = "This is a string";
1129 strsep(&string, "needle");
1130 return 0;
1131}
1132EOF
1133if compile_prog "" "" "strsep"; then
1134 strsep="yes"
1135fi
1136print_config "strsep" "$strsep"
1137
1138##########################################
1139# strcasestr() probe
1140if test "$strcasestr" != "yes" ; then
1141 strcasestr="no"
1142fi
1143cat > $TMPC << EOF
1144#include <string.h>
1145int main(int argc, char **argv)
1146{
1147 return strcasestr(argv[0], argv[1]) != NULL;
1148}
1149EOF
1150if compile_prog "" "" "strcasestr"; then
1151 strcasestr="yes"
1152fi
1153print_config "strcasestr" "$strcasestr"
1154
1155##########################################
1156# strlcat() probe
1157if test "$strlcat" != "yes" ; then
1158 strlcat="no"
1159fi
1160cat > $TMPC << EOF
1161#include <string.h>
1162int main(int argc, char **argv)
1163{
1164 static char dst[64];
1165 static char *string = "This is a string";
1166 memset(dst, 0, sizeof(dst));
1167 strlcat(dst, string, sizeof(dst));
1168 return 0;
1169}
1170EOF
1171if compile_prog "" "" "strlcat"; then
1172 strlcat="yes"
1173fi
1174print_config "strlcat" "$strlcat"
1175
1176##########################################
1177# getopt_long_only() probe
1178if test "$getopt_long_only" != "yes" ; then
1179 getopt_long_only="no"
1180fi
1181cat > $TMPC << EOF
1182#include <unistd.h>
1183#include <stdio.h>
1184#include <getopt.h>
1185int main(int argc, char **argv)
1186{
1187 int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
1188 return c;
1189}
1190EOF
1191if compile_prog "" "" "getopt_long_only"; then
1192 getopt_long_only="yes"
1193fi
1194print_config "getopt_long_only()" "$getopt_long_only"
1195
1196##########################################
1197# inet_aton() probe
1198if test "$inet_aton" != "yes" ; then
1199 inet_aton="no"
1200fi
1201cat > $TMPC << EOF
1202#include <sys/socket.h>
1203#include <arpa/inet.h>
1204#include <stdio.h>
1205int main(int argc, char **argv)
1206{
1207 struct in_addr in;
1208 return inet_aton(NULL, &in);
1209}
1210EOF
1211if compile_prog "" "" "inet_aton"; then
1212 inet_aton="yes"
1213fi
1214print_config "inet_aton" "$inet_aton"
1215
1216##########################################
1217# socklen_t probe
1218if test "$socklen_t" != "yes" ; then
1219 socklen_t="no"
1220fi
1221cat > $TMPC << EOF
1222#include <sys/socket.h>
1223int main(int argc, char **argv)
1224{
1225 socklen_t len = 0;
1226 return len;
1227}
1228EOF
1229if compile_prog "" "" "socklen_t"; then
1230 socklen_t="yes"
1231fi
1232print_config "socklen_t" "$socklen_t"
1233
1234##########################################
1235# Whether or not __thread is supported for TLS
1236if test "$tls_thread" != "yes" ; then
1237 tls_thread="no"
1238fi
1239cat > $TMPC << EOF
1240#include <stdio.h>
1241static __thread int ret;
1242int main(int argc, char **argv)
1243{
1244 return ret;
1245}
1246EOF
1247if compile_prog "" "" "__thread"; then
1248 tls_thread="yes"
1249fi
1250print_config "__thread" "$tls_thread"
1251
1252##########################################
1253# Check if we have required gtk/glib support for gfio
1254if test "$gfio" != "yes" ; then
1255 gfio="no"
1256fi
1257if test "$gfio_check" = "yes" ; then
1258 cat > $TMPC << EOF
1259#include <glib.h>
1260#include <cairo.h>
1261#include <gtk/gtk.h>
1262int main(void)
1263{
1264 gdk_threads_enter();
1265 gdk_threads_leave();
1266
1267 return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1268}
1269EOF
1270GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
1271ORG_LDFLAGS=$LDFLAGS
1272LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1273if test "$?" != "0" ; then
1274 echo "configure: gtk and gthread not found"
1275 exit 1
1276fi
1277GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
1278if test "$?" != "0" ; then
1279 echo "configure: gtk and gthread not found"
1280 exit 1
1281fi
1282if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1283 $TMPE
1284 if test "$?" = "0" ; then
1285 gfio="yes"
1286 GFIO_LIBS="$LIBS $GTK_LIBS"
1287 CFLAGS="$CFLAGS $GTK_CFLAGS"
1288 else
1289 echo "GTK found, but need version 2.18 or higher"
1290 gfio="no"
1291 fi
1292else
1293 echo "Please install gtk and gdk libraries"
1294 gfio="no"
1295fi
1296LDFLAGS=$ORG_LDFLAGS
1297fi
1298
1299if test "$gfio_check" = "yes" ; then
1300 print_config "gtk 2.18 or higher" "$gfio"
1301fi
1302
1303##########################################
1304# Check whether we have getrusage(RUSAGE_THREAD)
1305if test "$rusage_thread" != "yes" ; then
1306 rusage_thread="no"
1307fi
1308cat > $TMPC << EOF
1309#include <sys/time.h>
1310#include <sys/resource.h>
1311int main(int argc, char **argv)
1312{
1313 struct rusage ru;
1314 getrusage(RUSAGE_THREAD, &ru);
1315 return 0;
1316}
1317EOF
1318if compile_prog "" "" "RUSAGE_THREAD"; then
1319 rusage_thread="yes"
1320fi
1321print_config "RUSAGE_THREAD" "$rusage_thread"
1322
1323##########################################
1324# Check whether we have SCHED_IDLE
1325if test "$sched_idle" != "yes" ; then
1326 sched_idle="no"
1327fi
1328cat > $TMPC << EOF
1329#include <sched.h>
1330int main(int argc, char **argv)
1331{
1332 struct sched_param p;
1333 return sched_setscheduler(0, SCHED_IDLE, &p);
1334}
1335EOF
1336if compile_prog "" "" "SCHED_IDLE"; then
1337 sched_idle="yes"
1338fi
1339print_config "SCHED_IDLE" "$sched_idle"
1340
1341##########################################
1342# Check whether we have TCP_NODELAY
1343if test "$tcp_nodelay" != "yes" ; then
1344 tcp_nodelay="no"
1345fi
1346cat > $TMPC << EOF
1347#include <stdio.h>
1348#include <sys/types.h>
1349#include <sys/socket.h>
1350#include <netinet/tcp.h>
1351int main(int argc, char **argv)
1352{
1353 return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1354}
1355EOF
1356if compile_prog "" "" "TCP_NODELAY"; then
1357 tcp_nodelay="yes"
1358fi
1359print_config "TCP_NODELAY" "$tcp_nodelay"
1360
1361##########################################
1362# Check whether we have SO_SNDBUF
1363if test "$window_size" != "yes" ; then
1364 window_size="no"
1365fi
1366cat > $TMPC << EOF
1367#include <stdio.h>
1368#include <sys/types.h>
1369#include <sys/socket.h>
1370#include <netinet/tcp.h>
1371int main(int argc, char **argv)
1372{
1373 setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1374 setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1375}
1376EOF
1377if compile_prog "" "" "SO_SNDBUF"; then
1378 window_size="yes"
1379fi
1380print_config "Net engine window_size" "$window_size"
1381
1382##########################################
1383# Check whether we have TCP_MAXSEG
1384if test "$mss" != "yes" ; then
1385 mss="no"
1386fi
1387cat > $TMPC << EOF
1388#include <stdio.h>
1389#include <sys/types.h>
1390#include <sys/socket.h>
1391#include <netinet/tcp.h>
1392#include <arpa/inet.h>
1393#include <netinet/in.h>
1394int main(int argc, char **argv)
1395{
1396 return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1397}
1398EOF
1399if compile_prog "" "" "TCP_MAXSEG"; then
1400 mss="yes"
1401fi
1402print_config "TCP_MAXSEG" "$mss"
1403
1404##########################################
1405# Check whether we have RLIMIT_MEMLOCK
1406if test "$rlimit_memlock" != "yes" ; then
1407 rlimit_memlock="no"
1408fi
1409cat > $TMPC << EOF
1410#include <sys/time.h>
1411#include <sys/resource.h>
1412int main(int argc, char **argv)
1413{
1414 struct rlimit rl;
1415 return getrlimit(RLIMIT_MEMLOCK, &rl);
1416}
1417EOF
1418if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1419 rlimit_memlock="yes"
1420fi
1421print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1422
1423##########################################
1424# Check whether we have pwritev/preadv
1425if test "$pwritev" != "yes" ; then
1426 pwritev="no"
1427fi
1428cat > $TMPC << EOF
1429#include <stdio.h>
1430#include <sys/uio.h>
1431int main(int argc, char **argv)
1432{
1433 return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1434}
1435EOF
1436if compile_prog "" "" "pwritev"; then
1437 pwritev="yes"
1438fi
1439print_config "pwritev/preadv" "$pwritev"
1440
1441##########################################
1442# Check whether we have pwritev2/preadv2
1443if test "$pwritev2" != "yes" ; then
1444 pwritev2="no"
1445fi
1446cat > $TMPC << EOF
1447#include <stdio.h>
1448#include <sys/uio.h>
1449int main(int argc, char **argv)
1450{
1451 return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1452}
1453EOF
1454if compile_prog "" "" "pwritev2"; then
1455 pwritev2="yes"
1456fi
1457print_config "pwritev2/preadv2" "$pwritev2"
1458
1459##########################################
1460# Check whether we have the required functions for ipv6
1461if test "$ipv6" != "yes" ; then
1462 ipv6="no"
1463fi
1464cat > $TMPC << EOF
1465#include <sys/types.h>
1466#include <sys/socket.h>
1467#include <netinet/in.h>
1468#include <netdb.h>
1469#include <stdio.h>
1470int main(int argc, char **argv)
1471{
1472 struct addrinfo hints;
1473 struct in6_addr addr;
1474 int ret;
1475
1476 ret = getaddrinfo(NULL, NULL, &hints, NULL);
1477 freeaddrinfo(NULL);
1478 printf("%s\n", gai_strerror(ret));
1479 addr = in6addr_any;
1480 return 0;
1481}
1482EOF
1483if compile_prog "" "" "ipv6"; then
1484 ipv6="yes"
1485fi
1486print_config "IPv6 helpers" "$ipv6"
1487
1488##########################################
1489# check for rbd
1490if test "$rbd" != "yes" ; then
1491 rbd="no"
1492fi
1493cat > $TMPC << EOF
1494#include <rbd/librbd.h>
1495
1496int main(int argc, char **argv)
1497{
1498 rados_t cluster;
1499 rados_ioctx_t io_ctx;
1500 const char cluster_name[] = "ceph";
1501 const char user_name[] = "client.admin";
1502 const char pool[] = "rbd";
1503 int major, minor, extra;
1504
1505 rbd_version(&major, &minor, &extra);
1506 /* The rados_create2 signature required was only introduced in ceph 0.65 */
1507 rados_create2(&cluster, cluster_name, user_name, 0);
1508 rados_ioctx_create(cluster, pool, &io_ctx);
1509
1510 return 0;
1511}
1512EOF
1513if test "$disable_rbd" != "yes" && compile_prog "" "-lrbd -lrados" "rbd"; then
1514 LIBS="-lrbd -lrados $LIBS"
1515 rbd="yes"
1516fi
1517print_config "Rados Block Device engine" "$rbd"
1518
1519##########################################
1520# check for rbd_poll
1521if test "$rbd_poll" != "yes" ; then
1522 rbd_poll="no"
1523fi
1524if test "$rbd" = "yes"; then
1525cat > $TMPC << EOF
1526#include <rbd/librbd.h>
1527#include <sys/eventfd.h>
1528
1529int main(int argc, char **argv)
1530{
1531 rbd_image_t image;
1532 rbd_completion_t comp;
1533
1534 int fd = eventfd(0, EFD_NONBLOCK);
1535 rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1536 rbd_poll_io_events(image, comp, 1);
1537
1538 return 0;
1539}
1540EOF
1541if compile_prog "" "-lrbd -lrados" "rbd"; then
1542 rbd_poll="yes"
1543fi
1544print_config "rbd_poll" "$rbd_poll"
1545fi
1546
1547##########################################
1548# check for rbd_invaidate_cache()
1549if test "$rbd_inval" != "yes" ; then
1550 rbd_inval="no"
1551fi
1552if test "$rbd" = "yes"; then
1553cat > $TMPC << EOF
1554#include <rbd/librbd.h>
1555
1556int main(int argc, char **argv)
1557{
1558 rbd_image_t image;
1559
1560 return rbd_invalidate_cache(image);
1561}
1562EOF
1563if compile_prog "" "-lrbd -lrados" "rbd"; then
1564 rbd_inval="yes"
1565fi
1566print_config "rbd_invalidate_cache" "$rbd_inval"
1567fi
1568
1569##########################################
1570# check for blkin
1571if test "$rbd_blkin" != "yes" ; then
1572 rbd_blkin="no"
1573fi
1574cat > $TMPC << EOF
1575#include <rbd/librbd.h>
1576#include <zipkin_c.h>
1577
1578int main(int argc, char **argv)
1579{
1580 int r;
1581 struct blkin_trace_info t_info;
1582 blkin_init_trace_info(&t_info);
1583 rbd_completion_t completion;
1584 rbd_image_t image;
1585 uint64_t off;
1586 size_t len;
1587 const char *buf;
1588 r = rbd_aio_write_traced(image, off, len, buf, completion, &t_info);
1589 return 0;
1590}
1591EOF
1592if test "$disable_rbd" != "yes" && test "$disable_rbd_blkin" != "yes" \
1593 && compile_prog "" "-lrbd -lrados -lblkin" "rbd_blkin"; then
1594 LIBS="-lblkin $LIBS"
1595 rbd_blkin="yes"
1596fi
1597print_config "rbd blkin tracing" "$rbd_blkin"
1598
1599##########################################
1600# Check whether we have setvbuf
1601if test "$setvbuf" != "yes" ; then
1602 setvbuf="no"
1603fi
1604cat > $TMPC << EOF
1605#include <stdio.h>
1606int main(int argc, char **argv)
1607{
1608 FILE *f = NULL;
1609 char buf[80];
1610 setvbuf(f, buf, _IOFBF, sizeof(buf));
1611 return 0;
1612}
1613EOF
1614if compile_prog "" "" "setvbuf"; then
1615 setvbuf="yes"
1616fi
1617print_config "setvbuf" "$setvbuf"
1618
1619##########################################
1620# check for gfapi
1621if test "$gfapi" != "yes" ; then
1622 gfapi="no"
1623fi
1624cat > $TMPC << EOF
1625#include <glusterfs/api/glfs.h>
1626
1627int main(int argc, char **argv)
1628{
1629 glfs_t *g = glfs_new("foo");
1630
1631 return 0;
1632}
1633EOF
1634if test "$disable_gfapi" != "yes" && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1635 LIBS="-lgfapi -lglusterfs $LIBS"
1636 gfapi="yes"
1637fi
1638print_config "Gluster API engine" "$gfapi"
1639
1640##########################################
1641# check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
1642if test "$gfapi" = "yes" ; then
1643gf_fadvise="no"
1644cat > $TMPC << EOF
1645#include <glusterfs/api/glfs.h>
1646
1647int main(int argc, char **argv)
1648{
1649 struct glfs_fd *fd;
1650 int ret = glfs_fadvise(fd, 0, 0, 1);
1651
1652 return 0;
1653}
1654EOF
1655if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1656 gf_fadvise="yes"
1657fi
1658print_config "Gluster API use fadvise" "$gf_fadvise"
1659fi
1660
1661##########################################
1662# check for gfapi trim support
1663if test "$gf_trim" != "yes" ; then
1664 gf_trim="no"
1665fi
1666if test "$gfapi" = "yes" ; then
1667cat > $TMPC << EOF
1668#include <glusterfs/api/glfs.h>
1669
1670int main(int argc, char **argv)
1671{
1672 return glfs_discard_async(NULL, 0, 0);
1673}
1674EOF
1675if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1676 gf_trim="yes"
1677fi
1678print_config "Gluster API trim support" "$gf_trim"
1679fi
1680
1681##########################################
1682# Check if we support stckf on s390
1683if test "$s390_z196_facilities" != "yes" ; then
1684 s390_z196_facilities="no"
1685fi
1686cat > $TMPC << EOF
1687#define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1688int main(int argc, char **argv)
1689{
1690 /* We want just 1 double word to be returned. */
1691 register unsigned long reg0 asm("0") = 0;
1692 unsigned long stfle_bits;
1693 asm volatile(".machine push" "\n\t"
1694 ".machine \"z9-109\"" "\n\t"
1695 "stfle %0" "\n\t"
1696 ".machine pop" "\n"
1697 : "=QS" (stfle_bits), "+d" (reg0)
1698 : : "cc");
1699
1700 if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1701 return 0;
1702 else
1703 return -1;
1704}
1705EOF
1706if compile_prog "" "" "s390_z196_facilities"; then
1707 $TMPE
1708 if [ $? -eq 0 ]; then
1709 s390_z196_facilities="yes"
1710 fi
1711fi
1712print_config "s390_z196_facilities" "$s390_z196_facilities"
1713
1714##########################################
1715# Check if we have required environment variables configured for libhdfs
1716if test "$libhdfs" = "yes" ; then
1717 hdfs_conf_error=0
1718 if test "$JAVA_HOME" = "" ; then
1719 echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1720 hdfs_conf_error=1
1721 fi
1722 if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1723 echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1724 hdfs_conf_error=1
1725 fi
1726 if test "$FIO_LIBHDFS_LIB" = "" ; then
1727 echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1728 hdfs_conf_error=1
1729 fi
1730 if test "$hdfs_conf_error" = "1" ; then
1731 exit 1
1732 fi
1733 FIO_HDFS_CPU=$cpu
1734 if test "$FIO_HDFS_CPU" = "x86_64" ; then
1735 FIO_HDFS_CPU="amd64"
1736 fi
1737fi
1738print_config "HDFS engine" "$libhdfs"
1739
1740##########################################
1741# Check whether we have MTD
1742if test "$mtd" != "yes" ; then
1743 mtd="no"
1744fi
1745cat > $TMPC << EOF
1746#include <string.h>
1747#include <mtd/mtd-user.h>
1748#include <sys/ioctl.h>
1749int main(int argc, char **argv)
1750{
1751 struct mtd_write_req ops;
1752 struct mtd_info_user info;
1753 memset(&ops, 0, sizeof(ops));
1754 info.type = MTD_MLCNANDFLASH;
1755 return ioctl(0, MEMGETINFO, &info);
1756}
1757EOF
1758if compile_prog "" "" "mtd"; then
1759 mtd="yes"
1760fi
1761print_config "MTD" "$mtd"
1762
1763##########################################
1764# Check whether we have libpmem
1765if test "$libpmem" != "yes" ; then
1766 libpmem="no"
1767fi
1768cat > $TMPC << EOF
1769#include <libpmem.h>
1770int main(int argc, char **argv)
1771{
1772 int rc;
1773 rc = pmem_is_pmem(0, 0);
1774 return 0;
1775}
1776EOF
1777if compile_prog "" "-lpmem" "libpmem"; then
1778 libpmem="yes"
1779 LIBS="-lpmem $LIBS"
1780fi
1781print_config "libpmem" "$libpmem"
1782
1783##########################################
1784# Check whether we have libpmemblk
1785# libpmem is a prerequisite
1786if test "$libpmemblk" != "yes" ; then
1787 libpmemblk="no"
1788fi
1789if test "$libpmem" = "yes"; then
1790 cat > $TMPC << EOF
1791#include <libpmemblk.h>
1792int main(int argc, char **argv)
1793{
1794 PMEMblkpool *pbp;
1795 pbp = pmemblk_open("", 0);
1796 return 0;
1797}
1798EOF
1799 if compile_prog "" "-lpmemblk" "libpmemblk"; then
1800 libpmemblk="yes"
1801 LIBS="-lpmemblk $LIBS"
1802 fi
1803fi
1804print_config "libpmemblk" "$libpmemblk"
1805
1806# Choose the ioengines
1807if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
1808 devdax="yes"
1809 if test "$libpmemblk" = "yes"; then
1810 pmemblk="yes"
1811 fi
1812fi
1813
1814##########################################
1815# Report whether pmemblk engine is enabled
1816print_config "NVML pmemblk engine" "$pmemblk"
1817
1818##########################################
1819# Report whether dev-dax engine is enabled
1820print_config "NVML dev-dax engine" "$devdax"
1821
1822##########################################
1823# Check if we have lex/yacc available
1824yacc="no"
1825yacc_is_bison="no"
1826lex="no"
1827arith="no"
1828if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
1829if test "$targetos" != "SunOS" ; then
1830LEX=$(which lex 2> /dev/null)
1831if test -x "$LEX" ; then
1832 lex="yes"
1833fi
1834YACC=$(which bison 2> /dev/null)
1835if test -x "$YACC" ; then
1836 yacc="yes"
1837 yacc_is_bison="yes"
1838else
1839 YACC=$(which yacc 2> /dev/null)
1840 if test -x "$YACC" ; then
1841 yacc="yes"
1842 fi
1843fi
1844if test "$yacc" = "yes" && test "$lex" = "yes" ; then
1845 arith="yes"
1846fi
1847
1848if test "$arith" = "yes" ; then
1849cat > $TMPC << EOF
1850extern int yywrap(void);
1851
1852int main(int argc, char **argv)
1853{
1854 yywrap();
1855 return 0;
1856}
1857EOF
1858if compile_prog "" "-ll" "lex"; then
1859 LIBS="-ll $LIBS"
1860else
1861 arith="no"
1862fi
1863fi
1864fi
1865fi
1866
1867# Check if lex fails using -o
1868if test "$arith" = "yes" ; then
1869if test "$force_no_lex_o" = "yes" ; then
1870 lex_use_o="no"
1871else
1872$LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null
1873if test "$?" = "0" ; then
1874 lex_use_o="yes"
1875else
1876 lex_use_o="no"
1877fi
1878fi
1879fi
1880
1881print_config "lex/yacc for arithmetic" "$arith"
1882
1883##########################################
1884# Check whether we have setmntent/getmntent
1885if test "$getmntent" != "yes" ; then
1886 getmntent="no"
1887fi
1888cat > $TMPC << EOF
1889#include <stdio.h>
1890#include <mntent.h>
1891int main(int argc, char **argv)
1892{
1893 FILE *mtab = setmntent(NULL, "r");
1894 struct mntent *mnt = getmntent(mtab);
1895 endmntent(mtab);
1896 return 0;
1897}
1898EOF
1899if compile_prog "" "" "getmntent"; then
1900 getmntent="yes"
1901fi
1902print_config "getmntent" "$getmntent"
1903
1904##########################################
1905# Check whether we have getmntinfo
1906# These are originally added for BSDs, but may also work
1907# on other operating systems with getmntinfo(3).
1908
1909# getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
1910# Note that NetBSD needs -Werror to catch warning as error.
1911if test "$getmntinfo" != "yes" ; then
1912 getmntinfo="no"
1913fi
1914cat > $TMPC << EOF
1915#include <stdio.h>
1916#include <sys/param.h>
1917#include <sys/mount.h>
1918int main(int argc, char **argv)
1919{
1920 struct statfs *st;
1921 return getmntinfo(&st, MNT_NOWAIT);
1922}
1923EOF
1924if compile_prog "-Werror" "" "getmntinfo"; then
1925 getmntinfo="yes"
1926fi
1927print_config "getmntinfo" "$getmntinfo"
1928
1929# getmntinfo(3) for NetBSD.
1930if test "$getmntinfo_statvfs" != "yes" ; then
1931 getmntinfo_statvfs="no"
1932fi
1933cat > $TMPC << EOF
1934#include <stdio.h>
1935#include <sys/statvfs.h>
1936int main(int argc, char **argv)
1937{
1938 struct statvfs *st;
1939 return getmntinfo(&st, MNT_NOWAIT);
1940}
1941EOF
1942# Skip the test if the one with statfs arg is detected.
1943if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
1944 getmntinfo_statvfs="yes"
1945 print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
1946fi
1947
1948##########################################
1949# Check whether we have _Static_assert
1950if test "$static_assert" != "yes" ; then
1951 static_assert="no"
1952fi
1953cat > $TMPC << EOF
1954#include <assert.h>
1955#include <stdlib.h>
1956#include <stddef.h>
1957
1958struct foo {
1959 int a, b;
1960};
1961
1962int main(int argc, char **argv)
1963{
1964 _Static_assert(offsetof(struct foo, a) == 0 , "Check");
1965 return 0 ;
1966}
1967EOF
1968if compile_prog "" "" "static_assert"; then
1969 static_assert="yes"
1970fi
1971print_config "Static Assert" "$static_assert"
1972
1973##########################################
1974# Check whether we have bool / stdbool.h
1975if test "$have_bool" != "yes" ; then
1976 have_bool="no"
1977fi
1978cat > $TMPC << EOF
1979#include <stdbool.h>
1980int main(int argc, char **argv)
1981{
1982 bool var = true;
1983 return var != false;
1984}
1985EOF
1986if compile_prog "" "" "bool"; then
1987 have_bool="yes"
1988fi
1989print_config "bool" "$have_bool"
1990
1991##########################################
1992# Check whether we have strndup()
1993strndup="no"
1994cat > $TMPC << EOF
1995#include <string.h>
1996#include <stdlib.h>
1997int main(int argc, char **argv)
1998{
1999 char *res = strndup("test string", 8);
2000
2001 free(res);
2002 return 0;
2003}
2004EOF
2005if compile_prog "" "" "strndup"; then
2006 strndup="yes"
2007fi
2008print_config "strndup" "$strndup"
2009
2010##########################################
2011# check march=armv8-a+crc+crypto
2012if test "$march_armv8_a_crc_crypto" != "yes" ; then
2013 march_armv8_a_crc_crypto="no"
2014fi
2015if test "$cpu" = "arm64" ; then
2016 cat > $TMPC <<EOF
2017#include <sys/auxv.h>
2018#include <arm_acle.h>
2019#include <arm_neon.h>
2020
2021int main(void)
2022{
2023 return 0;
2024}
2025EOF
2026 if compile_prog "-march=armv8-a+crc+crypto" "" ""; then
2027 march_armv8_a_crc_crypto="yes"
2028 CFLAGS="$CFLAGS -march=armv8-a+crc+crypto -DARCH_HAVE_CRC_CRYPTO"
2029 fi
2030fi
2031print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2032
2033##########################################
2034# cuda probe
2035if test "$cuda" != "yes" ; then
2036 cuda="no"
2037fi
2038cat > $TMPC << EOF
2039#include <cuda.h>
2040int main(int argc, char **argv)
2041{
2042 return cuInit(0);
2043}
2044EOF
2045if test "$enable_cuda" = "yes" && compile_prog "" "-lcuda" "cuda"; then
2046 cuda="yes"
2047 LIBS="-lcuda $LIBS"
2048fi
2049print_config "cuda" "$cuda"
2050
2051##########################################
2052# mkdir() probe. mingw apparently has a one-argument mkdir :/
2053mkdir_two="no"
2054cat > $TMPC << EOF
2055#include <sys/stat.h>
2056#include <sys/types.h>
2057int main(int argc, char **argv)
2058{
2059 return mkdir("/tmp/bla", 0600);
2060}
2061EOF
2062if compile_prog "" "" "mkdir(a, b)"; then
2063 mkdir_two="yes"
2064fi
2065print_config "mkdir(a, b)" "$mkdir_two"
2066
2067#############################################################################
2068
2069if test "$wordsize" = "64" ; then
2070 output_sym "CONFIG_64BIT"
2071elif test "$wordsize" = "32" ; then
2072 output_sym "CONFIG_32BIT"
2073else
2074 fatal "Unknown wordsize!"
2075fi
2076if test "$bigendian" = "yes" ; then
2077 output_sym "CONFIG_BIG_ENDIAN"
2078else
2079 output_sym "CONFIG_LITTLE_ENDIAN"
2080fi
2081if test "$zlib" = "yes" ; then
2082 output_sym "CONFIG_ZLIB"
2083fi
2084if test "$libaio" = "yes" ; then
2085 output_sym "CONFIG_LIBAIO"
2086fi
2087if test "$posix_aio" = "yes" ; then
2088 output_sym "CONFIG_POSIXAIO"
2089fi
2090if test "$posix_aio_fsync" = "yes" ; then
2091 output_sym "CONFIG_POSIXAIO_FSYNC"
2092fi
2093if test "$posix_pshared" = "yes" ; then
2094 output_sym "CONFIG_PSHARED"
2095fi
2096if test "$linux_fallocate" = "yes" ; then
2097 output_sym "CONFIG_LINUX_FALLOCATE"
2098fi
2099if test "$posix_fallocate" = "yes" ; then
2100 output_sym "CONFIG_POSIX_FALLOCATE"
2101fi
2102if test "$fdatasync" = "yes" ; then
2103 output_sym "CONFIG_FDATASYNC"
2104fi
2105if test "$sync_file_range" = "yes" ; then
2106 output_sym "CONFIG_SYNC_FILE_RANGE"
2107fi
2108if test "$sfaa" = "yes" ; then
2109 output_sym "CONFIG_SFAA"
2110fi
2111if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2112 output_sym "CONFIG_RDMA"
2113fi
2114if test "$clock_gettime" = "yes" ; then
2115 output_sym "CONFIG_CLOCK_GETTIME"
2116fi
2117if test "$clock_monotonic" = "yes" ; then
2118 output_sym "CONFIG_CLOCK_MONOTONIC"
2119fi
2120if test "$clock_monotonic_raw" = "yes" ; then
2121 output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2122fi
2123if test "$clock_monotonic_precise" = "yes" ; then
2124 output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
2125fi
2126if test "$clockid_t" = "yes"; then
2127 output_sym "CONFIG_CLOCKID_T"
2128fi
2129if test "$gettimeofday" = "yes" ; then
2130 output_sym "CONFIG_GETTIMEOFDAY"
2131fi
2132if test "$posix_fadvise" = "yes" ; then
2133 output_sym "CONFIG_POSIX_FADVISE"
2134fi
2135if test "$linux_3arg_affinity" = "yes" ; then
2136 output_sym "CONFIG_3ARG_AFFINITY"
2137elif test "$linux_2arg_affinity" = "yes" ; then
2138 output_sym "CONFIG_2ARG_AFFINITY"
2139fi
2140if test "$strsep" = "yes" ; then
2141 output_sym "CONFIG_STRSEP"
2142fi
2143if test "$strcasestr" = "yes" ; then
2144 output_sym "CONFIG_STRCASESTR"
2145fi
2146if test "$strlcat" = "yes" ; then
2147 output_sym "CONFIG_STRLCAT"
2148fi
2149if test "$getopt_long_only" = "yes" ; then
2150 output_sym "CONFIG_GETOPT_LONG_ONLY"
2151fi
2152if test "$inet_aton" = "yes" ; then
2153 output_sym "CONFIG_INET_ATON"
2154fi
2155if test "$socklen_t" = "yes" ; then
2156 output_sym "CONFIG_SOCKLEN_T"
2157fi
2158if test "$ext4_me" = "yes" ; then
2159 output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
2160fi
2161if test "$linux_splice" = "yes" ; then
2162 output_sym "CONFIG_LINUX_SPLICE"
2163fi
2164if test "$guasi" = "yes" ; then
2165 output_sym "CONFIG_GUASI"
2166fi
2167if test "$fusion_aw" = "yes" ; then
2168 output_sym "CONFIG_FUSION_AW"
2169fi
2170if test "$libnuma_v2" = "yes" ; then
2171 output_sym "CONFIG_LIBNUMA"
2172fi
2173if test "$solaris_aio" = "yes" ; then
2174 output_sym "CONFIG_SOLARISAIO"
2175fi
2176if test "$tls_thread" = "yes" ; then
2177 output_sym "CONFIG_TLS_THREAD"
2178fi
2179if test "$rusage_thread" = "yes" ; then
2180 output_sym "CONFIG_RUSAGE_THREAD"
2181fi
2182if test "$gfio" = "yes" ; then
2183 output_sym "CONFIG_GFIO"
2184fi
2185if test "$esx" = "yes" ; then
2186 output_sym "CONFIG_ESX"
2187 output_sym "CONFIG_NO_SHM"
2188fi
2189if test "$sched_idle" = "yes" ; then
2190 output_sym "CONFIG_SCHED_IDLE"
2191fi
2192if test "$tcp_nodelay" = "yes" ; then
2193 output_sym "CONFIG_TCP_NODELAY"
2194fi
2195if test "$window_size" = "yes" ; then
2196 output_sym "CONFIG_NET_WINDOWSIZE"
2197fi
2198if test "$mss" = "yes" ; then
2199 output_sym "CONFIG_NET_MSS"
2200fi
2201if test "$rlimit_memlock" = "yes" ; then
2202 output_sym "CONFIG_RLIMIT_MEMLOCK"
2203fi
2204if test "$pwritev" = "yes" ; then
2205 output_sym "CONFIG_PWRITEV"
2206fi
2207if test "$pwritev2" = "yes" ; then
2208 output_sym "CONFIG_PWRITEV2"
2209fi
2210if test "$ipv6" = "yes" ; then
2211 output_sym "CONFIG_IPV6"
2212fi
2213if test "$rbd" = "yes" ; then
2214 output_sym "CONFIG_RBD"
2215fi
2216if test "$rbd_poll" = "yes" ; then
2217 output_sym "CONFIG_RBD_POLL"
2218fi
2219if test "$rbd_inval" = "yes" ; then
2220 output_sym "CONFIG_RBD_INVAL"
2221fi
2222if test "$rbd_blkin" = "yes" ; then
2223 output_sym "CONFIG_RBD_BLKIN"
2224fi
2225if test "$setvbuf" = "yes" ; then
2226 output_sym "CONFIG_SETVBUF"
2227fi
2228if test "$s390_z196_facilities" = "yes" ; then
2229 output_sym "CONFIG_S390_Z196_FACILITIES"
2230 CFLAGS="$CFLAGS -march=z9-109"
2231fi
2232if test "$gfapi" = "yes" ; then
2233 output_sym "CONFIG_GFAPI"
2234fi
2235if test "$gf_fadvise" = "yes" ; then
2236 output_sym "CONFIG_GF_FADVISE"
2237fi
2238if test "$gf_trim" = "yes" ; then
2239 output_sym "CONFIG_GF_TRIM"
2240fi
2241if test "$libhdfs" = "yes" ; then
2242 output_sym "CONFIG_LIBHDFS"
2243 echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
2244 echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2245 echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2246 echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
2247 fi
2248if test "$mtd" = "yes" ; then
2249 output_sym "CONFIG_MTD"
2250fi
2251if test "$pmemblk" = "yes" ; then
2252 output_sym "CONFIG_PMEMBLK"
2253fi
2254if test "$devdax" = "yes" ; then
2255 output_sym "CONFIG_LINUX_DEVDAX"
2256fi
2257if test "$arith" = "yes" ; then
2258 output_sym "CONFIG_ARITHMETIC"
2259 if test "$yacc_is_bison" = "yes" ; then
2260 echo "YACC=$YACC -y" >> $config_host_mak
2261 else
2262 echo "YACC=$YACC" >> $config_host_mak
2263 fi
2264 if test "$lex_use_o" = "yes" ; then
2265 echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2266 fi
2267fi
2268if test "$getmntent" = "yes" ; then
2269 output_sym "CONFIG_GETMNTENT"
2270fi
2271if test "$getmntinfo" = "yes" ; then
2272 output_sym "CONFIG_GETMNTINFO"
2273fi
2274if test "$getmntinfo_statvfs" = "yes" ; then
2275 output_sym "CONFIG_GETMNTINFO_STATVFS"
2276fi
2277if test "$static_assert" = "yes" ; then
2278 output_sym "CONFIG_STATIC_ASSERT"
2279fi
2280if test "$have_bool" = "yes" ; then
2281 output_sym "CONFIG_HAVE_BOOL"
2282fi
2283if test "$strndup" = "yes" ; then
2284 output_sym "CONFIG_HAVE_STRNDUP"
2285fi
2286if test "$disable_opt" = "yes" ; then
2287 output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2288fi
2289if test "$zlib" = "no" ; then
2290 echo "Consider installing zlib-dev (zlib-devel), some fio features depend on it."
2291fi
2292if test "$cuda" = "yes" ; then
2293 output_sym "CONFIG_CUDA"
2294fi
2295if test "$mkdir_two" = "yes" ; then
2296 output_sym "CONFIG_HAVE_MKDIR_TWO"
2297fi
2298
2299echo "LIBS+=$LIBS" >> $config_host_mak
2300echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
2301echo "CFLAGS+=$CFLAGS" >> $config_host_mak
2302echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
2303echo "CC=$cc" >> $config_host_mak
2304echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
2305echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
2306
2307if [ `dirname $0` != "." -a ! -e Makefile ]; then
2308 cat > Makefile <<EOF
2309SRCDIR:=`dirname $0`
2310include \$(SRCDIR)/Makefile
2311EOF
2312fi