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