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