Revert change that set group_reporting to 1
[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 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
134 cc="${CC-${cross_prefix}gcc}"
135
136 # default options
137 show_help="no"
138 exit_val=0
139 gfio="no"
140
141 # parse options
142 for opt do
143   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
144   case "$opt" in
145   --cpu=*) cpu="$optarg"
146   ;;
147   --cc=*) CC="$optarg"
148   ;;
149   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
150   ;;
151   --build-32bit-win=*) build_32bit_win="$optarg"
152   ;;
153   --enable-gfio)
154   gfio="yes"
155   ;;
156   --help)
157     show_help="yes"
158     ;;
159   *)
160   echo "Bad option $opt"
161   show_help="yes"
162   exit_val=1
163   esac
164 done
165
166 if test "$show_help" = "yes" ; then
167   echo "--cpu=                 Specify target CPU if auto-detect fails"
168   echo "--cc=                  Specify compiler to use"
169   echo "--extra-cflags=        Specify extra CFLAGS to pass to compiler"
170   echo "--build-32bit-win=     Specify yes for a 32-bit build on Windows"
171   echo "--enable-gfio          Enable building of gtk gfio"
172   exit $exit_val
173 fi
174
175 if check_define __ANDROID__ ; then
176   targetos="Android"
177 elif check_define __linux__ ; then
178   targetos="Linux"
179 elif check_define __OpenBSD__ ; then
180   targetos='OpenBSD'
181 elif check_define __sun__ ; then
182   targetos='SunOS'
183 else
184   targetos=`uname -s`
185 fi
186
187 echo "# Automatically generated by configure - do not modify" > $config_host_mak
188 printf "# Configured with:" >> $config_host_mak
189 printf " '%s'" "$0" "$@" >> $config_host_mak
190 echo >> $config_host_mak
191 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
192
193 # Some host OSes need non-standard checks for which CPU to use.
194 # Note that these checks are broken for cross-compilation: if you're
195 # cross-compiling to one of these OSes then you'll need to specify
196 # the correct CPU with the --cpu option.
197 case $targetos in
198 Darwin)
199   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
200   # we can run 64-bit userspace code.
201   # If the user didn't specify a CPU explicitly and the kernel says this is
202   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
203   # detection code.
204   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
205     cpu="x86_64"
206   fi
207   ;;
208 SunOS)
209   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
210   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
211     cpu="x86_64"
212   fi
213   LIBS="-lnsl -lsocket"
214   ;;
215 CYGWIN*)
216   echo "Forcing known good options on Windows"
217   if test -z "$CC" ; then
218     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
219       CC="i686-w64-mingw32-gcc"
220     else
221       CC="x86_64-w64-mingw32-gcc"
222     fi
223   fi
224   output_sym "CONFIG_LITTLE_ENDIAN"
225   if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
226     output_sym "CONFIG_32BIT"
227   else
228     output_sym "CONFIG_64BIT_LLP64"
229   fi
230   output_sym "CONFIG_FADVISE"
231   output_sym "CONFIG_SOCKLEN_T"
232   output_sym "CONFIG_FADVISE"
233   output_sym "CONFIG_SFAA"
234   output_sym "CONFIG_RUSAGE_THREAD"
235   output_sym "CONFIG_WINDOWSAIO"
236   output_sym "CONFIG_FDATASYNC"
237   output_sym "CONFIG_CLOCK_MONOTONIC"
238   output_sym "CONFIG_GETTIMEOFDAY"
239   output_sym "CONFIG_CLOCK_GETTIME"
240   output_sym "CONFIG_SCHED_IDLE"
241   output_sym "CONFIG_TCP_NODELAY"
242   echo "CC=$CC" >> $config_host_mak
243   echo "BUILD_CFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
244   exit 0
245   ;;
246 esac
247
248 if test ! -z "$cpu" ; then
249   # command line argument
250   :
251 elif check_define __i386__ ; then
252   cpu="i386"
253 elif check_define __x86_64__ ; then
254   cpu="x86_64"
255 elif check_define __sparc__ ; then
256   if check_define __arch64__ ; then
257     cpu="sparc64"
258   else
259     cpu="sparc"
260   fi
261 elif check_define _ARCH_PPC ; then
262   if check_define _ARCH_PPC64 ; then
263     cpu="ppc64"
264   else
265     cpu="ppc"
266   fi
267 elif check_define __mips__ ; then
268   cpu="mips"
269 elif check_define __ia64__ ; then
270   cpu="ia64"
271 elif check_define __s390__ ; then
272   if check_define __s390x__ ; then
273     cpu="s390x"
274   else
275     cpu="s390"
276   fi
277 elif check_define __arm__ ; then
278   cpu="arm"
279 elif check_define __hppa__ ; then
280   cpu="hppa"
281 else
282   cpu=`uname -m`
283 fi
284
285 # Normalise host CPU name and set ARCH.
286 case "$cpu" in
287   ia64|ppc|ppc64|s390|s390x|sparc64)
288     cpu="$cpu"
289   ;;
290   i386|i486|i586|i686|i86pc|BePC)
291     cpu="i386"
292   ;;
293   x86_64|amd64)
294     cpu="x86_64"
295   ;;
296   armv*b|armv*l|arm)
297     cpu="arm"
298   ;;
299   hppa|parisc|parisc64)
300     cpu="hppa"
301   ;;
302   mips*)
303     cpu="mips"
304   ;;
305   sparc|sun4[cdmuv])
306     cpu="sparc"
307   ;;
308   *)
309   echo "Unknown CPU"
310   ;;
311 esac
312
313 if test -z "$CC" ; then
314   if test "$targetos" = "FreeBSD"; then
315     if has clang; then
316       CC=clang
317     else
318       CC=gcc
319     fi
320   fi
321 fi
322
323 cc="${CC-${cross_prefix}gcc}"
324
325 ##########################################
326 # check cross compile
327
328 cross_compile="no"
329 cat > $TMPC <<EOF
330 int main(void)
331 {
332   return 0;
333 }
334 EOF
335 if compile_prog "" "" "cross"; then
336   $TMPE 2>/dev/null || cross_compile="yes"
337 else
338   fatal "compile test failed"
339 fi
340
341 ##########################################
342 # check endianness
343 bigendian="no"
344 if test "$cross_compile" = "no" ; then
345   cat > $TMPC <<EOF
346 #include <inttypes.h>
347 int main(void)
348 {
349   volatile uint32_t i=0x01234567;
350   return (*((uint8_t*)(&i))) == 0x67;
351 }
352 EOF
353   if compile_prog "" "" "endian"; then
354     $TMPE && bigendian="yes"
355   fi
356 else
357   # If we're cross compiling, try our best to work it out and rely on the
358   # run-time check to fail if we get it wrong.
359   cat > $TMPC <<EOF
360 #include <endian.h>
361 int main(void)
362 {
363 #if __BYTE_ORDER != __BIG_ENDIAN
364 # error "Unknown endianness"
365 #endif
366 }
367 EOF
368   compile_prog "" "" "endian" && bigendian="yes"
369   check_define "__ARMEB__" && bigendian="yes"
370   check_define "__MIPSEB__" && bigendian="yes"
371 fi
372
373
374 echo "Operating system              $targetos"
375 echo "CPU                           $cpu"
376 echo "Big endian                    $bigendian"
377 echo "Compiler                      $cc"
378 echo "Cross compile                 $cross_compile"
379 echo
380
381 ##########################################
382 # check for wordsize
383 wordsize="0"
384 cat > $TMPC <<EOF
385 #include <limits.h>
386 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
387 int main(void)
388 {
389   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
390   return 0;
391 }
392 EOF
393 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
394   wordsize="32"
395 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
396   wordsize="64"
397 else
398   fatal "Unknown wordsize"
399 fi
400 echo "Wordsize                      $wordsize"
401
402 ##########################################
403 # zlib probe
404 zlib="no"
405 cat > $TMPC <<EOF
406 #include <zlib.h>
407 int main(void)
408 {
409   z_stream stream;
410   if (inflateInit(&stream) != Z_OK)
411     return 1;
412   return 0;
413 }
414 EOF
415 if compile_prog "" "-lz" "zlib" ; then
416   zlib=yes
417   LIBS="-lz $LIBS"
418 fi
419 echo "zlib                          $zlib"
420
421 ##########################################
422 # linux-aio probe
423 libaio="no"
424 cat > $TMPC <<EOF
425 #include <libaio.h>
426 #include <stddef.h>
427 int main(void)
428 {
429   io_setup(0, NULL);
430   return 0;
431 }
432 EOF
433 if compile_prog "" "-laio" "libaio" ; then
434   libaio=yes
435   LIBS="-laio $LIBS"
436 else
437   if test "$libaio" = "yes" ; then
438     feature_not_found "linux AIO" "libaio-dev or libaio-devel"
439   fi
440   libaio=no
441 fi
442 echo "Linux AIO support             $libaio"
443
444 ##########################################
445 # posix aio probe
446 posix_aio="no"
447 posix_aio_lrt="no"
448 cat > $TMPC <<EOF
449 #include <aio.h>
450 int main(void)
451 {
452   struct aiocb cb;
453   aio_read(&cb);
454   return 0;
455 }
456 EOF
457 if compile_prog "" "" "posixaio" ; then
458   posix_aio="yes"
459 elif compile_prog "" "-lrt" "posixaio"; then
460   posix_aio="yes"
461   posix_aio_lrt="yes"
462   LIBS="-lrt $LIBS"
463 fi
464 echo "POSIX AIO support             $posix_aio"
465 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
466
467 ##########################################
468 # posix aio fsync probe
469 posix_aio_fsync="no"
470 if test "$posix_aio" = "yes" ; then
471   cat > $TMPC <<EOF
472 #include <fcntl.h>
473 #include <aio.h>
474 int main(void)
475 {
476   struct aiocb cb;
477   return aio_fsync(O_SYNC, &cb);
478   return 0;
479 }
480 EOF
481   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
482     posix_aio_fsync=yes
483   fi
484 fi
485 echo "POSIX AIO fsync               $posix_aio_fsync"
486
487 ##########################################
488 # solaris aio probe
489 solaris_aio="no"
490 cat > $TMPC <<EOF
491 #include <sys/types.h>
492 #include <sys/asynch.h>
493 #include <unistd.h>
494 int main(void)
495 {
496   aio_result_t res;
497   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
498   return 0;
499 }
500 EOF
501 if compile_prog "" "-laio" "solarisaio" ; then
502   solaris_aio=yes
503   LIBS="-laio $LIBS"
504 fi
505 echo "Solaris AIO support           $solaris_aio"
506
507 ##########################################
508 # __sync_fetch_and_and test
509 sfaa="no"
510 cat > $TMPC << EOF
511 static int sfaa(int *ptr)
512 {
513   return __sync_fetch_and_add(ptr, 0);
514 }
515
516 int main(int argc, char **argv)
517 {
518   int val = 42;
519   sfaa(&val);
520   return val;
521 }
522 EOF
523 if compile_prog "" "" "__sync_fetch_and_add()" ; then
524     sfaa="yes"
525 fi
526 echo "__sync_fetch_and_add          $sfaa"
527
528 ##########################################
529 # libverbs probe
530 libverbs="no"
531 cat > $TMPC << EOF
532 #include <stdio.h>
533 #include <infiniband/arch.h>
534 int main(int argc, char **argv)
535 {
536   struct ibv_pd *pd = ibv_alloc_pd(NULL);
537   return 0;
538 }
539 EOF
540 if compile_prog "" "-libverbs" "libverbs" ; then
541     libverbs="yes"
542     LIBS="-libverbs $LIBS"
543 fi
544 echo "libverbs                      $libverbs"
545
546 ##########################################
547 # rdmacm probe
548 rdmacm="no"
549 cat > $TMPC << EOF
550 #include <stdio.h>
551 #include <rdma/rdma_cma.h>
552 int main(int argc, char **argv)
553 {
554   rdma_destroy_qp(NULL);
555   return 0;
556 }
557 EOF
558 if compile_prog "" "-lrdmacm" "rdma"; then
559     rdmacm="yes"
560     LIBS="-lrdmacm $LIBS"
561 fi
562 echo "rdmacm                        $rdmacm"
563
564 ##########################################
565 # Linux fallocate probe
566 linux_fallocate="no"
567 cat > $TMPC << EOF
568 #include <stdio.h>
569 #include <linux/falloc.h>
570 int main(int argc, char **argv)
571 {
572   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
573   return r;
574 }
575 EOF
576 if compile_prog "" "" "linux_fallocate"; then
577     linux_fallocate="yes"
578 fi
579 echo "Linux fallocate               $linux_fallocate"
580
581 ##########################################
582 # POSIX fadvise probe
583 posix_fadvise="no"
584 cat > $TMPC << EOF
585 #include <stdio.h>
586 #include <fcntl.h>
587 int main(int argc, char **argv)
588 {
589   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
590   return r;
591 }
592 EOF
593 if compile_prog "" "" "posix_fadvise"; then
594     posix_fadvise="yes"
595 fi
596 echo "POSIX fadvise                 $posix_fadvise"
597
598 ##########################################
599 # POSIX fallocate probe
600 posix_fallocate="no"
601 cat > $TMPC << EOF
602 #include <stdio.h>
603 #include <fcntl.h>
604 int main(int argc, char **argv)
605 {
606   int r = posix_fallocate(0, 0, 1024);
607   return r;
608 }
609 EOF
610 if compile_prog "" "" "posix_fallocate"; then
611     posix_fallocate="yes"
612 fi
613 echo "POSIX fallocate               $posix_fallocate"
614
615 ##########################################
616 # sched_set/getaffinity 2 or 3 argument test
617 linux_2arg_affinity="no"
618 linux_3arg_affinity="no"
619 cat > $TMPC << EOF
620 #include <sched.h>
621 int main(int argc, char **argv)
622 {
623   cpu_set_t mask;
624   return sched_setaffinity(0, sizeof(mask), &mask);
625 }
626 EOF
627 if compile_prog "" "" "sched_setaffinity(,,)"; then
628   linux_3arg_affinity="yes"
629 else
630   cat > $TMPC << EOF
631 #include <sched.h>
632 int main(int argc, char **argv)
633 {
634   cpu_set_t mask;
635   return sched_setaffinity(0, &mask);
636 }
637 EOF
638   if compile_prog "" "" "sched_setaffinity(,)"; then
639     linux_2arg_affinity="yes"
640   fi
641 fi
642 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
643 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
644
645 ##########################################
646 # clock_gettime probe
647 clock_gettime="no"
648 cat > $TMPC << EOF
649 #include <stdio.h>
650 #include <time.h>
651 int main(int argc, char **argv)
652 {
653   return clock_gettime(0, NULL);
654 }
655 EOF
656 if compile_prog "" "" "clock_gettime"; then
657     clock_gettime="yes"
658 elif compile_prog "" "-lrt" "clock_gettime"; then
659     clock_gettime="yes"
660     LIBS="-lrt $LIBS"
661 fi
662 echo "clock_gettime                 $clock_gettime"
663
664 ##########################################
665 # CLOCK_MONOTONIC probe
666 clock_monotonic="no"
667 if test "$clock_gettime" = "yes" ; then
668   cat > $TMPC << EOF
669 #include <stdio.h>
670 #include <time.h>
671 int main(int argc, char **argv)
672 {
673   return clock_gettime(CLOCK_MONOTONIC, NULL);
674 }
675 EOF
676   if compile_prog "" "$LIBS" "clock monotonic"; then
677       clock_monotonic="yes"
678   fi
679 fi
680 echo "CLOCK_MONOTONIC               $clock_monotonic"
681
682 ##########################################
683 # CLOCK_MONOTONIC_PRECISE probe
684 clock_monotonic_precise="no"
685 if test "$clock_gettime" = "yes" ; then
686   cat > $TMPC << EOF
687 #include <stdio.h>
688 #include <time.h>
689 int main(int argc, char **argv)
690 {
691   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
692 }
693 EOF
694   if compile_prog "" "$LIBS" "clock monotonic precise"; then
695       clock_monotonic_precise="yes"
696   fi
697 fi
698 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
699
700 ##########################################
701 # gettimeofday() probe
702 gettimeofday="no"
703 cat > $TMPC << EOF
704 #include <sys/time.h>
705 #include <stdio.h>
706 int main(int argc, char **argv)
707 {
708   struct timeval tv;
709   return gettimeofday(&tv, NULL);
710 }
711 EOF
712 if compile_prog "" "" "gettimeofday"; then
713     gettimeofday="yes"
714 fi
715 echo "gettimeofday                  $gettimeofday"
716
717 ##########################################
718 # fdatasync() probe
719 fdatasync="no"
720 cat > $TMPC << EOF
721 #include <stdio.h>
722 #include <unistd.h>
723 int main(int argc, char **argv)
724 {
725   return fdatasync(0);
726 }
727 EOF
728 if compile_prog "" "" "fdatasync"; then
729   fdatasync="yes"
730 fi
731 echo "fdatasync                     $fdatasync"
732
733 ##########################################
734 # sync_file_range() probe
735 sync_file_range="no"
736 cat > $TMPC << EOF
737 #include <stdio.h>
738 #include <unistd.h>
739 #include <fcntl.h>
740 #include <linux/fs.h>
741 int main(int argc, char **argv)
742 {
743   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
744                         SYNC_FILE_RANGE_WAIT_AFTER;
745   return sync_file_range(0, 0, 0, flags);
746 }
747 EOF
748 if compile_prog "" "" "sync_file_range"; then
749   sync_file_range="yes"
750 fi
751 echo "sync_file_range               $sync_file_range"
752
753 ##########################################
754 # ext4 move extent probe
755 ext4_me="no"
756 cat > $TMPC << EOF
757 #include <fcntl.h>
758 #include <sys/ioctl.h>
759 int main(int argc, char **argv)
760 {
761   struct move_extent me;
762   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
763 }
764 EOF
765 if compile_prog "" "" "ext4 move extent" ; then
766   ext4_me="yes"
767 elif test $targetos = "Linux" ; then
768   # On Linux, just default to it on and let it error at runtime if we really
769   # don't have it. None of my updated systems have it defined, but it does
770   # work. Takes a while to bubble back.
771   ext4_me="yes"
772 fi
773 echo "EXT4 move extent              $ext4_me"
774
775 ##########################################
776 # splice probe
777 linux_splice="no"
778 cat > $TMPC << EOF
779 #include <stdio.h>
780 #include <fcntl.h>
781 int main(int argc, char **argv)
782 {
783   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
784 }
785 EOF
786 if compile_prog "" "" "linux splice"; then
787   linux_splice="yes"
788 fi
789 echo "Linux splice(2)               $linux_splice"
790
791 ##########################################
792 # GUASI probe
793 guasi="no"
794 cat > $TMPC << EOF
795 #include <guasi.h>
796 #include <guasi_syscalls.h>
797 int main(int argc, char **argv)
798 {
799   guasi_t ctx = guasi_create(0, 0, 0);
800   return 0;
801 }
802 EOF
803 if compile_prog "" "" "guasi"; then
804   guasi="yes"
805 fi
806 echo "GUASI                         $guasi"
807
808 ##########################################
809 # fusion-aw probe
810 fusion_aw="no"
811 cat > $TMPC << EOF
812 #include <nvm/vectored_write.h>
813 int main(int argc, char **argv)
814 {
815   struct vsl_iovec iov;
816   return vsl_vectored_write(0, &iov, 0, O_ATOMIC);
817 }
818 EOF
819 if compile_prog "" "-L/usr/lib/fio -lnvm-primitives" "fusion-aw"; then
820   LIBS="-L/usr/lib/fio -lnvm-primitives $LIBS"
821   fusion_aw="yes"
822 fi
823 echo "Fusion-io atomic engine       $fusion_aw"
824
825 ##########################################
826 # libnuma probe
827 libnuma="no"
828 cat > $TMPC << EOF
829 #include <numa.h>
830 int main(int argc, char **argv)
831 {
832   return numa_available();
833 }
834 EOF
835 if compile_prog "" "-lnuma" "libnuma"; then
836   libnuma="yes"
837   LIBS="-lnuma $LIBS"
838 fi
839 echo "libnuma                       $libnuma"
840
841 ##########################################
842 # libnuma 2.x version API
843 if test "$libnuma" = "yes" ; then
844 libnuma_v2="no"
845 cat > $TMPC << EOF
846 #include <numa.h>
847 int main(int argc, char **argv)
848 {
849   struct bitmask *mask = numa_parse_nodestring(NULL);
850   return 0;
851 }
852 EOF
853 if compile_prog "" "" "libnuma api"; then
854   libnuma_v2="yes"
855 fi
856 echo "libnuma v2                    $libnuma_v2"
857 fi
858
859 ##########################################
860 # strsep() probe
861 strsep="no"
862 cat > $TMPC << EOF
863 #include <string.h>
864 int main(int argc, char **argv)
865 {
866   strsep(NULL, NULL);
867   return 0;
868 }
869 EOF
870 if compile_prog "" "" "strsep"; then
871   strsep="yes"
872 fi
873 echo "strsep                        $strsep"
874
875 ##########################################
876 # strcasestr() probe
877 strcasestr="no"
878 cat > $TMPC << EOF
879 #include <string.h>
880 int main(int argc, char **argv)
881 {
882   strcasestr(NULL, NULL);
883   return 0;
884 }
885 EOF
886 if compile_prog "" "" "strcasestr"; then
887   strcasestr="yes"
888 fi
889 echo "strcasestr                    $strcasestr"
890
891 ##########################################
892 # getopt_long_only() probe
893 getopt_long_only="no"
894 cat > $TMPC << EOF
895 #include <unistd.h>
896 #include <stdio.h>
897 int main(int argc, char **argv)
898 {
899   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
900   return c;
901 }
902 EOF
903 if compile_prog "" "" "getopt_long_only"; then
904   getopt_long_only="yes"
905 fi
906 echo "getopt_long_only()            $getopt_long_only"
907
908 ##########################################
909 # inet_aton() probe
910 inet_aton="no"
911 cat > $TMPC << EOF
912 #include <sys/socket.h>
913 #include <arpa/inet.h>
914 #include <stdio.h>
915 int main(int argc, char **argv)
916 {
917   struct in_addr in;
918   return inet_aton(NULL, &in);
919 }
920 EOF
921 if compile_prog "" "" "inet_aton"; then
922   inet_aton="yes"
923 fi
924 echo "inet_aton                     $inet_aton"
925
926 ##########################################
927 # socklen_t probe
928 socklen_t="no"
929 cat > $TMPC << EOF
930 #include <sys/socket.h>
931 int main(int argc, char **argv)
932 {
933   socklen_t len = 0;
934   return len;
935 }
936 EOF
937 if compile_prog "" "" "socklen_t"; then
938   socklen_t="yes"
939 fi
940 echo "socklen_t                     $socklen_t"
941
942 ##########################################
943 # Whether or not __thread is supported for TLS
944 tls_thread="no"
945 cat > $TMPC << EOF
946 #include <stdio.h>
947 static int __thread ret;
948 int main(int argc, char **argv)
949 {
950   return ret;
951 }
952 EOF
953 if compile_prog "" "" "__thread"; then
954   tls_thread="yes"
955 fi
956 echo "__thread                      $tls_thread"
957
958 ##########################################
959 # Check if we have required gtk/glib support for gfio
960 if test "$gfio" = "yes" ; then
961   cat > $TMPC << EOF
962 #include <glib.h>
963 #include <cairo.h>
964 #include <gtk/gtk.h>
965 int main(void)
966 {
967   gdk_threads_enter();
968   gdk_threads_leave();
969
970   printf("%d", GTK_CHECK_VERSION(2, 18, 0));
971 }
972 EOF
973 GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
974 if test "$?" != "0" ; then
975   echo "configure: gtk and gthread not found"
976   exit 1
977 fi
978 GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
979 if test "$?" != "0" ; then
980   echo "configure: gtk and gthread not found"
981   exit 1
982 fi
983 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
984   r=$($TMPE)
985   if test "$r" != "0" ; then
986     gfio="yes"
987     LIBS="$LIBS $GTK_LIBS"
988     CFLAGS="$CFLAGS $GTK_CFLAGS"
989   else
990     echo "GTK found, but need version 2.18 or higher"
991     gfio="no"
992   fi
993 else
994   echo "Please install gtk and gdk libraries"
995   gfio="no"
996 fi
997 fi
998
999 echo "gtk 2.18 or higher            $gfio"
1000
1001 # Check whether we have getrusage(RUSAGE_THREAD)
1002 rusage_thread="no"
1003 cat > $TMPC << EOF
1004 #include <sys/time.h>
1005 #include <sys/resource.h>
1006 int main(int argc, char **argv)
1007 {
1008   struct rusage ru;
1009   getrusage(RUSAGE_THREAD, &ru);
1010   return 0;
1011 }
1012 EOF
1013 if compile_prog "" "" "RUSAGE_THREAD"; then
1014   rusage_thread="yes"
1015 fi
1016 echo "RUSAGE_THREAD                 $rusage_thread"
1017
1018 ##########################################
1019 # Check whether we have SCHED_IDLE
1020 sched_idle="no"
1021 cat > $TMPC << EOF
1022 #include <sched.h>
1023 int main(int argc, char **argv)
1024 {
1025   struct sched_param p;
1026   return sched_setscheduler(0, SCHED_IDLE, &p);
1027 }
1028 EOF
1029 if compile_prog "" "" "SCHED_IDLE"; then
1030   sched_idle="yes"
1031 fi
1032 echo "SCHED_IDLE                    $sched_idle"
1033
1034 ##########################################
1035 # Check whether we have TCP_NODELAY
1036 tcp_nodelay="no"
1037 cat > $TMPC << EOF
1038 #include <stdio.h>
1039 #include <sys/types.h>
1040 #include <sys/socket.h>
1041 #include <netinet/tcp.h>
1042 int main(int argc, char **argv)
1043 {
1044   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1045 }
1046 EOF
1047 if compile_prog "" "" "TCP_NODELAY"; then
1048   tcp_nodelay="yes"
1049 fi
1050 echo "TCP_NODELAY                   $tcp_nodelay"
1051
1052 ##########################################
1053 # Check whether we have RLIMIT_MEMLOCK
1054 rlimit_memlock="no"
1055 cat > $TMPC << EOF
1056 #include <sys/time.h>
1057 #include <sys/resource.h>
1058 int main(int argc, char **argv)
1059 {
1060   struct rlimit rl;
1061   return getrlimit(RLIMIT_MEMLOCK, &rl);
1062 }
1063 EOF
1064 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1065   rlimit_memlock="yes"
1066 fi
1067 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
1068
1069 #############################################################################
1070
1071 if test "$wordsize" = "64" ; then
1072   output_sym "CONFIG_64BIT"
1073 elif test "$wordsize" = "32" ; then
1074   output_sym "CONFIG_32BIT"
1075 else
1076   fatal "Unknown wordsize!"
1077 fi
1078 if test "$bigendian" = "yes" ; then
1079   output_sym "CONFIG_BIG_ENDIAN"
1080 else
1081   output_sym "CONFIG_LITTLE_ENDIAN"
1082 fi
1083 if test "$zlib" = "yes" ; then
1084   output_sym "CONFIG_ZLIB"
1085 fi
1086 if test "$libaio" = "yes" ; then
1087   output_sym "CONFIG_LIBAIO"
1088 fi
1089 if test "$posix_aio" = "yes" ; then
1090   output_sym "CONFIG_POSIXAIO"
1091 fi
1092 if test "$posix_aio_fsync" = "yes" ; then
1093   output_sym "CONFIG_POSIXAIO_FSYNC"
1094 fi
1095 if test "$linux_fallocate" = "yes" ; then
1096   output_sym "CONFIG_LINUX_FALLOCATE"
1097 fi
1098 if test "$posix_fallocate" = "yes" ; then
1099   output_sym "CONFIG_POSIX_FALLOCATE"
1100 fi
1101 if test "$fdatasync" = "yes" ; then
1102   output_sym "CONFIG_FDATASYNC"
1103 fi
1104 if test "$sync_file_range" = "yes" ; then
1105   output_sym "CONFIG_SYNC_FILE_RANGE"
1106 fi
1107 if test "$sfaa" = "yes" ; then
1108   output_sym "CONFIG_SFAA"
1109 fi
1110 if test "$libverbs" = "yes" -a "rdmacm" = "yes" ; then
1111   output_sym "CONFIG_RDMA"
1112 fi
1113 if test "$clock_gettime" = "yes" ; then
1114   output_sym "CONFIG_CLOCK_GETTIME"
1115 fi
1116 if test "$clock_monotonic" = "yes" ; then
1117   output_sym "CONFIG_CLOCK_MONOTONIC"
1118 fi
1119 if test "$clock_monotonic_precise" = "yes" ; then
1120   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
1121 fi
1122 if test "$gettimeofday" = "yes" ; then
1123   output_sym "CONFIG_GETTIMEOFDAY"
1124 fi
1125 if test "$posix_fadvise" = "yes" ; then
1126   output_sym "CONFIG_POSIX_FADVISE"
1127 fi
1128 if test "$linux_3arg_affinity" = "yes" ; then
1129   output_sym "CONFIG_3ARG_AFFINITY"
1130 elif test "$linux_2arg_affinity" = "yes" ; then
1131   output_sym "CONFIG_2ARG_AFFINITY"
1132 fi
1133 if test "$strsep" = "yes" ; then
1134   output_sym "CONFIG_STRSEP"
1135 fi
1136 if test "$strcasestr" = "yes" ; then
1137   output_sym "CONFIG_STRCASESTR"
1138 fi
1139 if test "$getopt_long_only" = "yes" ; then
1140   output_sym "CONFIG_GETOPT_LONG_ONLY"
1141 fi
1142 if test "$inet_aton" = "yes" ; then
1143   output_sym "CONFIG_INET_ATON"
1144 fi
1145 if test "$socklen_t" = "yes" ; then
1146   output_sym "CONFIG_SOCKLEN_T"
1147 fi
1148 if test "$ext4_me" = "yes" ; then
1149   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
1150 fi
1151 if test "$linux_splice" = "yes" ; then
1152   output_sym "CONFIG_LINUX_SPLICE"
1153 fi
1154 if test "$guasi" = "yes" ; then
1155   output_sym "CONFIG_GUASI"
1156 fi
1157 if test "$fusion_aw" = "yes" ; then
1158   output_sym "CONFIG_FUSION_AW"
1159 fi
1160 if test "$libnuma_v2" = "yes" ; then
1161   output_sym "CONFIG_LIBNUMA"
1162 fi
1163 if test "$solaris_aio" = "yes" ; then
1164   output_sym "CONFIG_SOLARISAIO"
1165 fi
1166 if test "$tls_thread" = "yes" ; then
1167   output_sym "CONFIG_TLS_THREAD"
1168 fi
1169 if test "$rusage_thread" = "yes" ; then
1170   output_sym "CONFIG_RUSAGE_THREAD"
1171 fi
1172 if test "$gfio" = "yes" ; then
1173   echo "CONFIG_GFIO=y" >> $config_host_mak
1174 fi
1175 if test "$sched_idle" = "yes" ; then
1176   output_sym "CONFIG_SCHED_IDLE"
1177 fi
1178 if test "$tcp_nodelay" = "yes" ; then
1179   output_sym "CONFIG_TCP_NODELAY"
1180 fi
1181 if test "$rlimit_memlock" = "yes" ; then
1182   output_sym "CONFIG_RLIMIT_MEMLOCK"
1183 fi
1184
1185 echo "LIBS+=$LIBS" >> $config_host_mak
1186 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
1187 echo "CC=$cc" >> $config_host_mak
1188 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak