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