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