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