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