965623d7c2ab0905d975f4d00ab607d5d6bd7f3d
[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"
42 EXTFLAGS="-include config-host.h"
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
98   echo "ERROR"
99   echo "ERROR: User requested feature $feature"
100   echo "ERROR: configure was not able to find it"
101   fatal "ERROR"
102 }
103
104 has() {
105   type "$1" >/dev/null 2>&1
106 }
107
108 check_define() {
109   cat > $TMPC <<EOF
110 #if !defined($1)
111 #error $1 not defined
112 #endif
113 int main(void)
114 {
115   return 0;
116 }
117 EOF
118   compile_object
119 }
120
121 output_sym() {
122   echo "$1=y" >> $config_host_mak
123   echo "#define $1" >> $config_host_h
124 }
125
126 targetos=""
127 cpu=""
128
129 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
130 cc="${CC-${cross_prefix}gcc}"
131
132 show_help="no"
133 exit_val=0
134
135 # parse options
136 for opt do
137   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
138   case "$opt" in
139   --cpu=*) cpu="$optarg"
140   ;;
141   --cc=*) CC="$optarg"
142   ;;
143   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
144   ;;
145   --build-32bit-win=*) build_32bit_win="$optarg"
146   ;;
147   --help)
148   show_help="yes"
149   ;;
150   *)
151   echo "Bad option $opt"
152   show_help="yes"
153   exit_val=1
154   esac
155 done
156
157 if test "$show_help" = "yes" ; then
158   echo "--cpu=                 Specify target CPU if auto-detect fails"
159   echo "--cc=                  Specify compiler to use"
160   echo "--extra-cflags=        Specify extra CFLAGS to pass to compiler"
161   echo "--build-32bit-win=     Specify yes for a 32-bit build on Windows"
162   exit $exit_val
163 fi
164
165 if check_define __ANDROID__ ; then
166   targetos="Android"
167 elif check_define __linux__ ; then
168   targetos="Linux"
169 elif check_define __OpenBSD__ ; then
170   targetos='OpenBSD'
171 elif check_define __sun__ ; then
172   targetos='SunOS'
173 else
174   targetos=`uname -s`
175 fi
176
177 echo "# Automatically generated by configure - do not modify" > $config_host_mak
178 printf "# Configured with:" >> $config_host_mak
179 printf " '%s'" "$0" "$@" >> $config_host_mak
180 echo >> $config_host_mak
181 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
182
183 # Some host OSes need non-standard checks for which CPU to use.
184 # Note that these checks are broken for cross-compilation: if you're
185 # cross-compiling to one of these OSes then you'll need to specify
186 # the correct CPU with the --cpu option.
187 case $targetos in
188 Darwin)
189   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
190   # we can run 64-bit userspace code.
191   # If the user didn't specify a CPU explicitly and the kernel says this is
192   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
193   # detection code.
194   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
195     cpu="x86_64"
196   fi
197   ;;
198 SunOS)
199   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
200   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
201     cpu="x86_64"
202   fi
203   LIBS="-lnsl -lsocket"
204   ;;
205 CYGWIN*)
206   echo "Forcing known good options on Windows"
207   if test -z "$CC" ; then
208     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
209       CC="i686-w64-mingw32-gcc"
210     else
211       CC="x86_64-w64-mingw32-gcc"
212     fi
213   fi
214   output_sym "CONFIG_LITTLE_ENDIAN"
215   if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
216     output_sym "CONFIG_32BIT"
217   else
218     output_sym "CONFIG_64BIT_LLP64"
219   fi
220   output_sym "CONFIG_FADVISE"
221   output_sym "CONFIG_SOCKLEN_T"
222   output_sym "CONFIG_FADVISE"
223   output_sym "CONFIG_SFAA"
224   output_sym "CONFIG_RUSAGE_THREAD"
225   output_sym "CONFIG_WINDOWSAIO"
226   output_sym "CONFIG_FDATASYNC"
227   output_sym "CONFIG_CLOCK_MONOTONIC"
228   output_sym "CONFIG_GETTIMEOFDAY"
229   output_sym "CONFIG_CLOCK_GETTIME"
230   output_sym "CONFIG_SCHED_IDLE"
231   output_sym "CONFIG_TCP_NODELAY"
232   echo "CC=$CC" >> $config_host_mak
233   echo "EXTFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
234   exit 0
235   ;;
236 Android)
237   output_sym "CONFIG_32BIT"
238   output_sym "CONFIG_LITTLE_ENDIAN"
239   output_sym "CONFIG_SOCKLEN_T"
240   output_sym "CONFIG_GETTIMEOFDAY"
241   output_sym "CONFIG_CLOCK_GETTIME"
242   output_sym "CONFIG_CLOCK_MONOTONIC"
243   echo "CC=$cc" >> $config_host_mak
244   echo "EXTFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
245   exit 0
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 # linux-aio probe
404 libaio="no"
405 cat > $TMPC <<EOF
406 #include <libaio.h>
407 #include <stddef.h>
408 int main(void)
409 {
410   io_setup(0, NULL);
411   return 0;
412 }
413 EOF
414 if compile_prog "" "-laio" "libaio" ; then
415   libaio=yes
416   LIBS="-laio $LIBS"
417 else
418   if test "$libaio" = "yes" ; then
419     feature_not_found "linux AIO"
420   fi
421   libaio=no
422 fi
423 echo "Linux AIO support             $libaio"
424
425 ##########################################
426 # posix aio probe
427 posix_aio="no"
428 posix_aio_lrt="no"
429 cat > $TMPC <<EOF
430 #include <aio.h>
431 int main(void)
432 {
433   struct aiocb cb;
434   aio_read(&cb);
435   return 0;
436 }
437 EOF
438 if compile_prog "" "" "posixaio" ; then
439   posix_aio="yes"
440 elif compile_prog "" "-lrt" "posixaio"; then
441   posix_aio="yes"
442   posix_aio_lrt="yes"
443   LIBS="-lrt $LIBS"
444 fi
445 echo "POSIX AIO support             $posix_aio"
446 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
447
448 ##########################################
449 # posix aio fsync probe
450 posix_aio_fsync="no"
451 if test "$posix_aio" = "yes" ; then
452   cat > $TMPC <<EOF
453 #include <fcntl.h>
454 #include <aio.h>
455 int main(void)
456 {
457   struct aiocb cb;
458   return aio_fsync(O_SYNC, &cb);
459   return 0;
460 }
461 EOF
462   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
463     posix_aio_fsync=yes
464   fi
465 fi
466 echo "POSIX AIO fsync               $posix_aio_fsync"
467
468 ##########################################
469 # solaris aio probe
470 solaris_aio="no"
471 cat > $TMPC <<EOF
472 #include <sys/types.h>
473 #include <sys/asynch.h>
474 #include <unistd.h>
475 int main(void)
476 {
477   aio_result_t res;
478   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
479   return 0;
480 }
481 EOF
482 if compile_prog "" "-laio" "solarisaio" ; then
483   solaris_aio=yes
484   LIBS="-laio $LIBS"
485 fi
486 echo "Solaris AIO support           $solaris_aio"
487
488 ##########################################
489 # __sync_fetch_and_and test
490 sfaa="no"
491 cat > $TMPC << EOF
492 static int sfaa(int *ptr)
493 {
494   return __sync_fetch_and_add(ptr, 0);
495 }
496
497 int main(int argc, char **argv)
498 {
499   int val = 42;
500   sfaa(&val);
501   return val;
502 }
503 EOF
504 if compile_prog "" "" "__sync_fetch_and_add()" ; then
505     sfaa="yes"
506 fi
507 echo "__sync_fetch_and_add          $sfaa"
508
509 ##########################################
510 # libverbs probe
511 libverbs="no"
512 cat > $TMPC << EOF
513 #include <stdio.h>
514 #include <infiniband/arch.h>
515 int main(int argc, char **argv)
516 {
517   struct ibv_pd *pd = ibv_alloc_pd(NULL);
518   return 0;
519 }
520 EOF
521 if compile_prog "" "-libverbs" "libverbs" ; then
522     libverbs="yes"
523     LIBS="-libverbs $LIBS"
524 fi
525 echo "libverbs                      $libverbs"
526
527 ##########################################
528 # rdmacm probe
529 rdmacm="no"
530 cat > $TMPC << EOF
531 #include <stdio.h>
532 #include <rdma/rdma_cma.h>
533 int main(int argc, char **argv)
534 {
535   rdma_destroy_qp(NULL);
536   return 0;
537 }
538 EOF
539 if compile_prog "" "-lrdmacm" "rdma"; then
540     rdmacm="yes"
541     LIBS="-lrdmacm $LIBS"
542 fi
543 echo "rdmacm                        $rdmacm"
544
545 ##########################################
546 # Linux fallocate probe
547 linux_fallocate="no"
548 cat > $TMPC << EOF
549 #include <stdio.h>
550 #include <linux/falloc.h>
551 int main(int argc, char **argv)
552 {
553   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
554   return r;
555 }
556 EOF
557 if compile_prog "" "" "linux_fallocate"; then
558     linux_fallocate="yes"
559 fi
560 echo "Linux fallocate               $linux_fallocate"
561
562 ##########################################
563 # POSIX fadvise probe
564 posix_fadvise="no"
565 cat > $TMPC << EOF
566 #include <stdio.h>
567 #include <fcntl.h>
568 int main(int argc, char **argv)
569 {
570   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
571   return r;
572 }
573 EOF
574 if compile_prog "" "" "posix_fadvise"; then
575     posix_fadvise="yes"
576 fi
577 echo "POSIX fadvise                 $posix_fadvise"
578
579 ##########################################
580 # POSIX fallocate probe
581 posix_fallocate="no"
582 cat > $TMPC << EOF
583 #include <stdio.h>
584 #include <fcntl.h>
585 int main(int argc, char **argv)
586 {
587   int r = posix_fallocate(0, 0, 1024);
588   return r;
589 }
590 EOF
591 if compile_prog "" "" "posix_fallocate"; then
592     posix_fallocate="yes"
593 fi
594 echo "POSIX fallocate               $posix_fallocate"
595
596 ##########################################
597 # sched_set/getaffinity 2 or 3 argument test
598 linux_2arg_affinity="no"
599 linux_3arg_affinity="no"
600 cat > $TMPC << EOF
601 #include <sched.h>
602 int main(int argc, char **argv)
603 {
604   cpu_set_t mask;
605   return sched_setaffinity(0, sizeof(mask), &mask);
606 }
607 EOF
608 if compile_prog "" "" "sched_setaffinity(,,)"; then
609   linux_3arg_affinity="yes"
610 else
611   cat > $TMPC << EOF
612 #include <sched.h>
613 int main(int argc, char **argv)
614 {
615   cpu_set_t mask;
616   return sched_setaffinity(0, &mask);
617 }
618 EOF
619   if compile_prog "" "" "sched_setaffinity(,)"; then
620     linux_2arg_affinity="yes"
621   fi
622 fi
623 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
624 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
625
626 ##########################################
627 # clock_gettime probe
628 clock_gettime="no"
629 cat > $TMPC << EOF
630 #include <stdio.h>
631 #include <time.h>
632 int main(int argc, char **argv)
633 {
634   return clock_gettime(0, NULL);
635 }
636 EOF
637 if compile_prog "" "" "clock_gettime"; then
638     clock_gettime="yes"
639 elif compile_prog "" "-lrt" "clock_gettime"; then
640     clock_gettime="yes"
641     LIBS="-lrt $LIBS"
642 fi
643 echo "clock_gettime                 $clock_gettime"
644
645 ##########################################
646 # CLOCK_MONOTONIC probe
647 clock_monotonic="no"
648 if test "$clock_gettime" = "yes" ; then
649   cat > $TMPC << EOF
650 #include <stdio.h>
651 #include <time.h>
652 int main(int argc, char **argv)
653 {
654   return clock_gettime(CLOCK_MONOTONIC, NULL);
655 }
656 EOF
657   if compile_prog "" "$LIBS" "clock monotonic"; then
658       clock_monotonic="yes"
659   fi
660 fi
661 echo "CLOCK_MONOTONIC               $clock_monotonic"
662
663 ##########################################
664 # CLOCK_MONOTONIC_PRECISE probe
665 clock_monotonic_precise="no"
666 if test "$clock_gettime" = "yes" ; then
667   cat > $TMPC << EOF
668 #include <stdio.h>
669 #include <time.h>
670 int main(int argc, char **argv)
671 {
672   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
673 }
674 EOF
675   if compile_prog "" "$LIBS" "clock monotonic precise"; then
676       clock_monotonic_precise="yes"
677   fi
678 fi
679 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
680
681 ##########################################
682 # gettimeofday() probe
683 gettimeofday="no"
684 cat > $TMPC << EOF
685 #include <sys/time.h>
686 #include <stdio.h>
687 int main(int argc, char **argv)
688 {
689   struct timeval tv;
690   return gettimeofday(&tv, NULL);
691 }
692 EOF
693 if compile_prog "" "" "gettimeofday"; then
694     gettimeofday="yes"
695 fi
696 echo "gettimeofday                  $gettimeofday"
697
698 ##########################################
699 # fdatasync() probe
700 fdatasync="no"
701 cat > $TMPC << EOF
702 #include <stdio.h>
703 #include <unistd.h>
704 int main(int argc, char **argv)
705 {
706   return fdatasync(0);
707 }
708 EOF
709 if compile_prog "" "" "fdatasync"; then
710   fdatasync="yes"
711 fi
712 echo "fdatasync                     $fdatasync"
713
714 ##########################################
715 # sync_file_range() probe
716 sync_file_range="no"
717 cat > $TMPC << EOF
718 #include <stdio.h>
719 #include <unistd.h>
720 #include <fcntl.h>
721 #include <linux/fs.h>
722 int main(int argc, char **argv)
723 {
724   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
725                         SYNC_FILE_RANGE_WAIT_AFTER;
726   return sync_file_range(0, 0, 0, flags);
727 }
728 EOF
729 if compile_prog "" "" "sync_file_range"; then
730   sync_file_range="yes"
731 fi
732 echo "sync_file_range               $sync_file_range"
733
734 ##########################################
735 # ext4 move extent probe
736 ext4_me="no"
737 cat > $TMPC << EOF
738 #include <fcntl.h>
739 #include <sys/ioctl.h>
740 int main(int argc, char **argv)
741 {
742   struct move_extent me;
743   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
744 }
745 EOF
746 if compile_prog "" "" "ext4 move extent" ; then
747   ext4_me="yes"
748 elif test $targetos = "Linux" ; then
749   # On Linux, just default to it on and let it error at runtime if we really
750   # don't have it. None of my updated systems have it defined, but it does
751   # work. Takes a while to bubble back.
752   ext4_me="yes"
753 fi
754 echo "EXT4 move extent              $ext4_me"
755
756 ##########################################
757 # splice probe
758 linux_splice="no"
759 cat > $TMPC << EOF
760 #include <stdio.h>
761 #include <fcntl.h>
762 int main(int argc, char **argv)
763 {
764   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
765 }
766 EOF
767 if compile_prog "" "" "linux splice"; then
768   linux_splice="yes"
769 fi
770 echo "Linux splice(2)               $linux_splice"
771
772 ##########################################
773 # GUASI probe
774 guasi="no"
775 cat > $TMPC << EOF
776 #include <guasi.h>
777 #include <guasi_syscalls.h>
778 int main(int argc, char **argv)
779 {
780   guasi_t ctx = guasi_create(0, 0, 0);
781   return 0;
782 }
783 EOF
784 if compile_prog "" "" "guasi"; then
785   guasi="yes"
786 fi
787 echo "GUASI                         $guasi"
788
789 ##########################################
790 # fusion-aw probe
791 fusion_aw="no"
792 cat > $TMPC << EOF
793 #include <nvm/vectored_write.h>
794 int main(int argc, char **argv)
795 {
796   struct vsl_iovec iov;
797   return vsl_vectored_write(0, &iov, 0, O_ATOMIC);
798 }
799 EOF
800 if compile_prog "" "-L/usr/lib/fio -lnvm-primitives" "fusion-aw"; then
801   LIBS="-L/usr/lib/fio -lnvm-primitives $LIBS"
802   fusion_aw="yes"
803 fi
804 echo "Fusion-io atomic engine       $fusion_aw"
805
806 ##########################################
807 # libnuma probe
808 libnuma="no"
809 cat > $TMPC << EOF
810 #include <numa.h>
811 int main(int argc, char **argv)
812 {
813   return numa_available();
814 }
815 EOF
816 if compile_prog "" "-lnuma" "libnuma"; then
817   libnuma="yes"
818   LIBS="-lnuma $LIBS"
819 fi
820 echo "libnuma                       $libnuma"
821
822 ##########################################
823 # strsep() probe
824 strsep="no"
825 cat > $TMPC << EOF
826 #include <string.h>
827 int main(int argc, char **argv)
828 {
829   strsep(NULL, NULL);
830   return 0;
831 }
832 EOF
833 if compile_prog "" "" "strsep"; then
834   strsep="yes"
835 fi
836 echo "strsep                        $strsep"
837
838 ##########################################
839 # getopt_long_only() probe
840 getopt_long_only="no"
841 cat > $TMPC << EOF
842 #include <unistd.h>
843 #include <stdio.h>
844 int main(int argc, char **argv)
845 {
846   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
847   return c;
848 }
849 EOF
850 if compile_prog "" "" "getopt_long_only"; then
851   getopt_long_only="yes"
852 fi
853 echo "getopt_long_only()            $getopt_long_only"
854
855 ##########################################
856 # inet_aton() probe
857 inet_aton="no"
858 cat > $TMPC << EOF
859 #include <sys/socket.h>
860 #include <arpa/inet.h>
861 #include <stdio.h>
862 int main(int argc, char **argv)
863 {
864   struct in_addr in;
865   return inet_aton(NULL, &in);
866 }
867 EOF
868 if compile_prog "" "" "inet_aton"; then
869   inet_aton="yes"
870 fi
871 echo "inet_aton                     $inet_aton"
872
873 ##########################################
874 # socklen_t probe
875 socklen_t="no"
876 cat > $TMPC << EOF
877 #include <string.h>
878 #include <netinet/in.h>
879 int main(int argc, char **argv)
880 {
881   socklen_t len = 0;
882   return len;
883 }
884 EOF
885 if compile_prog "" "" "socklen_t"; then
886   socklen_t="yes"
887 fi
888 echo "socklen_t                     $socklen_t"
889
890 ##########################################
891 # Whether or not __thread is supported for TLS
892 tls_thread="no"
893 cat > $TMPC << EOF
894 #include <stdio.h>
895 static int __thread ret;
896 int main(int argc, char **argv)
897 {
898   return ret;
899 }
900 EOF
901 if compile_prog "" "" "__thread"; then
902   tls_thread="yes"
903 fi
904 echo "__thread                      $tls_thread"
905
906 ##########################################
907 # Check whether we have getrusage(RUSAGE_THREAD)
908 rusage_thread="no"
909 cat > $TMPC << EOF
910 #include <sys/time.h>
911 #include <sys/resource.h>
912 int main(int argc, char **argv)
913 {
914   struct rusage ru;
915   getrusage(RUSAGE_THREAD, &ru);
916   return 0;
917 }
918 EOF
919 if compile_prog "" "" "RUSAGE_THREAD"; then
920   rusage_thread="yes"
921 fi
922 echo "RUSAGE_THREAD                 $rusage_thread"
923
924 ##########################################
925 # Check whether we have SCHED_IDLE
926 sched_idle="no"
927 cat > $TMPC << EOF
928 #include <sched.h>
929 int main(int argc, char **argv)
930 {
931   struct sched_param p;
932   return sched_setscheduler(0, SCHED_IDLE, &p);
933 }
934 EOF
935 if compile_prog "" "" "SCHED_IDLE"; then
936   sched_idle="yes"
937 fi
938 echo "SCHED_IDLE                    $sched_idle"
939
940 ##########################################
941 # Check whether we have TCP_NODELAY
942 tcp_nodelay="no"
943 cat > $TMPC << EOF
944 #include <stdio.h>
945 #include <sys/types.h>
946 #include <sys/socket.h>
947 #include <netinet/tcp.h>
948 int main(int argc, char **argv)
949 {
950   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
951 }
952 EOF
953 if compile_prog "" "" "TCP_NODELAY"; then
954   tcp_nodelay="yes"
955 fi
956 echo "TCP_NODELAY                   $tcp_nodelay"
957
958 ##########################################
959 # Check whether we have RLIMIT_MEMLOCK
960 rlimit_memlock="no"
961 cat > $TMPC << EOF
962 #include <sys/time.h>
963 #include <sys/resource.h>
964 int main(int argc, char **argv)
965 {
966   struct rlimit rl;
967   return getrlimit(RLIMIT_MEMLOCK, &rl);
968 }
969 EOF
970 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
971   rlimit_memlock="yes"
972 fi
973 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
974
975 #############################################################################
976
977 if test "$wordsize" = "64" ; then
978   output_sym "CONFIG_64BIT"
979 elif test "$wordsize" = "32" ; then
980   output_sym "CONFIG_32BIT"
981 else
982   fatal "Unknown wordsize!"
983 fi
984 if test "$bigendian" = "yes" ; then
985   output_sym "CONFIG_BIG_ENDIAN"
986 else
987   output_sym "CONFIG_LITTLE_ENDIAN"
988 fi
989 if test "$libaio" = "yes" ; then
990   output_sym "CONFIG_LIBAIO"
991 fi
992 if test "$posix_aio" = "yes" ; then
993   output_sym "CONFIG_POSIXAIO"
994 fi
995 if test "$posix_aio_fsync" = "yes" ; then
996   output_sym "CONFIG_POSIXAIO_FSYNC"
997 fi
998 if test "$linux_fallocate" = "yes" ; then
999   output_sym "CONFIG_LINUX_FALLOCATE"
1000 fi
1001 if test "$posix_fallocate" = "yes" ; then
1002   output_sym "CONFIG_POSIX_FALLOCATE"
1003 fi
1004 if test "$fdatasync" = "yes" ; then
1005   output_sym "CONFIG_FDATASYNC"
1006 fi
1007 if test "$sync_file_range" = "yes" ; then
1008   output_sym "CONFIG_SYNC_FILE_RANGE"
1009 fi
1010 if test "$sfaa" = "yes" ; then
1011   output_sym "CONFIG_SFAA"
1012 fi
1013 if test "$libverbs" = "yes" -o "rdmacm" = "yes" ; then
1014   output_sym "CONFIG_RDMA"
1015 fi
1016 if test "$clock_gettime" = "yes" ; then
1017   output_sym "CONFIG_CLOCK_GETTIME"
1018 fi
1019 if test "$clock_monotonic" = "yes" ; then
1020   output_sym "CONFIG_CLOCK_MONOTONIC"
1021 fi
1022 if test "$clock_monotonic_precise" = "yes" ; then
1023   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
1024 fi
1025 if test "$gettimeofday" = "yes" ; then
1026   output_sym "CONFIG_GETTIMEOFDAY"
1027 fi
1028 if test "$posix_fadvise" = "yes" ; then
1029   output_sym "CONFIG_POSIX_FADVISE"
1030 fi
1031 if test "$linux_3arg_affinity" = "yes" ; then
1032   output_sym "CONFIG_3ARG_AFFINITY"
1033 elif test "$linux_2arg_affinity" = "yes" ; then
1034   output_sym "CONFIG_2ARG_AFFINITY"
1035 fi
1036 if test "$strsep" = "yes" ; then
1037   output_sym "CONFIG_STRSEP"
1038 fi
1039 if test "$getopt_long_only" = "yes" ; then
1040   output_sym "CONFIG_GETOPT_LONG_ONLY"
1041 fi
1042 if test "$inet_aton" = "yes" ; then
1043   output_sym "CONFIG_INET_ATON"
1044 fi
1045 if test "$socklen_t" = "yes" ; then
1046   output_sym "CONFIG_SOCKLEN_T"
1047 fi
1048 if test "$ext4_me" = "yes" ; then
1049   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
1050 fi
1051 if test "$linux_splice" = "yes" ; then
1052   output_sym "CONFIG_LINUX_SPLICE"
1053 fi
1054 if test "$guasi" = "yes" ; then
1055   output_sym "CONFIG_GUASI"
1056 fi
1057 if test "$fusion_aw" = "yes" ; then
1058   output_sym "CONFIG_FUSION_AW"
1059 fi
1060 if test "$libnuma" = "yes" ; then
1061   output_sym "CONFIG_LIBNUMA"
1062 fi
1063 if test "$solaris_aio" = "yes" ; then
1064   output_sym "CONFIG_SOLARISAIO"
1065 fi
1066 if test "$tls_thread" = "yes" ; then
1067   output_sym "CONFIG_TLS_THREAD"
1068 fi
1069 if test "$rusage_thread" = "yes" ; then
1070   output_sym "CONFIG_RUSAGE_THREAD"
1071 fi
1072 if test "$sched_idle" = "yes" ; then
1073   output_sym "CONFIG_SCHED_IDLE"
1074 fi
1075 #if test "$tcp_nodelay" = "yes" ; then
1076   #output_sym "CONFIG_TCP_NODELAY"
1077 #fi
1078 if test "$rlimit_memlock" = "yes" ; then
1079   output_sym "CONFIG_RLIMIT_MEMLOCK"
1080 fi
1081
1082 echo "LIBS+=$LIBS" >> $config_host_mak
1083 echo "CC=$cc" >> $config_host_mak
1084 echo "EXTFLAGS=$EXTFLAGS $CFLAGS" >> $config_host_mak