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