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