configure: add --enable-libaio-uring parameter
[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() {
91 do_cc $CFLAGS -c -o $TMPO $TMPC
92}
93
94compile_prog() {
95 local_cflags="$1"
adaa46d8 96 local_ldflags="$2 $LIBS"
67bf9823
JA
97 echo "Compiling test case $3" >> config.log
98 do_cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
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
67bf9823
JA
707##########################################
708# solaris aio probe
ca205a75
TK
709if test "$solaris_aio" != "yes" ; then
710 solaris_aio="no"
711fi
67bf9823
JA
712cat > $TMPC <<EOF
713#include <sys/types.h>
714#include <sys/asynch.h>
715#include <unistd.h>
716int main(void)
717{
718 aio_result_t res;
719 return aioread(0, NULL, 0, 0, SEEK_SET, &res);
720 return 0;
721}
722EOF
723if compile_prog "" "-laio" "solarisaio" ; then
724 solaris_aio=yes
725 LIBS="-laio $LIBS"
726fi
484b0b65 727print_config "Solaris AIO support" "$solaris_aio"
67bf9823
JA
728
729##########################################
f5cd2907 730# __sync_fetch_and_add test
ca205a75
TK
731if test "$sfaa" != "yes" ; then
732 sfaa="no"
733fi
67bf9823 734cat > $TMPC << EOF
958886d8
JA
735#include <inttypes.h>
736static int sfaa(uint64_t *ptr)
67bf9823 737{
9c639a76 738 return __sync_fetch_and_add(ptr, 0);
67bf9823
JA
739}
740
741int main(int argc, char **argv)
742{
958886d8 743 uint64_t val = 42;
67bf9823
JA
744 sfaa(&val);
745 return val;
746}
747EOF
748if compile_prog "" "" "__sync_fetch_and_add()" ; then
749 sfaa="yes"
750fi
484b0b65 751print_config "__sync_fetch_and_add" "$sfaa"
67bf9823 752
a250edd0
JA
753##########################################
754# __sync_synchronize() test
755if test "$sync_sync" != "yes" ; then
756 sync_sync="no"
757fi
758cat > $TMPC << EOF
759#include <inttypes.h>
760
761int main(int argc, char **argv)
762{
763 __sync_synchronize();
764 return 0;
765}
766EOF
767if compile_prog "" "" "__sync_synchronize()" ; then
768 sync_sync="yes"
769fi
770print_config "__sync_synchronize" "$sync_sync"
771
772##########################################
773# __sync_val_compare_and_swap() test
774if test "$cmp_swap" != "yes" ; then
775 cmp_swap="no"
776fi
777cat > $TMPC << EOF
778#include <inttypes.h>
779
780int main(int argc, char **argv)
781{
782 int x = 0;
783 return __sync_val_compare_and_swap(&x, 1, 2);
784}
785EOF
786if compile_prog "" "" "__sync_val_compare_and_swap()" ; then
787 cmp_swap="yes"
788fi
789print_config "__sync_val_compare_and_swap" "$cmp_swap"
790
67bf9823
JA
791##########################################
792# libverbs probe
ca205a75
TK
793if test "$libverbs" != "yes" ; then
794 libverbs="no"
795fi
67bf9823 796cat > $TMPC << EOF
eb3bfdd8 797#include <infiniband/verbs.h>
67bf9823
JA
798int main(int argc, char **argv)
799{
800 struct ibv_pd *pd = ibv_alloc_pd(NULL);
801 return 0;
802}
803EOF
f678f8d2 804if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
67bf9823
JA
805 libverbs="yes"
806 LIBS="-libverbs $LIBS"
807fi
484b0b65 808print_config "libverbs" "$libverbs"
67bf9823
JA
809
810##########################################
811# rdmacm probe
ca205a75
TK
812if test "$rdmacm" != "yes" ; then
813 rdmacm="no"
814fi
67bf9823
JA
815cat > $TMPC << EOF
816#include <stdio.h>
817#include <rdma/rdma_cma.h>
818int main(int argc, char **argv)
819{
820 rdma_destroy_qp(NULL);
821 return 0;
822}
823EOF
f678f8d2 824if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
67bf9823
JA
825 rdmacm="yes"
826 LIBS="-lrdmacm $LIBS"
827fi
484b0b65 828print_config "rdmacm" "$rdmacm"
67bf9823 829
44e8e956
BVA
830##########################################
831# asprintf() and vasprintf() probes
832if test "$have_asprintf" != "yes" ; then
833 have_asprintf="no"
834fi
835cat > $TMPC << EOF
836#include <stdio.h>
837
838int main(int argc, char **argv)
839{
840 return asprintf(NULL, "%s", "str") == 0;
841}
842EOF
843if compile_prog "" "" "have_asprintf"; then
844 have_asprintf="yes"
845fi
846print_config "asprintf()" "$have_asprintf"
847
848if test "$have_vasprintf" != "yes" ; then
849 have_vasprintf="no"
850fi
851cat > $TMPC << EOF
852#include <stdio.h>
853
854int main(int argc, char **argv)
855{
856 return vasprintf(NULL, "%s", NULL) == 0;
857}
858EOF
859if compile_prog "" "" "have_vasprintf"; then
860 have_vasprintf="yes"
861fi
862print_config "vasprintf()" "$have_vasprintf"
863
67bf9823
JA
864##########################################
865# Linux fallocate probe
ca205a75
TK
866if test "$linux_fallocate" != "yes" ; then
867 linux_fallocate="no"
868fi
67bf9823
JA
869cat > $TMPC << EOF
870#include <stdio.h>
aa6738a5 871#include <fcntl.h>
67bf9823
JA
872#include <linux/falloc.h>
873int main(int argc, char **argv)
874{
875 int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
876 return r;
877}
878EOF
879if compile_prog "" "" "linux_fallocate"; then
880 linux_fallocate="yes"
881fi
484b0b65 882print_config "Linux fallocate" "$linux_fallocate"
67bf9823
JA
883
884##########################################
885# POSIX fadvise probe
ca205a75
TK
886if test "$posix_fadvise" != "yes" ; then
887 posix_fadvise="no"
888fi
67bf9823
JA
889cat > $TMPC << EOF
890#include <stdio.h>
891#include <fcntl.h>
892int main(int argc, char **argv)
893{
894 int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
895 return r;
896}
897EOF
898if compile_prog "" "" "posix_fadvise"; then
899 posix_fadvise="yes"
900fi
484b0b65 901print_config "POSIX fadvise" "$posix_fadvise"
67bf9823
JA
902
903##########################################
904# POSIX fallocate probe
ca205a75
TK
905if test "$posix_fallocate" != "yes" ; then
906 posix_fallocate="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_fallocate(0, 0, 1024);
914 return r;
915}
916EOF
917if compile_prog "" "" "posix_fallocate"; then
918 posix_fallocate="yes"
919fi
484b0b65 920print_config "POSIX fallocate" "$posix_fallocate"
67bf9823
JA
921
922##########################################
923# sched_set/getaffinity 2 or 3 argument test
ca205a75
TK
924if test "$linux_2arg_affinity" != "yes" ; then
925 linux_2arg_affinity="no"
926fi
927if test "$linux_3arg_affinity" != "yes" ; then
928 linux_3arg_affinity="no"
929fi
67bf9823 930cat > $TMPC << EOF
67bf9823
JA
931#include <sched.h>
932int main(int argc, char **argv)
933{
934 cpu_set_t mask;
935 return sched_setaffinity(0, sizeof(mask), &mask);
936}
937EOF
938if compile_prog "" "" "sched_setaffinity(,,)"; then
939 linux_3arg_affinity="yes"
940else
941 cat > $TMPC << EOF
67bf9823
JA
942#include <sched.h>
943int main(int argc, char **argv)
944{
945 cpu_set_t mask;
946 return sched_setaffinity(0, &mask);
947}
948EOF
949 if compile_prog "" "" "sched_setaffinity(,)"; then
950 linux_2arg_affinity="yes"
951 fi
952fi
484b0b65
TK
953print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
954print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
67bf9823
JA
955
956##########################################
957# clock_gettime probe
ca205a75
TK
958if test "$clock_gettime" != "yes" ; then
959 clock_gettime="no"
960fi
67bf9823
JA
961cat > $TMPC << EOF
962#include <stdio.h>
963#include <time.h>
964int main(int argc, char **argv)
965{
966 return clock_gettime(0, NULL);
967}
968EOF
969if compile_prog "" "" "clock_gettime"; then
970 clock_gettime="yes"
971elif compile_prog "" "-lrt" "clock_gettime"; then
972 clock_gettime="yes"
973 LIBS="-lrt $LIBS"
974fi
484b0b65 975print_config "clock_gettime" "$clock_gettime"
67bf9823
JA
976
977##########################################
978# CLOCK_MONOTONIC probe
ca205a75
TK
979if test "$clock_monotonic" != "yes" ; then
980 clock_monotonic="no"
981fi
67bf9823
JA
982if test "$clock_gettime" = "yes" ; then
983 cat > $TMPC << EOF
984#include <stdio.h>
985#include <time.h>
986int main(int argc, char **argv)
987{
988 return clock_gettime(CLOCK_MONOTONIC, NULL);
989}
990EOF
991 if compile_prog "" "$LIBS" "clock monotonic"; then
992 clock_monotonic="yes"
993 fi
994fi
484b0b65 995print_config "CLOCK_MONOTONIC" "$clock_monotonic"
67bf9823 996
c544f604
SN
997##########################################
998# CLOCK_MONOTONIC_RAW probe
ca205a75
TK
999if test "$clock_monotonic_raw" != "yes" ; then
1000 clock_monotonic_raw="no"
1001fi
c544f604
SN
1002if test "$clock_gettime" = "yes" ; then
1003 cat > $TMPC << EOF
1004#include <stdio.h>
1005#include <time.h>
1006int main(int argc, char **argv)
1007{
1008 return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
1009}
1010EOF
1011 if compile_prog "" "$LIBS" "clock monotonic"; then
1012 clock_monotonic_raw="yes"
1013 fi
1014fi
484b0b65 1015print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
c544f604 1016
67bf9823
JA
1017##########################################
1018# CLOCK_MONOTONIC_PRECISE probe
ca205a75
TK
1019if test "$clock_monotonic_precise" != "yes" ; then
1020 clock_monotonic_precise="no"
1021fi
67bf9823
JA
1022if test "$clock_gettime" = "yes" ; then
1023 cat > $TMPC << EOF
1024#include <stdio.h>
1025#include <time.h>
1026int main(int argc, char **argv)
1027{
1028 return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
1029}
1030EOF
1031 if compile_prog "" "$LIBS" "clock monotonic precise"; then
1032 clock_monotonic_precise="yes"
1033 fi
1034fi
484b0b65 1035print_config "CLOCK_MONOTONIC_PRECISE" "$clock_monotonic_precise"
67bf9823 1036
25f8227d
JA
1037##########################################
1038# clockid_t probe
ca205a75
TK
1039if test "$clockid_t" != "yes" ; then
1040 clockid_t="no"
1041fi
25f8227d 1042cat > $TMPC << EOF
25f8227d 1043#include <time.h>
209c37b4 1044#include <string.h>
25f8227d
JA
1045int main(int argc, char **argv)
1046{
ccf2d89d 1047 volatile clockid_t cid;
7fcad9e1 1048 memset((void*)&cid, 0, sizeof(cid));
ccf2d89d 1049 return 0;
25f8227d
JA
1050}
1051EOF
1052if compile_prog "" "$LIBS" "clockid_t"; then
1053 clockid_t="yes"
1054fi
484b0b65 1055print_config "clockid_t" "$clockid_t"
25f8227d 1056
67bf9823
JA
1057##########################################
1058# gettimeofday() probe
ca205a75
TK
1059if test "$gettimeofday" != "yes" ; then
1060 gettimeofday="no"
1061fi
67bf9823
JA
1062cat > $TMPC << EOF
1063#include <sys/time.h>
1064#include <stdio.h>
1065int main(int argc, char **argv)
1066{
1067 struct timeval tv;
1068 return gettimeofday(&tv, NULL);
1069}
1070EOF
1071if compile_prog "" "" "gettimeofday"; then
1072 gettimeofday="yes"
1073fi
484b0b65 1074print_config "gettimeofday" "$gettimeofday"
67bf9823
JA
1075
1076##########################################
1077# fdatasync() probe
ca205a75
TK
1078if test "$fdatasync" != "yes" ; then
1079 fdatasync="no"
1080fi
67bf9823
JA
1081cat > $TMPC << EOF
1082#include <stdio.h>
1083#include <unistd.h>
1084int main(int argc, char **argv)
1085{
1086 return fdatasync(0);
1087}
1088EOF
1089if compile_prog "" "" "fdatasync"; then
1090 fdatasync="yes"
1091fi
484b0b65 1092print_config "fdatasync" "$fdatasync"
67bf9823
JA
1093
1094##########################################
1095# sync_file_range() probe
ca205a75
TK
1096if test "$sync_file_range" != "yes" ; then
1097 sync_file_range="no"
1098fi
67bf9823
JA
1099cat > $TMPC << EOF
1100#include <stdio.h>
1101#include <unistd.h>
67bf9823
JA
1102#include <fcntl.h>
1103#include <linux/fs.h>
1104int main(int argc, char **argv)
1105{
1106 unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
1107 SYNC_FILE_RANGE_WAIT_AFTER;
1108 return sync_file_range(0, 0, 0, flags);
1109}
1110EOF
1111if compile_prog "" "" "sync_file_range"; then
1112 sync_file_range="yes"
1113fi
484b0b65 1114print_config "sync_file_range" "$sync_file_range"
67bf9823
JA
1115
1116##########################################
1117# ext4 move extent probe
ca205a75
TK
1118if test "$ext4_me" != "yes" ; then
1119 ext4_me="no"
1120fi
67bf9823
JA
1121cat > $TMPC << EOF
1122#include <fcntl.h>
1123#include <sys/ioctl.h>
1124int main(int argc, char **argv)
1125{
1126 struct move_extent me;
1127 return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1128}
1129EOF
c7165b8d
JA
1130if compile_prog "" "" "ext4 move extent" ; then
1131 ext4_me="yes"
1132elif test $targetos = "Linux" ; then
1133 # On Linux, just default to it on and let it error at runtime if we really
1134 # don't have it. None of my updated systems have it defined, but it does
1135 # work. Takes a while to bubble back.
67bf9823
JA
1136 ext4_me="yes"
1137fi
484b0b65 1138print_config "EXT4 move extent" "$ext4_me"
67bf9823
JA
1139
1140##########################################
1141# splice probe
ca205a75
TK
1142if test "$linux_splice" != "yes" ; then
1143 linux_splice="no"
1144fi
67bf9823 1145cat > $TMPC << EOF
67bf9823
JA
1146#include <stdio.h>
1147#include <fcntl.h>
1148int main(int argc, char **argv)
1149{
1150 return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1151}
1152EOF
1153if compile_prog "" "" "linux splice"; then
1154 linux_splice="yes"
1155fi
484b0b65 1156print_config "Linux splice(2)" "$linux_splice"
67bf9823
JA
1157
1158##########################################
1159# GUASI probe
ca205a75
TK
1160if test "$guasi" != "yes" ; then
1161 guasi="no"
1162fi
67bf9823
JA
1163cat > $TMPC << EOF
1164#include <guasi.h>
1165#include <guasi_syscalls.h>
1166int main(int argc, char **argv)
1167{
1168 guasi_t ctx = guasi_create(0, 0, 0);
1169 return 0;
1170}
1171EOF
1172if compile_prog "" "" "guasi"; then
1173 guasi="yes"
1174fi
484b0b65 1175print_config "GUASI" "$guasi"
67bf9823 1176
67bf9823
JA
1177##########################################
1178# libnuma probe
ca205a75
TK
1179if test "$libnuma" != "yes" ; then
1180 libnuma="no"
1181fi
67bf9823
JA
1182cat > $TMPC << EOF
1183#include <numa.h>
1184int main(int argc, char **argv)
1185{
1186 return numa_available();
1187}
1188EOF
44462517 1189if test "$disable_numa" != "yes" && compile_prog "" "-lnuma" "libnuma"; then
67bf9823
JA
1190 libnuma="yes"
1191 LIBS="-lnuma $LIBS"
1192fi
484b0b65 1193print_config "libnuma" "$libnuma"
67bf9823 1194
50206d9b 1195##########################################
ca205a75 1196# libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
50206d9b
JA
1197if test "$libnuma" = "yes" ; then
1198libnuma_v2="no"
1199cat > $TMPC << EOF
1200#include <numa.h>
1201int main(int argc, char **argv)
1202{
1203 struct bitmask *mask = numa_parse_nodestring(NULL);
61bde962 1204 return mask->size == 0;
50206d9b
JA
1205}
1206EOF
1207if compile_prog "" "" "libnuma api"; then
1208 libnuma_v2="yes"
1209fi
484b0b65 1210print_config "libnuma v2" "$libnuma_v2"
50206d9b
JA
1211fi
1212
67bf9823
JA
1213##########################################
1214# strsep() probe
ca205a75
TK
1215if test "$strsep" != "yes" ; then
1216 strsep="no"
1217fi
67bf9823
JA
1218cat > $TMPC << EOF
1219#include <string.h>
1220int main(int argc, char **argv)
1221{
ae156be6
JA
1222 static char *string = "This is a string";
1223 strsep(&string, "needle");
67bf9823
JA
1224 return 0;
1225}
1226EOF
1227if compile_prog "" "" "strsep"; then
1228 strsep="yes"
1229fi
484b0b65 1230print_config "strsep" "$strsep"
67bf9823 1231
9ad8da82
JA
1232##########################################
1233# strcasestr() probe
ca205a75
TK
1234if test "$strcasestr" != "yes" ; then
1235 strcasestr="no"
1236fi
9ad8da82
JA
1237cat > $TMPC << EOF
1238#include <string.h>
1239int main(int argc, char **argv)
1240{
aa6738a5 1241 return strcasestr(argv[0], argv[1]) != NULL;
9ad8da82
JA
1242}
1243EOF
1244if compile_prog "" "" "strcasestr"; then
1245 strcasestr="yes"
1246fi
484b0b65 1247print_config "strcasestr" "$strcasestr"
9ad8da82 1248
5ad7be56
KD
1249##########################################
1250# strlcat() probe
ca205a75
TK
1251if test "$strlcat" != "yes" ; then
1252 strlcat="no"
1253fi
5ad7be56
KD
1254cat > $TMPC << EOF
1255#include <string.h>
1256int main(int argc, char **argv)
1257{
1258 static char dst[64];
1259 static char *string = "This is a string";
1260 memset(dst, 0, sizeof(dst));
1261 strlcat(dst, string, sizeof(dst));
1262 return 0;
1263}
1264EOF
1265if compile_prog "" "" "strlcat"; then
1266 strlcat="yes"
1267fi
484b0b65 1268print_config "strlcat" "$strlcat"
5ad7be56 1269
67bf9823
JA
1270##########################################
1271# getopt_long_only() probe
ca205a75
TK
1272if test "$getopt_long_only" != "yes" ; then
1273 getopt_long_only="no"
1274fi
67bf9823
JA
1275cat > $TMPC << EOF
1276#include <unistd.h>
1277#include <stdio.h>
aa6738a5 1278#include <getopt.h>
67bf9823
JA
1279int main(int argc, char **argv)
1280{
1281 int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
1282 return c;
1283}
1284EOF
1285if compile_prog "" "" "getopt_long_only"; then
1286 getopt_long_only="yes"
1287fi
484b0b65 1288print_config "getopt_long_only()" "$getopt_long_only"
67bf9823
JA
1289
1290##########################################
1291# inet_aton() probe
ca205a75
TK
1292if test "$inet_aton" != "yes" ; then
1293 inet_aton="no"
1294fi
67bf9823
JA
1295cat > $TMPC << EOF
1296#include <sys/socket.h>
1297#include <arpa/inet.h>
1298#include <stdio.h>
1299int main(int argc, char **argv)
1300{
1301 struct in_addr in;
1302 return inet_aton(NULL, &in);
1303}
1304EOF
1305if compile_prog "" "" "inet_aton"; then
1306 inet_aton="yes"
1307fi
484b0b65 1308print_config "inet_aton" "$inet_aton"
67bf9823
JA
1309
1310##########################################
1311# socklen_t probe
ca205a75
TK
1312if test "$socklen_t" != "yes" ; then
1313 socklen_t="no"
1314fi
67bf9823 1315cat > $TMPC << EOF
f6482613 1316#include <sys/socket.h>
67bf9823
JA
1317int main(int argc, char **argv)
1318{
1319 socklen_t len = 0;
1320 return len;
1321}
1322EOF
1323if compile_prog "" "" "socklen_t"; then
1324 socklen_t="yes"
1325fi
484b0b65 1326print_config "socklen_t" "$socklen_t"
67bf9823
JA
1327
1328##########################################
1329# Whether or not __thread is supported for TLS
ca205a75
TK
1330if test "$tls_thread" != "yes" ; then
1331 tls_thread="no"
1332fi
67bf9823
JA
1333cat > $TMPC << EOF
1334#include <stdio.h>
aa6738a5 1335static __thread int ret;
67bf9823
JA
1336int main(int argc, char **argv)
1337{
1338 return ret;
1339}
1340EOF
1341if compile_prog "" "" "__thread"; then
1342 tls_thread="yes"
1343fi
484b0b65 1344print_config "__thread" "$tls_thread"
67bf9823 1345
91f94d5b 1346##########################################
2639f056 1347# Check if we have required gtk/glib support for gfio
ca205a75
TK
1348if test "$gfio" != "yes" ; then
1349 gfio="no"
1350fi
ebec2094 1351if test "$gfio_check" = "yes" ; then
91f94d5b
JA
1352 cat > $TMPC << EOF
1353#include <glib.h>
1354#include <cairo.h>
1355#include <gtk/gtk.h>
1356int main(void)
1357{
1358 gdk_threads_enter();
91f94d5b 1359 gdk_threads_leave();
b7a99316 1360
ef2b61aa 1361 return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
91f94d5b
JA
1362}
1363EOF
4d1bc43e 1364GTK_CFLAGS=$(${cross_prefix}pkg-config --cflags gtk+-2.0 gthread-2.0)
86719845
JA
1365ORG_LDFLAGS=$LDFLAGS
1366LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
91f94d5b
JA
1367if test "$?" != "0" ; then
1368 echo "configure: gtk and gthread not found"
1369 exit 1
1370fi
4d1bc43e 1371GTK_LIBS=$(${cross_prefix}pkg-config --libs gtk+-2.0 gthread-2.0)
91f94d5b
JA
1372if test "$?" != "0" ; then
1373 echo "configure: gtk and gthread not found"
1374 exit 1
1375fi
31ce8438
HG
1376if ! ${cross_prefix}pkg-config --atleast-version 2.18.0 gtk+-2.0; then
1377 echo "GTK found, but need version 2.18 or higher"
1378 gfio="no"
1379else
1380 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
b7a99316 1381 gfio="yes"
86719845 1382 GFIO_LIBS="$LIBS $GTK_LIBS"
b7a99316
JA
1383 CFLAGS="$CFLAGS $GTK_CFLAGS"
1384 else
31ce8438 1385 echo "Please install gtk and gdk libraries"
b7a99316
JA
1386 gfio="no"
1387 fi
91f94d5b 1388fi
86719845 1389LDFLAGS=$ORG_LDFLAGS
91f94d5b
JA
1390fi
1391
ebec2094 1392if test "$gfio_check" = "yes" ; then
484b0b65 1393 print_config "gtk 2.18 or higher" "$gfio"
ebec2094 1394fi
91f94d5b 1395
bda92394 1396##########################################
44404c5a 1397# Check whether we have getrusage(RUSAGE_THREAD)
ca205a75
TK
1398if test "$rusage_thread" != "yes" ; then
1399 rusage_thread="no"
1400fi
44404c5a
JA
1401cat > $TMPC << EOF
1402#include <sys/time.h>
1403#include <sys/resource.h>
1404int main(int argc, char **argv)
1405{
1406 struct rusage ru;
1407 getrusage(RUSAGE_THREAD, &ru);
1408 return 0;
1409}
1410EOF
1411if compile_prog "" "" "RUSAGE_THREAD"; then
1412 rusage_thread="yes"
1413fi
484b0b65 1414print_config "RUSAGE_THREAD" "$rusage_thread"
44404c5a 1415
7e09a9f1
JA
1416##########################################
1417# Check whether we have SCHED_IDLE
ca205a75
TK
1418if test "$sched_idle" != "yes" ; then
1419 sched_idle="no"
1420fi
7e09a9f1
JA
1421cat > $TMPC << EOF
1422#include <sched.h>
1423int main(int argc, char **argv)
1424{
1425 struct sched_param p;
1426 return sched_setscheduler(0, SCHED_IDLE, &p);
1427}
1428EOF
1429if compile_prog "" "" "SCHED_IDLE"; then
1430 sched_idle="yes"
1431fi
484b0b65 1432print_config "SCHED_IDLE" "$sched_idle"
7e09a9f1 1433
1eafa37a
JA
1434##########################################
1435# Check whether we have TCP_NODELAY
ca205a75
TK
1436if test "$tcp_nodelay" != "yes" ; then
1437 tcp_nodelay="no"
1438fi
1eafa37a
JA
1439cat > $TMPC << EOF
1440#include <stdio.h>
1441#include <sys/types.h>
1442#include <sys/socket.h>
1443#include <netinet/tcp.h>
1444int main(int argc, char **argv)
1445{
1446 return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1447}
1448EOF
1449if compile_prog "" "" "TCP_NODELAY"; then
1450 tcp_nodelay="yes"
1451fi
484b0b65 1452print_config "TCP_NODELAY" "$tcp_nodelay"
1eafa37a 1453
1008602c
JA
1454##########################################
1455# Check whether we have SO_SNDBUF
ca205a75
TK
1456if test "$window_size" != "yes" ; then
1457 window_size="no"
1458fi
1008602c
JA
1459cat > $TMPC << EOF
1460#include <stdio.h>
1461#include <sys/types.h>
1462#include <sys/socket.h>
1463#include <netinet/tcp.h>
1464int main(int argc, char **argv)
1465{
1466 setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1467 setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1468}
1469EOF
1470if compile_prog "" "" "SO_SNDBUF"; then
1471 window_size="yes"
1472fi
484b0b65 1473print_config "Net engine window_size" "$window_size"
1008602c 1474
e5f34d95
JA
1475##########################################
1476# Check whether we have TCP_MAXSEG
ca205a75
TK
1477if test "$mss" != "yes" ; then
1478 mss="no"
1479fi
e5f34d95
JA
1480cat > $TMPC << EOF
1481#include <stdio.h>
1482#include <sys/types.h>
1483#include <sys/socket.h>
1484#include <netinet/tcp.h>
1485#include <arpa/inet.h>
1486#include <netinet/in.h>
1487int main(int argc, char **argv)
1488{
1489 return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1490}
1491EOF
1492if compile_prog "" "" "TCP_MAXSEG"; then
1493 mss="yes"
1494fi
484b0b65 1495print_config "TCP_MAXSEG" "$mss"
e5f34d95 1496
38b9354a
JA
1497##########################################
1498# Check whether we have RLIMIT_MEMLOCK
ca205a75
TK
1499if test "$rlimit_memlock" != "yes" ; then
1500 rlimit_memlock="no"
1501fi
38b9354a
JA
1502cat > $TMPC << EOF
1503#include <sys/time.h>
1504#include <sys/resource.h>
1505int main(int argc, char **argv)
1506{
1507 struct rlimit rl;
1508 return getrlimit(RLIMIT_MEMLOCK, &rl);
1509}
1510EOF
1511if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1512 rlimit_memlock="yes"
1513fi
484b0b65 1514print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
38b9354a 1515
07fc0acd
JA
1516##########################################
1517# Check whether we have pwritev/preadv
ca205a75
TK
1518if test "$pwritev" != "yes" ; then
1519 pwritev="no"
1520fi
07fc0acd
JA
1521cat > $TMPC << EOF
1522#include <stdio.h>
1523#include <sys/uio.h>
1524int main(int argc, char **argv)
1525{
1526 return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1527}
1528EOF
1529if compile_prog "" "" "pwritev"; then
1530 pwritev="yes"
1531fi
484b0b65 1532print_config "pwritev/preadv" "$pwritev"
07fc0acd 1533
2cafffbe
JA
1534##########################################
1535# Check whether we have pwritev2/preadv2
ca205a75
TK
1536if test "$pwritev2" != "yes" ; then
1537 pwritev2="no"
1538fi
2cafffbe
JA
1539cat > $TMPC << EOF
1540#include <stdio.h>
1541#include <sys/uio.h>
1542int main(int argc, char **argv)
1543{
1544 return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1545}
1546EOF
1547if compile_prog "" "" "pwritev2"; then
1548 pwritev2="yes"
1549fi
484b0b65 1550print_config "pwritev2/preadv2" "$pwritev2"
2cafffbe 1551
ecad55e9
JA
1552##########################################
1553# Check whether we have the required functions for ipv6
ca205a75
TK
1554if test "$ipv6" != "yes" ; then
1555 ipv6="no"
1556fi
ecad55e9
JA
1557cat > $TMPC << EOF
1558#include <sys/types.h>
1559#include <sys/socket.h>
d219028d 1560#include <netinet/in.h>
ecad55e9
JA
1561#include <netdb.h>
1562#include <stdio.h>
1563int main(int argc, char **argv)
1564{
1565 struct addrinfo hints;
1566 struct in6_addr addr;
1567 int ret;
1568
1569 ret = getaddrinfo(NULL, NULL, &hints, NULL);
1570 freeaddrinfo(NULL);
1571 printf("%s\n", gai_strerror(ret));
1572 addr = in6addr_any;
1573 return 0;
1574}
1575EOF
1576if compile_prog "" "" "ipv6"; then
1577 ipv6="yes"
1578fi
484b0b65 1579print_config "IPv6 helpers" "$ipv6"
07fc0acd 1580
c2f6a13d
LMB
1581##########################################
1582# check for http
1583if test "$http" != "yes" ; then
1584 http="no"
1585fi
9ee669fa
DD
1586# check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
1587cat > $TMPC << EOF
1588#include <curl/curl.h>
1589#include <openssl/hmac.h>
1590
1591int main(int argc, char **argv)
1592{
1593 CURL *curl;
1594 HMAC_CTX *ctx;
1595
1596 curl = curl_easy_init();
1597 curl_easy_cleanup(curl);
1598
1599 ctx = HMAC_CTX_new();
1600 HMAC_CTX_reset(ctx);
1601 HMAC_CTX_free(ctx);
1602 return 0;
1603}
1604EOF
1605# openssl < 1.1.0 uses the HMAC_CTX type directly
1606cat > $TMPC2 << 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 HMAC_CTX_init(&ctx);
1619 HMAC_CTX_cleanup(&ctx);
1620 return 0;
1621}
1622EOF
1623if test "$disable_http" != "yes"; then
1624 HTTP_LIBS="-lcurl -lssl -lcrypto"
1625 if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
b61a5f46 1626 output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
9ee669fa
DD
1627 http="yes"
1628 LIBS="$HTTP_LIBS $LIBS"
1629 elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
1630 http="yes"
1631 LIBS="$HTTP_LIBS $LIBS"
0290c589 1632 fi
c2f6a13d
LMB
1633fi
1634print_config "http engine" "$http"
1635
d5f9b0ea
IF
1636##########################################
1637# check for rados
1638if test "$rados" != "yes" ; then
1639 rados="no"
1640fi
1641cat > $TMPC << EOF
1642#include <rados/librados.h>
1643
1644int main(int argc, char **argv)
1645{
1646 rados_t cluster;
1647 rados_ioctx_t io_ctx;
1648 const char cluster_name[] = "ceph";
1649 const char user_name[] = "client.admin";
1650 const char pool[] = "rados";
1651
1652 /* The rados_create2 signature required was only introduced in ceph 0.65 */
1653 rados_create2(&cluster, cluster_name, user_name, 0);
1654 rados_ioctx_create(cluster, pool, &io_ctx);
1655
1656 return 0;
1657}
1658EOF
1659if test "$disable_rados" != "yes" && compile_prog "" "-lrados" "rados"; then
1660 LIBS="-lrados $LIBS"
1661 rados="yes"
1662fi
1663print_config "Rados engine" "$rados"
1664
fc5c0345
DG
1665##########################################
1666# check for rbd
ca205a75
TK
1667if test "$rbd" != "yes" ; then
1668 rbd="no"
1669fi
fc5c0345
DG
1670cat > $TMPC << EOF
1671#include <rbd/librbd.h>
1672
1673int main(int argc, char **argv)
1674{
fc5c0345
DG
1675 rados_t cluster;
1676 rados_ioctx_t io_ctx;
fb9bc6e3
SW
1677 const char cluster_name[] = "ceph";
1678 const char user_name[] = "client.admin";
fc5c0345 1679 const char pool[] = "rbd";
fc5c0345 1680 int major, minor, extra;
fc5c0345 1681
fb9bc6e3
SW
1682 rbd_version(&major, &minor, &extra);
1683 /* The rados_create2 signature required was only introduced in ceph 0.65 */
1684 rados_create2(&cluster, cluster_name, user_name, 0);
fc5c0345 1685 rados_ioctx_create(cluster, pool, &io_ctx);
fb9bc6e3 1686
fc5c0345
DG
1687 return 0;
1688}
1689EOF
ce18290e 1690if test "$disable_rbd" != "yes" && compile_prog "" "-lrbd -lrados" "rbd"; then
fc5c0345
DG
1691 LIBS="-lrbd -lrados $LIBS"
1692 rbd="yes"
1693fi
484b0b65 1694print_config "Rados Block Device engine" "$rbd"
fc5c0345 1695
53b6c979
PL
1696##########################################
1697# check for rbd_poll
ca205a75
TK
1698if test "$rbd_poll" != "yes" ; then
1699 rbd_poll="no"
1700fi
53b6c979
PL
1701if test "$rbd" = "yes"; then
1702cat > $TMPC << EOF
1703#include <rbd/librbd.h>
1704#include <sys/eventfd.h>
1705
1706int main(int argc, char **argv)
1707{
1708 rbd_image_t image;
1709 rbd_completion_t comp;
1710
1711 int fd = eventfd(0, EFD_NONBLOCK);
1712 rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1713 rbd_poll_io_events(image, comp, 1);
1714
1715 return 0;
1716}
1717EOF
1718if compile_prog "" "-lrbd -lrados" "rbd"; then
1719 rbd_poll="yes"
1720fi
484b0b65 1721print_config "rbd_poll" "$rbd_poll"
53b6c979
PL
1722fi
1723
903b2812 1724##########################################
6266dd72 1725# check for rbd_invalidate_cache()
ca205a75
TK
1726if test "$rbd_inval" != "yes" ; then
1727 rbd_inval="no"
1728fi
903b2812
JA
1729if test "$rbd" = "yes"; then
1730cat > $TMPC << EOF
1731#include <rbd/librbd.h>
1732
1733int main(int argc, char **argv)
1734{
1735 rbd_image_t image;
1736
1737 return rbd_invalidate_cache(image);
1738}
1739EOF
1740if compile_prog "" "-lrbd -lrados" "rbd"; then
1741 rbd_inval="yes"
1742fi
484b0b65 1743print_config "rbd_invalidate_cache" "$rbd_inval"
903b2812
JA
1744fi
1745
2e802282
JA
1746##########################################
1747# Check whether we have setvbuf
ca205a75
TK
1748if test "$setvbuf" != "yes" ; then
1749 setvbuf="no"
1750fi
2e802282
JA
1751cat > $TMPC << EOF
1752#include <stdio.h>
1753int main(int argc, char **argv)
1754{
1755 FILE *f = NULL;
1756 char buf[80];
1757 setvbuf(f, buf, _IOFBF, sizeof(buf));
1758 return 0;
1759}
1760EOF
1761if compile_prog "" "" "setvbuf"; then
1762 setvbuf="yes"
1763fi
484b0b65 1764print_config "setvbuf" "$setvbuf"
fc5c0345 1765
bda92394 1766##########################################
6e7d7dfb 1767# check for gfapi
ca205a75
TK
1768if test "$gfapi" != "yes" ; then
1769 gfapi="no"
1770fi
6e7d7dfb 1771cat > $TMPC << EOF
1772#include <glusterfs/api/glfs.h>
1773
1774int main(int argc, char **argv)
1775{
6e7d7dfb 1776 glfs_t *g = glfs_new("foo");
1777
1778 return 0;
1779}
1780EOF
ce18290e 1781if test "$disable_gfapi" != "yes" && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
6e7d7dfb 1782 LIBS="-lgfapi -lglusterfs $LIBS"
1783 gfapi="yes"
1784fi
484b0b65 1785print_config "Gluster API engine" "$gfapi"
6e7d7dfb 1786
6fa14b99 1787##########################################
ca205a75 1788# check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
6876c98c 1789if test "$gfapi" = "yes" ; then
6fa14b99 1790gf_fadvise="no"
1791cat > $TMPC << EOF
1792#include <glusterfs/api/glfs.h>
1793
1794int main(int argc, char **argv)
1795{
1796 struct glfs_fd *fd;
1797 int ret = glfs_fadvise(fd, 0, 0, 1);
1798
1799 return 0;
1800}
1801EOF
6fa14b99 1802if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1803 gf_fadvise="yes"
1804fi
484b0b65 1805print_config "Gluster API use fadvise" "$gf_fadvise"
6876c98c
JA
1806fi
1807
ce4d13ca
JA
1808##########################################
1809# check for newer gfapi
1810if test "$gfapi" = "yes" ; then
1811gf_new="no"
1812cat > $TMPC << EOF
1813#include <glusterfs/api/glfs.h>
1814
1815int main(int argc, char **argv)
1816{
1817 return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
1818}
1819EOF
1820if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
1821 gf_new="yes"
1822fi
1823print_config "Gluster new API" "$gf_new"
1824fi
1825
6876c98c
JA
1826##########################################
1827# check for gfapi trim support
ca205a75
TK
1828if test "$gf_trim" != "yes" ; then
1829 gf_trim="no"
1830fi
6876c98c
JA
1831if test "$gfapi" = "yes" ; then
1832cat > $TMPC << EOF
1833#include <glusterfs/api/glfs.h>
1834
1835int main(int argc, char **argv)
1836{
1837 return glfs_discard_async(NULL, 0, 0);
1838}
1839EOF
1840if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1841 gf_trim="yes"
1842fi
484b0b65 1843print_config "Gluster API trim support" "$gf_trim"
6876c98c 1844fi
fc5c0345 1845
81795ce3
CE
1846##########################################
1847# Check if we support stckf on s390
ca205a75
TK
1848if test "$s390_z196_facilities" != "yes" ; then
1849 s390_z196_facilities="no"
1850fi
81795ce3
CE
1851cat > $TMPC << EOF
1852#define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1853int main(int argc, char **argv)
1854{
1855 /* We want just 1 double word to be returned. */
1856 register unsigned long reg0 asm("0") = 0;
1857 unsigned long stfle_bits;
1858 asm volatile(".machine push" "\n\t"
1859 ".machine \"z9-109\"" "\n\t"
1860 "stfle %0" "\n\t"
1861 ".machine pop" "\n"
1862 : "=QS" (stfle_bits), "+d" (reg0)
1863 : : "cc");
1864
1865 if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1866 return 0;
1867 else
1868 return -1;
1869}
1870EOF
1871if compile_prog "" "" "s390_z196_facilities"; then
1872 $TMPE
6a2c9363 1873 if [ $? -eq 0 ]; then
81795ce3
CE
1874 s390_z196_facilities="yes"
1875 fi
1876fi
484b0b65 1877print_config "s390_z196_facilities" "$s390_z196_facilities"
1b10477b
MM
1878
1879##########################################
1880# Check if we have required environment variables configured for libhdfs
1881if test "$libhdfs" = "yes" ; then
1882 hdfs_conf_error=0
1883 if test "$JAVA_HOME" = "" ; then
1884 echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1885 hdfs_conf_error=1
1886 fi
1887 if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1888 echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1889 hdfs_conf_error=1
1890 fi
1891 if test "$FIO_LIBHDFS_LIB" = "" ; then
1892 echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1893 hdfs_conf_error=1
1894 fi
1895 if test "$hdfs_conf_error" = "1" ; then
1896 exit 1
1897 fi
247e5436
JA
1898 FIO_HDFS_CPU=$cpu
1899 if test "$FIO_HDFS_CPU" = "x86_64" ; then
1900 FIO_HDFS_CPU="amd64"
1901 fi
1b10477b 1902fi
484b0b65 1903print_config "HDFS engine" "$libhdfs"
1b10477b 1904
b8116a87
DE
1905##########################################
1906# Check whether we have MTD
ca205a75
TK
1907if test "$mtd" != "yes" ; then
1908 mtd="no"
1909fi
b8116a87 1910cat > $TMPC << EOF
0e1c454a 1911#include <string.h>
b8116a87
DE
1912#include <mtd/mtd-user.h>
1913#include <sys/ioctl.h>
1914int main(int argc, char **argv)
1915{
0e1c454a 1916 struct mtd_write_req ops;
b8116a87 1917 struct mtd_info_user info;
0e1c454a 1918 memset(&ops, 0, sizeof(ops));
400cd0ff 1919 info.type = MTD_MLCNANDFLASH;
b8116a87
DE
1920 return ioctl(0, MEMGETINFO, &info);
1921}
1922EOF
1923if compile_prog "" "" "mtd"; then
1924 mtd="yes"
1925fi
484b0b65 1926print_config "MTD" "$mtd"
b8116a87 1927
3ee2a3c1
DJ
1928##########################################
1929# Check whether we have libpmem
ca205a75
TK
1930if test "$libpmem" != "yes" ; then
1931 libpmem="no"
1932fi
3ee2a3c1
DJ
1933cat > $TMPC << EOF
1934#include <libpmem.h>
1935int main(int argc, char **argv)
1936{
1937 int rc;
1938 rc = pmem_is_pmem(0, 0);
1939 return 0;
1940}
1941EOF
1942if compile_prog "" "-lpmem" "libpmem"; then
1943 libpmem="yes"
cf8775b8 1944 LIBS="-lpmem $LIBS"
3ee2a3c1 1945fi
484b0b65 1946print_config "libpmem" "$libpmem"
3ee2a3c1
DJ
1947
1948##########################################
1949# Check whether we have libpmemblk
cf8775b8 1950# libpmem is a prerequisite
ca205a75
TK
1951if test "$libpmemblk" != "yes" ; then
1952 libpmemblk="no"
1953fi
cf8775b8
RE
1954if test "$libpmem" = "yes"; then
1955 cat > $TMPC << EOF
3ee2a3c1
DJ
1956#include <libpmemblk.h>
1957int main(int argc, char **argv)
1958{
cf8775b8
RE
1959 PMEMblkpool *pbp;
1960 pbp = pmemblk_open("", 0);
3ee2a3c1
DJ
1961 return 0;
1962}
1963EOF
cf8775b8
RE
1964 if compile_prog "" "-lpmemblk" "libpmemblk"; then
1965 libpmemblk="yes"
1966 LIBS="-lpmemblk $LIBS"
1967 fi
3ee2a3c1 1968fi
484b0b65 1969print_config "libpmemblk" "$libpmemblk"
3ee2a3c1 1970
cf8775b8 1971# Choose the ioengines
3ee2a3c1 1972if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
ae0db592 1973 pmem="yes"
3ee2a3c1
DJ
1974 devdax="yes"
1975 if test "$libpmemblk" = "yes"; then
1976 pmemblk="yes"
1977 fi
1978fi
1979
43f3cec2
BB
1980##########################################
1981# Report whether pmemblk engine is enabled
363a5f65 1982print_config "PMDK pmemblk engine" "$pmemblk"
43f3cec2 1983
cbb15e42
DJ
1984##########################################
1985# Report whether dev-dax engine is enabled
363a5f65 1986print_config "PMDK dev-dax engine" "$devdax"
cbb15e42 1987
ae0db592
TI
1988##########################################
1989# Report whether libpmem engine is enabled
363a5f65 1990print_config "PMDK libpmem engine" "$pmem"
ae0db592 1991
a40e7a59
GB
1992##########################################
1993# Check whether we support DDN's IME
1994if test "$libime" != "yes" ; then
1995 libime="no"
1996fi
1997cat > $TMPC << EOF
1998#include <ime_native.h>
1999int main(int argc, char **argv)
2000{
2001 int rc;
2002 ime_native_init();
2003 rc = ime_native_finalize();
2004 return 0;
2005}
2006EOF
2007if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
2008 libime="yes"
2009 CFLAGS="-I${ime_path}/include $CFLAGS"
2010 LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
2011 LIBS="-lim_client $LIBS"
2012fi
2013print_config "DDN's Infinite Memory Engine" "$libime"
2014
247ef2aa
KZ
2015##########################################
2016# Check if we have required environment variables configured for libiscsi
2017if test "$libiscsi" = "yes" ; then
2018 if $(pkg-config --atleast-version=1.9.0 libiscsi); then
2019 libiscsi="yes"
2020 libiscsi_cflags=$(pkg-config --cflags libiscsi)
2021 libiscsi_libs=$(pkg-config --libs libiscsi)
2022 else
2023 if test "$libiscsi" = "yes" ; then
2024 echo "libiscsi" "Install libiscsi >= 1.9.0"
2025 fi
2026 libiscsi="no"
2027 fi
2028fi
2029print_config "iscsi engine" "$libiscsi"
2030
d643a1e2
RJ
2031##########################################
2032# Check if we have libnbd (for NBD support).
4e8c82b4 2033minimum_libnbd=0.9.8
d643a1e2
RJ
2034if test "$libnbd" = "yes" ; then
2035 if $(pkg-config --atleast-version=$minimum_libnbd libnbd); then
2036 libnbd="yes"
2037 libnbd_cflags=$(pkg-config --cflags libnbd)
2038 libnbd_libs=$(pkg-config --libs libnbd)
2039 else
2040 if test "$libnbd" = "yes" ; then
2041 echo "libnbd" "Install libnbd >= $minimum_libnbd"
2042 fi
2043 libnbd="no"
2044 fi
2045fi
2046print_config "NBD engine" "$libnbd"
2047
bda92394 2048##########################################
b470a02c
SC
2049# Check if we have lex/yacc available
2050yacc="no"
e7b2c7a3 2051yacc_is_bison="no"
b470a02c
SC
2052lex="no"
2053arith="no"
de26b824 2054if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
cf6dd80e 2055if test "$targetos" != "SunOS" ; then
e7b2c7a3 2056LEX=$(which lex 2> /dev/null)
b470a02c
SC
2057if test -x "$LEX" ; then
2058 lex="yes"
2059fi
7e0049e9 2060YACC=$(which bison 2> /dev/null)
b470a02c
SC
2061if test -x "$YACC" ; then
2062 yacc="yes"
7e0049e9 2063 yacc_is_bison="yes"
e7b2c7a3 2064else
7e0049e9 2065 YACC=$(which yacc 2> /dev/null)
e7b2c7a3
JA
2066 if test -x "$YACC" ; then
2067 yacc="yes"
e7b2c7a3 2068 fi
b470a02c
SC
2069fi
2070if test "$yacc" = "yes" && test "$lex" = "yes" ; then
2071 arith="yes"
2072fi
2073
2074if test "$arith" = "yes" ; then
2075cat > $TMPC << EOF
2076extern int yywrap(void);
2077
2078int main(int argc, char **argv)
2079{
2080 yywrap();
2081 return 0;
2082}
2083EOF
719cda03
JA
2084if compile_prog "" "-ll" "lex"; then
2085 LIBS="-ll $LIBS"
b470a02c
SC
2086else
2087 arith="no"
2088fi
2089fi
cf6dd80e 2090fi
a655bbc4 2091fi
b470a02c 2092
63bda378
JA
2093# Check if lex fails using -o
2094if test "$arith" = "yes" ; then
daf705b5
JA
2095if test "$force_no_lex_o" = "yes" ; then
2096 lex_use_o="no"
2097else
63bda378
JA
2098$LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null
2099if test "$?" = "0" ; then
2100 lex_use_o="yes"
2101else
2102 lex_use_o="no"
2103fi
2104fi
daf705b5 2105fi
63bda378 2106
484b0b65 2107print_config "lex/yacc for arithmetic" "$arith"
b470a02c 2108
aae599ba
JA
2109##########################################
2110# Check whether we have setmntent/getmntent
ca205a75
TK
2111if test "$getmntent" != "yes" ; then
2112 getmntent="no"
2113fi
aae599ba
JA
2114cat > $TMPC << EOF
2115#include <stdio.h>
2116#include <mntent.h>
2117int main(int argc, char **argv)
2118{
2119 FILE *mtab = setmntent(NULL, "r");
2120 struct mntent *mnt = getmntent(mtab);
1581b82a 2121 endmntent(mtab);
aae599ba
JA
2122 return 0;
2123}
2124EOF
2125if compile_prog "" "" "getmntent"; then
2126 getmntent="yes"
2127fi
484b0b65 2128print_config "getmntent" "$getmntent"
aae599ba 2129
e7e136da
TK
2130##########################################
2131# Check whether we have getmntinfo
b765bec0
TK
2132# These are originally added for BSDs, but may also work
2133# on other operating systems with getmntinfo(3).
2134
2135# getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
2136# Note that NetBSD needs -Werror to catch warning as error.
ca205a75
TK
2137if test "$getmntinfo" != "yes" ; then
2138 getmntinfo="no"
2139fi
e7e136da
TK
2140cat > $TMPC << EOF
2141#include <stdio.h>
2142#include <sys/param.h>
2143#include <sys/mount.h>
2144int main(int argc, char **argv)
2145{
9ada751d 2146 struct statfs *st;
e7e136da
TK
2147 return getmntinfo(&st, MNT_NOWAIT);
2148}
2149EOF
b765bec0 2150if compile_prog "-Werror" "" "getmntinfo"; then
e7e136da
TK
2151 getmntinfo="yes"
2152fi
484b0b65 2153print_config "getmntinfo" "$getmntinfo"
e7e136da 2154
b765bec0 2155# getmntinfo(3) for NetBSD.
ca205a75
TK
2156if test "$getmntinfo_statvfs" != "yes" ; then
2157 getmntinfo_statvfs="no"
2158fi
b765bec0
TK
2159cat > $TMPC << EOF
2160#include <stdio.h>
2161#include <sys/statvfs.h>
2162int main(int argc, char **argv)
2163{
2164 struct statvfs *st;
2165 return getmntinfo(&st, MNT_NOWAIT);
2166}
2167EOF
2168# Skip the test if the one with statfs arg is detected.
2169if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2170 getmntinfo_statvfs="yes"
484b0b65 2171 print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
b765bec0
TK
2172fi
2173
5018f79f
AH
2174##########################################
2175# Check whether we have _Static_assert
ca205a75
TK
2176if test "$static_assert" != "yes" ; then
2177 static_assert="no"
2178fi
5018f79f
AH
2179cat > $TMPC << EOF
2180#include <assert.h>
94815a5c 2181#include <stdlib.h>
51b4c81e 2182#include <stddef.h>
94815a5c
JA
2183
2184struct foo {
2185 int a, b;
2186};
2187
5018f79f
AH
2188int main(int argc, char **argv)
2189{
94815a5c 2190 _Static_assert(offsetof(struct foo, a) == 0 , "Check");
5018f79f
AH
2191 return 0 ;
2192}
2193EOF
2194if compile_prog "" "" "static_assert"; then
2195 static_assert="yes"
2196fi
484b0b65 2197print_config "Static Assert" "$static_assert"
e39c0676
JA
2198
2199##########################################
2200# Check whether we have bool / stdbool.h
ca205a75
TK
2201if test "$have_bool" != "yes" ; then
2202 have_bool="no"
2203fi
e39c0676
JA
2204cat > $TMPC << EOF
2205#include <stdbool.h>
2206int main(int argc, char **argv)
2207{
2208 bool var = true;
2209 return var != false;
2210}
2211EOF
2212if compile_prog "" "" "bool"; then
2213 have_bool="yes"
2214fi
484b0b65 2215print_config "bool" "$have_bool"
e39c0676 2216
b29c71c4
JA
2217##########################################
2218# Check whether we have strndup()
107ad008 2219strndup="no"
b29c71c4
JA
2220cat > $TMPC << EOF
2221#include <string.h>
2222#include <stdlib.h>
2223int main(int argc, char **argv)
2224{
2225 char *res = strndup("test string", 8);
2226
2227 free(res);
2228 return 0;
2229}
2230EOF
2231if compile_prog "" "" "strndup"; then
2232 strndup="yes"
2233fi
2234print_config "strndup" "$strndup"
2235
214e2d56 2236##########################################
0ffccc21
BVA
2237# <valgrind/drd.h> probe
2238# Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2239# also available but not the other way around.
2240if test "$valgrind_dev" != "yes" ; then
2241 valgrind_dev="no"
2242fi
2243cat > $TMPC << EOF
2244#include <valgrind/drd.h>
2245int main(int argc, char **argv)
2246{
2247 return 0;
2248}
2249EOF
2250if compile_prog "" "" "valgrind_dev"; then
2251 valgrind_dev="yes"
2252fi
2253print_config "Valgrind headers" "$valgrind_dev"
2254
a76e1995
BVA
2255##########################################
2256# <linux/blkzoned.h> probe
2257if test "$linux_blkzoned" != "yes" ; then
2258 linux_blkzoned="no"
2259fi
2260cat > $TMPC << EOF
2261#include <linux/blkzoned.h>
2262int main(int argc, char **argv)
2263{
2264 return 0;
2265}
2266EOF
2267if compile_prog "" "" "linux_blkzoned"; then
2268 linux_blkzoned="yes"
2269fi
2270print_config "Zoned block device support" "$linux_blkzoned"
2271
2272##########################################
214e2d56 2273# check march=armv8-a+crc+crypto
ca205a75
TK
2274if test "$march_armv8_a_crc_crypto" != "yes" ; then
2275 march_armv8_a_crc_crypto="no"
2276fi
214e2d56 2277if test "$cpu" = "arm64" ; then
2278 cat > $TMPC <<EOF
9b153dc2
TT
2279#include <arm_acle.h>
2280#include <arm_neon.h>
58828d07 2281#include <sys/auxv.h>
9b153dc2 2282
214e2d56 2283int main(void)
2284{
58828d07
SW
2285 /* Can we also do a runtime probe? */
2286#if __linux__
2287 return getauxval(AT_HWCAP);
2288#else
2289# error "Don't know how to do runtime probe for ARM CRC32c"
2290#endif
214e2d56 2291}
2292EOF
58828d07 2293 if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
214e2d56 2294 march_armv8_a_crc_crypto="yes"
58828d07 2295 CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
9f75af77 2296 march_set="yes"
214e2d56 2297 fi
2298fi
484b0b65 2299print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
214e2d56 2300
03553853
YR
2301##########################################
2302# cuda probe
d418fa90
TK
2303if test "$cuda" != "yes" ; then
2304 cuda="no"
2305fi
03553853
YR
2306cat > $TMPC << EOF
2307#include <cuda.h>
2308int main(int argc, char **argv)
2309{
2310 return cuInit(0);
2311}
2312EOF
4bd2c8b9 2313if test "$enable_cuda" = "yes" && compile_prog "" "-lcuda" "cuda"; then
03553853
YR
2314 cuda="yes"
2315 LIBS="-lcuda $LIBS"
2316fi
484b0b65 2317print_config "cuda" "$cuda"
214e2d56 2318
4252396e
JA
2319##########################################
2320# mkdir() probe. mingw apparently has a one-argument mkdir :/
2321mkdir_two="no"
2322cat > $TMPC << EOF
2323#include <sys/stat.h>
2324#include <sys/types.h>
2325int main(int argc, char **argv)
2326{
2327 return mkdir("/tmp/bla", 0600);
2328}
2329EOF
2330if compile_prog "" "" "mkdir(a, b)"; then
2331 mkdir_two="yes"
2332fi
2333print_config "mkdir(a, b)" "$mkdir_two"
2334
a817dc3b
JA
2335##########################################
2336# check for cc -march=native
2337build_native="no"
2338cat > $TMPC << EOF
2339int main(int argc, char **argv)
2340{
2341 return 0;
2342}
2343EOF
c922e0b0
SW
2344if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2345 compile_prog "-march=native" "" "march=native"; then
a817dc3b
JA
2346 build_native="yes"
2347fi
2348print_config "Build march=native" "$build_native"
2349
b8b0e1ee
TK
2350##########################################
2351# check for -lcunit
2352if test "$cunit" != "yes" ; then
2353 cunit="no"
2354fi
2355cat > $TMPC << EOF
2356#include <CUnit/CUnit.h>
2357#include <CUnit/Basic.h>
2358int main(void)
2359{
2360 if (CU_initialize_registry() != CUE_SUCCESS)
2361 return CU_get_error();
2362 CU_basic_set_mode(CU_BRM_VERBOSE);
2363 CU_basic_run_tests();
2364 CU_cleanup_registry();
2365 return CU_get_error();
2366}
2367EOF
2368if compile_prog "" "-lcunit" "CUnit"; then
2369 cunit="yes"
2370fi
2371print_config "CUnit" "$cunit"
2372
57fa61f0
JA
2373##########################################
2374# check for __kernel_rwf_t
2375__kernel_rwf_t="no"
2376cat > $TMPC << EOF
2377#include <linux/fs.h>
2378int main(int argc, char **argv)
2379{
2380 __kernel_rwf_t x;
2381 x = 0;
2382 return x;
2383}
2384EOF
2385if compile_prog "" "" "__kernel_rwf_t"; then
2386 __kernel_rwf_t="yes"
2387fi
2388print_config "__kernel_rwf_t" "$__kernel_rwf_t"
2389
71144e67
JA
2390##########################################
2391# check if gcc has -Wimplicit-fallthrough
2392fallthrough="no"
2393cat > $TMPC << EOF
2394int main(int argc, char **argv)
2395{
2396 return 0;
2397}
2398EOF
2399if compile_prog "-Wimplicit-fallthrough" "" "-Wimplicit-fallthrough"; then
2400 fallthrough="yes"
2401fi
2402print_config "-Wimplicit-fallthrough" "$fallthrough"
2403
ff547caa
KB
2404##########################################
2405# check for MADV_HUGEPAGE support
2406if test "$thp" != "yes" ; then
2407 thp="no"
2408fi
2409if test "$esx" != "yes" ; then
2410 cat > $TMPC <<EOF
2411#include <sys/mman.h>
2412int main(void)
2413{
2414 return madvise(0, 0x1000, MADV_HUGEPAGE);
2415}
2416EOF
2417 if compile_prog "" "" "thp" ; then
2418 thp=yes
2419 else
2420 if test "$thp" = "yes" ; then
2421 feature_not_found "Transparent Huge Page" ""
2422 fi
2423 thp=no
2424 fi
2425fi
2426print_config "MADV_HUGEPAGE" "$thp"
2427
de5ed0e4
JA
2428##########################################
2429# check for gettid()
2430gettid="no"
2431cat > $TMPC << EOF
2432#include <unistd.h>
2433int main(int argc, char **argv)
2434{
2435 return gettid();
2436}
2437EOF
2438if compile_prog "" "" "gettid"; then
2439 gettid="yes"
2440fi
2441print_config "gettid" "$gettid"
2442
67bf9823
JA
2443#############################################################################
2444
67bf9823 2445if test "$wordsize" = "64" ; then
4feafb1e 2446 output_sym "CONFIG_64BIT"
67bf9823 2447elif test "$wordsize" = "32" ; then
4feafb1e 2448 output_sym "CONFIG_32BIT"
67bf9823 2449else
d7145a78 2450 fatal "Unknown wordsize!"
67bf9823 2451fi
0dcebdf4 2452if test "$bigendian" = "yes" ; then
4feafb1e 2453 output_sym "CONFIG_BIG_ENDIAN"
0dcebdf4 2454else
4feafb1e 2455 output_sym "CONFIG_LITTLE_ENDIAN"
0dcebdf4 2456fi
3989b143
JA
2457if test "$zlib" = "yes" ; then
2458 output_sym "CONFIG_ZLIB"
2459fi
67bf9823 2460if test "$libaio" = "yes" ; then
4feafb1e 2461 output_sym "CONFIG_LIBAIO"
e2defc22
JA
2462 if test "$libaio_uring" = "yes" ; then
2463 output_sym "CONFIG_LIBAIO_URING"
2464 fi
67bf9823
JA
2465fi
2466if test "$posix_aio" = "yes" ; then
4feafb1e 2467 output_sym "CONFIG_POSIXAIO"
67bf9823
JA
2468fi
2469if test "$posix_aio_fsync" = "yes" ; then
4feafb1e 2470 output_sym "CONFIG_POSIXAIO_FSYNC"
67bf9823 2471fi
06eac6b2
SW
2472if test "$posix_pshared" = "yes" ; then
2473 output_sym "CONFIG_PSHARED"
2474fi
44e8e956 2475if test "$have_asprintf" = "yes" ; then
cb3b6806 2476 output_sym "CONFIG_HAVE_ASPRINTF"
44e8e956
BVA
2477fi
2478if test "$have_vasprintf" = "yes" ; then
cb3b6806 2479 output_sym "CONFIG_HAVE_VASPRINTF"
44e8e956 2480fi
67bf9823 2481if test "$linux_fallocate" = "yes" ; then
4feafb1e 2482 output_sym "CONFIG_LINUX_FALLOCATE"
67bf9823
JA
2483fi
2484if test "$posix_fallocate" = "yes" ; then
4feafb1e 2485 output_sym "CONFIG_POSIX_FALLOCATE"
67bf9823
JA
2486fi
2487if test "$fdatasync" = "yes" ; then
4feafb1e 2488 output_sym "CONFIG_FDATASYNC"
67bf9823
JA
2489fi
2490if test "$sync_file_range" = "yes" ; then
4feafb1e 2491 output_sym "CONFIG_SYNC_FILE_RANGE"
67bf9823
JA
2492fi
2493if test "$sfaa" = "yes" ; then
4feafb1e 2494 output_sym "CONFIG_SFAA"
67bf9823 2495fi
a250edd0
JA
2496if test "$sync_sync" = "yes" ; then
2497 output_sym "CONFIG_SYNC_SYNC"
2498fi
2499if test "$cmp_swap" = "yes" ; then
2500 output_sym "CONFIG_CMP_SWAP"
2501fi
954cd73a 2502if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
4feafb1e 2503 output_sym "CONFIG_RDMA"
67bf9823
JA
2504fi
2505if test "$clock_gettime" = "yes" ; then
4feafb1e 2506 output_sym "CONFIG_CLOCK_GETTIME"
67bf9823
JA
2507fi
2508if test "$clock_monotonic" = "yes" ; then
4feafb1e 2509 output_sym "CONFIG_CLOCK_MONOTONIC"
67bf9823 2510fi
c544f604
SN
2511if test "$clock_monotonic_raw" = "yes" ; then
2512 output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2513fi
67bf9823 2514if test "$clock_monotonic_precise" = "yes" ; then
4feafb1e 2515 output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
67bf9823 2516fi
25f8227d
JA
2517if test "$clockid_t" = "yes"; then
2518 output_sym "CONFIG_CLOCKID_T"
2519fi
67bf9823 2520if test "$gettimeofday" = "yes" ; then
4feafb1e 2521 output_sym "CONFIG_GETTIMEOFDAY"
67bf9823
JA
2522fi
2523if test "$posix_fadvise" = "yes" ; then
4feafb1e 2524 output_sym "CONFIG_POSIX_FADVISE"
67bf9823
JA
2525fi
2526if test "$linux_3arg_affinity" = "yes" ; then
4feafb1e 2527 output_sym "CONFIG_3ARG_AFFINITY"
67bf9823 2528elif test "$linux_2arg_affinity" = "yes" ; then
4feafb1e 2529 output_sym "CONFIG_2ARG_AFFINITY"
67bf9823
JA
2530fi
2531if test "$strsep" = "yes" ; then
4feafb1e 2532 output_sym "CONFIG_STRSEP"
67bf9823 2533fi
9ad8da82
JA
2534if test "$strcasestr" = "yes" ; then
2535 output_sym "CONFIG_STRCASESTR"
2536fi
5ad7be56
KD
2537if test "$strlcat" = "yes" ; then
2538 output_sym "CONFIG_STRLCAT"
2539fi
67bf9823 2540if test "$getopt_long_only" = "yes" ; then
4feafb1e 2541 output_sym "CONFIG_GETOPT_LONG_ONLY"
67bf9823
JA
2542fi
2543if test "$inet_aton" = "yes" ; then
4feafb1e 2544 output_sym "CONFIG_INET_ATON"
67bf9823
JA
2545fi
2546if test "$socklen_t" = "yes" ; then
4feafb1e 2547 output_sym "CONFIG_SOCKLEN_T"
67bf9823
JA
2548fi
2549if test "$ext4_me" = "yes" ; then
4feafb1e 2550 output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
67bf9823
JA
2551fi
2552if test "$linux_splice" = "yes" ; then
4feafb1e 2553 output_sym "CONFIG_LINUX_SPLICE"
67bf9823
JA
2554fi
2555if test "$guasi" = "yes" ; then
4feafb1e 2556 output_sym "CONFIG_GUASI"
67bf9823 2557fi
50206d9b 2558if test "$libnuma_v2" = "yes" ; then
4feafb1e 2559 output_sym "CONFIG_LIBNUMA"
67bf9823
JA
2560fi
2561if test "$solaris_aio" = "yes" ; then
4feafb1e 2562 output_sym "CONFIG_SOLARISAIO"
67bf9823
JA
2563fi
2564if test "$tls_thread" = "yes" ; then
4feafb1e 2565 output_sym "CONFIG_TLS_THREAD"
67bf9823 2566fi
44404c5a 2567if test "$rusage_thread" = "yes" ; then
4feafb1e 2568 output_sym "CONFIG_RUSAGE_THREAD"
67bf9823 2569fi
91f94d5b 2570if test "$gfio" = "yes" ; then
bad7e42c 2571 output_sym "CONFIG_GFIO"
91f94d5b 2572fi
c8931876
JA
2573if test "$esx" = "yes" ; then
2574 output_sym "CONFIG_ESX"
2575 output_sym "CONFIG_NO_SHM"
2576fi
7e09a9f1
JA
2577if test "$sched_idle" = "yes" ; then
2578 output_sym "CONFIG_SCHED_IDLE"
2579fi
1eafa37a
JA
2580if test "$tcp_nodelay" = "yes" ; then
2581 output_sym "CONFIG_TCP_NODELAY"
2582fi
1008602c
JA
2583if test "$window_size" = "yes" ; then
2584 output_sym "CONFIG_NET_WINDOWSIZE"
2585fi
e5f34d95
JA
2586if test "$mss" = "yes" ; then
2587 output_sym "CONFIG_NET_MSS"
2588fi
38b9354a
JA
2589if test "$rlimit_memlock" = "yes" ; then
2590 output_sym "CONFIG_RLIMIT_MEMLOCK"
2591fi
07fc0acd
JA
2592if test "$pwritev" = "yes" ; then
2593 output_sym "CONFIG_PWRITEV"
2594fi
2cafffbe
JA
2595if test "$pwritev2" = "yes" ; then
2596 output_sym "CONFIG_PWRITEV2"
2597fi
ecad55e9
JA
2598if test "$ipv6" = "yes" ; then
2599 output_sym "CONFIG_IPV6"
2600fi
c2f6a13d
LMB
2601if test "$http" = "yes" ; then
2602 output_sym "CONFIG_HTTP"
2603fi
d5f9b0ea
IF
2604if test "$rados" = "yes" ; then
2605 output_sym "CONFIG_RADOS"
2606fi
fc5c0345
DG
2607if test "$rbd" = "yes" ; then
2608 output_sym "CONFIG_RBD"
2609fi
53b6c979
PL
2610if test "$rbd_poll" = "yes" ; then
2611 output_sym "CONFIG_RBD_POLL"
2612fi
903b2812
JA
2613if test "$rbd_inval" = "yes" ; then
2614 output_sym "CONFIG_RBD_INVAL"
2615fi
2e802282
JA
2616if test "$setvbuf" = "yes" ; then
2617 output_sym "CONFIG_SETVBUF"
2618fi
81795ce3
CE
2619if test "$s390_z196_facilities" = "yes" ; then
2620 output_sym "CONFIG_S390_Z196_FACILITIES"
2621 CFLAGS="$CFLAGS -march=z9-109"
9f75af77 2622 march_set="yes"
81795ce3 2623fi
6e7d7dfb 2624if test "$gfapi" = "yes" ; then
2625 output_sym "CONFIG_GFAPI"
2626fi
6fa14b99 2627if test "$gf_fadvise" = "yes" ; then
2628 output_sym "CONFIG_GF_FADVISE"
2629fi
6876c98c
JA
2630if test "$gf_trim" = "yes" ; then
2631 output_sym "CONFIG_GF_TRIM"
2632fi
ce4d13ca
JA
2633if test "$gf_new" = "yes" ; then
2634 output_sym "CONFIG_GF_NEW_API"
2635fi
1b10477b
MM
2636if test "$libhdfs" = "yes" ; then
2637 output_sym "CONFIG_LIBHDFS"
247e5436 2638 echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
1527dc50
FB
2639 echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2640 echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2641 echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
247ef2aa 2642fi
b8116a87
DE
2643if test "$mtd" = "yes" ; then
2644 output_sym "CONFIG_MTD"
2645fi
43f3cec2
BB
2646if test "$pmemblk" = "yes" ; then
2647 output_sym "CONFIG_PMEMBLK"
2648fi
cbb15e42
DJ
2649if test "$devdax" = "yes" ; then
2650 output_sym "CONFIG_LINUX_DEVDAX"
2651fi
ae0db592
TI
2652if test "$pmem" = "yes" ; then
2653 output_sym "CONFIG_LIBPMEM"
2654fi
a40e7a59
GB
2655if test "$libime" = "yes" ; then
2656 output_sym "CONFIG_IME"
2657fi
b470a02c
SC
2658if test "$arith" = "yes" ; then
2659 output_sym "CONFIG_ARITHMETIC"
e7b2c7a3
JA
2660 if test "$yacc_is_bison" = "yes" ; then
2661 echo "YACC=$YACC -y" >> $config_host_mak
2662 else
2663 echo "YACC=$YACC" >> $config_host_mak
2664 fi
63bda378
JA
2665 if test "$lex_use_o" = "yes" ; then
2666 echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2667 fi
b470a02c 2668fi
aae599ba
JA
2669if test "$getmntent" = "yes" ; then
2670 output_sym "CONFIG_GETMNTENT"
2671fi
e7e136da
TK
2672if test "$getmntinfo" = "yes" ; then
2673 output_sym "CONFIG_GETMNTINFO"
2674fi
b765bec0
TK
2675if test "$getmntinfo_statvfs" = "yes" ; then
2676 output_sym "CONFIG_GETMNTINFO_STATVFS"
2677fi
5018f79f
AH
2678if test "$static_assert" = "yes" ; then
2679 output_sym "CONFIG_STATIC_ASSERT"
2680fi
e39c0676
JA
2681if test "$have_bool" = "yes" ; then
2682 output_sym "CONFIG_HAVE_BOOL"
2683fi
b29c71c4
JA
2684if test "$strndup" = "yes" ; then
2685 output_sym "CONFIG_HAVE_STRNDUP"
2686fi
484817a9
JA
2687if test "$disable_opt" = "yes" ; then
2688 output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2689fi
0ffccc21
BVA
2690if test "$valgrind_dev" = "yes"; then
2691 output_sym "CONFIG_VALGRIND_DEV"
2692fi
a76e1995
BVA
2693if test "$linux_blkzoned" = "yes" ; then
2694 output_sym "CONFIG_LINUX_BLKZONED"
2695fi
605cf82e 2696if test "$zlib" = "no" ; then
8f909424
JA
2697 echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it."
2698 if test "$build_static" = "yes"; then
2699 echo "Note that some distros have separate packages for static libraries."
2700 fi
605cf82e 2701fi
58828d07
SW
2702if test "$march_armv8_a_crc_crypto" = "yes" ; then
2703 output_sym "ARCH_HAVE_CRC_CRYPTO"
2704fi
03553853
YR
2705if test "$cuda" = "yes" ; then
2706 output_sym "CONFIG_CUDA"
2707fi
4252396e
JA
2708if test "$mkdir_two" = "yes" ; then
2709 output_sym "CONFIG_HAVE_MKDIR_TWO"
2710fi
9f75af77 2711if test "$march_set" = "no" && test "$build_native" = "yes" ; then
a817dc3b
JA
2712 output_sym "CONFIG_BUILD_NATIVE"
2713fi
b8b0e1ee
TK
2714if test "$cunit" = "yes" ; then
2715 output_sym "CONFIG_HAVE_CUNIT"
2716fi
57fa61f0
JA
2717if test "$__kernel_rwf_t" = "yes"; then
2718 output_sym "CONFIG_HAVE_KERNEL_RWF_T"
2719fi
de5ed0e4
JA
2720if test "$gettid" = "yes"; then
2721 output_sym "CONFIG_HAVE_GETTID"
2722fi
71144e67
JA
2723if test "$fallthrough" = "yes"; then
2724 CFLAGS="$CFLAGS -Wimplicit-fallthrough"
2725fi
ff547caa
KB
2726if test "$thp" = "yes" ; then
2727 output_sym "CONFIG_HAVE_THP"
2728fi
247ef2aa
KZ
2729if test "$libiscsi" = "yes" ; then
2730 output_sym "CONFIG_LIBISCSI"
2731 echo "CONFIG_LIBISCSI=m" >> $config_host_mak
2732 echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
2733 echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
2734fi
d643a1e2
RJ
2735if test "$libnbd" = "yes" ; then
2736 output_sym "CONFIG_LIBNBD"
2737 echo "CONFIG_LIBNBD=m" >> $config_host_mak
2738 echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
2739 echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
2740fi
01fe773d
JD
2741cat > $TMPC << EOF
2742int main(int argc, char **argv)
2743{
2744 return 0;
2745}
2746EOF
2747if test "$disable_tcmalloc" != "yes" && compile_prog "" "-ltcmalloc" "tcmalloc"; then
2748 LIBS="-ltcmalloc $LIBS"
2749 tcmalloc="yes"
2750else
2751 tcmalloc="no"
2752fi
2753print_config "TCMalloc support" "$tcmalloc"
605cf82e 2754
67bf9823 2755echo "LIBS+=$LIBS" >> $config_host_mak
86719845 2756echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
91f94d5b 2757echo "CFLAGS+=$CFLAGS" >> $config_host_mak
d2aeedb9 2758echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
67bf9823 2759echo "CC=$cc" >> $config_host_mak
af4862b3 2760echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
020d54bd 2761echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
c61a3a44 2762
59d8f412 2763if [ `dirname $0` != "." -a ! -e Makefile ]; then
c61a3a44
JF
2764 cat > Makefile <<EOF
2765SRCDIR:=`dirname $0`
2766include \$(SRCDIR)/Makefile
2767EOF
2768fi