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