blob: 5dd683c673dae80a270f42b2b638ab29635e1316 [file] [log] [blame]
Jens Axboe67bf9822013-01-10 11:23:19 +01001#!/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"
Jens Axboe4feafb12013-01-24 23:07:55 -070027config_host_h="config-host.h"
28
29rm -rf $config_host_mak
30rm -rf $config_host_h
Jens Axboe67bf9822013-01-10 11:23:19 +010031
Jens Axboed7145a72013-02-11 13:21:54 +010032fatal() {
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
Jens Axboe44404c52013-01-24 14:20:09 -070040# Default CFLAGS
Jens Axboeaf4862b2013-03-29 08:55:32 -060041CFLAGS="-D_GNU_SOURCE -include config-host.h"
42BUILD_CFLAGS=""
Jens Axboe67bf9822013-01-10 11:23:19 +010043
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
Jens Axboe7560fe72013-01-25 08:52:28 -070051# 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
Jens Axboe67bf9822013-01-10 11:23:19 +010059do_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."
Jens Axboed7145a72013-02-11 13:21:54 +010081 fatal "You can run configure with --disable-werror to bypass this check."
Jens Axboe67bf9822013-01-10 11:23:19 +010082}
83
84compile_object() {
85 do_cc $CFLAGS -c -o $TMPO $TMPC
86}
87
88compile_prog() {
89 local_cflags="$1"
Jens Axboeadaa46d2013-02-28 22:10:22 +010090 local_ldflags="$2 $LIBS"
Jens Axboe67bf9822013-01-10 11:23:19 +010091 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"
Jens Axboed7145a72013-02-11 13:21:54 +0100101 fatal "ERROR"
Jens Axboe67bf9822013-01-10 11:23:19 +0100102}
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
Jens Axboe4feafb12013-01-24 23:07:55 -0700121output_sym() {
122 echo "$1=y" >> $config_host_mak
123 echo "#define $1" >> $config_host_h
124}
125
Jens Axboe67bf9822013-01-10 11:23:19 +0100126targetos=""
127cpu=""
128
Aaron Carroll53cd4ee2013-03-14 16:57:38 +1100129cross_prefix=${cross_prefix-${CROSS_COMPILE}}
Jens Axboe67bf9822013-01-10 11:23:19 +0100130cc="${CC-${cross_prefix}gcc}"
131
Jens Axboe91f94d52013-01-24 10:25:42 -0700132# default options
Jens Axboe47f44632013-01-24 10:34:14 -0700133show_help="no"
134exit_val=0
Jens Axboe135be492013-01-29 10:09:55 +0100135gfio="no"
Jens Axboe91f94d52013-01-24 10:25:42 -0700136
Jens Axboecb1125b2013-01-23 13:47:54 -0700137# parse options
138for opt do
139 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
140 case "$opt" in
Jens Axboe8b156d82013-02-10 15:48:34 +0100141 --cpu=*) cpu="$optarg"
142 ;;
Jens Axboecb1125b2013-01-23 13:47:54 -0700143 --cc=*) CC="$optarg"
144 ;;
Jens Axboe208e4c82013-01-29 09:26:07 +0100145 --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
Jens Axboecb1125b2013-01-23 13:47:54 -0700146 ;;
Huadong Liu74097112013-02-05 08:43:14 +0100147 --build-32bit-win=*) build_32bit_win="$optarg"
148 ;;
Jens Axboe91f94d52013-01-24 10:25:42 -0700149 --enable-gfio)
Jens Axboe9db01ef2013-02-07 15:45:39 +0100150 gfio="yes"
Jens Axboe899fab32013-01-29 10:06:30 +0100151 ;;
Jens Axboe827da4f2013-01-24 10:27:26 -0700152 --help)
Jens Axboe47f44632013-01-24 10:34:14 -0700153 show_help="yes"
Jens Axboe827da4f2013-01-24 10:27:26 -0700154 ;;
Jens Axboecb1125b2013-01-23 13:47:54 -0700155 *)
156 echo "Bad option $opt"
Jens Axboe47f44632013-01-24 10:34:14 -0700157 show_help="yes"
158 exit_val=1
Jens Axboecb1125b2013-01-23 13:47:54 -0700159 esac
160done
161
Jens Axboe47f44632013-01-24 10:34:14 -0700162if test "$show_help" = "yes" ; then
Jens Axboe8b156d82013-02-10 15:48:34 +0100163 echo "--cpu= Specify target CPU if auto-detect fails"
Jens Axboeb7a99312013-02-04 12:46:54 +0100164 echo "--cc= Specify compiler to use"
Jens Axboe899fab32013-01-29 10:06:30 +0100165 echo "--extra-cflags= Specify extra CFLAGS to pass to compiler"
Bruce Cran723d7b32013-02-05 17:44:19 +0000166 echo "--build-32bit-win= Specify yes for a 32-bit build on Windows"
Jens Axboeb7a99312013-02-04 12:46:54 +0100167 echo "--enable-gfio Enable building of gtk gfio"
168 exit $exit_val
Jens Axboe47f44632013-01-24 10:34:14 -0700169fi
170
Aaron Carroll6d0e9f82013-02-12 09:58:14 +0100171if check_define __ANDROID__ ; then
172 targetos="Android"
173elif check_define __linux__ ; then
Jens Axboe67bf9822013-01-10 11:23:19 +0100174 targetos="Linux"
Jens Axboe67bf9822013-01-10 11:23:19 +0100175elif check_define __OpenBSD__ ; then
176 targetos='OpenBSD'
177elif check_define __sun__ ; then
178 targetos='SunOS'
179else
180 targetos=`uname -s`
181fi
182
Aaron Carroll53cd4ee2013-03-14 16:57:38 +1100183echo "# Automatically generated by configure - do not modify" > $config_host_mak
184printf "# Configured with:" >> $config_host_mak
185printf " '%s'" "$0" "$@" >> $config_host_mak
186echo >> $config_host_mak
187echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
188
Jens Axboe67bf9822013-01-10 11:23:19 +0100189# Some host OSes need non-standard checks for which CPU to use.
190# Note that these checks are broken for cross-compilation: if you're
191# cross-compiling to one of these OSes then you'll need to specify
192# the correct CPU with the --cpu option.
193case $targetos in
194Darwin)
195 # on Leopard most of the system is 32-bit, so we have to ask the kernel if
196 # we can run 64-bit userspace code.
197 # If the user didn't specify a CPU explicitly and the kernel says this is
198 # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
199 # detection code.
200 if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
201 cpu="x86_64"
202 fi
203 ;;
204SunOS)
205 # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
206 if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
207 cpu="x86_64"
208 fi
Jens Axboeadaa46d2013-02-28 22:10:22 +0100209 LIBS="-lnsl -lsocket"
Jens Axboecfd94f72013-01-23 16:23:48 -0700210 ;;
211CYGWIN*)
212 echo "Forcing known good options on Windows"
Jens Axboe4578d012013-01-23 16:26:12 -0700213 if test -z "$CC" ; then
Huadong Liu74097112013-02-05 08:43:14 +0100214 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
215 CC="i686-w64-mingw32-gcc"
216 else
217 CC="x86_64-w64-mingw32-gcc"
218 fi
Jens Axboe4578d012013-01-23 16:26:12 -0700219 fi
Jens Axboe4feafb12013-01-24 23:07:55 -0700220 output_sym "CONFIG_LITTLE_ENDIAN"
Huadong Liu74097112013-02-05 08:43:14 +0100221 if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
222 output_sym "CONFIG_32BIT"
223 else
224 output_sym "CONFIG_64BIT_LLP64"
225 fi
Jens Axboe4feafb12013-01-24 23:07:55 -0700226 output_sym "CONFIG_FADVISE"
227 output_sym "CONFIG_SOCKLEN_T"
Jens Axboe4feafb12013-01-24 23:07:55 -0700228 output_sym "CONFIG_FADVISE"
229 output_sym "CONFIG_SFAA"
230 output_sym "CONFIG_RUSAGE_THREAD"
231 output_sym "CONFIG_WINDOWSAIO"
232 output_sym "CONFIG_FDATASYNC"
Bruce Cran59308a62013-02-02 20:59:31 +0000233 output_sym "CONFIG_CLOCK_MONOTONIC"
Bruce Crandc0518c2013-01-28 16:07:15 +0000234 output_sym "CONFIG_GETTIMEOFDAY"
235 output_sym "CONFIG_CLOCK_GETTIME"
Jens Axboe7e09a9f2013-01-30 13:58:58 +0100236 output_sym "CONFIG_SCHED_IDLE"
Jens Axboe1eafa372013-01-31 10:19:51 +0100237 output_sym "CONFIG_TCP_NODELAY"
Jens Axboe4feafb12013-01-24 23:07:55 -0700238 echo "CC=$CC" >> $config_host_mak
Jens Axboeaf4862b2013-03-29 08:55:32 -0600239 echo "BUILD_CFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
Jens Axboecfd94f72013-01-23 16:23:48 -0700240 exit 0
Aaron Carroll6d0e9f82013-02-12 09:58:14 +0100241 ;;
Jens Axboe67bf9822013-01-10 11:23:19 +0100242esac
243
244if test ! -z "$cpu" ; then
245 # command line argument
246 :
247elif check_define __i386__ ; then
248 cpu="i386"
249elif check_define __x86_64__ ; then
250 cpu="x86_64"
251elif check_define __sparc__ ; then
252 if check_define __arch64__ ; then
253 cpu="sparc64"
254 else
255 cpu="sparc"
256 fi
257elif check_define _ARCH_PPC ; then
258 if check_define _ARCH_PPC64 ; then
259 cpu="ppc64"
260 else
261 cpu="ppc"
262 fi
263elif check_define __mips__ ; then
264 cpu="mips"
265elif check_define __ia64__ ; then
266 cpu="ia64"
267elif check_define __s390__ ; then
268 if check_define __s390x__ ; then
269 cpu="s390x"
270 else
271 cpu="s390"
272 fi
273elif check_define __arm__ ; then
274 cpu="arm"
275elif check_define __hppa__ ; then
276 cpu="hppa"
277else
278 cpu=`uname -m`
279fi
280
281# Normalise host CPU name and set ARCH.
282case "$cpu" in
283 ia64|ppc|ppc64|s390|s390x|sparc64)
284 cpu="$cpu"
285 ;;
286 i386|i486|i586|i686|i86pc|BePC)
287 cpu="i386"
288 ;;
289 x86_64|amd64)
290 cpu="x86_64"
291 ;;
292 armv*b|armv*l|arm)
293 cpu="arm"
294 ;;
295 hppa|parisc|parisc64)
296 cpu="hppa"
297 ;;
298 mips*)
299 cpu="mips"
300 ;;
301 sparc|sun4[cdmuv])
302 cpu="sparc"
303 ;;
304 *)
Jens Axboe8b156d82013-02-10 15:48:34 +0100305 echo "Unknown CPU"
Jens Axboe67bf9822013-01-10 11:23:19 +0100306 ;;
307esac
308
Jens Axboedcbbf5b2013-01-25 14:35:27 -0700309if test -z "$CC" ; then
Jens Axboe67bf9822013-01-10 11:23:19 +0100310 if test "$targetos" = "FreeBSD"; then
311 if has clang; then
312 CC=clang
313 else
314 CC=gcc
315 fi
Jens Axboe67bf9822013-01-10 11:23:19 +0100316 fi
317fi
318
319cc="${CC-${cross_prefix}gcc}"
320
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700321##########################################
Aaron Carroll1a17cfd2013-03-14 16:57:40 +1100322# check cross compile
323
324cross_compile="no"
325cat > $TMPC <<EOF
326int main(void)
327{
328 return 0;
329}
330EOF
331if compile_prog "" "" "cross"; then
332 $TMPE 2>/dev/null || cross_compile="yes"
333else
334 fatal "compile test failed"
335fi
336
337##########################################
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700338# check endianness
339bigendian="no"
Aaron Carroll1a17cfd2013-03-14 16:57:40 +1100340if test "$cross_compile" = "no" ; then
341 cat > $TMPC <<EOF
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700342#include <inttypes.h>
343int main(void)
344{
345 volatile uint32_t i=0x01234567;
346 return (*((uint8_t*)(&i))) == 0x67;
347}
348EOF
Aaron Carroll1a17cfd2013-03-14 16:57:40 +1100349 if compile_prog "" "" "endian"; then
350 $TMPE && bigendian="yes"
351 fi
352else
353 # If we're cross compiling, try our best to work it out and rely on the
354 # run-time check to fail if we get it wrong.
355 cat > $TMPC <<EOF
356#include <endian.h>
357int main(void)
358{
359#if __BYTE_ORDER != __BIG_ENDIAN
360# error "Unknown endianness"
361#endif
362}
363EOF
364 compile_prog "" "" "endian" && bigendian="yes"
365 check_define "__ARMEB__" && bigendian="yes"
366 check_define "__MIPSEB__" && bigendian="yes"
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700367fi
368
369
Jens Axboe67bf9822013-01-10 11:23:19 +0100370echo "Operating system $targetos"
371echo "CPU $cpu"
Jens Axboe0dcebdf2013-01-23 15:42:16 -0700372echo "Big endian $bigendian"
Jens Axboe67bf9822013-01-10 11:23:19 +0100373echo "Compiler $cc"
Aaron Carroll1a17cfd2013-03-14 16:57:40 +1100374echo "Cross compile $cross_compile"
Jens Axboe67bf9822013-01-10 11:23:19 +0100375echo
376
377##########################################
378# check for wordsize
379wordsize="0"
380cat > $TMPC <<EOF
Aaron Carroll142429e2013-03-14 16:57:39 +1100381#include <limits.h>
382#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
Jens Axboe67bf9822013-01-10 11:23:19 +0100383int main(void)
384{
Aaron Carroll142429e2013-03-14 16:57:39 +1100385 BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
Jens Axboe67bf9822013-01-10 11:23:19 +0100386 return 0;
387}
388EOF
Aaron Carroll142429e2013-03-14 16:57:39 +1100389if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
390 wordsize="32"
391elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
392 wordsize="64"
393else
394 fatal "Unknown wordsize"
Jens Axboe67bf9822013-01-10 11:23:19 +0100395fi
396echo "Wordsize $wordsize"
397
398##########################################
399# linux-aio probe
400libaio="no"
401cat > $TMPC <<EOF
402#include <libaio.h>
403#include <stddef.h>
404int main(void)
405{
406 io_setup(0, NULL);
407 return 0;
408}
409EOF
410if compile_prog "" "-laio" "libaio" ; then
411 libaio=yes
412 LIBS="-laio $LIBS"
413else
414 if test "$libaio" = "yes" ; then
415 feature_not_found "linux AIO"
416 fi
417 libaio=no
418fi
419echo "Linux AIO support $libaio"
420
421##########################################
422# posix aio probe
423posix_aio="no"
424posix_aio_lrt="no"
425cat > $TMPC <<EOF
426#include <aio.h>
427int main(void)
428{
429 struct aiocb cb;
430 aio_read(&cb);
431 return 0;
432}
433EOF
434if compile_prog "" "" "posixaio" ; then
435 posix_aio="yes"
436elif compile_prog "" "-lrt" "posixaio"; then
437 posix_aio="yes"
438 posix_aio_lrt="yes"
439 LIBS="-lrt $LIBS"
440fi
441echo "POSIX AIO support $posix_aio"
442echo "POSIX AIO support needs -lrt $posix_aio_lrt"
443
444##########################################
445# posix aio fsync probe
446posix_aio_fsync="no"
447if test "$posix_aio" = "yes" ; then
448 cat > $TMPC <<EOF
449#include <fcntl.h>
450#include <aio.h>
451int main(void)
452{
453 struct aiocb cb;
454 return aio_fsync(O_SYNC, &cb);
455 return 0;
456}
457EOF
458 if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
459 posix_aio_fsync=yes
460 fi
461fi
462echo "POSIX AIO fsync $posix_aio_fsync"
463
464##########################################
465# solaris aio probe
466solaris_aio="no"
467cat > $TMPC <<EOF
468#include <sys/types.h>
469#include <sys/asynch.h>
470#include <unistd.h>
471int main(void)
472{
473 aio_result_t res;
474 return aioread(0, NULL, 0, 0, SEEK_SET, &res);
475 return 0;
476}
477EOF
478if compile_prog "" "-laio" "solarisaio" ; then
479 solaris_aio=yes
480 LIBS="-laio $LIBS"
481fi
482echo "Solaris AIO support $solaris_aio"
483
484##########################################
485# __sync_fetch_and_and test
486sfaa="no"
487cat > $TMPC << EOF
488static int sfaa(int *ptr)
489{
Jens Axboe9c639a72013-02-28 22:13:29 +0100490 return __sync_fetch_and_add(ptr, 0);
Jens Axboe67bf9822013-01-10 11:23:19 +0100491}
492
493int main(int argc, char **argv)
494{
495 int val = 42;
496 sfaa(&val);
497 return val;
498}
499EOF
500if compile_prog "" "" "__sync_fetch_and_add()" ; then
501 sfaa="yes"
502fi
Jens Axboe9c639a72013-02-28 22:13:29 +0100503echo "__sync_fetch_and_add $sfaa"
Jens Axboe67bf9822013-01-10 11:23:19 +0100504
505##########################################
506# libverbs probe
507libverbs="no"
508cat > $TMPC << EOF
509#include <stdio.h>
510#include <infiniband/arch.h>
511int main(int argc, char **argv)
512{
513 struct ibv_pd *pd = ibv_alloc_pd(NULL);
514 return 0;
515}
516EOF
517if compile_prog "" "-libverbs" "libverbs" ; then
518 libverbs="yes"
519 LIBS="-libverbs $LIBS"
520fi
521echo "libverbs $libverbs"
522
523##########################################
524# rdmacm probe
525rdmacm="no"
526cat > $TMPC << EOF
527#include <stdio.h>
528#include <rdma/rdma_cma.h>
529int main(int argc, char **argv)
530{
531 rdma_destroy_qp(NULL);
532 return 0;
533}
534EOF
535if compile_prog "" "-lrdmacm" "rdma"; then
536 rdmacm="yes"
537 LIBS="-lrdmacm $LIBS"
538fi
539echo "rdmacm $rdmacm"
540
541##########################################
542# Linux fallocate probe
543linux_fallocate="no"
544cat > $TMPC << EOF
545#include <stdio.h>
546#include <linux/falloc.h>
547int main(int argc, char **argv)
548{
549 int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
550 return r;
551}
552EOF
553if compile_prog "" "" "linux_fallocate"; then
554 linux_fallocate="yes"
555fi
556echo "Linux fallocate $linux_fallocate"
557
558##########################################
559# POSIX fadvise probe
560posix_fadvise="no"
561cat > $TMPC << EOF
562#include <stdio.h>
563#include <fcntl.h>
564int main(int argc, char **argv)
565{
566 int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
567 return r;
568}
569EOF
570if compile_prog "" "" "posix_fadvise"; then
571 posix_fadvise="yes"
572fi
573echo "POSIX fadvise $posix_fadvise"
574
575##########################################
576# POSIX fallocate probe
577posix_fallocate="no"
578cat > $TMPC << EOF
579#include <stdio.h>
580#include <fcntl.h>
581int main(int argc, char **argv)
582{
583 int r = posix_fallocate(0, 0, 1024);
584 return r;
585}
586EOF
587if compile_prog "" "" "posix_fallocate"; then
588 posix_fallocate="yes"
589fi
590echo "POSIX fallocate $posix_fallocate"
591
592##########################################
593# sched_set/getaffinity 2 or 3 argument test
594linux_2arg_affinity="no"
595linux_3arg_affinity="no"
596cat > $TMPC << EOF
Jens Axboe67bf9822013-01-10 11:23:19 +0100597#include <sched.h>
598int main(int argc, char **argv)
599{
600 cpu_set_t mask;
601 return sched_setaffinity(0, sizeof(mask), &mask);
602}
603EOF
604if compile_prog "" "" "sched_setaffinity(,,)"; then
605 linux_3arg_affinity="yes"
606else
607 cat > $TMPC << EOF
Jens Axboe67bf9822013-01-10 11:23:19 +0100608#include <sched.h>
609int main(int argc, char **argv)
610{
611 cpu_set_t mask;
612 return sched_setaffinity(0, &mask);
613}
614EOF
615 if compile_prog "" "" "sched_setaffinity(,)"; then
616 linux_2arg_affinity="yes"
617 fi
618fi
619echo "sched_setaffinity(3 arg) $linux_3arg_affinity"
620echo "sched_setaffinity(2 arg) $linux_2arg_affinity"
621
622##########################################
623# clock_gettime probe
624clock_gettime="no"
625cat > $TMPC << EOF
626#include <stdio.h>
627#include <time.h>
628int main(int argc, char **argv)
629{
630 return clock_gettime(0, NULL);
631}
632EOF
633if compile_prog "" "" "clock_gettime"; then
634 clock_gettime="yes"
635elif compile_prog "" "-lrt" "clock_gettime"; then
636 clock_gettime="yes"
637 LIBS="-lrt $LIBS"
638fi
639echo "clock_gettime $clock_gettime"
640
641##########################################
642# CLOCK_MONOTONIC probe
643clock_monotonic="no"
644if test "$clock_gettime" = "yes" ; then
645 cat > $TMPC << EOF
646#include <stdio.h>
647#include <time.h>
648int main(int argc, char **argv)
649{
650 return clock_gettime(CLOCK_MONOTONIC, NULL);
651}
652EOF
653 if compile_prog "" "$LIBS" "clock monotonic"; then
654 clock_monotonic="yes"
655 fi
656fi
657echo "CLOCK_MONOTONIC $clock_monotonic"
658
659##########################################
660# CLOCK_MONOTONIC_PRECISE probe
661clock_monotonic_precise="no"
662if test "$clock_gettime" = "yes" ; then
663 cat > $TMPC << EOF
664#include <stdio.h>
665#include <time.h>
666int main(int argc, char **argv)
667{
668 return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
669}
670EOF
671 if compile_prog "" "$LIBS" "clock monotonic precise"; then
672 clock_monotonic_precise="yes"
673 fi
674fi
675echo "CLOCK_MONOTONIC_PRECISE $clock_monotonic_precise"
676
677##########################################
678# gettimeofday() probe
679gettimeofday="no"
680cat > $TMPC << EOF
681#include <sys/time.h>
682#include <stdio.h>
683int main(int argc, char **argv)
684{
685 struct timeval tv;
686 return gettimeofday(&tv, NULL);
687}
688EOF
689if compile_prog "" "" "gettimeofday"; then
690 gettimeofday="yes"
691fi
692echo "gettimeofday $gettimeofday"
693
694##########################################
695# fdatasync() probe
696fdatasync="no"
697cat > $TMPC << EOF
698#include <stdio.h>
699#include <unistd.h>
700int main(int argc, char **argv)
701{
702 return fdatasync(0);
703}
704EOF
705if compile_prog "" "" "fdatasync"; then
706 fdatasync="yes"
707fi
708echo "fdatasync $fdatasync"
709
710##########################################
711# sync_file_range() probe
712sync_file_range="no"
713cat > $TMPC << EOF
714#include <stdio.h>
715#include <unistd.h>
Jens Axboe67bf9822013-01-10 11:23:19 +0100716#include <fcntl.h>
717#include <linux/fs.h>
718int main(int argc, char **argv)
719{
720 unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
721 SYNC_FILE_RANGE_WAIT_AFTER;
722 return sync_file_range(0, 0, 0, flags);
723}
724EOF
725if compile_prog "" "" "sync_file_range"; then
726 sync_file_range="yes"
727fi
728echo "sync_file_range $sync_file_range"
729
730##########################################
731# ext4 move extent probe
732ext4_me="no"
733cat > $TMPC << EOF
734#include <fcntl.h>
735#include <sys/ioctl.h>
736int main(int argc, char **argv)
737{
738 struct move_extent me;
739 return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
740}
741EOF
Jens Axboec7165b82013-01-12 10:27:53 +0100742if compile_prog "" "" "ext4 move extent" ; then
743 ext4_me="yes"
744elif test $targetos = "Linux" ; then
745 # On Linux, just default to it on and let it error at runtime if we really
746 # don't have it. None of my updated systems have it defined, but it does
747 # work. Takes a while to bubble back.
Jens Axboe67bf9822013-01-10 11:23:19 +0100748 ext4_me="yes"
749fi
750echo "EXT4 move extent $ext4_me"
751
752##########################################
753# splice probe
754linux_splice="no"
755cat > $TMPC << EOF
Jens Axboe67bf9822013-01-10 11:23:19 +0100756#include <stdio.h>
757#include <fcntl.h>
758int main(int argc, char **argv)
759{
760 return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
761}
762EOF
763if compile_prog "" "" "linux splice"; then
764 linux_splice="yes"
765fi
766echo "Linux splice(2) $linux_splice"
767
768##########################################
769# GUASI probe
770guasi="no"
771cat > $TMPC << EOF
772#include <guasi.h>
773#include <guasi_syscalls.h>
774int main(int argc, char **argv)
775{
776 guasi_t ctx = guasi_create(0, 0, 0);
777 return 0;
778}
779EOF
780if compile_prog "" "" "guasi"; then
781 guasi="yes"
782fi
783echo "GUASI $guasi"
784
785##########################################
786# fusion-aw probe
787fusion_aw="no"
788cat > $TMPC << EOF
Jens Axboe99db6562013-01-14 19:33:40 +0100789#include <nvm/vectored_write.h>
Jens Axboe67bf9822013-01-10 11:23:19 +0100790int main(int argc, char **argv)
791{
792 struct vsl_iovec iov;
793 return vsl_vectored_write(0, &iov, 0, O_ATOMIC);
794}
795EOF
Jens Axboe99db6562013-01-14 19:33:40 +0100796if compile_prog "" "-L/usr/lib/fio -lnvm-primitives" "fusion-aw"; then
797 LIBS="-L/usr/lib/fio -lnvm-primitives $LIBS"
Jens Axboe67bf9822013-01-10 11:23:19 +0100798 fusion_aw="yes"
799fi
800echo "Fusion-io atomic engine $fusion_aw"
801
802##########################################
803# libnuma probe
804libnuma="no"
805cat > $TMPC << EOF
806#include <numa.h>
807int main(int argc, char **argv)
808{
809 return numa_available();
810}
811EOF
812if compile_prog "" "-lnuma" "libnuma"; then
813 libnuma="yes"
814 LIBS="-lnuma $LIBS"
815fi
816echo "libnuma $libnuma"
817
818##########################################
Jens Axboe50206d92013-03-25 13:20:08 -0600819# libnuma 2.x version API
820if test "$libnuma" = "yes" ; then
821libnuma_v2="no"
822cat > $TMPC << EOF
823#include <numa.h>
824int main(int argc, char **argv)
825{
826 struct bitmask *mask = numa_parse_nodestring(NULL);
827 return 0;
828}
829EOF
830if compile_prog "" "" "libnuma api"; then
831 libnuma_v2="yes"
832fi
833echo "libnuma v2 $libnuma_v2"
834fi
835
836##########################################
Jens Axboe67bf9822013-01-10 11:23:19 +0100837# strsep() probe
838strsep="no"
839cat > $TMPC << EOF
840#include <string.h>
841int main(int argc, char **argv)
842{
843 strsep(NULL, NULL);
844 return 0;
845}
846EOF
847if compile_prog "" "" "strsep"; then
848 strsep="yes"
849fi
850echo "strsep $strsep"
851
852##########################################
853# getopt_long_only() probe
854getopt_long_only="no"
855cat > $TMPC << EOF
856#include <unistd.h>
857#include <stdio.h>
858int main(int argc, char **argv)
859{
860 int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
861 return c;
862}
863EOF
864if compile_prog "" "" "getopt_long_only"; then
865 getopt_long_only="yes"
866fi
867echo "getopt_long_only() $getopt_long_only"
868
869##########################################
870# inet_aton() probe
871inet_aton="no"
872cat > $TMPC << EOF
873#include <sys/socket.h>
874#include <arpa/inet.h>
875#include <stdio.h>
876int main(int argc, char **argv)
877{
878 struct in_addr in;
879 return inet_aton(NULL, &in);
880}
881EOF
882if compile_prog "" "" "inet_aton"; then
883 inet_aton="yes"
884fi
885echo "inet_aton $inet_aton"
886
887##########################################
888# socklen_t probe
889socklen_t="no"
890cat > $TMPC << EOF
Aaron Carrollf6482612013-03-14 16:57:41 +1100891#include <sys/socket.h>
Jens Axboe67bf9822013-01-10 11:23:19 +0100892int main(int argc, char **argv)
893{
894 socklen_t len = 0;
895 return len;
896}
897EOF
898if compile_prog "" "" "socklen_t"; then
899 socklen_t="yes"
900fi
901echo "socklen_t $socklen_t"
902
903##########################################
904# Whether or not __thread is supported for TLS
905tls_thread="no"
906cat > $TMPC << EOF
907#include <stdio.h>
908static int __thread ret;
909int main(int argc, char **argv)
910{
911 return ret;
912}
913EOF
914if compile_prog "" "" "__thread"; then
915 tls_thread="yes"
916fi
917echo "__thread $tls_thread"
918
Jens Axboe91f94d52013-01-24 10:25:42 -0700919##########################################
920# Whether or not __thread is supported for TLS
921if test "$gfio" = "yes" ; then
922 cat > $TMPC << EOF
923#include <glib.h>
924#include <cairo.h>
925#include <gtk/gtk.h>
926int main(void)
927{
928 gdk_threads_enter();
Jens Axboe91f94d52013-01-24 10:25:42 -0700929 gdk_threads_leave();
Jens Axboeb7a99312013-02-04 12:46:54 +0100930
931 printf("%d", GTK_CHECK_VERSION(2, 18, 0));
Jens Axboe91f94d52013-01-24 10:25:42 -0700932}
933EOF
934GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
935if test "$?" != "0" ; then
936 echo "configure: gtk and gthread not found"
937 exit 1
938fi
939GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
940if test "$?" != "0" ; then
941 echo "configure: gtk and gthread not found"
942 exit 1
943fi
Jens Axboeb7a99312013-02-04 12:46:54 +0100944if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
945 r=$($TMPE)
946 if test "$r" != "0" ; then
947 gfio="yes"
948 LIBS="$LIBS $GTK_LIBS"
949 CFLAGS="$CFLAGS $GTK_CFLAGS"
950 else
951 echo "GTK found, but need version 2.18 or higher"
952 gfio="no"
953 fi
Jens Axboe91f94d52013-01-24 10:25:42 -0700954else
955 echo "Please install gtk and gdk libraries"
956 gfio="no"
957fi
958fi
959
960echo "gfio $gfio"
961
Jens Axboe44404c52013-01-24 14:20:09 -0700962# Check whether we have getrusage(RUSAGE_THREAD)
963rusage_thread="no"
964cat > $TMPC << EOF
965#include <sys/time.h>
966#include <sys/resource.h>
967int main(int argc, char **argv)
968{
969 struct rusage ru;
970 getrusage(RUSAGE_THREAD, &ru);
971 return 0;
972}
973EOF
974if compile_prog "" "" "RUSAGE_THREAD"; then
975 rusage_thread="yes"
976fi
977echo "RUSAGE_THREAD $rusage_thread"
978
Jens Axboe7e09a9f2013-01-30 13:58:58 +0100979##########################################
980# Check whether we have SCHED_IDLE
981sched_idle="no"
982cat > $TMPC << EOF
983#include <sched.h>
984int main(int argc, char **argv)
985{
986 struct sched_param p;
987 return sched_setscheduler(0, SCHED_IDLE, &p);
988}
989EOF
990if compile_prog "" "" "SCHED_IDLE"; then
991 sched_idle="yes"
992fi
993echo "SCHED_IDLE $sched_idle"
994
Jens Axboe1eafa372013-01-31 10:19:51 +0100995##########################################
996# Check whether we have TCP_NODELAY
997tcp_nodelay="no"
998cat > $TMPC << EOF
999#include <stdio.h>
1000#include <sys/types.h>
1001#include <sys/socket.h>
1002#include <netinet/tcp.h>
1003int main(int argc, char **argv)
1004{
1005 return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1006}
1007EOF
1008if compile_prog "" "" "TCP_NODELAY"; then
1009 tcp_nodelay="yes"
1010fi
1011echo "TCP_NODELAY $tcp_nodelay"
1012
Jens Axboe38b93542013-02-28 08:28:05 +01001013##########################################
1014# Check whether we have RLIMIT_MEMLOCK
1015rlimit_memlock="no"
1016cat > $TMPC << EOF
1017#include <sys/time.h>
1018#include <sys/resource.h>
1019int main(int argc, char **argv)
1020{
1021 struct rlimit rl;
1022 return getrlimit(RLIMIT_MEMLOCK, &rl);
1023}
1024EOF
1025if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1026 rlimit_memlock="yes"
1027fi
1028echo "RLIMIT_MEMLOCK $rlimit_memlock"
1029
Jens Axboe67bf9822013-01-10 11:23:19 +01001030#############################################################################
1031
Jens Axboe67bf9822013-01-10 11:23:19 +01001032if test "$wordsize" = "64" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001033 output_sym "CONFIG_64BIT"
Jens Axboe67bf9822013-01-10 11:23:19 +01001034elif test "$wordsize" = "32" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001035 output_sym "CONFIG_32BIT"
Jens Axboe67bf9822013-01-10 11:23:19 +01001036else
Jens Axboed7145a72013-02-11 13:21:54 +01001037 fatal "Unknown wordsize!"
Jens Axboe67bf9822013-01-10 11:23:19 +01001038fi
Jens Axboe0dcebdf2013-01-23 15:42:16 -07001039if test "$bigendian" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001040 output_sym "CONFIG_BIG_ENDIAN"
Jens Axboe0dcebdf2013-01-23 15:42:16 -07001041else
Jens Axboe4feafb12013-01-24 23:07:55 -07001042 output_sym "CONFIG_LITTLE_ENDIAN"
Jens Axboe0dcebdf2013-01-23 15:42:16 -07001043fi
Jens Axboe67bf9822013-01-10 11:23:19 +01001044if test "$libaio" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001045 output_sym "CONFIG_LIBAIO"
Jens Axboe67bf9822013-01-10 11:23:19 +01001046fi
1047if test "$posix_aio" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001048 output_sym "CONFIG_POSIXAIO"
Jens Axboe67bf9822013-01-10 11:23:19 +01001049fi
1050if test "$posix_aio_fsync" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001051 output_sym "CONFIG_POSIXAIO_FSYNC"
Jens Axboe67bf9822013-01-10 11:23:19 +01001052fi
1053if test "$linux_fallocate" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001054 output_sym "CONFIG_LINUX_FALLOCATE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001055fi
1056if test "$posix_fallocate" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001057 output_sym "CONFIG_POSIX_FALLOCATE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001058fi
1059if test "$fdatasync" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001060 output_sym "CONFIG_FDATASYNC"
Jens Axboe67bf9822013-01-10 11:23:19 +01001061fi
1062if test "$sync_file_range" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001063 output_sym "CONFIG_SYNC_FILE_RANGE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001064fi
1065if test "$sfaa" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001066 output_sym "CONFIG_SFAA"
Jens Axboe67bf9822013-01-10 11:23:19 +01001067fi
Jens Axboed9d9db02013-03-28 12:52:17 -06001068if test "$libverbs" = "yes" -a "rdmacm" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001069 output_sym "CONFIG_RDMA"
Jens Axboe67bf9822013-01-10 11:23:19 +01001070fi
1071if test "$clock_gettime" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001072 output_sym "CONFIG_CLOCK_GETTIME"
Jens Axboe67bf9822013-01-10 11:23:19 +01001073fi
1074if test "$clock_monotonic" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001075 output_sym "CONFIG_CLOCK_MONOTONIC"
Jens Axboe67bf9822013-01-10 11:23:19 +01001076fi
1077if test "$clock_monotonic_precise" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001078 output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001079fi
1080if test "$gettimeofday" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001081 output_sym "CONFIG_GETTIMEOFDAY"
Jens Axboe67bf9822013-01-10 11:23:19 +01001082fi
1083if test "$posix_fadvise" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001084 output_sym "CONFIG_POSIX_FADVISE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001085fi
1086if test "$linux_3arg_affinity" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001087 output_sym "CONFIG_3ARG_AFFINITY"
Jens Axboe67bf9822013-01-10 11:23:19 +01001088elif test "$linux_2arg_affinity" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001089 output_sym "CONFIG_2ARG_AFFINITY"
Jens Axboe67bf9822013-01-10 11:23:19 +01001090fi
1091if test "$strsep" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001092 output_sym "CONFIG_STRSEP"
Jens Axboe67bf9822013-01-10 11:23:19 +01001093fi
1094if test "$getopt_long_only" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001095 output_sym "CONFIG_GETOPT_LONG_ONLY"
Jens Axboe67bf9822013-01-10 11:23:19 +01001096fi
1097if test "$inet_aton" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001098 output_sym "CONFIG_INET_ATON"
Jens Axboe67bf9822013-01-10 11:23:19 +01001099fi
1100if test "$socklen_t" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001101 output_sym "CONFIG_SOCKLEN_T"
Jens Axboe67bf9822013-01-10 11:23:19 +01001102fi
1103if test "$ext4_me" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001104 output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
Jens Axboe67bf9822013-01-10 11:23:19 +01001105fi
1106if test "$linux_splice" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001107 output_sym "CONFIG_LINUX_SPLICE"
Jens Axboe67bf9822013-01-10 11:23:19 +01001108fi
1109if test "$guasi" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001110 output_sym "CONFIG_GUASI"
Jens Axboe67bf9822013-01-10 11:23:19 +01001111fi
1112if test "$fusion_aw" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001113 output_sym "CONFIG_FUSION_AW"
Jens Axboe67bf9822013-01-10 11:23:19 +01001114fi
Jens Axboe50206d92013-03-25 13:20:08 -06001115if test "$libnuma_v2" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001116 output_sym "CONFIG_LIBNUMA"
Jens Axboe67bf9822013-01-10 11:23:19 +01001117fi
1118if test "$solaris_aio" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001119 output_sym "CONFIG_SOLARISAIO"
Jens Axboe67bf9822013-01-10 11:23:19 +01001120fi
1121if test "$tls_thread" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001122 output_sym "CONFIG_TLS_THREAD"
Jens Axboe67bf9822013-01-10 11:23:19 +01001123fi
Jens Axboe44404c52013-01-24 14:20:09 -07001124if test "$rusage_thread" = "yes" ; then
Jens Axboe4feafb12013-01-24 23:07:55 -07001125 output_sym "CONFIG_RUSAGE_THREAD"
Jens Axboe67bf9822013-01-10 11:23:19 +01001126fi
Jens Axboe91f94d52013-01-24 10:25:42 -07001127if test "$gfio" = "yes" ; then
1128 echo "CONFIG_GFIO=y" >> $config_host_mak
1129fi
Jens Axboe7e09a9f2013-01-30 13:58:58 +01001130if test "$sched_idle" = "yes" ; then
1131 output_sym "CONFIG_SCHED_IDLE"
1132fi
Jens Axboe1eafa372013-01-31 10:19:51 +01001133if test "$tcp_nodelay" = "yes" ; then
1134 output_sym "CONFIG_TCP_NODELAY"
1135fi
Jens Axboe38b93542013-02-28 08:28:05 +01001136if test "$rlimit_memlock" = "yes" ; then
1137 output_sym "CONFIG_RLIMIT_MEMLOCK"
1138fi
Jens Axboe67bf9822013-01-10 11:23:19 +01001139
1140echo "LIBS+=$LIBS" >> $config_host_mak
Jens Axboe91f94d52013-01-24 10:25:42 -07001141echo "CFLAGS+=$CFLAGS" >> $config_host_mak
Jens Axboe67bf9822013-01-10 11:23:19 +01001142echo "CC=$cc" >> $config_host_mak
Jens Axboeaf4862b2013-03-29 08:55:32 -06001143echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak