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