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