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