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