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