lib/pattern: add set of functions to parse combined pattern input
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this 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 TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
18 TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
19
20 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
21 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
22 trap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
23
24 rm -rf config.log
25
26 config_host_mak="config-host.mak"
27 config_host_h="config-host.h"
28
29 rm -rf $config_host_mak
30 rm -rf $config_host_h
31
32 fatal() {
33   echo $@
34   echo "Configure failed, check config.log and/or the above output"
35   rm -rf $config_host_mak
36   rm -rf $config_host_h
37   exit 1
38 }
39
40 # Default CFLAGS
41 CFLAGS="-D_GNU_SOURCE -include config-host.h"
42 BUILD_CFLAGS=""
43
44 # Print a helpful header at the top of config.log
45 echo "# FIO configure log $(date)" >> config.log
46 printf "# Configured with:" >> config.log
47 printf " '%s'" "$0" "$@" >> config.log
48 echo >> config.log
49 echo "#" >> config.log
50
51 # Print configure header at the top of $config_host_h
52 echo "/*" > $config_host_h
53 echo " * Automatically generated by configure - do not modify" >> $config_host_h
54 printf " * Configured with:" >> $config_host_h
55 printf " * '%s'" "$0" "$@" >> $config_host_h
56 echo "" >> $config_host_h
57 echo " */" >> $config_host_h
58
59 do_cc() {
60     # Run the compiler, capturing its output to the log.
61     echo $cc "$@" >> config.log
62     $cc "$@" >> config.log 2>&1 || return $?
63     # Test passed. If this is an --enable-werror build, rerun
64     # the test with -Werror and bail out if it fails. This
65     # makes warning-generating-errors in configure test code
66     # obvious to developers.
67     if test "$werror" != "yes"; then
68         return 0
69     fi
70     # Don't bother rerunning the compile if we were already using -Werror
71     case "$*" in
72         *-Werror*)
73            return 0
74         ;;
75     esac
76     echo $cc -Werror "$@" >> config.log
77     $cc -Werror "$@" >> config.log 2>&1 && return $?
78     echo "ERROR: configure test passed without -Werror but failed with -Werror."
79     echo "This is probably a bug in the configure script. The failing command"
80     echo "will be at the bottom of config.log."
81     fatal "You can run configure with --disable-werror to bypass this check."
82 }
83
84 compile_object() {
85   do_cc $CFLAGS -c -o $TMPO $TMPC
86 }
87
88 compile_prog() {
89   local_cflags="$1"
90   local_ldflags="$2 $LIBS"
91   echo "Compiling test case $3" >> config.log
92   do_cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
93 }
94
95 feature_not_found() {
96   feature=$1
97   packages=$2
98
99   echo "ERROR"
100   echo "ERROR: User requested feature $feature"
101   if test ! -z "$packages" ; then
102     echo "ERROR: That feature needs $packages installed"
103   fi
104   echo "ERROR: configure was not able to find it"
105   fatal "ERROR"
106 }
107
108 has() {
109   type "$1" >/dev/null 2>&1
110 }
111
112 check_define() {
113   cat > $TMPC <<EOF
114 #if !defined($1)
115 #error $1 not defined
116 #endif
117 int main(void)
118 {
119   return 0;
120 }
121 EOF
122   compile_object
123 }
124
125 output_sym() {
126   echo "$1=y" >> $config_host_mak
127   echo "#define $1" >> $config_host_h
128 }
129
130 targetos=""
131 cpu=""
132
133 # default options
134 show_help="no"
135 exit_val=0
136 gfio_check="no"
137 libhdfs="no"
138 prefix=/usr/local
139
140 # parse options
141 for opt do
142   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
143   case "$opt" in
144   --prefix=*) prefix="$optarg"
145   ;;
146   --cpu=*) cpu="$optarg"
147   ;;
148   #  esx is cross compiled and cannot be detect through simple uname calls
149   --esx)
150   esx="yes"
151   ;;
152   --cc=*) CC="$optarg"
153   ;;
154   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
155   ;;
156   --build-32bit-win) build_32bit_win="yes"
157   ;;
158   --build-static) build_static="yes"
159   ;;
160   --enable-gfio)
161   gfio_check="yes"
162   ;;
163   --disable-numa) disable_numa="yes"
164   ;;
165   --disable-rbd) disable_rbd="yes"
166   ;;
167   --disable-gfapi) disable_gfapi="yes"
168   ;;
169   --enable-libhdfs) libhdfs="yes"
170   ;;
171   --disable-shm) no_shm="yes"
172   ;;
173   --disable-optimizations) disable_opt="yes"
174   ;;
175   --help)
176     show_help="yes"
177     ;;
178   *)
179   echo "Bad option $opt"
180   show_help="yes"
181   exit_val=1
182   esac
183 done
184
185 if test "$show_help" = "yes" ; then
186   echo "--prefix=              Use this directory as installation prefix"
187   echo "--cpu=                 Specify target CPU if auto-detect fails"
188   echo "--cc=                  Specify compiler to use"
189   echo "--extra-cflags=        Specify extra CFLAGS to pass to compiler"
190   echo "--build-32bit-win      Enable 32-bit build on Windows"
191   echo "--build-static         Build a static fio"
192   echo "--esx                  Configure build options for esx"
193   echo "--enable-gfio          Enable building of gtk gfio"
194   echo "--disable-numa         Disable libnuma even if found"
195   echo "--disable-gfapi        Disable gfapi"
196   echo "--enable-libhdfs       Enable hdfs support"
197   echo "--disable-shm          Disable SHM support"
198   echo "--disable-optimizations Don't enable compiler optimizations"
199   exit $exit_val
200 fi
201
202 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
203 cc="${CC-${cross_prefix}gcc}"
204
205 if check_define __ANDROID__ ; then
206   targetos="Android"
207 elif check_define __linux__ ; then
208   targetos="Linux"
209 elif check_define __OpenBSD__ ; then
210   targetos='OpenBSD'
211 elif check_define __sun__ ; then
212   targetos='SunOS'
213   CFLAGS="$CFLAGS -D_REENTRANT"
214 elif check_define _WIN32 ; then
215   targetos='CYGWIN'
216 else
217   targetos=`uname -s`
218 fi
219
220 echo "# Automatically generated by configure - do not modify" > $config_host_mak
221 printf "# Configured with:" >> $config_host_mak
222 printf " '%s'" "$0" "$@" >> $config_host_mak
223 echo >> $config_host_mak
224 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
225
226 if test "$no_shm" = "yes" ; then
227   output_sym "CONFIG_NO_SHM"
228 fi
229
230 if test "$disable_opt" = "yes" ; then
231   output_sym "CONFIG_FIO_NO_OPT"
232 fi
233
234 # Some host OSes need non-standard checks for which CPU to use.
235 # Note that these checks are broken for cross-compilation: if you're
236 # cross-compiling to one of these OSes then you'll need to specify
237 # the correct CPU with the --cpu option.
238 case $targetos in
239 Darwin)
240   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
241   # we can run 64-bit userspace code.
242   # If the user didn't specify a CPU explicitly and the kernel says this is
243   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
244   # detection code.
245   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
246     cpu="x86_64"
247   fi
248   ;;
249 SunOS)
250   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
251   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
252     cpu="x86_64"
253   fi
254   LIBS="-lnsl -lsocket"
255   ;;
256 CYGWIN*)
257   echo "Forcing known good options on Windows"
258   if test -z "$CC" ; then
259     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
260       CC="i686-w64-mingw32-gcc"
261     else
262       CC="x86_64-w64-mingw32-gcc"
263     fi
264   fi
265   output_sym "CONFIG_LITTLE_ENDIAN"
266   if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
267     output_sym "CONFIG_32BIT"
268   else
269     output_sym "CONFIG_64BIT_LLP64"
270   fi
271   output_sym "CONFIG_FADVISE"
272   output_sym "CONFIG_SOCKLEN_T"
273   output_sym "CONFIG_FADVISE"
274   output_sym "CONFIG_SFAA"
275   output_sym "CONFIG_RUSAGE_THREAD"
276   output_sym "CONFIG_WINDOWSAIO"
277   output_sym "CONFIG_FDATASYNC"
278   output_sym "CONFIG_CLOCK_MONOTONIC"
279   output_sym "CONFIG_GETTIMEOFDAY"
280   output_sym "CONFIG_CLOCK_GETTIME"
281   output_sym "CONFIG_SCHED_IDLE"
282   output_sym "CONFIG_TCP_NODELAY"
283   output_sym "CONFIG_TLS_THREAD"
284   output_sym "CONFIG_IPV6"
285   echo "CC=$CC" >> $config_host_mak
286   echo "BUILD_CFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
287   exit 0
288   ;;
289 esac
290
291 if test ! -z "$cpu" ; then
292   # command line argument
293   :
294 elif check_define __i386__ ; then
295   cpu="i386"
296 elif check_define __x86_64__ ; then
297   cpu="x86_64"
298 elif check_define __sparc__ ; then
299   if check_define __arch64__ ; then
300     cpu="sparc64"
301   else
302     cpu="sparc"
303   fi
304 elif check_define _ARCH_PPC ; then
305   if check_define _ARCH_PPC64 ; then
306     cpu="ppc64"
307   else
308     cpu="ppc"
309   fi
310 elif check_define __mips__ ; then
311   cpu="mips"
312 elif check_define __ia64__ ; then
313   cpu="ia64"
314 elif check_define __s390__ ; then
315   if check_define __s390x__ ; then
316     cpu="s390x"
317   else
318     cpu="s390"
319   fi
320 elif check_define __arm__ ; then
321   cpu="arm"
322 elif check_define __hppa__ ; then
323   cpu="hppa"
324 else
325   cpu=`uname -m`
326 fi
327
328 # Normalise host CPU name and set ARCH.
329 case "$cpu" in
330   ia64|ppc|ppc64|s390|s390x|sparc64)
331     cpu="$cpu"
332   ;;
333   i386|i486|i586|i686|i86pc|BePC)
334     cpu="i386"
335   ;;
336   x86_64|amd64)
337     cpu="x86_64"
338   ;;
339   armv*b|armv*l|arm)
340     cpu="arm"
341   ;;
342   hppa|parisc|parisc64)
343     cpu="hppa"
344   ;;
345   mips*)
346     cpu="mips"
347   ;;
348   sparc|sun4[cdmuv])
349     cpu="sparc"
350   ;;
351   *)
352   echo "Unknown CPU"
353   ;;
354 esac
355
356 if test -z "$CC" ; then
357   if test "$targetos" = "FreeBSD"; then
358     if has clang; then
359       CC=clang
360     else
361       CC=gcc
362     fi
363   fi
364 fi
365
366 cc="${CC-${cross_prefix}gcc}"
367
368 ##########################################
369 # check cross compile
370
371 cross_compile="no"
372 cat > $TMPC <<EOF
373 int main(void)
374 {
375   return 0;
376 }
377 EOF
378 if compile_prog "" "" "cross"; then
379   $TMPE 2>/dev/null || cross_compile="yes"
380 else
381   fatal "compile test failed"
382 fi
383
384 ##########################################
385 # check endianness
386 bigendian="no"
387 if test "$cross_compile" = "no" ; then
388   cat > $TMPC <<EOF
389 #include <inttypes.h>
390 int main(void)
391 {
392   volatile uint32_t i=0x01234567;
393   return (*((uint8_t*)(&i))) == 0x67;
394 }
395 EOF
396   if compile_prog "" "" "endian"; then
397     $TMPE && bigendian="yes"
398   fi
399 else
400   # If we're cross compiling, try our best to work it out and rely on the
401   # run-time check to fail if we get it wrong.
402   cat > $TMPC <<EOF
403 #include <endian.h>
404 int main(void)
405 {
406 #if __BYTE_ORDER != __BIG_ENDIAN
407 # error "Unknown endianness"
408 #endif
409 }
410 EOF
411   compile_prog "" "" "endian" && bigendian="yes"
412   check_define "__ARMEB__" && bigendian="yes"
413   check_define "__MIPSEB__" && bigendian="yes"
414 fi
415
416
417 echo "Operating system              $targetos"
418 echo "CPU                           $cpu"
419 echo "Big endian                    $bigendian"
420 echo "Compiler                      $cc"
421 echo "Cross compile                 $cross_compile"
422 echo
423
424 ##########################################
425 # See if we need to build a static build
426 if test "$build_static" = "yes" ; then
427   CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
428   LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
429 else
430   build_static="no"
431 fi
432 echo "Static build                  $build_static"
433
434 ##########################################
435 # check for wordsize
436 wordsize="0"
437 cat > $TMPC <<EOF
438 #include <limits.h>
439 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
440 int main(void)
441 {
442   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
443   return 0;
444 }
445 EOF
446 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
447   wordsize="32"
448 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
449   wordsize="64"
450 else
451   fatal "Unknown wordsize"
452 fi
453 echo "Wordsize                      $wordsize"
454
455 ##########################################
456 # zlib probe
457 zlib="no"
458 cat > $TMPC <<EOF
459 #include <zlib.h>
460 int main(void)
461 {
462   z_stream stream;
463   if (inflateInit(&stream) != Z_OK)
464     return 1;
465   return 0;
466 }
467 EOF
468 if compile_prog "" "-lz" "zlib" ; then
469   zlib=yes
470   LIBS="-lz $LIBS"
471 fi
472 echo "zlib                          $zlib"
473
474 ##########################################
475 # linux-aio probe
476 libaio="no"
477 cat > $TMPC <<EOF
478 #include <libaio.h>
479 #include <stddef.h>
480 int main(void)
481 {
482   io_setup(0, NULL);
483   return 0;
484 }
485 EOF
486 if compile_prog "" "-laio" "libaio" ; then
487   libaio=yes
488   LIBS="-laio $LIBS"
489 else
490   if test "$libaio" = "yes" ; then
491     feature_not_found "linux AIO" "libaio-dev or libaio-devel"
492   fi
493   libaio=no
494 fi
495 echo "Linux AIO support             $libaio"
496
497 ##########################################
498 # posix aio probe
499 posix_aio="no"
500 posix_aio_lrt="no"
501 cat > $TMPC <<EOF
502 #include <aio.h>
503 int main(void)
504 {
505   struct aiocb cb;
506   aio_read(&cb);
507   return 0;
508 }
509 EOF
510 if compile_prog "" "" "posixaio" ; then
511   posix_aio="yes"
512 elif compile_prog "" "-lrt" "posixaio"; then
513   posix_aio="yes"
514   posix_aio_lrt="yes"
515   LIBS="-lrt $LIBS"
516 fi
517 echo "POSIX AIO support             $posix_aio"
518 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
519
520 ##########################################
521 # posix aio fsync probe
522 posix_aio_fsync="no"
523 if test "$posix_aio" = "yes" ; then
524   cat > $TMPC <<EOF
525 #include <fcntl.h>
526 #include <aio.h>
527 int main(void)
528 {
529   struct aiocb cb;
530   return aio_fsync(O_SYNC, &cb);
531   return 0;
532 }
533 EOF
534   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
535     posix_aio_fsync=yes
536   fi
537 fi
538 echo "POSIX AIO fsync               $posix_aio_fsync"
539
540 ##########################################
541 # solaris aio probe
542 solaris_aio="no"
543 cat > $TMPC <<EOF
544 #include <sys/types.h>
545 #include <sys/asynch.h>
546 #include <unistd.h>
547 int main(void)
548 {
549   aio_result_t res;
550   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
551   return 0;
552 }
553 EOF
554 if compile_prog "" "-laio" "solarisaio" ; then
555   solaris_aio=yes
556   LIBS="-laio $LIBS"
557 fi
558 echo "Solaris AIO support           $solaris_aio"
559
560 ##########################################
561 # __sync_fetch_and_add test
562 sfaa="no"
563 cat > $TMPC << EOF
564 #include <inttypes.h>
565 static int sfaa(uint64_t *ptr)
566 {
567   return __sync_fetch_and_add(ptr, 0);
568 }
569
570 int main(int argc, char **argv)
571 {
572   uint64_t val = 42;
573   sfaa(&val);
574   return val;
575 }
576 EOF
577 if compile_prog "" "" "__sync_fetch_and_add()" ; then
578     sfaa="yes"
579 fi
580 echo "__sync_fetch_and_add          $sfaa"
581
582 ##########################################
583 # libverbs probe
584 libverbs="no"
585 cat > $TMPC << EOF
586 #include <stdio.h>
587 #include <infiniband/arch.h>
588 int main(int argc, char **argv)
589 {
590   struct ibv_pd *pd = ibv_alloc_pd(NULL);
591   return 0;
592 }
593 EOF
594 if compile_prog "" "-libverbs" "libverbs" ; then
595     libverbs="yes"
596     LIBS="-libverbs $LIBS"
597 fi
598 echo "libverbs                      $libverbs"
599
600 ##########################################
601 # rdmacm probe
602 rdmacm="no"
603 cat > $TMPC << EOF
604 #include <stdio.h>
605 #include <rdma/rdma_cma.h>
606 int main(int argc, char **argv)
607 {
608   rdma_destroy_qp(NULL);
609   return 0;
610 }
611 EOF
612 if compile_prog "" "-lrdmacm" "rdma"; then
613     rdmacm="yes"
614     LIBS="-lrdmacm $LIBS"
615 fi
616 echo "rdmacm                        $rdmacm"
617
618 ##########################################
619 # Linux fallocate probe
620 linux_fallocate="no"
621 cat > $TMPC << EOF
622 #include <stdio.h>
623 #include <fcntl.h>
624 #include <linux/falloc.h>
625 int main(int argc, char **argv)
626 {
627   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
628   return r;
629 }
630 EOF
631 if compile_prog "" "" "linux_fallocate"; then
632     linux_fallocate="yes"
633 fi
634 echo "Linux fallocate               $linux_fallocate"
635
636 ##########################################
637 # POSIX fadvise probe
638 posix_fadvise="no"
639 cat > $TMPC << EOF
640 #include <stdio.h>
641 #include <fcntl.h>
642 int main(int argc, char **argv)
643 {
644   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
645   return r;
646 }
647 EOF
648 if compile_prog "" "" "posix_fadvise"; then
649     posix_fadvise="yes"
650 fi
651 echo "POSIX fadvise                 $posix_fadvise"
652
653 ##########################################
654 # POSIX fallocate probe
655 posix_fallocate="no"
656 cat > $TMPC << EOF
657 #include <stdio.h>
658 #include <fcntl.h>
659 int main(int argc, char **argv)
660 {
661   int r = posix_fallocate(0, 0, 1024);
662   return r;
663 }
664 EOF
665 if compile_prog "" "" "posix_fallocate"; then
666     posix_fallocate="yes"
667 fi
668 echo "POSIX fallocate               $posix_fallocate"
669
670 ##########################################
671 # sched_set/getaffinity 2 or 3 argument test
672 linux_2arg_affinity="no"
673 linux_3arg_affinity="no"
674 cat > $TMPC << EOF
675 #include <sched.h>
676 int main(int argc, char **argv)
677 {
678   cpu_set_t mask;
679   return sched_setaffinity(0, sizeof(mask), &mask);
680 }
681 EOF
682 if compile_prog "" "" "sched_setaffinity(,,)"; then
683   linux_3arg_affinity="yes"
684 else
685   cat > $TMPC << EOF
686 #include <sched.h>
687 int main(int argc, char **argv)
688 {
689   cpu_set_t mask;
690   return sched_setaffinity(0, &mask);
691 }
692 EOF
693   if compile_prog "" "" "sched_setaffinity(,)"; then
694     linux_2arg_affinity="yes"
695   fi
696 fi
697 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
698 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
699
700 ##########################################
701 # clock_gettime probe
702 clock_gettime="no"
703 cat > $TMPC << EOF
704 #include <stdio.h>
705 #include <time.h>
706 int main(int argc, char **argv)
707 {
708   return clock_gettime(0, NULL);
709 }
710 EOF
711 if compile_prog "" "" "clock_gettime"; then
712     clock_gettime="yes"
713 elif compile_prog "" "-lrt" "clock_gettime"; then
714     clock_gettime="yes"
715     LIBS="-lrt $LIBS"
716 fi
717 echo "clock_gettime                 $clock_gettime"
718
719 ##########################################
720 # CLOCK_MONOTONIC probe
721 clock_monotonic="no"
722 if test "$clock_gettime" = "yes" ; then
723   cat > $TMPC << EOF
724 #include <stdio.h>
725 #include <time.h>
726 int main(int argc, char **argv)
727 {
728   return clock_gettime(CLOCK_MONOTONIC, NULL);
729 }
730 EOF
731   if compile_prog "" "$LIBS" "clock monotonic"; then
732       clock_monotonic="yes"
733   fi
734 fi
735 echo "CLOCK_MONOTONIC               $clock_monotonic"
736
737 ##########################################
738 # CLOCK_MONOTONIC_RAW probe
739 clock_monotonic_raw="no"
740 if test "$clock_gettime" = "yes" ; then
741   cat > $TMPC << EOF
742 #include <stdio.h>
743 #include <time.h>
744 int main(int argc, char **argv)
745 {
746   return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
747 }
748 EOF
749   if compile_prog "" "$LIBS" "clock monotonic"; then
750       clock_monotonic_raw="yes"
751   fi
752 fi
753 echo "CLOCK_MONOTONIC_RAW           $clock_monotonic_raw"
754
755 ##########################################
756 # CLOCK_MONOTONIC_PRECISE probe
757 clock_monotonic_precise="no"
758 if test "$clock_gettime" = "yes" ; then
759   cat > $TMPC << EOF
760 #include <stdio.h>
761 #include <time.h>
762 int main(int argc, char **argv)
763 {
764   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
765 }
766 EOF
767   if compile_prog "" "$LIBS" "clock monotonic precise"; then
768       clock_monotonic_precise="yes"
769   fi
770 fi
771 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
772
773 ##########################################
774 # gettimeofday() probe
775 gettimeofday="no"
776 cat > $TMPC << EOF
777 #include <sys/time.h>
778 #include <stdio.h>
779 int main(int argc, char **argv)
780 {
781   struct timeval tv;
782   return gettimeofday(&tv, NULL);
783 }
784 EOF
785 if compile_prog "" "" "gettimeofday"; then
786     gettimeofday="yes"
787 fi
788 echo "gettimeofday                  $gettimeofday"
789
790 ##########################################
791 # fdatasync() probe
792 fdatasync="no"
793 cat > $TMPC << EOF
794 #include <stdio.h>
795 #include <unistd.h>
796 int main(int argc, char **argv)
797 {
798   return fdatasync(0);
799 }
800 EOF
801 if compile_prog "" "" "fdatasync"; then
802   fdatasync="yes"
803 fi
804 echo "fdatasync                     $fdatasync"
805
806 ##########################################
807 # sync_file_range() probe
808 sync_file_range="no"
809 cat > $TMPC << EOF
810 #include <stdio.h>
811 #include <unistd.h>
812 #include <fcntl.h>
813 #include <linux/fs.h>
814 int main(int argc, char **argv)
815 {
816   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
817                         SYNC_FILE_RANGE_WAIT_AFTER;
818   return sync_file_range(0, 0, 0, flags);
819 }
820 EOF
821 if compile_prog "" "" "sync_file_range"; then
822   sync_file_range="yes"
823 fi
824 echo "sync_file_range               $sync_file_range"
825
826 ##########################################
827 # ext4 move extent probe
828 ext4_me="no"
829 cat > $TMPC << EOF
830 #include <fcntl.h>
831 #include <sys/ioctl.h>
832 int main(int argc, char **argv)
833 {
834   struct move_extent me;
835   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
836 }
837 EOF
838 if compile_prog "" "" "ext4 move extent" ; then
839   ext4_me="yes"
840 elif test $targetos = "Linux" ; then
841   # On Linux, just default to it on and let it error at runtime if we really
842   # don't have it. None of my updated systems have it defined, but it does
843   # work. Takes a while to bubble back.
844   ext4_me="yes"
845 fi
846 echo "EXT4 move extent              $ext4_me"
847
848 ##########################################
849 # splice probe
850 linux_splice="no"
851 cat > $TMPC << EOF
852 #include <stdio.h>
853 #include <fcntl.h>
854 int main(int argc, char **argv)
855 {
856   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
857 }
858 EOF
859 if compile_prog "" "" "linux splice"; then
860   linux_splice="yes"
861 fi
862 echo "Linux splice(2)               $linux_splice"
863
864 ##########################################
865 # GUASI probe
866 guasi="no"
867 cat > $TMPC << EOF
868 #include <guasi.h>
869 #include <guasi_syscalls.h>
870 int main(int argc, char **argv)
871 {
872   guasi_t ctx = guasi_create(0, 0, 0);
873   return 0;
874 }
875 EOF
876 if compile_prog "" "" "guasi"; then
877   guasi="yes"
878 fi
879 echo "GUASI                         $guasi"
880
881 ##########################################
882 # fusion-aw probe
883 fusion_aw="no"
884 cat > $TMPC << EOF
885 #include <nvm/nvm_primitives.h>
886 int main(int argc, char **argv)
887 {
888   nvm_version_t ver_info;
889   nvm_handle_t handle;
890
891   handle = nvm_get_handle(0, &ver_info);
892   return nvm_atomic_write(handle, 0, 0, 0);
893 }
894 EOF
895 if compile_prog "" "-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread" "fusion-aw"; then
896   LIBS="-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -ldl -lpthread $LIBS"
897   fusion_aw="yes"
898 fi
899 echo "Fusion-io atomic engine       $fusion_aw"
900
901 ##########################################
902 # libnuma probe
903 libnuma="no"
904 cat > $TMPC << EOF
905 #include <numa.h>
906 int main(int argc, char **argv)
907 {
908   return numa_available();
909 }
910 EOF
911 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
912   libnuma="yes"
913   LIBS="-lnuma $LIBS"
914 fi
915 echo "libnuma                       $libnuma"
916
917 ##########################################
918 # libnuma 2.x version API
919 if test "$libnuma" = "yes" ; then
920 libnuma_v2="no"
921 cat > $TMPC << EOF
922 #include <numa.h>
923 int main(int argc, char **argv)
924 {
925   struct bitmask *mask = numa_parse_nodestring(NULL);
926   return mask->size == 0;
927 }
928 EOF
929 if compile_prog "" "" "libnuma api"; then
930   libnuma_v2="yes"
931 fi
932 echo "libnuma v2                    $libnuma_v2"
933 fi
934
935 ##########################################
936 # strsep() probe
937 strsep="no"
938 cat > $TMPC << EOF
939 #include <string.h>
940 int main(int argc, char **argv)
941 {
942   static char *string = "This is a string";
943   strsep(&string, "needle");
944   return 0;
945 }
946 EOF
947 if compile_prog "" "" "strsep"; then
948   strsep="yes"
949 fi
950 echo "strsep                        $strsep"
951
952 ##########################################
953 # strcasestr() probe
954 strcasestr="no"
955 cat > $TMPC << EOF
956 #include <string.h>
957 int main(int argc, char **argv)
958 {
959   return strcasestr(argv[0], argv[1]) != NULL;
960 }
961 EOF
962 if compile_prog "" "" "strcasestr"; then
963   strcasestr="yes"
964 fi
965 echo "strcasestr                    $strcasestr"
966
967 ##########################################
968 # getopt_long_only() probe
969 getopt_long_only="no"
970 cat > $TMPC << EOF
971 #include <unistd.h>
972 #include <stdio.h>
973 #include <getopt.h>
974 int main(int argc, char **argv)
975 {
976   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
977   return c;
978 }
979 EOF
980 if compile_prog "" "" "getopt_long_only"; then
981   getopt_long_only="yes"
982 fi
983 echo "getopt_long_only()            $getopt_long_only"
984
985 ##########################################
986 # inet_aton() probe
987 inet_aton="no"
988 cat > $TMPC << EOF
989 #include <sys/socket.h>
990 #include <arpa/inet.h>
991 #include <stdio.h>
992 int main(int argc, char **argv)
993 {
994   struct in_addr in;
995   return inet_aton(NULL, &in);
996 }
997 EOF
998 if compile_prog "" "" "inet_aton"; then
999   inet_aton="yes"
1000 fi
1001 echo "inet_aton                     $inet_aton"
1002
1003 ##########################################
1004 # socklen_t probe
1005 socklen_t="no"
1006 cat > $TMPC << EOF
1007 #include <sys/socket.h>
1008 int main(int argc, char **argv)
1009 {
1010   socklen_t len = 0;
1011   return len;
1012 }
1013 EOF
1014 if compile_prog "" "" "socklen_t"; then
1015   socklen_t="yes"
1016 fi
1017 echo "socklen_t                     $socklen_t"
1018
1019 ##########################################
1020 # Whether or not __thread is supported for TLS
1021 tls_thread="no"
1022 cat > $TMPC << EOF
1023 #include <stdio.h>
1024 static __thread int ret;
1025 int main(int argc, char **argv)
1026 {
1027   return ret;
1028 }
1029 EOF
1030 if compile_prog "" "" "__thread"; then
1031   tls_thread="yes"
1032 fi
1033 echo "__thread                      $tls_thread"
1034
1035 ##########################################
1036 # Check if we have required gtk/glib support for gfio
1037 gfio="no"
1038 if test "$gfio_check" = "yes" ; then
1039   cat > $TMPC << EOF
1040 #include <glib.h>
1041 #include <cairo.h>
1042 #include <gtk/gtk.h>
1043 int main(void)
1044 {
1045   gdk_threads_enter();
1046   gdk_threads_leave();
1047
1048   printf("%d", GTK_CHECK_VERSION(2, 18, 0));
1049 }
1050 EOF
1051 GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
1052 ORG_LDFLAGS=$LDFLAGS
1053 LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1054 if test "$?" != "0" ; then
1055   echo "configure: gtk and gthread not found"
1056   exit 1
1057 fi
1058 GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
1059 if test "$?" != "0" ; then
1060   echo "configure: gtk and gthread not found"
1061   exit 1
1062 fi
1063 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1064   r=$($TMPE)
1065   if test "$r" != "0" ; then
1066     gfio="yes"
1067     GFIO_LIBS="$LIBS $GTK_LIBS"
1068     CFLAGS="$CFLAGS $GTK_CFLAGS"
1069   else
1070     echo "GTK found, but need version 2.18 or higher"
1071     gfio="no"
1072   fi
1073 else
1074   echo "Please install gtk and gdk libraries"
1075   gfio="no"
1076 fi
1077 LDFLAGS=$ORG_LDFLAGS
1078 fi
1079
1080 if test "$gfio_check" = "yes" ; then
1081   echo "gtk 2.18 or higher            $gfio"
1082 fi
1083
1084 # Check whether we have getrusage(RUSAGE_THREAD)
1085 rusage_thread="no"
1086 cat > $TMPC << EOF
1087 #include <sys/time.h>
1088 #include <sys/resource.h>
1089 int main(int argc, char **argv)
1090 {
1091   struct rusage ru;
1092   getrusage(RUSAGE_THREAD, &ru);
1093   return 0;
1094 }
1095 EOF
1096 if compile_prog "" "" "RUSAGE_THREAD"; then
1097   rusage_thread="yes"
1098 fi
1099 echo "RUSAGE_THREAD                 $rusage_thread"
1100
1101 ##########################################
1102 # Check whether we have SCHED_IDLE
1103 sched_idle="no"
1104 cat > $TMPC << EOF
1105 #include <sched.h>
1106 int main(int argc, char **argv)
1107 {
1108   struct sched_param p;
1109   return sched_setscheduler(0, SCHED_IDLE, &p);
1110 }
1111 EOF
1112 if compile_prog "" "" "SCHED_IDLE"; then
1113   sched_idle="yes"
1114 fi
1115 echo "SCHED_IDLE                    $sched_idle"
1116
1117 ##########################################
1118 # Check whether we have TCP_NODELAY
1119 tcp_nodelay="no"
1120 cat > $TMPC << EOF
1121 #include <stdio.h>
1122 #include <sys/types.h>
1123 #include <sys/socket.h>
1124 #include <netinet/tcp.h>
1125 int main(int argc, char **argv)
1126 {
1127   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1128 }
1129 EOF
1130 if compile_prog "" "" "TCP_NODELAY"; then
1131   tcp_nodelay="yes"
1132 fi
1133 echo "TCP_NODELAY                   $tcp_nodelay"
1134
1135 ##########################################
1136 # Check whether we have SO_SNDBUF
1137 window_size="no"
1138 cat > $TMPC << EOF
1139 #include <stdio.h>
1140 #include <sys/types.h>
1141 #include <sys/socket.h>
1142 #include <netinet/tcp.h>
1143 int main(int argc, char **argv)
1144 {
1145   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1146   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1147 }
1148 EOF
1149 if compile_prog "" "" "SO_SNDBUF"; then
1150   window_size="yes"
1151 fi
1152 echo "Net engine window_size        $window_size"
1153
1154 ##########################################
1155 # Check whether we have TCP_MAXSEG
1156 mss="no"
1157 cat > $TMPC << EOF
1158 #include <stdio.h>
1159 #include <sys/types.h>
1160 #include <sys/socket.h>
1161 #include <netinet/tcp.h>
1162 #include <arpa/inet.h>
1163 #include <netinet/in.h>
1164 int main(int argc, char **argv)
1165 {
1166   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1167 }
1168 EOF
1169 if compile_prog "" "" "TCP_MAXSEG"; then
1170   mss="yes"
1171 fi
1172 echo "TCP_MAXSEG                    $mss"
1173
1174 ##########################################
1175 # Check whether we have RLIMIT_MEMLOCK
1176 rlimit_memlock="no"
1177 cat > $TMPC << EOF
1178 #include <sys/time.h>
1179 #include <sys/resource.h>
1180 int main(int argc, char **argv)
1181 {
1182   struct rlimit rl;
1183   return getrlimit(RLIMIT_MEMLOCK, &rl);
1184 }
1185 EOF
1186 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1187   rlimit_memlock="yes"
1188 fi
1189 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
1190
1191 ##########################################
1192 # Check whether we have pwritev/preadv
1193 pwritev="no"
1194 cat > $TMPC << EOF
1195 #include <stdio.h>
1196 #include <sys/uio.h>
1197 int main(int argc, char **argv)
1198 {
1199   return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1200 }
1201 EOF
1202 if compile_prog "" "" "pwritev"; then
1203   pwritev="yes"
1204 fi
1205 echo "pwritev/preadv                $pwritev"
1206
1207 ##########################################
1208 # Check whether we have the required functions for ipv6
1209 ipv6="no"
1210 cat > $TMPC << EOF
1211 #include <sys/types.h>
1212 #include <sys/socket.h>
1213 #include <netinet/in.h>
1214 #include <netdb.h>
1215 #include <stdio.h>
1216 int main(int argc, char **argv)
1217 {
1218   struct addrinfo hints;
1219   struct in6_addr addr;
1220   int ret;
1221
1222   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1223   freeaddrinfo(NULL);
1224   printf("%s\n", gai_strerror(ret));
1225   addr = in6addr_any;
1226   return 0;
1227 }
1228 EOF
1229 if compile_prog "" "" "ipv6"; then
1230   ipv6="yes"
1231 fi
1232 echo "IPv6 helpers                  $ipv6"
1233
1234 ##########################################
1235 # check for rbd
1236 rbd="no"
1237 cat > $TMPC << EOF
1238 #include <rbd/librbd.h>
1239
1240 int main(int argc, char **argv)
1241 {
1242
1243   rados_t cluster;
1244   rados_ioctx_t io_ctx;
1245   const char pool[] = "rbd";
1246
1247   int major, minor, extra;
1248   rbd_version(&major, &minor, &extra);
1249
1250   rados_ioctx_create(cluster, pool, &io_ctx);
1251   return 0;
1252 }
1253 EOF
1254 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1255   LIBS="-lrbd -lrados $LIBS"
1256   rbd="yes"
1257 fi
1258 echo "Rados Block Device engine     $rbd"
1259
1260 ##########################################
1261 # check for rbd_invaidate_cache()
1262 rbd_inval="no"
1263 if test "$rbd" = "yes"; then
1264 cat > $TMPC << EOF
1265 #include <rbd/librbd.h>
1266
1267 int main(int argc, char **argv)
1268 {
1269   rbd_image_t image;
1270
1271   return rbd_invalidate_cache(image);
1272 }
1273 EOF
1274 if compile_prog "" "-lrbd -lrados" "rbd"; then
1275   rbd_inval="yes"
1276 fi
1277 echo "rbd_invalidate_cache          $rbd_inval"
1278 fi
1279
1280 ##########################################
1281 # Check whether we have setvbuf
1282 setvbuf="no"
1283 cat > $TMPC << EOF
1284 #include <stdio.h>
1285 int main(int argc, char **argv)
1286 {
1287   FILE *f = NULL;
1288   char buf[80];
1289   setvbuf(f, buf, _IOFBF, sizeof(buf));
1290   return 0;
1291 }
1292 EOF
1293 if compile_prog "" "" "setvbuf"; then
1294   setvbuf="yes"
1295 fi
1296 echo "setvbuf                       $setvbuf"
1297
1298 # check for gfapi
1299 gfapi="no"
1300 cat > $TMPC << EOF
1301 #include <glusterfs/api/glfs.h>
1302
1303 int main(int argc, char **argv)
1304 {
1305
1306   glfs_t *g = glfs_new("foo");
1307
1308   return 0;
1309 }
1310 EOF
1311 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1312   LIBS="-lgfapi -lglusterfs $LIBS"
1313   gfapi="yes"
1314 fi
1315  echo "Gluster API engine            $gfapi"
1316
1317 ##########################################
1318 # check for gfapi fadvise support
1319 if test "$gfapi" = "yes" ; then
1320 gf_fadvise="no"
1321 cat > $TMPC << EOF
1322 #include <glusterfs/api/glfs.h>
1323
1324 int main(int argc, char **argv)
1325 {
1326   struct glfs_fd *fd;
1327   int ret = glfs_fadvise(fd, 0, 0, 1);
1328
1329   return 0;
1330 }
1331 EOF
1332 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1333   gf_fadvise="yes"
1334 fi
1335 echo "Gluster API use fadvise       $gf_fadvise"
1336 fi
1337
1338 ##########################################
1339 # check for gfapi trim support
1340 gf_trim="no"
1341 if test "$gfapi" = "yes" ; then
1342 cat > $TMPC << EOF
1343 #include <glusterfs/api/glfs.h>
1344
1345 int main(int argc, char **argv)
1346 {
1347   return glfs_discard_async(NULL, 0, 0);
1348 }
1349 EOF
1350 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1351   gf_trim="yes"
1352 fi
1353 echo "Gluster API trim support      $gf_trim"
1354 fi
1355
1356 ##########################################
1357 # Check if we support stckf on s390
1358 s390_z196_facilities="no"
1359 cat > $TMPC << EOF
1360 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1361 int main(int argc, char **argv)
1362 {
1363     /* We want just 1 double word to be returned.  */
1364     register unsigned long reg0 asm("0") = 0;
1365     unsigned long stfle_bits;
1366     asm volatile(".machine push"        "\n\t"
1367                  ".machine \"z9-109\""  "\n\t"
1368                  "stfle %0"             "\n\t"
1369                  ".machine pop"         "\n"
1370                  : "=QS" (stfle_bits), "+d" (reg0)
1371                  : : "cc");
1372
1373     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1374       return 0;
1375     else
1376       return -1;
1377 }
1378 EOF
1379 if compile_prog "" "" "s390_z196_facilities"; then
1380   $TMPE
1381   if [[ $? -eq 0 ]]; then
1382         s390_z196_facilities="yes"
1383   fi
1384 fi
1385 echo "s390_z196_facilities          $s390_z196_facilities"
1386
1387 ##########################################
1388 # Check if we have required environment variables configured for libhdfs
1389 if test "$libhdfs" = "yes" ; then
1390   hdfs_conf_error=0
1391   if test "$JAVA_HOME" = "" ; then
1392     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1393     hdfs_conf_error=1
1394   fi
1395   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1396     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1397     hdfs_conf_error=1
1398   fi
1399   if test "$FIO_LIBHDFS_LIB" = "" ; then
1400     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1401     hdfs_conf_error=1
1402   fi
1403   if test "$hdfs_conf_error" = "1" ; then
1404     exit 1
1405   fi
1406 fi
1407 echo "HDFS engine                   $libhdfs"
1408
1409 ##########################################
1410 # Check whether we have MTD
1411 mtd="no"
1412 cat > $TMPC << EOF
1413 #include <string.h>
1414 #include <mtd/mtd-user.h>
1415 #include <sys/ioctl.h>
1416 int main(int argc, char **argv)
1417 {
1418   struct mtd_write_req ops;
1419   struct mtd_info_user info;
1420   memset(&ops, 0, sizeof(ops));
1421   info.type = MTD_MLCNANDFLASH;
1422   return ioctl(0, MEMGETINFO, &info);
1423 }
1424 EOF
1425 if compile_prog "" "" "mtd"; then
1426   mtd="yes"
1427 fi
1428 echo "MTD                           $mtd"
1429
1430 # Check if we have lex/yacc available
1431 yacc="no"
1432 yacc_is_bison="no"
1433 lex="no"
1434 arith="no"
1435 if test "$targetos" != "SunOS" ; then
1436 LEX=$(which lex 2> /dev/null)
1437 if test -x "$LEX" ; then
1438   lex="yes"
1439 fi
1440 YACC=$(which bison 2> /dev/null)
1441 if test -x "$YACC" ; then
1442   yacc="yes"
1443   yacc_is_bison="yes"
1444 else
1445   YACC=$(which yacc 2> /dev/null)
1446   if test -x "$YACC" ; then
1447     yacc="yes"
1448   fi
1449 fi
1450 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
1451   arith="yes"
1452 fi
1453
1454 if test "$arith" = "yes" ; then
1455 cat > $TMPC << EOF
1456 extern int yywrap(void);
1457
1458 int main(int argc, char **argv)
1459 {
1460   yywrap();
1461   return 0;
1462 }
1463 EOF
1464 if compile_prog "" "-ll" "lex"; then
1465   LIBS="-ll $LIBS"
1466 else
1467   arith="no"
1468 fi
1469 fi
1470 fi
1471
1472 echo "lex/yacc for arithmetic       $arith"
1473
1474 ##########################################
1475 # Check whether we have setmntent/getmntent
1476 getmntent="no"
1477 cat > $TMPC << EOF
1478 #include <stdio.h>
1479 #include <mntent.h>
1480 int main(int argc, char **argv)
1481 {
1482   FILE *mtab = setmntent(NULL, "r");
1483   struct mntent *mnt = getmntent(mtab);
1484   endmntent(mtab);
1485   return 0;
1486 }
1487 EOF
1488 if compile_prog "" "" "getmntent"; then
1489   getmntent="yes"
1490 fi
1491 echo "getmntent                     $getmntent"
1492
1493 ##########################################
1494 # Check whether we have getmntinfo
1495 getmntinfo="no"
1496 cat > $TMPC << EOF
1497 #include <stdio.h>
1498 #include <sys/param.h>
1499 #include <sys/mount.h>
1500 int main(int argc, char **argv)
1501 {
1502   struct statfs st;
1503   return getmntinfo(&st, MNT_NOWAIT);
1504 }
1505 EOF
1506 if compile_prog "" "" "getmntinfo"; then
1507   getmntinfo="yes"
1508 fi
1509 echo "getmntinfo                    $getmntinfo"
1510
1511 ##########################################
1512 # Check whether we have _Static_assert
1513 static_assert="no"
1514 cat > $TMPC << EOF
1515 #include <assert.h>
1516 #include <stdlib.h>
1517 #undef offsetof
1518 #ifdef __compiler_offsetof
1519 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
1520 #else
1521 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
1522 #endif
1523
1524 #define container_of(ptr, type, member) ({                      \
1525         const typeof( ((type *)0)->member ) *__mptr = (ptr);    \
1526         (type *)( (char *)__mptr - offsetof(type,member) );})
1527
1528 struct foo {
1529   int a, b;
1530 };
1531
1532 int main(int argc, char **argv)
1533 {
1534   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
1535   return 0 ;
1536 }
1537 EOF
1538 if compile_prog "" "" "static_assert"; then
1539     static_assert="yes"
1540 fi
1541 echo "Static Assert                 $static_assert"
1542 #############################################################################
1543
1544 if test "$wordsize" = "64" ; then
1545   output_sym "CONFIG_64BIT"
1546 elif test "$wordsize" = "32" ; then
1547   output_sym "CONFIG_32BIT"
1548 else
1549   fatal "Unknown wordsize!"
1550 fi
1551 if test "$bigendian" = "yes" ; then
1552   output_sym "CONFIG_BIG_ENDIAN"
1553 else
1554   output_sym "CONFIG_LITTLE_ENDIAN"
1555 fi
1556 if test "$zlib" = "yes" ; then
1557   output_sym "CONFIG_ZLIB"
1558 fi
1559 if test "$libaio" = "yes" ; then
1560   output_sym "CONFIG_LIBAIO"
1561 fi
1562 if test "$posix_aio" = "yes" ; then
1563   output_sym "CONFIG_POSIXAIO"
1564 fi
1565 if test "$posix_aio_fsync" = "yes" ; then
1566   output_sym "CONFIG_POSIXAIO_FSYNC"
1567 fi
1568 if test "$linux_fallocate" = "yes" ; then
1569   output_sym "CONFIG_LINUX_FALLOCATE"
1570 fi
1571 if test "$posix_fallocate" = "yes" ; then
1572   output_sym "CONFIG_POSIX_FALLOCATE"
1573 fi
1574 if test "$fdatasync" = "yes" ; then
1575   output_sym "CONFIG_FDATASYNC"
1576 fi
1577 if test "$sync_file_range" = "yes" ; then
1578   output_sym "CONFIG_SYNC_FILE_RANGE"
1579 fi
1580 if test "$sfaa" = "yes" ; then
1581   output_sym "CONFIG_SFAA"
1582 fi
1583 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
1584   output_sym "CONFIG_RDMA"
1585 fi
1586 if test "$clock_gettime" = "yes" ; then
1587   output_sym "CONFIG_CLOCK_GETTIME"
1588 fi
1589 if test "$clock_monotonic" = "yes" ; then
1590   output_sym "CONFIG_CLOCK_MONOTONIC"
1591 fi
1592 if test "$clock_monotonic_raw" = "yes" ; then
1593   output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
1594 fi
1595 if test "$clock_monotonic_precise" = "yes" ; then
1596   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
1597 fi
1598 if test "$gettimeofday" = "yes" ; then
1599   output_sym "CONFIG_GETTIMEOFDAY"
1600 fi
1601 if test "$posix_fadvise" = "yes" ; then
1602   output_sym "CONFIG_POSIX_FADVISE"
1603 fi
1604 if test "$linux_3arg_affinity" = "yes" ; then
1605   output_sym "CONFIG_3ARG_AFFINITY"
1606 elif test "$linux_2arg_affinity" = "yes" ; then
1607   output_sym "CONFIG_2ARG_AFFINITY"
1608 fi
1609 if test "$strsep" = "yes" ; then
1610   output_sym "CONFIG_STRSEP"
1611 fi
1612 if test "$strcasestr" = "yes" ; then
1613   output_sym "CONFIG_STRCASESTR"
1614 fi
1615 if test "$getopt_long_only" = "yes" ; then
1616   output_sym "CONFIG_GETOPT_LONG_ONLY"
1617 fi
1618 if test "$inet_aton" = "yes" ; then
1619   output_sym "CONFIG_INET_ATON"
1620 fi
1621 if test "$socklen_t" = "yes" ; then
1622   output_sym "CONFIG_SOCKLEN_T"
1623 fi
1624 if test "$ext4_me" = "yes" ; then
1625   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
1626 fi
1627 if test "$linux_splice" = "yes" ; then
1628   output_sym "CONFIG_LINUX_SPLICE"
1629 fi
1630 if test "$guasi" = "yes" ; then
1631   output_sym "CONFIG_GUASI"
1632 fi
1633 if test "$fusion_aw" = "yes" ; then
1634   output_sym "CONFIG_FUSION_AW"
1635 fi
1636 if test "$libnuma_v2" = "yes" ; then
1637   output_sym "CONFIG_LIBNUMA"
1638 fi
1639 if test "$solaris_aio" = "yes" ; then
1640   output_sym "CONFIG_SOLARISAIO"
1641 fi
1642 if test "$tls_thread" = "yes" ; then
1643   output_sym "CONFIG_TLS_THREAD"
1644 fi
1645 if test "$rusage_thread" = "yes" ; then
1646   output_sym "CONFIG_RUSAGE_THREAD"
1647 fi
1648 if test "$gfio" = "yes" ; then
1649   echo "CONFIG_GFIO=y" >> $config_host_mak
1650 fi
1651 if test "$esx" = "yes" ; then
1652   output_sym "CONFIG_ESX"
1653   output_sym "CONFIG_NO_SHM"
1654 fi
1655 if test "$sched_idle" = "yes" ; then
1656   output_sym "CONFIG_SCHED_IDLE"
1657 fi
1658 if test "$tcp_nodelay" = "yes" ; then
1659   output_sym "CONFIG_TCP_NODELAY"
1660 fi
1661 if test "$window_size" = "yes" ; then
1662   output_sym "CONFIG_NET_WINDOWSIZE"
1663 fi
1664 if test "$mss" = "yes" ; then
1665   output_sym "CONFIG_NET_MSS"
1666 fi
1667 if test "$rlimit_memlock" = "yes" ; then
1668   output_sym "CONFIG_RLIMIT_MEMLOCK"
1669 fi
1670 if test "$pwritev" = "yes" ; then
1671   output_sym "CONFIG_PWRITEV"
1672 fi
1673 if test "$ipv6" = "yes" ; then
1674   output_sym "CONFIG_IPV6"
1675 fi
1676 if test "$rbd" = "yes" ; then
1677   output_sym "CONFIG_RBD"
1678 fi
1679 if test "$rbd_inval" = "yes" ; then
1680   output_sym "CONFIG_RBD_INVAL"
1681 fi
1682 if test "$setvbuf" = "yes" ; then
1683   output_sym "CONFIG_SETVBUF"
1684 fi
1685 if test "$s390_z196_facilities" = "yes" ; then
1686   output_sym "CONFIG_S390_Z196_FACILITIES"
1687   CFLAGS="$CFLAGS -march=z9-109"
1688 fi
1689 if test "$gfapi" = "yes" ; then
1690   output_sym "CONFIG_GFAPI"
1691 fi
1692 if test "$gf_fadvise" = "yes" ; then
1693   output_sym "CONFIG_GF_FADVISE"
1694 fi
1695 if test "$gf_trim" = "yes" ; then
1696   output_sym "CONFIG_GF_TRIM"
1697 fi
1698 if test "$libhdfs" = "yes" ; then
1699   output_sym "CONFIG_LIBHDFS"
1700   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
1701   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
1702   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
1703  fi
1704 if test "$mtd" = "yes" ; then
1705   output_sym "CONFIG_MTD"
1706 fi
1707 if test "$arith" = "yes" ; then
1708   output_sym "CONFIG_ARITHMETIC"
1709   if test "$yacc_is_bison" = "yes" ; then
1710     echo "YACC=$YACC -y" >> $config_host_mak
1711   else
1712     echo "YACC=$YACC" >> $config_host_mak
1713   fi
1714 fi
1715 if test "$getmntent" = "yes" ; then
1716   output_sym "CONFIG_GETMNTENT"
1717 fi
1718 if test "$getmntinfo" = "yes" ; then
1719   output_sym "CONFIG_GETMNTINFO"
1720 fi
1721 if test "$static_assert" = "yes" ; then
1722   output_sym "CONFIG_STATIC_ASSERT"
1723 fi
1724
1725 if test "$zlib" = "no" ; then
1726   echo "Consider installing zlib-dev (zlib-devel), some fio features depend on it."
1727 fi
1728
1729 echo "LIBS+=$LIBS" >> $config_host_mak
1730 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
1731 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
1732 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
1733 echo "CC=$cc" >> $config_host_mak
1734 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
1735 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
1736
1737 if [ `dirname $0` != "." -a ! -e Makefile ]; then
1738     cat > Makefile <<EOF
1739 SRCDIR:=`dirname $0`
1740 include \$(SRCDIR)/Makefile
1741 EOF
1742 fi