87d659cf6c70cfecbf94e0bbc33e909e448fbaaa
[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 else
419   feature_not_found "zlib" "zlib development files"
420   zlib=no
421 fi
422 echo "zlib                          $zlib"
423
424 ##########################################
425 # linux-aio probe
426 libaio="no"
427 cat > $TMPC <<EOF
428 #include <libaio.h>
429 #include <stddef.h>
430 int main(void)
431 {
432   io_setup(0, NULL);
433   return 0;
434 }
435 EOF
436 if compile_prog "" "-laio" "libaio" ; then
437   libaio=yes
438   LIBS="-laio $LIBS"
439 else
440   if test "$libaio" = "yes" ; then
441     feature_not_found "linux AIO" "libaio-dev or libaio-devel"
442   fi
443   libaio=no
444 fi
445 echo "Linux AIO support             $libaio"
446
447 ##########################################
448 # posix aio probe
449 posix_aio="no"
450 posix_aio_lrt="no"
451 cat > $TMPC <<EOF
452 #include <aio.h>
453 int main(void)
454 {
455   struct aiocb cb;
456   aio_read(&cb);
457   return 0;
458 }
459 EOF
460 if compile_prog "" "" "posixaio" ; then
461   posix_aio="yes"
462 elif compile_prog "" "-lrt" "posixaio"; then
463   posix_aio="yes"
464   posix_aio_lrt="yes"
465   LIBS="-lrt $LIBS"
466 fi
467 echo "POSIX AIO support             $posix_aio"
468 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
469
470 ##########################################
471 # posix aio fsync probe
472 posix_aio_fsync="no"
473 if test "$posix_aio" = "yes" ; then
474   cat > $TMPC <<EOF
475 #include <fcntl.h>
476 #include <aio.h>
477 int main(void)
478 {
479   struct aiocb cb;
480   return aio_fsync(O_SYNC, &cb);
481   return 0;
482 }
483 EOF
484   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
485     posix_aio_fsync=yes
486   fi
487 fi
488 echo "POSIX AIO fsync               $posix_aio_fsync"
489
490 ##########################################
491 # solaris aio probe
492 solaris_aio="no"
493 cat > $TMPC <<EOF
494 #include <sys/types.h>
495 #include <sys/asynch.h>
496 #include <unistd.h>
497 int main(void)
498 {
499   aio_result_t res;
500   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
501   return 0;
502 }
503 EOF
504 if compile_prog "" "-laio" "solarisaio" ; then
505   solaris_aio=yes
506   LIBS="-laio $LIBS"
507 fi
508 echo "Solaris AIO support           $solaris_aio"
509
510 ##########################################
511 # __sync_fetch_and_and test
512 sfaa="no"
513 cat > $TMPC << EOF
514 static int sfaa(int *ptr)
515 {
516   return __sync_fetch_and_add(ptr, 0);
517 }
518
519 int main(int argc, char **argv)
520 {
521   int val = 42;
522   sfaa(&val);
523   return val;
524 }
525 EOF
526 if compile_prog "" "" "__sync_fetch_and_add()" ; then
527     sfaa="yes"
528 fi
529 echo "__sync_fetch_and_add          $sfaa"
530
531 ##########################################
532 # libverbs probe
533 libverbs="no"
534 cat > $TMPC << EOF
535 #include <stdio.h>
536 #include <infiniband/arch.h>
537 int main(int argc, char **argv)
538 {
539   struct ibv_pd *pd = ibv_alloc_pd(NULL);
540   return 0;
541 }
542 EOF
543 if compile_prog "" "-libverbs" "libverbs" ; then
544     libverbs="yes"
545     LIBS="-libverbs $LIBS"
546 fi
547 echo "libverbs                      $libverbs"
548
549 ##########################################
550 # rdmacm probe
551 rdmacm="no"
552 cat > $TMPC << EOF
553 #include <stdio.h>
554 #include <rdma/rdma_cma.h>
555 int main(int argc, char **argv)
556 {
557   rdma_destroy_qp(NULL);
558   return 0;
559 }
560 EOF
561 if compile_prog "" "-lrdmacm" "rdma"; then
562     rdmacm="yes"
563     LIBS="-lrdmacm $LIBS"
564 fi
565 echo "rdmacm                        $rdmacm"
566
567 ##########################################
568 # Linux fallocate probe
569 linux_fallocate="no"
570 cat > $TMPC << EOF
571 #include <stdio.h>
572 #include <linux/falloc.h>
573 int main(int argc, char **argv)
574 {
575   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
576   return r;
577 }
578 EOF
579 if compile_prog "" "" "linux_fallocate"; then
580     linux_fallocate="yes"
581 fi
582 echo "Linux fallocate               $linux_fallocate"
583
584 ##########################################
585 # POSIX fadvise probe
586 posix_fadvise="no"
587 cat > $TMPC << EOF
588 #include <stdio.h>
589 #include <fcntl.h>
590 int main(int argc, char **argv)
591 {
592   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
593   return r;
594 }
595 EOF
596 if compile_prog "" "" "posix_fadvise"; then
597     posix_fadvise="yes"
598 fi
599 echo "POSIX fadvise                 $posix_fadvise"
600
601 ##########################################
602 # POSIX fallocate probe
603 posix_fallocate="no"
604 cat > $TMPC << EOF
605 #include <stdio.h>
606 #include <fcntl.h>
607 int main(int argc, char **argv)
608 {
609   int r = posix_fallocate(0, 0, 1024);
610   return r;
611 }
612 EOF
613 if compile_prog "" "" "posix_fallocate"; then
614     posix_fallocate="yes"
615 fi
616 echo "POSIX fallocate               $posix_fallocate"
617
618 ##########################################
619 # sched_set/getaffinity 2 or 3 argument test
620 linux_2arg_affinity="no"
621 linux_3arg_affinity="no"
622 cat > $TMPC << EOF
623 #include <sched.h>
624 int main(int argc, char **argv)
625 {
626   cpu_set_t mask;
627   return sched_setaffinity(0, sizeof(mask), &mask);
628 }
629 EOF
630 if compile_prog "" "" "sched_setaffinity(,,)"; then
631   linux_3arg_affinity="yes"
632 else
633   cat > $TMPC << EOF
634 #include <sched.h>
635 int main(int argc, char **argv)
636 {
637   cpu_set_t mask;
638   return sched_setaffinity(0, &mask);
639 }
640 EOF
641   if compile_prog "" "" "sched_setaffinity(,)"; then
642     linux_2arg_affinity="yes"
643   fi
644 fi
645 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
646 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
647
648 ##########################################
649 # clock_gettime probe
650 clock_gettime="no"
651 cat > $TMPC << EOF
652 #include <stdio.h>
653 #include <time.h>
654 int main(int argc, char **argv)
655 {
656   return clock_gettime(0, NULL);
657 }
658 EOF
659 if compile_prog "" "" "clock_gettime"; then
660     clock_gettime="yes"
661 elif compile_prog "" "-lrt" "clock_gettime"; then
662     clock_gettime="yes"
663     LIBS="-lrt $LIBS"
664 fi
665 echo "clock_gettime                 $clock_gettime"
666
667 ##########################################
668 # CLOCK_MONOTONIC probe
669 clock_monotonic="no"
670 if test "$clock_gettime" = "yes" ; then
671   cat > $TMPC << EOF
672 #include <stdio.h>
673 #include <time.h>
674 int main(int argc, char **argv)
675 {
676   return clock_gettime(CLOCK_MONOTONIC, NULL);
677 }
678 EOF
679   if compile_prog "" "$LIBS" "clock monotonic"; then
680       clock_monotonic="yes"
681   fi
682 fi
683 echo "CLOCK_MONOTONIC               $clock_monotonic"
684
685 ##########################################
686 # CLOCK_MONOTONIC_PRECISE probe
687 clock_monotonic_precise="no"
688 if test "$clock_gettime" = "yes" ; then
689   cat > $TMPC << EOF
690 #include <stdio.h>
691 #include <time.h>
692 int main(int argc, char **argv)
693 {
694   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
695 }
696 EOF
697   if compile_prog "" "$LIBS" "clock monotonic precise"; then
698       clock_monotonic_precise="yes"
699   fi
700 fi
701 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
702
703 ##########################################
704 # gettimeofday() probe
705 gettimeofday="no"
706 cat > $TMPC << EOF
707 #include <sys/time.h>
708 #include <stdio.h>
709 int main(int argc, char **argv)
710 {
711   struct timeval tv;
712   return gettimeofday(&tv, NULL);
713 }
714 EOF
715 if compile_prog "" "" "gettimeofday"; then
716     gettimeofday="yes"
717 fi
718 echo "gettimeofday                  $gettimeofday"
719
720 ##########################################
721 # fdatasync() probe
722 fdatasync="no"
723 cat > $TMPC << EOF
724 #include <stdio.h>
725 #include <unistd.h>
726 int main(int argc, char **argv)
727 {
728   return fdatasync(0);
729 }
730 EOF
731 if compile_prog "" "" "fdatasync"; then
732   fdatasync="yes"
733 fi
734 echo "fdatasync                     $fdatasync"
735
736 ##########################################
737 # sync_file_range() probe
738 sync_file_range="no"
739 cat > $TMPC << EOF
740 #include <stdio.h>
741 #include <unistd.h>
742 #include <fcntl.h>
743 #include <linux/fs.h>
744 int main(int argc, char **argv)
745 {
746   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
747                         SYNC_FILE_RANGE_WAIT_AFTER;
748   return sync_file_range(0, 0, 0, flags);
749 }
750 EOF
751 if compile_prog "" "" "sync_file_range"; then
752   sync_file_range="yes"
753 fi
754 echo "sync_file_range               $sync_file_range"
755
756 ##########################################
757 # ext4 move extent probe
758 ext4_me="no"
759 cat > $TMPC << EOF
760 #include <fcntl.h>
761 #include <sys/ioctl.h>
762 int main(int argc, char **argv)
763 {
764   struct move_extent me;
765   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
766 }
767 EOF
768 if compile_prog "" "" "ext4 move extent" ; then
769   ext4_me="yes"
770 elif test $targetos = "Linux" ; then
771   # On Linux, just default to it on and let it error at runtime if we really
772   # don't have it. None of my updated systems have it defined, but it does
773   # work. Takes a while to bubble back.
774   ext4_me="yes"
775 fi
776 echo "EXT4 move extent              $ext4_me"
777
778 ##########################################
779 # splice probe
780 linux_splice="no"
781 cat > $TMPC << EOF
782 #include <stdio.h>
783 #include <fcntl.h>
784 int main(int argc, char **argv)
785 {
786   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
787 }
788 EOF
789 if compile_prog "" "" "linux splice"; then
790   linux_splice="yes"
791 fi
792 echo "Linux splice(2)               $linux_splice"
793
794 ##########################################
795 # GUASI probe
796 guasi="no"
797 cat > $TMPC << EOF
798 #include <guasi.h>
799 #include <guasi_syscalls.h>
800 int main(int argc, char **argv)
801 {
802   guasi_t ctx = guasi_create(0, 0, 0);
803   return 0;
804 }
805 EOF
806 if compile_prog "" "" "guasi"; then
807   guasi="yes"
808 fi
809 echo "GUASI                         $guasi"
810
811 ##########################################
812 # fusion-aw probe
813 fusion_aw="no"
814 cat > $TMPC << EOF
815 #include <nvm/vectored_write.h>
816 int main(int argc, char **argv)
817 {
818   struct vsl_iovec iov;
819   return vsl_vectored_write(0, &iov, 0, O_ATOMIC);
820 }
821 EOF
822 if compile_prog "" "-L/usr/lib/fio -lnvm-primitives" "fusion-aw"; then
823   LIBS="-L/usr/lib/fio -lnvm-primitives $LIBS"
824   fusion_aw="yes"
825 fi
826 echo "Fusion-io atomic engine       $fusion_aw"
827
828 ##########################################
829 # libnuma probe
830 libnuma="no"
831 cat > $TMPC << EOF
832 #include <numa.h>
833 int main(int argc, char **argv)
834 {
835   return numa_available();
836 }
837 EOF
838 if compile_prog "" "-lnuma" "libnuma"; then
839   libnuma="yes"
840   LIBS="-lnuma $LIBS"
841 fi
842 echo "libnuma                       $libnuma"
843
844 ##########################################
845 # libnuma 2.x version API
846 if test "$libnuma" = "yes" ; then
847 libnuma_v2="no"
848 cat > $TMPC << EOF
849 #include <numa.h>
850 int main(int argc, char **argv)
851 {
852   struct bitmask *mask = numa_parse_nodestring(NULL);
853   return 0;
854 }
855 EOF
856 if compile_prog "" "" "libnuma api"; then
857   libnuma_v2="yes"
858 fi
859 echo "libnuma v2                    $libnuma_v2"
860 fi
861
862 ##########################################
863 # strsep() probe
864 strsep="no"
865 cat > $TMPC << EOF
866 #include <string.h>
867 int main(int argc, char **argv)
868 {
869   strsep(NULL, NULL);
870   return 0;
871 }
872 EOF
873 if compile_prog "" "" "strsep"; then
874   strsep="yes"
875 fi
876 echo "strsep                        $strsep"
877
878 ##########################################
879 # strcasestr() probe
880 strcasestr="no"
881 cat > $TMPC << EOF
882 #include <string.h>
883 int main(int argc, char **argv)
884 {
885   strcasestr(NULL, NULL);
886   return 0;
887 }
888 EOF
889 if compile_prog "" "" "strcasestr"; then
890   strcasestr="yes"
891 fi
892 echo "strcasestr                    $strcasestr"
893
894 ##########################################
895 # getopt_long_only() probe
896 getopt_long_only="no"
897 cat > $TMPC << EOF
898 #include <unistd.h>
899 #include <stdio.h>
900 int main(int argc, char **argv)
901 {
902   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
903   return c;
904 }
905 EOF
906 if compile_prog "" "" "getopt_long_only"; then
907   getopt_long_only="yes"
908 fi
909 echo "getopt_long_only()            $getopt_long_only"
910
911 ##########################################
912 # inet_aton() probe
913 inet_aton="no"
914 cat > $TMPC << EOF
915 #include <sys/socket.h>
916 #include <arpa/inet.h>
917 #include <stdio.h>
918 int main(int argc, char **argv)
919 {
920   struct in_addr in;
921   return inet_aton(NULL, &in);
922 }
923 EOF
924 if compile_prog "" "" "inet_aton"; then
925   inet_aton="yes"
926 fi
927 echo "inet_aton                     $inet_aton"
928
929 ##########################################
930 # socklen_t probe
931 socklen_t="no"
932 cat > $TMPC << EOF
933 #include <sys/socket.h>
934 int main(int argc, char **argv)
935 {
936   socklen_t len = 0;
937   return len;
938 }
939 EOF
940 if compile_prog "" "" "socklen_t"; then
941   socklen_t="yes"
942 fi
943 echo "socklen_t                     $socklen_t"
944
945 ##########################################
946 # Whether or not __thread is supported for TLS
947 tls_thread="no"
948 cat > $TMPC << EOF
949 #include <stdio.h>
950 static int __thread ret;
951 int main(int argc, char **argv)
952 {
953   return ret;
954 }
955 EOF
956 if compile_prog "" "" "__thread"; then
957   tls_thread="yes"
958 fi
959 echo "__thread                      $tls_thread"
960
961 ##########################################
962 # Check if we have required gtk/glib support for gfio
963 if test "$gfio" = "yes" ; then
964   cat > $TMPC << EOF
965 #include <glib.h>
966 #include <cairo.h>
967 #include <gtk/gtk.h>
968 int main(void)
969 {
970   gdk_threads_enter();
971   gdk_threads_leave();
972
973   printf("%d", GTK_CHECK_VERSION(2, 18, 0));
974 }
975 EOF
976 GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
977 if test "$?" != "0" ; then
978   echo "configure: gtk and gthread not found"
979   exit 1
980 fi
981 GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
982 if test "$?" != "0" ; then
983   echo "configure: gtk and gthread not found"
984   exit 1
985 fi
986 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
987   r=$($TMPE)
988   if test "$r" != "0" ; then
989     gfio="yes"
990     LIBS="$LIBS $GTK_LIBS"
991     CFLAGS="$CFLAGS $GTK_CFLAGS"
992   else
993     echo "GTK found, but need version 2.18 or higher"
994     gfio="no"
995   fi
996 else
997   echo "Please install gtk and gdk libraries"
998   gfio="no"
999 fi
1000 fi
1001
1002 echo "gtk 2.18 or higher            $gfio"
1003
1004 # Check whether we have getrusage(RUSAGE_THREAD)
1005 rusage_thread="no"
1006 cat > $TMPC << EOF
1007 #include <sys/time.h>
1008 #include <sys/resource.h>
1009 int main(int argc, char **argv)
1010 {
1011   struct rusage ru;
1012   getrusage(RUSAGE_THREAD, &ru);
1013   return 0;
1014 }
1015 EOF
1016 if compile_prog "" "" "RUSAGE_THREAD"; then
1017   rusage_thread="yes"
1018 fi
1019 echo "RUSAGE_THREAD                 $rusage_thread"
1020
1021 ##########################################
1022 # Check whether we have SCHED_IDLE
1023 sched_idle="no"
1024 cat > $TMPC << EOF
1025 #include <sched.h>
1026 int main(int argc, char **argv)
1027 {
1028   struct sched_param p;
1029   return sched_setscheduler(0, SCHED_IDLE, &p);
1030 }
1031 EOF
1032 if compile_prog "" "" "SCHED_IDLE"; then
1033   sched_idle="yes"
1034 fi
1035 echo "SCHED_IDLE                    $sched_idle"
1036
1037 ##########################################
1038 # Check whether we have TCP_NODELAY
1039 tcp_nodelay="no"
1040 cat > $TMPC << EOF
1041 #include <stdio.h>
1042 #include <sys/types.h>
1043 #include <sys/socket.h>
1044 #include <netinet/tcp.h>
1045 int main(int argc, char **argv)
1046 {
1047   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1048 }
1049 EOF
1050 if compile_prog "" "" "TCP_NODELAY"; then
1051   tcp_nodelay="yes"
1052 fi
1053 echo "TCP_NODELAY                   $tcp_nodelay"
1054
1055 ##########################################
1056 # Check whether we have RLIMIT_MEMLOCK
1057 rlimit_memlock="no"
1058 cat > $TMPC << EOF
1059 #include <sys/time.h>
1060 #include <sys/resource.h>
1061 int main(int argc, char **argv)
1062 {
1063   struct rlimit rl;
1064   return getrlimit(RLIMIT_MEMLOCK, &rl);
1065 }
1066 EOF
1067 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1068   rlimit_memlock="yes"
1069 fi
1070 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
1071
1072 #############################################################################
1073
1074 if test "$wordsize" = "64" ; then
1075   output_sym "CONFIG_64BIT"
1076 elif test "$wordsize" = "32" ; then
1077   output_sym "CONFIG_32BIT"
1078 else
1079   fatal "Unknown wordsize!"
1080 fi
1081 if test "$bigendian" = "yes" ; then
1082   output_sym "CONFIG_BIG_ENDIAN"
1083 else
1084   output_sym "CONFIG_LITTLE_ENDIAN"
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