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