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