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