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