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