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