Propagate target OS from configure to Makefile
[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 endianness
327 bigendian="no"
328 cat > $TMPC <<EOF
329 #include <inttypes.h>
330 int main(void)
331 {
332   volatile uint32_t i=0x01234567;
333   return (*((uint8_t*)(&i))) == 0x67;
334 }
335 EOF
336 if compile_prog "" "" "endian"; then
337   $TMPE && bigendian="yes"
338 fi
339
340
341 echo "Operating system              $targetos"
342 echo "CPU                           $cpu"
343 echo "Big endian                    $bigendian"
344 echo "Compiler                      $cc"
345 echo
346
347 ##########################################
348 # check for wordsize
349 wordsize="0"
350 cat > $TMPC <<EOF
351 #include <stdio.h>
352 int main(void)
353 {
354   unsigned int wsize = sizeof(long) * 8;
355   printf("%d\n", wsize);
356   return 0;
357 }
358 EOF
359 if compile_prog "" "" "wordsize"; then
360   wordsize=`$TMPE`
361 fi
362 echo "Wordsize                      $wordsize"
363
364 ##########################################
365 # linux-aio probe
366 libaio="no"
367 cat > $TMPC <<EOF
368 #include <libaio.h>
369 #include <stddef.h>
370 int main(void)
371 {
372   io_setup(0, NULL);
373   return 0;
374 }
375 EOF
376 if compile_prog "" "-laio" "libaio" ; then
377   libaio=yes
378   LIBS="-laio $LIBS"
379 else
380   if test "$libaio" = "yes" ; then
381     feature_not_found "linux AIO"
382   fi
383   libaio=no
384 fi
385 echo "Linux AIO support             $libaio"
386
387 ##########################################
388 # posix aio probe
389 posix_aio="no"
390 posix_aio_lrt="no"
391 cat > $TMPC <<EOF
392 #include <aio.h>
393 int main(void)
394 {
395   struct aiocb cb;
396   aio_read(&cb);
397   return 0;
398 }
399 EOF
400 if compile_prog "" "" "posixaio" ; then
401   posix_aio="yes"
402 elif compile_prog "" "-lrt" "posixaio"; then
403   posix_aio="yes"
404   posix_aio_lrt="yes"
405   LIBS="-lrt $LIBS"
406 fi
407 echo "POSIX AIO support             $posix_aio"
408 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
409
410 ##########################################
411 # posix aio fsync probe
412 posix_aio_fsync="no"
413 if test "$posix_aio" = "yes" ; then
414   cat > $TMPC <<EOF
415 #include <fcntl.h>
416 #include <aio.h>
417 int main(void)
418 {
419   struct aiocb cb;
420   return aio_fsync(O_SYNC, &cb);
421   return 0;
422 }
423 EOF
424   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
425     posix_aio_fsync=yes
426   fi
427 fi
428 echo "POSIX AIO fsync               $posix_aio_fsync"
429
430 ##########################################
431 # solaris aio probe
432 solaris_aio="no"
433 cat > $TMPC <<EOF
434 #include <sys/types.h>
435 #include <sys/asynch.h>
436 #include <unistd.h>
437 int main(void)
438 {
439   aio_result_t res;
440   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
441   return 0;
442 }
443 EOF
444 if compile_prog "" "-laio" "solarisaio" ; then
445   solaris_aio=yes
446   LIBS="-laio $LIBS"
447 fi
448 echo "Solaris AIO support           $solaris_aio"
449
450 ##########################################
451 # __sync_fetch_and_and test
452 sfaa="no"
453 cat > $TMPC << EOF
454 static int sfaa(int *ptr)
455 {
456   return __sync_fetch_and_add(ptr, 0);
457 }
458
459 int main(int argc, char **argv)
460 {
461   int val = 42;
462   sfaa(&val);
463   return val;
464 }
465 EOF
466 if compile_prog "" "" "__sync_fetch_and_add()" ; then
467     sfaa="yes"
468 fi
469 echo "__sync_fetch_and_add          $sfaa"
470
471 ##########################################
472 # libverbs probe
473 libverbs="no"
474 cat > $TMPC << EOF
475 #include <stdio.h>
476 #include <infiniband/arch.h>
477 int main(int argc, char **argv)
478 {
479   struct ibv_pd *pd = ibv_alloc_pd(NULL);
480   return 0;
481 }
482 EOF
483 if compile_prog "" "-libverbs" "libverbs" ; then
484     libverbs="yes"
485     LIBS="-libverbs $LIBS"
486 fi
487 echo "libverbs                      $libverbs"
488
489 ##########################################
490 # rdmacm probe
491 rdmacm="no"
492 cat > $TMPC << EOF
493 #include <stdio.h>
494 #include <rdma/rdma_cma.h>
495 int main(int argc, char **argv)
496 {
497   rdma_destroy_qp(NULL);
498   return 0;
499 }
500 EOF
501 if compile_prog "" "-lrdmacm" "rdma"; then
502     rdmacm="yes"
503     LIBS="-lrdmacm $LIBS"
504 fi
505 echo "rdmacm                        $rdmacm"
506
507 ##########################################
508 # Linux fallocate probe
509 linux_fallocate="no"
510 cat > $TMPC << EOF
511 #include <stdio.h>
512 #include <linux/falloc.h>
513 int main(int argc, char **argv)
514 {
515   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
516   return r;
517 }
518 EOF
519 if compile_prog "" "" "linux_fallocate"; then
520     linux_fallocate="yes"
521 fi
522 echo "Linux fallocate               $linux_fallocate"
523
524 ##########################################
525 # POSIX fadvise probe
526 posix_fadvise="no"
527 cat > $TMPC << EOF
528 #include <stdio.h>
529 #include <fcntl.h>
530 int main(int argc, char **argv)
531 {
532   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
533   return r;
534 }
535 EOF
536 if compile_prog "" "" "posix_fadvise"; then
537     posix_fadvise="yes"
538 fi
539 echo "POSIX fadvise                 $posix_fadvise"
540
541 ##########################################
542 # POSIX fallocate probe
543 posix_fallocate="no"
544 cat > $TMPC << EOF
545 #include <stdio.h>
546 #include <fcntl.h>
547 int main(int argc, char **argv)
548 {
549   int r = posix_fallocate(0, 0, 1024);
550   return r;
551 }
552 EOF
553 if compile_prog "" "" "posix_fallocate"; then
554     posix_fallocate="yes"
555 fi
556 echo "POSIX fallocate               $posix_fallocate"
557
558 ##########################################
559 # sched_set/getaffinity 2 or 3 argument test
560 linux_2arg_affinity="no"
561 linux_3arg_affinity="no"
562 cat > $TMPC << EOF
563 #include <sched.h>
564 int main(int argc, char **argv)
565 {
566   cpu_set_t mask;
567   return sched_setaffinity(0, sizeof(mask), &mask);
568 }
569 EOF
570 if compile_prog "" "" "sched_setaffinity(,,)"; then
571   linux_3arg_affinity="yes"
572 else
573   cat > $TMPC << EOF
574 #include <sched.h>
575 int main(int argc, char **argv)
576 {
577   cpu_set_t mask;
578   return sched_setaffinity(0, &mask);
579 }
580 EOF
581   if compile_prog "" "" "sched_setaffinity(,)"; then
582     linux_2arg_affinity="yes"
583   fi
584 fi
585 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
586 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
587
588 ##########################################
589 # clock_gettime probe
590 clock_gettime="no"
591 cat > $TMPC << EOF
592 #include <stdio.h>
593 #include <time.h>
594 int main(int argc, char **argv)
595 {
596   return clock_gettime(0, NULL);
597 }
598 EOF
599 if compile_prog "" "" "clock_gettime"; then
600     clock_gettime="yes"
601 elif compile_prog "" "-lrt" "clock_gettime"; then
602     clock_gettime="yes"
603     LIBS="-lrt $LIBS"
604 fi
605 echo "clock_gettime                 $clock_gettime"
606
607 ##########################################
608 # CLOCK_MONOTONIC probe
609 clock_monotonic="no"
610 if test "$clock_gettime" = "yes" ; then
611   cat > $TMPC << EOF
612 #include <stdio.h>
613 #include <time.h>
614 int main(int argc, char **argv)
615 {
616   return clock_gettime(CLOCK_MONOTONIC, NULL);
617 }
618 EOF
619   if compile_prog "" "$LIBS" "clock monotonic"; then
620       clock_monotonic="yes"
621   fi
622 fi
623 echo "CLOCK_MONOTONIC               $clock_monotonic"
624
625 ##########################################
626 # CLOCK_MONOTONIC_PRECISE probe
627 clock_monotonic_precise="no"
628 if test "$clock_gettime" = "yes" ; then
629   cat > $TMPC << EOF
630 #include <stdio.h>
631 #include <time.h>
632 int main(int argc, char **argv)
633 {
634   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
635 }
636 EOF
637   if compile_prog "" "$LIBS" "clock monotonic precise"; then
638       clock_monotonic_precise="yes"
639   fi
640 fi
641 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
642
643 ##########################################
644 # gettimeofday() probe
645 gettimeofday="no"
646 cat > $TMPC << EOF
647 #include <sys/time.h>
648 #include <stdio.h>
649 int main(int argc, char **argv)
650 {
651   struct timeval tv;
652   return gettimeofday(&tv, NULL);
653 }
654 EOF
655 if compile_prog "" "" "gettimeofday"; then
656     gettimeofday="yes"
657 fi
658 echo "gettimeofday                  $gettimeofday"
659
660 ##########################################
661 # fdatasync() probe
662 fdatasync="no"
663 cat > $TMPC << EOF
664 #include <stdio.h>
665 #include <unistd.h>
666 int main(int argc, char **argv)
667 {
668   return fdatasync(0);
669 }
670 EOF
671 if compile_prog "" "" "fdatasync"; then
672   fdatasync="yes"
673 fi
674 echo "fdatasync                     $fdatasync"
675
676 ##########################################
677 # sync_file_range() probe
678 sync_file_range="no"
679 cat > $TMPC << EOF
680 #include <stdio.h>
681 #include <unistd.h>
682 #include <fcntl.h>
683 #include <linux/fs.h>
684 int main(int argc, char **argv)
685 {
686   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
687                         SYNC_FILE_RANGE_WAIT_AFTER;
688   return sync_file_range(0, 0, 0, flags);
689 }
690 EOF
691 if compile_prog "" "" "sync_file_range"; then
692   sync_file_range="yes"
693 fi
694 echo "sync_file_range               $sync_file_range"
695
696 ##########################################
697 # ext4 move extent probe
698 ext4_me="no"
699 cat > $TMPC << EOF
700 #include <fcntl.h>
701 #include <sys/ioctl.h>
702 int main(int argc, char **argv)
703 {
704   struct move_extent me;
705   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
706 }
707 EOF
708 if compile_prog "" "" "ext4 move extent" ; then
709   ext4_me="yes"
710 elif test $targetos = "Linux" ; then
711   # On Linux, just default to it on and let it error at runtime if we really
712   # don't have it. None of my updated systems have it defined, but it does
713   # work. Takes a while to bubble back.
714   ext4_me="yes"
715 fi
716 echo "EXT4 move extent              $ext4_me"
717
718 ##########################################
719 # splice probe
720 linux_splice="no"
721 cat > $TMPC << EOF
722 #include <stdio.h>
723 #include <fcntl.h>
724 int main(int argc, char **argv)
725 {
726   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
727 }
728 EOF
729 if compile_prog "" "" "linux splice"; then
730   linux_splice="yes"
731 fi
732 echo "Linux splice(2)               $linux_splice"
733
734 ##########################################
735 # GUASI probe
736 guasi="no"
737 cat > $TMPC << EOF
738 #include <guasi.h>
739 #include <guasi_syscalls.h>
740 int main(int argc, char **argv)
741 {
742   guasi_t ctx = guasi_create(0, 0, 0);
743   return 0;
744 }
745 EOF
746 if compile_prog "" "" "guasi"; then
747   guasi="yes"
748 fi
749 echo "GUASI                         $guasi"
750
751 ##########################################
752 # fusion-aw probe
753 fusion_aw="no"
754 cat > $TMPC << EOF
755 #include <nvm/vectored_write.h>
756 int main(int argc, char **argv)
757 {
758   struct vsl_iovec iov;
759   return vsl_vectored_write(0, &iov, 0, O_ATOMIC);
760 }
761 EOF
762 if compile_prog "" "-L/usr/lib/fio -lnvm-primitives" "fusion-aw"; then
763   LIBS="-L/usr/lib/fio -lnvm-primitives $LIBS"
764   fusion_aw="yes"
765 fi
766 echo "Fusion-io atomic engine       $fusion_aw"
767
768 ##########################################
769 # libnuma probe
770 libnuma="no"
771 cat > $TMPC << EOF
772 #include <numa.h>
773 int main(int argc, char **argv)
774 {
775   return numa_available();
776 }
777 EOF
778 if compile_prog "" "-lnuma" "libnuma"; then
779   libnuma="yes"
780   LIBS="-lnuma $LIBS"
781 fi
782 echo "libnuma                       $libnuma"
783
784 ##########################################
785 # strsep() probe
786 strsep="no"
787 cat > $TMPC << EOF
788 #include <string.h>
789 int main(int argc, char **argv)
790 {
791   strsep(NULL, NULL);
792   return 0;
793 }
794 EOF
795 if compile_prog "" "" "strsep"; then
796   strsep="yes"
797 fi
798 echo "strsep                        $strsep"
799
800 ##########################################
801 # getopt_long_only() probe
802 getopt_long_only="no"
803 cat > $TMPC << EOF
804 #include <unistd.h>
805 #include <stdio.h>
806 int main(int argc, char **argv)
807 {
808   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
809   return c;
810 }
811 EOF
812 if compile_prog "" "" "getopt_long_only"; then
813   getopt_long_only="yes"
814 fi
815 echo "getopt_long_only()            $getopt_long_only"
816
817 ##########################################
818 # inet_aton() probe
819 inet_aton="no"
820 cat > $TMPC << EOF
821 #include <sys/socket.h>
822 #include <arpa/inet.h>
823 #include <stdio.h>
824 int main(int argc, char **argv)
825 {
826   struct in_addr in;
827   return inet_aton(NULL, &in);
828 }
829 EOF
830 if compile_prog "" "" "inet_aton"; then
831   inet_aton="yes"
832 fi
833 echo "inet_aton                     $inet_aton"
834
835 ##########################################
836 # socklen_t probe
837 socklen_t="no"
838 cat > $TMPC << EOF
839 #include <string.h>
840 #include <netinet/in.h>
841 int main(int argc, char **argv)
842 {
843   socklen_t len = 0;
844   return len;
845 }
846 EOF
847 if compile_prog "" "" "socklen_t"; then
848   socklen_t="yes"
849 fi
850 echo "socklen_t                     $socklen_t"
851
852 ##########################################
853 # Whether or not __thread is supported for TLS
854 tls_thread="no"
855 cat > $TMPC << EOF
856 #include <stdio.h>
857 static int __thread ret;
858 int main(int argc, char **argv)
859 {
860   return ret;
861 }
862 EOF
863 if compile_prog "" "" "__thread"; then
864   tls_thread="yes"
865 fi
866 echo "__thread                      $tls_thread"
867
868 ##########################################
869 # Check whether we have getrusage(RUSAGE_THREAD)
870 rusage_thread="no"
871 cat > $TMPC << EOF
872 #include <sys/time.h>
873 #include <sys/resource.h>
874 int main(int argc, char **argv)
875 {
876   struct rusage ru;
877   getrusage(RUSAGE_THREAD, &ru);
878   return 0;
879 }
880 EOF
881 if compile_prog "" "" "RUSAGE_THREAD"; then
882   rusage_thread="yes"
883 fi
884 echo "RUSAGE_THREAD                 $rusage_thread"
885
886 ##########################################
887 # Check whether we have SCHED_IDLE
888 sched_idle="no"
889 cat > $TMPC << EOF
890 #include <sched.h>
891 int main(int argc, char **argv)
892 {
893   struct sched_param p;
894   return sched_setscheduler(0, SCHED_IDLE, &p);
895 }
896 EOF
897 if compile_prog "" "" "SCHED_IDLE"; then
898   sched_idle="yes"
899 fi
900 echo "SCHED_IDLE                    $sched_idle"
901
902 ##########################################
903 # Check whether we have TCP_NODELAY
904 tcp_nodelay="no"
905 cat > $TMPC << EOF
906 #include <stdio.h>
907 #include <sys/types.h>
908 #include <sys/socket.h>
909 #include <netinet/tcp.h>
910 int main(int argc, char **argv)
911 {
912   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
913 }
914 EOF
915 if compile_prog "" "" "TCP_NODELAY"; then
916   tcp_nodelay="yes"
917 fi
918 echo "TCP_NODELAY                   $tcp_nodelay"
919
920 ##########################################
921 # Check whether we have RLIMIT_MEMLOCK
922 rlimit_memlock="no"
923 cat > $TMPC << EOF
924 #include <sys/time.h>
925 #include <sys/resource.h>
926 int main(int argc, char **argv)
927 {
928   struct rlimit rl;
929   return getrlimit(RLIMIT_MEMLOCK, &rl);
930 }
931 EOF
932 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
933   rlimit_memlock="yes"
934 fi
935 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
936
937 #############################################################################
938
939 if test "$wordsize" = "64" ; then
940   output_sym "CONFIG_64BIT"
941 elif test "$wordsize" = "32" ; then
942   output_sym "CONFIG_32BIT"
943 else
944   fatal "Unknown wordsize!"
945 fi
946 if test "$bigendian" = "yes" ; then
947   output_sym "CONFIG_BIG_ENDIAN"
948 else
949   output_sym "CONFIG_LITTLE_ENDIAN"
950 fi
951 if test "$libaio" = "yes" ; then
952   output_sym "CONFIG_LIBAIO"
953 fi
954 if test "$posix_aio" = "yes" ; then
955   output_sym "CONFIG_POSIXAIO"
956 fi
957 if test "$posix_aio_fsync" = "yes" ; then
958   output_sym "CONFIG_POSIXAIO_FSYNC"
959 fi
960 if test "$linux_fallocate" = "yes" ; then
961   output_sym "CONFIG_LINUX_FALLOCATE"
962 fi
963 if test "$posix_fallocate" = "yes" ; then
964   output_sym "CONFIG_POSIX_FALLOCATE"
965 fi
966 if test "$fdatasync" = "yes" ; then
967   output_sym "CONFIG_FDATASYNC"
968 fi
969 if test "$sync_file_range" = "yes" ; then
970   output_sym "CONFIG_SYNC_FILE_RANGE"
971 fi
972 if test "$sfaa" = "yes" ; then
973   output_sym "CONFIG_SFAA"
974 fi
975 if test "$libverbs" = "yes" -o "rdmacm" = "yes" ; then
976   output_sym "CONFIG_RDMA"
977 fi
978 if test "$clock_gettime" = "yes" ; then
979   output_sym "CONFIG_CLOCK_GETTIME"
980 fi
981 if test "$clock_monotonic" = "yes" ; then
982   output_sym "CONFIG_CLOCK_MONOTONIC"
983 fi
984 if test "$clock_monotonic_precise" = "yes" ; then
985   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
986 fi
987 if test "$gettimeofday" = "yes" ; then
988   output_sym "CONFIG_GETTIMEOFDAY"
989 fi
990 if test "$posix_fadvise" = "yes" ; then
991   output_sym "CONFIG_POSIX_FADVISE"
992 fi
993 if test "$linux_3arg_affinity" = "yes" ; then
994   output_sym "CONFIG_3ARG_AFFINITY"
995 elif test "$linux_2arg_affinity" = "yes" ; then
996   output_sym "CONFIG_2ARG_AFFINITY"
997 fi
998 if test "$strsep" = "yes" ; then
999   output_sym "CONFIG_STRSEP"
1000 fi
1001 if test "$getopt_long_only" = "yes" ; then
1002   output_sym "CONFIG_GETOPT_LONG_ONLY"
1003 fi
1004 if test "$inet_aton" = "yes" ; then
1005   output_sym "CONFIG_INET_ATON"
1006 fi
1007 if test "$socklen_t" = "yes" ; then
1008   output_sym "CONFIG_SOCKLEN_T"
1009 fi
1010 if test "$ext4_me" = "yes" ; then
1011   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
1012 fi
1013 if test "$linux_splice" = "yes" ; then
1014   output_sym "CONFIG_LINUX_SPLICE"
1015 fi
1016 if test "$guasi" = "yes" ; then
1017   output_sym "CONFIG_GUASI"
1018 fi
1019 if test "$fusion_aw" = "yes" ; then
1020   output_sym "CONFIG_FUSION_AW"
1021 fi
1022 if test "$libnuma" = "yes" ; then
1023   output_sym "CONFIG_LIBNUMA"
1024 fi
1025 if test "$solaris_aio" = "yes" ; then
1026   output_sym "CONFIG_SOLARISAIO"
1027 fi
1028 if test "$tls_thread" = "yes" ; then
1029   output_sym "CONFIG_TLS_THREAD"
1030 fi
1031 if test "$rusage_thread" = "yes" ; then
1032   output_sym "CONFIG_RUSAGE_THREAD"
1033 fi
1034 if test "$sched_idle" = "yes" ; then
1035   output_sym "CONFIG_SCHED_IDLE"
1036 fi
1037 #if test "$tcp_nodelay" = "yes" ; then
1038   #output_sym "CONFIG_TCP_NODELAY"
1039 #fi
1040 if test "$rlimit_memlock" = "yes" ; then
1041   output_sym "CONFIG_RLIMIT_MEMLOCK"
1042 fi
1043
1044 echo "LIBS+=$LIBS" >> $config_host_mak
1045 echo "CC=$cc" >> $config_host_mak
1046 echo "EXTFLAGS=$EXTFLAGS $CFLAGS" >> $config_host_mak