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