]> git.proxmox.com Git - qemu.git/blame - configure
test cc with the complete set of chosen flags
[qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d
FB
4#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
3ef693a0
FB
14TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
a91b857c 16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
7d13299d 17
0ba8681e
LM
18# NB: do not call "exit" in the trap handler; this is buggy with some shells;
19# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
20trap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
da1d85e3 21rm -f config.log
9ac81bbb 22
52166aa0 23compile_object() {
da1d85e3
GH
24 echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log
25 $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1
52166aa0
JQ
26}
27
28compile_prog() {
29 local_cflags="$1"
30 local_ldflags="$2"
da1d85e3
GH
31 echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log
32 $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1
52166aa0
JQ
33}
34
0dba6195
LM
35# check whether a command is available to this shell (may be either an
36# executable or a builtin)
37has() {
38 type "$1" >/dev/null 2>&1
39}
40
41# search for an executable in PATH
42path_of() {
43 local_command="$1"
44 local_ifs="$IFS"
45 local_dir=""
46
47 # pathname has a dir component?
48 if [ "${local_command#*/}" != "$local_command" ]; then
49 if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
50 echo "$local_command"
51 return 0
52 fi
53 fi
54 if [ -z "$local_command" ]; then
55 return 1
56 fi
57
58 IFS=:
59 for local_dir in $PATH; do
60 if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
61 echo "$local_dir/$local_command"
62 IFS="${local_ifs:-$(printf ' \t\n')}"
63 return 0
64 fi
65 done
66 # not found
67 IFS="${local_ifs:-$(printf ' \t\n')}"
68 return 1
69}
70
7d13299d 71# default parameters
2ff6b91e 72cpu=""
1e43adfc 73interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 74static="no"
ed968ff1 75sparc_cpu=""
7d13299d 76cross_prefix=""
0c58ac1c 77audio_drv_list=""
d61a4ce8
GH
78audio_card_list="ac97 es1370 sb16 hda"
79audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda"
eb852011 80block_drv_whitelist=""
7d13299d 81host_cc="gcc"
c81da56e 82helper_cflags=""
73da375e 83libs_softmmu=""
3e2e0e6b 84libs_tools=""
67f86e8e 85audio_pt_int=""
d5631638 86audio_win_int=""
2b2e59e6 87cc_i386=i386-pc-linux-gnu-gcc
ac0df51d 88
377529c0
PB
89target_list=""
90
91# Default value for a variable defining feature "foo".
92# * foo="no" feature will only be used if --enable-foo arg is given
93# * foo="" feature will be searched for, and if found, will be used
94# unless --disable-foo is given
95# * foo="yes" this value will only be set by --enable-foo flag.
96# feature will searched for,
97# if not found, configure exits with error
98#
99# Always add --enable-foo and --disable-foo command line args.
100# Distributions want to ensure that several features are compiled in, and it
101# is impossible without a --enable-foo that exits if a feature is not found.
102
103bluez=""
104brlapi=""
105curl=""
106curses=""
107docs=""
108fdt=""
109kvm=""
110kvm_para=""
111nptl=""
112sdl=""
113sparse="no"
114uuid=""
115vde=""
116vnc_tls=""
117vnc_sasl=""
118vnc_jpeg=""
119vnc_png=""
120vnc_thread="no"
121xen=""
122linux_aio=""
123attr=""
124vhost_net=""
125xfs=""
126
127gprof="no"
128debug_tcg="no"
129debug_mon="no"
130debug="no"
131strip_opt="yes"
132bigendian="no"
133mingw32="no"
134EXESUF=""
135prefix="/usr/local"
136mandir="\${prefix}/share/man"
137datadir="\${prefix}/share/qemu"
138docdir="\${prefix}/share/doc/qemu"
139bindir="\${prefix}/bin"
140sysconfdir="\${prefix}/etc"
141confsuffix="/qemu"
142slirp="yes"
143fmod_lib=""
144fmod_inc=""
145oss_lib=""
146bsd="no"
147linux="no"
148solaris="no"
149profiler="no"
150cocoa="no"
151softmmu="yes"
152linux_user="no"
153darwin_user="no"
154bsd_user="no"
155guest_base=""
156uname_release=""
157io_thread="no"
158mixemu="no"
159kerneldir=""
160aix="no"
161blobs="yes"
162pkgversion=""
163check_utests="no"
164user_pie="no"
165zero_malloc=""
166trace_backend="nop"
167trace_file="trace"
168spice=""
169rbd=""
170
ac0df51d
AL
171# parse CC options first
172for opt do
173 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
174 case "$opt" in
175 --cross-prefix=*) cross_prefix="$optarg"
176 ;;
3d8df640 177 --cc=*) CC="$optarg"
ac0df51d 178 ;;
2ff6b91e
JQ
179 --cpu=*) cpu="$optarg"
180 ;;
a558ee17 181 --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
e2a2ed06
JQ
182 ;;
183 --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
184 ;;
50e7b1a0
JQ
185 --sparc_cpu=*)
186 sparc_cpu="$optarg"
187 case $sparc_cpu in
ed968ff1 188 v7|v8|v8plus|v8plusa)
50e7b1a0
JQ
189 cpu="sparc"
190 ;;
191 v9)
50e7b1a0
JQ
192 cpu="sparc64"
193 ;;
194 *)
195 echo "undefined SPARC architecture. Exiting";
196 exit 1
197 ;;
198 esac
199 ;;
ac0df51d
AL
200 esac
201done
ac0df51d
AL
202# OS specific
203# Using uname is really, really broken. Once we have the right set of checks
204# we can eliminate it's usage altogether
205
3d8df640
PB
206cc="${cross_prefix}${CC-gcc}"
207ar="${cross_prefix}${AR-ar}"
208objcopy="${cross_prefix}${OBJCOPY-objcopy}"
209ld="${cross_prefix}${LD-ld}"
210strip="${cross_prefix}${STRIP-strip}"
211windres="${cross_prefix}${WINDRES-windres}"
ac0df51d 212
be17dc90
MT
213# default flags for all hosts
214QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
215CFLAGS="-g $CFLAGS"
216QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
217QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
218QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
84958305 219QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
be17dc90
MT
220QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"
221LDFLAGS="-g $LDFLAGS"
222
ac0df51d
AL
223check_define() {
224cat > $TMPC <<EOF
225#if !defined($1)
226#error Not defined
227#endif
228int main(void) { return 0; }
229EOF
52166aa0 230 compile_object
ac0df51d
AL
231}
232
2ff6b91e
JQ
233if test ! -z "$cpu" ; then
234 # command line argument
235 :
236elif check_define __i386__ ; then
ac0df51d
AL
237 cpu="i386"
238elif check_define __x86_64__ ; then
239 cpu="x86_64"
3aa9bd6c
BS
240elif check_define __sparc__ ; then
241 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
242 # They must be specified using --sparc_cpu
243 if check_define __arch64__ ; then
244 cpu="sparc64"
245 else
246 cpu="sparc"
247 fi
fdf7ed96 248elif check_define _ARCH_PPC ; then
249 if check_define _ARCH_PPC64 ; then
250 cpu="ppc64"
251 else
252 cpu="ppc"
253 fi
afa05235
AJ
254elif check_define __mips__ ; then
255 cpu="mips"
477ba620
AJ
256elif check_define __ia64__ ; then
257 cpu="ia64"
d66ed0ea
AJ
258elif check_define __s390__ ; then
259 if check_define __s390x__ ; then
260 cpu="s390x"
261 else
262 cpu="s390"
263 fi
ac0df51d 264else
fdf7ed96 265 cpu=`uname -m`
ac0df51d
AL
266fi
267
7d13299d 268case "$cpu" in
afa05235 269 alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
ea8f20f8
JQ
270 cpu="$cpu"
271 ;;
7d13299d 272 i386|i486|i586|i686|i86pc|BePC)
97a847bc 273 cpu="i386"
7d13299d 274 ;;
aaa5fa14
AJ
275 x86_64|amd64)
276 cpu="x86_64"
277 ;;
ba68055e 278 armv*b)
808c4954
FB
279 cpu="armv4b"
280 ;;
ba68055e 281 armv*l)
7d13299d
FB
282 cpu="armv4l"
283 ;;
f54b3f92
AJ
284 parisc|parisc64)
285 cpu="hppa"
286 ;;
afa05235
AJ
287 mips*)
288 cpu="mips"
289 ;;
24e804ec 290 s390)
fb3e5849
FB
291 cpu="s390"
292 ;;
24e804ec
AG
293 s390x)
294 cpu="s390x"
295 ;;
3142255c 296 sparc|sun4[cdmuv])
ae228531
FB
297 cpu="sparc"
298 ;;
7d13299d 299 *)
a447d4dc
PB
300 echo "Unsupported CPU = $cpu"
301 exit 1
7d13299d
FB
302 ;;
303esac
e2d52ad3 304
7d13299d 305# OS specific
ac0df51d
AL
306if check_define __linux__ ; then
307 targetos="Linux"
308elif check_define _WIN32 ; then
309 targetos='MINGW32'
169dc5d3
BS
310elif check_define __OpenBSD__ ; then
311 targetos='OpenBSD'
312elif check_define __sun__ ; then
313 targetos='SunOS'
179cf400
AF
314elif check_define __HAIKU__ ; then
315 targetos='Haiku'
ac0df51d
AL
316else
317 targetos=`uname -s`
318fi
0dbfc675 319
7d13299d 320case $targetos in
c326e0af 321CYGWIN*)
0dbfc675 322 mingw32="yes"
a558ee17 323 QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
d5631638 324 audio_possible_drivers="winwave sdl"
325 audio_drv_list="winwave"
c326e0af 326;;
67b915a5 327MINGW32*)
0dbfc675 328 mingw32="yes"
d5631638 329 audio_possible_drivers="winwave dsound sdl fmod"
330 audio_drv_list="winwave"
67b915a5 331;;
5c40d2bd 332GNU/kFreeBSD)
a167ba50 333 bsd="yes"
0dbfc675
JQ
334 audio_drv_list="oss"
335 audio_possible_drivers="oss sdl esd pa"
5c40d2bd 336;;
7d3505c5 337FreeBSD)
0dbfc675 338 bsd="yes"
0db4a067 339 make="${MAKE-gmake}"
0dbfc675
JQ
340 audio_drv_list="oss"
341 audio_possible_drivers="oss sdl esd pa"
f01576f1
JL
342 # needed for kinfo_getvmmap(3) in libutil.h
343 LIBS="-lutil $LIBS"
7d3505c5 344;;
c5e97233 345DragonFly)
0dbfc675 346 bsd="yes"
0db4a067 347 make="${MAKE-gmake}"
0dbfc675
JQ
348 audio_drv_list="oss"
349 audio_possible_drivers="oss sdl esd pa"
c5e97233 350;;
7d3505c5 351NetBSD)
0dbfc675 352 bsd="yes"
0db4a067 353 make="${MAKE-gmake}"
0dbfc675
JQ
354 audio_drv_list="oss"
355 audio_possible_drivers="oss sdl esd"
356 oss_lib="-lossaudio"
7d3505c5
FB
357;;
358OpenBSD)
0dbfc675 359 bsd="yes"
0db4a067 360 make="${MAKE-gmake}"
0dbfc675
JQ
361 audio_drv_list="oss"
362 audio_possible_drivers="oss sdl esd"
363 oss_lib="-lossaudio"
7d3505c5 364;;
83fb7adf 365Darwin)
0dbfc675
JQ
366 bsd="yes"
367 darwin="yes"
368 # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
369 # run 64-bit userspace code
370 if [ "$cpu" = "i386" ] ; then
aab8588a 371 is_x86_64=`sysctl -n hw.optional.x86_64`
372 [ "$is_x86_64" = "1" ] && cpu=x86_64
0dbfc675
JQ
373 fi
374 if [ "$cpu" = "x86_64" ] ; then
a558ee17 375 QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
0c439cbf 376 LDFLAGS="-arch x86_64 $LDFLAGS"
0dbfc675 377 else
a558ee17 378 QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
0dbfc675
JQ
379 fi
380 darwin_user="yes"
381 cocoa="yes"
382 audio_drv_list="coreaudio"
383 audio_possible_drivers="coreaudio sdl fmod"
384 LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
7973f21c 385 libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
83fb7adf 386;;
ec530c81 387SunOS)
0dbfc675 388 solaris="yes"
0db4a067
PB
389 make="${MAKE-gmake}"
390 install="${INSTALL-ginstall}"
fa58948d 391 ld="gld"
0dbfc675
JQ
392 needs_libsunmath="no"
393 solarisrev=`uname -r | cut -f2 -d.`
394 # have to select again, because `uname -m` returns i86pc
395 # even on an x86_64 box.
396 solariscpu=`isainfo -k`
397 if test "${solariscpu}" = "amd64" ; then
398 cpu="x86_64"
399 fi
400 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
401 if test "$solarisrev" -le 9 ; then
402 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
403 needs_libsunmath="yes"
f14bfdf9
JQ
404 QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
405 LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
406 LIBS="-lsunmath $LIBS"
0dbfc675
JQ
407 else
408 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
409 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
410 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
411 echo "Studio 11 can be downloaded from www.sun.com."
412 exit 1
413 fi
86b2bd93 414 fi
0dbfc675
JQ
415 fi
416 if test -f /usr/include/sys/soundcard.h ; then
417 audio_drv_list="oss"
418 fi
419 audio_possible_drivers="oss sdl"
d741429a
BS
420# needed for CMSG_ macros in sys/socket.h
421 QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
422# needed for TIOCWIN* defines in termios.h
423 QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
a558ee17 424 QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
e174c0bb 425 LIBS="-lsocket -lnsl -lresolv $LIBS"
86b2bd93 426;;
b29fe3ed 427AIX)
0dbfc675 428 aix="yes"
0db4a067 429 make="${MAKE-gmake}"
b29fe3ed 430;;
179cf400
AF
431Haiku)
432 haiku="yes"
433 QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
434 LIBS="-lposix_error_mapper -lnetwork $LIBS"
435;;
1d14ffa9 436*)
0dbfc675
JQ
437 audio_drv_list="oss"
438 audio_possible_drivers="oss alsa sdl esd pa"
439 linux="yes"
440 linux_user="yes"
441 usb="linux"
0dbfc675 442 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c2de5c91 443 audio_possible_drivers="$audio_possible_drivers fmod"
0dbfc675 444 fi
fb065187 445;;
7d13299d
FB
446esac
447
7d3505c5 448if [ "$bsd" = "yes" ] ; then
b1a550a0 449 if [ "$darwin" != "yes" ] ; then
68063649 450 usb="bsd"
83fb7adf 451 fi
84778508 452 bsd_user="yes"
7d3505c5
FB
453fi
454
0db4a067
PB
455: ${make=${MAKE-make}}
456: ${install=${INSTALL-install}}
457
3457a3f8 458if test "$mingw32" = "yes" ; then
3457a3f8 459 EXESUF=".exe"
a558ee17 460 QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
e94a7936
SW
461 # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
462 QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
884044aa 463 LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
683035de
PB
464 prefix="c:/Program Files/Qemu"
465 mandir="\${prefix}"
466 datadir="\${prefix}"
467 docdir="\${prefix}"
468 bindir="\${prefix}"
469 sysconfdir="\${prefix}"
470 confsuffix=""
3457a3f8
JQ
471fi
472
7d13299d 473# find source path
ad064840 474source_path=`dirname "$0"`
59faef3a
AZ
475source_path_used="no"
476workdir=`pwd`
ad064840 477if [ -z "$source_path" ]; then
59faef3a 478 source_path=$workdir
ad064840
PB
479else
480 source_path=`cd "$source_path"; pwd`
7d13299d 481fi
724db118 482[ -f "$workdir/vl.c" ] || source_path_used="yes"
7d13299d 483
487fefdb 484werror=""
85aa5189 485
7d13299d 486for opt do
a46e4035 487 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 488 case "$opt" in
2efc3265
FB
489 --help|-h) show_help=yes
490 ;;
b1a550a0 491 --prefix=*) prefix="$optarg"
7d13299d 492 ;;
b1a550a0 493 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 494 ;;
b1a550a0 495 --source-path=*) source_path="$optarg"
ad064840 496 source_path_used="yes"
7d13299d 497 ;;
ac0df51d 498 --cross-prefix=*)
7d13299d 499 ;;
ac0df51d 500 --cc=*)
7d13299d 501 ;;
b1a550a0 502 --host-cc=*) host_cc="$optarg"
83469015 503 ;;
b1a550a0 504 --make=*) make="$optarg"
7d13299d 505 ;;
6a882643
PB
506 --install=*) install="$optarg"
507 ;;
e2a2ed06 508 --extra-cflags=*)
7d13299d 509 ;;
e2a2ed06 510 --extra-ldflags=*)
7d13299d 511 ;;
2ff6b91e 512 --cpu=*)
7d13299d 513 ;;
b1a550a0 514 --target-list=*) target_list="$optarg"
de83cd02 515 ;;
94a420b1
SH
516 --trace-backend=*) trace_backend="$optarg"
517 ;;
9410b56c
PS
518 --trace-file=*) trace_file="$optarg"
519 ;;
7d13299d
FB
520 --enable-gprof) gprof="yes"
521 ;;
79427693
LM
522 --static)
523 static="yes"
524 LDFLAGS="-static $LDFLAGS"
43ce4dfe 525 ;;
0b24e75f
PB
526 --mandir=*) mandir="$optarg"
527 ;;
528 --bindir=*) bindir="$optarg"
529 ;;
530 --datadir=*) datadir="$optarg"
531 ;;
532 --docdir=*) docdir="$optarg"
533 ;;
ca2fb938 534 --sysconfdir=*) sysconfdir="$optarg"
07381cc1 535 ;;
97a847bc
FB
536 --disable-sdl) sdl="no"
537 ;;
c4198157
JQ
538 --enable-sdl) sdl="yes"
539 ;;
0c58ac1c 540 --fmod-lib=*) fmod_lib="$optarg"
1d14ffa9 541 ;;
c2de5c91 542 --fmod-inc=*) fmod_inc="$optarg"
543 ;;
2f6a1ab0
BS
544 --oss-lib=*) oss_lib="$optarg"
545 ;;
2fa7d3bf 546 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
102a52e4 547 ;;
0c58ac1c 548 --audio-drv-list=*) audio_drv_list="$optarg"
102a52e4 549 ;;
eb852011
MA
550 --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
551 ;;
f8393946
AJ
552 --enable-debug-tcg) debug_tcg="yes"
553 ;;
554 --disable-debug-tcg) debug_tcg="no"
555 ;;
b4475aa2
LC
556 --enable-debug-mon) debug_mon="yes"
557 ;;
558 --disable-debug-mon) debug_mon="no"
559 ;;
f3d08ee6
PB
560 --enable-debug)
561 # Enable debugging options that aren't excessively noisy
562 debug_tcg="yes"
b4475aa2 563 debug_mon="yes"
f3d08ee6
PB
564 debug="yes"
565 strip_opt="no"
566 ;;
03b4fe7d
AL
567 --enable-sparse) sparse="yes"
568 ;;
569 --disable-sparse) sparse="no"
570 ;;
1625af87
AL
571 --disable-strip) strip_opt="no"
572 ;;
8d5d2d4c
TS
573 --disable-vnc-tls) vnc_tls="no"
574 ;;
1be10ad2
JQ
575 --enable-vnc-tls) vnc_tls="yes"
576 ;;
2f9606b3
AL
577 --disable-vnc-sasl) vnc_sasl="no"
578 ;;
ea784e3b
JQ
579 --enable-vnc-sasl) vnc_sasl="yes"
580 ;;
2f6f5c7a
CC
581 --disable-vnc-jpeg) vnc_jpeg="no"
582 ;;
583 --enable-vnc-jpeg) vnc_jpeg="yes"
584 ;;
efe556ad
CC
585 --disable-vnc-png) vnc_png="no"
586 ;;
587 --enable-vnc-png) vnc_png="yes"
588 ;;
bd023f95
CC
589 --disable-vnc-thread) vnc_thread="no"
590 ;;
591 --enable-vnc-thread) vnc_thread="yes"
592 ;;
443f1376 593 --disable-slirp) slirp="no"
1d14ffa9 594 ;;
ee682d27
SW
595 --disable-uuid) uuid="no"
596 ;;
597 --enable-uuid) uuid="yes"
598 ;;
e0e6c8c0 599 --disable-vde) vde="no"
8a16d273 600 ;;
dfb278bd
JQ
601 --enable-vde) vde="yes"
602 ;;
e37630ca
AL
603 --disable-xen) xen="no"
604 ;;
fc321b4b
JQ
605 --enable-xen) xen="yes"
606 ;;
2e4d9fb1
AJ
607 --disable-brlapi) brlapi="no"
608 ;;
4ffcedb6
JQ
609 --enable-brlapi) brlapi="yes"
610 ;;
fb599c9a
AZ
611 --disable-bluez) bluez="no"
612 ;;
a20a6f46
JQ
613 --enable-bluez) bluez="yes"
614 ;;
7ba1e619
AL
615 --disable-kvm) kvm="no"
616 ;;
b31a0277
JQ
617 --enable-kvm) kvm="yes"
618 ;;
cd4ec0b4
GH
619 --disable-spice) spice="no"
620 ;;
621 --enable-spice) spice="yes"
622 ;;
05c2a3e7
FB
623 --enable-profiler) profiler="yes"
624 ;;
c2de5c91 625 --enable-cocoa)
626 cocoa="yes" ;
627 sdl="no" ;
628 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
1d14ffa9 629 ;;
cad25d69 630 --disable-system) softmmu="no"
0a8e90f4 631 ;;
cad25d69 632 --enable-system) softmmu="yes"
0a8e90f4 633 ;;
0953a80f
ZA
634 --disable-user)
635 linux_user="no" ;
636 bsd_user="no" ;
637 darwin_user="no"
638 ;;
639 --enable-user) ;;
831b7825 640 --disable-linux-user) linux_user="no"
0a8e90f4 641 ;;
831b7825
TS
642 --enable-linux-user) linux_user="yes"
643 ;;
644 --disable-darwin-user) darwin_user="no"
645 ;;
646 --enable-darwin-user) darwin_user="yes"
0a8e90f4 647 ;;
84778508
BS
648 --disable-bsd-user) bsd_user="no"
649 ;;
650 --enable-bsd-user) bsd_user="yes"
651 ;;
379f6698
PB
652 --enable-guest-base) guest_base="yes"
653 ;;
654 --disable-guest-base) guest_base="no"
655 ;;
34005a00
KS
656 --enable-user-pie) user_pie="yes"
657 ;;
658 --disable-user-pie) user_pie="no"
659 ;;
c5937220
PB
660 --enable-uname-release=*) uname_release="$optarg"
661 ;;
3142255c 662 --sparc_cpu=*)
3142255c 663 ;;
85aa5189
FB
664 --enable-werror) werror="yes"
665 ;;
666 --disable-werror) werror="no"
667 ;;
4d3b6f6e
AZ
668 --disable-curses) curses="no"
669 ;;
c584a6d0
JQ
670 --enable-curses) curses="yes"
671 ;;
769ce76d
AG
672 --disable-curl) curl="no"
673 ;;
788c8196
JQ
674 --enable-curl) curl="yes"
675 ;;
2df87df7
JQ
676 --disable-fdt) fdt="no"
677 ;;
678 --enable-fdt) fdt="yes"
679 ;;
5495ed11
LC
680 --disable-check-utests) check_utests="no"
681 ;;
682 --enable-check-utests) check_utests="yes"
683 ;;
bd0c5661
PB
684 --disable-nptl) nptl="no"
685 ;;
b0a47e79
JQ
686 --enable-nptl) nptl="yes"
687 ;;
8ff9cbf7 688 --enable-mixemu) mixemu="yes"
689 ;;
5c6c3a6c
CH
690 --disable-linux-aio) linux_aio="no"
691 ;;
692 --enable-linux-aio) linux_aio="yes"
693 ;;
758e8e38
VJJ
694 --disable-attr) attr="no"
695 ;;
696 --enable-attr) attr="yes"
697 ;;
e5d355d1
AL
698 --enable-io-thread) io_thread="yes"
699 ;;
77755340
TS
700 --disable-blobs) blobs="no"
701 ;;
eac30262
AL
702 --kerneldir=*) kerneldir="$optarg"
703 ;;
4a19f1ec
PB
704 --with-pkgversion=*) pkgversion=" ($optarg)"
705 ;;
a25dba17 706 --disable-docs) docs="no"
70ec5dc0 707 ;;
a25dba17 708 --enable-docs) docs="yes"
83a3ab8b 709 ;;
d5970055
MT
710 --disable-vhost-net) vhost_net="no"
711 ;;
712 --enable-vhost-net) vhost_net="yes"
713 ;;
6bde81cb
PB
714 --*dir)
715 ;;
f27aaf4b
CB
716 --disable-rbd) rbd="no"
717 ;;
718 --enable-rbd) rbd="yes"
719 ;;
7f1559c6
AZ
720 *) echo "ERROR: unknown option $opt"; show_help="yes"
721 ;;
7d13299d
FB
722 esac
723done
724
3142255c
BS
725#
726# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
a558ee17 727# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
3142255c 728#
379f6698 729host_guest_base="no"
40293e58 730case "$cpu" in
ed968ff1
JQ
731 sparc) case $sparc_cpu in
732 v7|v8)
a558ee17 733 QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
734 ;;
735 v8plus|v8plusa)
a558ee17 736 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
ed968ff1
JQ
737 ;;
738 *) # sparc_cpu not defined in the command line
a558ee17 739 QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
ed968ff1
JQ
740 esac
741 LDFLAGS="-m32 $LDFLAGS"
a558ee17 742 QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
762e8230 743 if test "$solaris" = "no" ; then
a558ee17 744 QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
c81da56e 745 helper_cflags="-ffixed-i0"
762e8230 746 fi
3142255c 747 ;;
ed968ff1 748 sparc64)
a558ee17 749 QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
ed968ff1 750 LDFLAGS="-m64 $LDFLAGS"
a558ee17 751 QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
ed968ff1 752 if test "$solaris" != "no" ; then
a558ee17 753 QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
762e8230 754 fi
3142255c 755 ;;
76d83bde 756 s390)
28d7cc49
RH
757 QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
758 LDFLAGS="-m31 $LDFLAGS"
48bb3750 759 host_guest_base="yes"
28d7cc49
RH
760 ;;
761 s390x)
762 QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
763 LDFLAGS="-m64 $LDFLAGS"
48bb3750 764 host_guest_base="yes"
76d83bde 765 ;;
40293e58 766 i386)
a558ee17 767 QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
0c439cbf 768 LDFLAGS="-m32 $LDFLAGS"
2b2e59e6 769 cc_i386='$(CC) -m32'
c81da56e 770 helper_cflags="-fomit-frame-pointer"
379f6698 771 host_guest_base="yes"
40293e58
FB
772 ;;
773 x86_64)
a558ee17 774 QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
0c439cbf 775 LDFLAGS="-m64 $LDFLAGS"
2b2e59e6 776 cc_i386='$(CC) -m32'
379f6698
PB
777 host_guest_base="yes"
778 ;;
779 arm*)
780 host_guest_base="yes"
40293e58 781 ;;
f6548c0a 782 ppc*)
783 host_guest_base="yes"
784 ;;
cc01cc8e
AJ
785 mips*)
786 host_guest_base="yes"
787 ;;
477ba620
AJ
788 ia64*)
789 host_guest_base="yes"
790 ;;
fd76e73a
RH
791 hppa*)
792 host_guest_base="yes"
793 ;;
3142255c
BS
794esac
795
379f6698
PB
796[ -z "$guest_base" ] && guest_base="$host_guest_base"
797
af5db58e
PB
798if test x"$show_help" = x"yes" ; then
799cat << EOF
800
801Usage: configure [options]
802Options: [defaults in brackets after descriptions]
803
804EOF
805echo "Standard options:"
806echo " --help print this message"
807echo " --prefix=PREFIX install in PREFIX [$prefix]"
808echo " --interp-prefix=PREFIX where to find shared libraries, etc."
809echo " use %M for cpu name [$interp_prefix]"
810echo " --target-list=LIST set target list [$target_list]"
811echo ""
af5db58e
PB
812echo "Advanced options (experts only):"
813echo " --source-path=PATH path of source code [$source_path]"
814echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
815echo " --cc=CC use C compiler CC [$cc]"
0bfe8cc0
PB
816echo " --host-cc=CC use C compiler CC [$host_cc] for code run at"
817echo " build time"
a558ee17 818echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS"
e3fc14c3 819echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
af5db58e 820echo " --make=MAKE use specified make [$make]"
6a882643 821echo " --install=INSTALL use specified install [$install]"
af5db58e 822echo " --static enable static build [$static]"
0b24e75f
PB
823echo " --mandir=PATH install man pages in PATH"
824echo " --datadir=PATH install firmware in PATH"
825echo " --docdir=PATH install documentation in PATH"
826echo " --bindir=PATH install binaries in PATH"
827echo " --sysconfdir=PATH install config in PATH/qemu"
f8393946
AJ
828echo " --enable-debug-tcg enable TCG debugging"
829echo " --disable-debug-tcg disable TCG debugging (default)"
09695a4a 830echo " --enable-debug enable common debug build options"
890b1658
AL
831echo " --enable-sparse enable sparse checker"
832echo " --disable-sparse disable sparse checker (default)"
1625af87 833echo " --disable-strip disable stripping binaries"
85aa5189 834echo " --disable-werror disable compilation abort on warning"
fe8f78e4 835echo " --disable-sdl disable SDL"
c4198157 836echo " --enable-sdl enable SDL"
af5db58e 837echo " --enable-cocoa enable COCOA (Mac OS X only)"
c2de5c91 838echo " --audio-drv-list=LIST set audio drivers list:"
839echo " Available drivers: $audio_possible_drivers"
4c9b53e3 840echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
841echo " Available cards: $audio_possible_cards"
eb852011
MA
842echo " --block-drv-whitelist=L set block driver whitelist"
843echo " (affects only QEMU, not qemu-img)"
8ff9cbf7 844echo " --enable-mixemu enable mixer emulation"
e37630ca 845echo " --disable-xen disable xen backend driver support"
fc321b4b 846echo " --enable-xen enable xen backend driver support"
2e4d9fb1 847echo " --disable-brlapi disable BrlAPI"
4ffcedb6 848echo " --enable-brlapi enable BrlAPI"
8d5d2d4c 849echo " --disable-vnc-tls disable TLS encryption for VNC server"
1be10ad2 850echo " --enable-vnc-tls enable TLS encryption for VNC server"
2f9606b3 851echo " --disable-vnc-sasl disable SASL encryption for VNC server"
ea784e3b 852echo " --enable-vnc-sasl enable SASL encryption for VNC server"
2f6f5c7a
CC
853echo " --disable-vnc-jpeg disable JPEG lossy compression for VNC server"
854echo " --enable-vnc-jpeg enable JPEG lossy compression for VNC server"
96763cf9 855echo " --disable-vnc-png disable PNG compression for VNC server (default)"
efe556ad 856echo " --enable-vnc-png enable PNG compression for VNC server"
bd023f95
CC
857echo " --disable-vnc-thread disable threaded VNC server"
858echo " --enable-vnc-thread enable threaded VNC server"
af896aaa 859echo " --disable-curses disable curses output"
c584a6d0 860echo " --enable-curses enable curses output"
769ce76d 861echo " --disable-curl disable curl connectivity"
788c8196 862echo " --enable-curl enable curl connectivity"
2df87df7
JQ
863echo " --disable-fdt disable fdt device tree"
864echo " --enable-fdt enable fdt device tree"
5495ed11
LC
865echo " --disable-check-utests disable check unit-tests"
866echo " --enable-check-utests enable check unit-tests"
fb599c9a 867echo " --disable-bluez disable bluez stack connectivity"
a20a6f46 868echo " --enable-bluez enable bluez stack connectivity"
7ba1e619 869echo " --disable-kvm disable KVM acceleration support"
b31a0277 870echo " --enable-kvm enable KVM acceleration support"
bd0c5661 871echo " --disable-nptl disable usermode NPTL support"
e5934d33 872echo " --enable-nptl enable usermode NPTL support"
af5db58e
PB
873echo " --enable-system enable all system emulation targets"
874echo " --disable-system disable all system emulation targets"
0953a80f
ZA
875echo " --enable-user enable supported user emulation targets"
876echo " --disable-user disable all user emulation targets"
831b7825
TS
877echo " --enable-linux-user enable all linux usermode emulation targets"
878echo " --disable-linux-user disable all linux usermode emulation targets"
879echo " --enable-darwin-user enable all darwin usermode emulation targets"
880echo " --disable-darwin-user disable all darwin usermode emulation targets"
84778508
BS
881echo " --enable-bsd-user enable all BSD usermode emulation targets"
882echo " --disable-bsd-user disable all BSD usermode emulation targets"
379f6698
PB
883echo " --enable-guest-base enable GUEST_BASE support for usermode"
884echo " emulation targets"
885echo " --disable-guest-base disable GUEST_BASE support"
34005a00
KS
886echo " --enable-user-pie build usermode emulation targets as PIE"
887echo " --disable-user-pie do not build usermode emulation targets as PIE"
af5db58e
PB
888echo " --fmod-lib path to FMOD library"
889echo " --fmod-inc path to FMOD includes"
2f6a1ab0 890echo " --oss-lib path to OSS library"
c5937220 891echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
3142255c 892echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
ee682d27
SW
893echo " --disable-uuid disable uuid support"
894echo " --enable-uuid enable uuid support"
e0e6c8c0 895echo " --disable-vde disable support for vde network"
dfb278bd 896echo " --enable-vde enable support for vde network"
5c6c3a6c
CH
897echo " --disable-linux-aio disable Linux AIO support"
898echo " --enable-linux-aio enable Linux AIO support"
758e8e38
VJJ
899echo " --disable-attr disables attr and xattr support"
900echo " --enable-attr enable attr and xattr support"
e5d355d1 901echo " --enable-io-thread enable IO thread"
77755340 902echo " --disable-blobs disable installing provided firmware blobs"
eac30262 903echo " --kerneldir=PATH look for kernel includes in PATH"
d2807bc9
DU
904echo " --enable-docs enable documentation build"
905echo " --disable-docs disable documentation build"
d5970055
MT
906echo " --disable-vhost-net disable vhost-net acceleration support"
907echo " --enable-vhost-net enable vhost-net acceleration support"
b3d08c02 908echo " --trace-backend=B Trace backend nop simple ust dtrace"
9410b56c
PS
909echo " --trace-file=NAME Full PATH,NAME of file to store traces"
910echo " Default:trace-<pid>"
cd4ec0b4
GH
911echo " --disable-spice disable spice"
912echo " --enable-spice enable spice"
f27aaf4b 913echo " --enable-rbd enable building the rados block device (rbd)"
af5db58e 914echo ""
5bf08934 915echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
916exit 1
917fi
918
8d05095c
PB
919# check that the C compiler works.
920cat > $TMPC <<EOF
921int main(void) {}
922EOF
923
924if compile_object ; then
925 : C compiler works ok
926else
927 echo "ERROR: \"$cc\" either does not exist or does not work"
928 exit 1
929fi
930
931gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
932gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
933gcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
934gcc_flags="-fstack-protector-all $gcc_flags"
935cat > $TMPC << EOF
936int main(void) { return 0; }
937EOF
938for flag in $gcc_flags; do
939 if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
940 QEMU_CFLAGS="$QEMU_CFLAGS $flag"
941 fi
942done
943
ec530c81
FB
944#
945# Solaris specific configure tool chain decisions
946#
947if test "$solaris" = "yes" ; then
6792aa11
LM
948 if has $install; then
949 :
950 else
ec530c81
FB
951 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
952 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
953 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
954 exit 1
955 fi
6792aa11 956 if test "`path_of $install`" = "/usr/sbin/install" ; then
ec530c81
FB
957 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
958 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
959 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
960 exit 1
961 fi
6792aa11
LM
962 if has ar; then
963 :
964 else
ec530c81
FB
965 echo "Error: No path includes ar"
966 if test -f /usr/ccs/bin/ar ; then
967 echo "Add /usr/ccs/bin to your path and rerun configure"
968 fi
969 exit 1
970 fi
5fafdf24 971fi
ec530c81
FB
972
973
5327cf48
FB
974if test -z "$target_list" ; then
975# these targets are portable
0a8e90f4 976 if [ "$softmmu" = "yes" ] ; then
2408a527
AJ
977 target_list="\
978i386-softmmu \
979x86_64-softmmu \
980arm-softmmu \
981cris-softmmu \
982m68k-softmmu \
72b675ca 983microblaze-softmmu \
2408a527
AJ
984mips-softmmu \
985mipsel-softmmu \
986mips64-softmmu \
987mips64el-softmmu \
988ppc-softmmu \
989ppcemb-softmmu \
990ppc64-softmmu \
991sh4-softmmu \
992sh4eb-softmmu \
993sparc-softmmu \
1b64fcae 994sparc64-softmmu \
2408a527 995"
0a8e90f4 996 fi
5327cf48 997# the following are Linux specific
831b7825 998 if [ "$linux_user" = "yes" ] ; then
2408a527
AJ
999 target_list="${target_list}\
1000i386-linux-user \
1001x86_64-linux-user \
1002alpha-linux-user \
1003arm-linux-user \
1004armeb-linux-user \
1005cris-linux-user \
1006m68k-linux-user \
72b675ca 1007microblaze-linux-user \
2408a527
AJ
1008mips-linux-user \
1009mipsel-linux-user \
1010ppc-linux-user \
1011ppc64-linux-user \
1012ppc64abi32-linux-user \
1013sh4-linux-user \
1014sh4eb-linux-user \
1015sparc-linux-user \
1016sparc64-linux-user \
1017sparc32plus-linux-user \
1018"
831b7825
TS
1019 fi
1020# the following are Darwin specific
1021 if [ "$darwin_user" = "yes" ] ; then
6cdc7375 1022 target_list="$target_list i386-darwin-user ppc-darwin-user "
5327cf48 1023 fi
84778508
BS
1024# the following are BSD specific
1025 if [ "$bsd_user" = "yes" ] ; then
1026 target_list="${target_list}\
31fc12df
BS
1027i386-bsd-user \
1028x86_64-bsd-user \
1029sparc-bsd-user \
84778508
BS
1030sparc64-bsd-user \
1031"
1032 fi
6e20a45f 1033else
b1a550a0 1034 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 1035fi
0a8e90f4
PB
1036if test -z "$target_list" ; then
1037 echo "No targets enabled"
1038 exit 1
1039fi
f55fe278
PB
1040# see if system emulation was really requested
1041case " $target_list " in
1042 *"-softmmu "*) softmmu=yes
1043 ;;
1044 *) softmmu=no
1045 ;;
1046esac
5327cf48 1047
249247c9
JQ
1048feature_not_found() {
1049 feature=$1
1050
1051 echo "ERROR"
1052 echo "ERROR: User requested feature $feature"
9332f6a2 1053 echo "ERROR: configure was not able to find it"
249247c9
JQ
1054 echo "ERROR"
1055 exit 1;
1056}
1057
7d13299d
FB
1058if test -z "$cross_prefix" ; then
1059
1060# ---
1061# big/little endian test
1062cat > $TMPC << EOF
1063#include <inttypes.h>
1064int main(int argc, char ** argv){
1d14ffa9
FB
1065 volatile uint32_t i=0x01234567;
1066 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
1067}
1068EOF
1069
52166aa0 1070if compile_prog "" "" ; then
7d13299d
FB
1071$TMPE && bigendian="yes"
1072else
1073echo big/little test failed
1074fi
1075
1076else
1077
1078# if cross compiling, cannot launch a program, so make a static guess
ea8f20f8 1079case "$cpu" in
24e804ec 1080 armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
ea8f20f8
JQ
1081 bigendian=yes
1082 ;;
1083esac
7d13299d
FB
1084
1085fi
1086
b6853697
FB
1087# host long bits test
1088hostlongbits="32"
ea8f20f8 1089case "$cpu" in
24e804ec 1090 x86_64|alpha|ia64|sparc64|ppc64|s390x)
ea8f20f8
JQ
1091 hostlongbits=64
1092 ;;
1093esac
b6853697 1094
b0a47e79
JQ
1095
1096##########################################
1097# NPTL probe
1098
1099if test "$nptl" != "no" ; then
1100 cat > $TMPC <<EOF
bd0c5661 1101#include <sched.h>
30813cea 1102#include <linux/futex.h>
bd0c5661
PB
1103void foo()
1104{
1105#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1106#error bork
1107#endif
1108}
1109EOF
1110
b0a47e79
JQ
1111 if compile_object ; then
1112 nptl=yes
1113 else
1114 if test "$nptl" = "yes" ; then
1115 feature_not_found "nptl"
1116 fi
1117 nptl=no
1118 fi
bd0c5661
PB
1119fi
1120
ac62922e
AZ
1121##########################################
1122# zlib check
1123
1124cat > $TMPC << EOF
1125#include <zlib.h>
1126int main(void) { zlibVersion(); return 0; }
1127EOF
52166aa0 1128if compile_prog "" "-lz" ; then
ac62922e
AZ
1129 :
1130else
1131 echo
1132 echo "Error: zlib check failed"
1133 echo "Make sure to have the zlib libs and headers installed."
1134 echo
1135 exit 1
1136fi
1137
e37630ca
AL
1138##########################################
1139# xen probe
1140
fc321b4b 1141if test "$xen" != "no" ; then
b2266bee
JQ
1142 xen_libs="-lxenstore -lxenctrl -lxenguest"
1143 cat > $TMPC <<EOF
e37630ca
AL
1144#include <xenctrl.h>
1145#include <xs.h>
df7a607b 1146int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
e37630ca 1147EOF
52166aa0 1148 if compile_prog "" "$xen_libs" ; then
fc321b4b 1149 xen=yes
3efd632b 1150 libs_softmmu="$xen_libs $libs_softmmu"
b2266bee 1151 else
fc321b4b
JQ
1152 if test "$xen" = "yes" ; then
1153 feature_not_found "xen"
1154 fi
1155 xen=no
b2266bee 1156 fi
e37630ca
AL
1157fi
1158
f91672e5
PB
1159##########################################
1160# pkgconfig probe
1161
1162pkgconfig="${cross_prefix}pkg-config"
0dba6195 1163if ! has $pkgconfig; then
f91672e5
PB
1164 # likely not cross compiling, or hope for the best
1165 pkgconfig=pkg-config
1166fi
1167
dfffc653
JQ
1168##########################################
1169# Sparse probe
1170if test "$sparse" != "no" ; then
0dba6195 1171 if has cgcc; then
dfffc653
JQ
1172 sparse=yes
1173 else
1174 if test "$sparse" = "yes" ; then
1175 feature_not_found "sparse"
1176 fi
1177 sparse=no
1178 fi
1179fi
1180
11d9f695
FB
1181##########################################
1182# SDL probe
1183
fec0e3e8
SW
1184# Look for sdl configuration program (pkg-config or sdl-config).
1185# Prefer variant with cross prefix if cross compiling,
1186# and favour pkg-config with sdl over sdl-config.
1187if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \
1188 $pkgconfig sdl --modversion >/dev/null 2>&1; then
1189 sdlconfig="$pkgconfig sdl"
1190 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1191elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
1192 sdlconfig="${cross_prefix}sdl-config"
1193 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1194elif $pkgconfig sdl --modversion >/dev/null 2>&1; then
9316f803
PB
1195 sdlconfig="$pkgconfig sdl"
1196 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
0dba6195 1197elif has sdl-config; then
9316f803
PB
1198 sdlconfig='sdl-config'
1199 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
a0dfd8a4
LM
1200else
1201 if test "$sdl" = "yes" ; then
1202 feature_not_found "sdl"
1203 fi
1204 sdl=no
9316f803 1205fi
11d9f695 1206
9316f803 1207sdl_too_old=no
c4198157 1208if test "$sdl" != "no" ; then
ac119f9d 1209 cat > $TMPC << EOF
11d9f695
FB
1210#include <SDL.h>
1211#undef main /* We don't want SDL to override our main() */
1212int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1213EOF
9316f803 1214 sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
74f42e18
T
1215 if test "$static" = "yes" ; then
1216 sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
1217 else
1218 sdl_libs=`$sdlconfig --libs 2> /dev/null`
1219 fi
52166aa0 1220 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1221 if test "$_sdlversion" -lt 121 ; then
1222 sdl_too_old=yes
1223 else
1224 if test "$cocoa" = "no" ; then
1225 sdl=yes
1226 fi
1227 fi
cd01b4a3 1228
67c274d3 1229 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
ac119f9d 1230 if test "$sdl" = "yes" -a "$static" = "yes" ; then
67c274d3 1231 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
f8aa6c7b
SW
1232 sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1233 sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
ac119f9d 1234 fi
52166aa0 1235 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1236 :
1237 else
1238 sdl=no
1239 fi
1240 fi # static link
c4198157
JQ
1241 else # sdl not found
1242 if test "$sdl" = "yes" ; then
1243 feature_not_found "sdl"
1244 fi
1245 sdl=no
ac119f9d 1246 fi # sdl compile test
a68551bc 1247fi
11d9f695 1248
5368a422 1249if test "$sdl" = "yes" ; then
ac119f9d 1250 cat > $TMPC <<EOF
5368a422
AL
1251#include <SDL.h>
1252#if defined(SDL_VIDEO_DRIVER_X11)
1253#include <X11/XKBlib.h>
1254#else
1255#error No x11 support
1256#endif
1257int main(void) { return 0; }
1258EOF
52166aa0 1259 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1260 sdl_libs="$sdl_libs -lX11"
1261 fi
07d9ac44
JQ
1262 if test "$mingw32" = "yes" ; then
1263 sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
1264 fi
0705667e 1265 libs_softmmu="$sdl_libs $libs_softmmu"
5368a422
AL
1266fi
1267
8d5d2d4c
TS
1268##########################################
1269# VNC TLS detection
1be10ad2
JQ
1270if test "$vnc_tls" != "no" ; then
1271 cat > $TMPC <<EOF
ae6b5e5a
AL
1272#include <gnutls/gnutls.h>
1273int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1274EOF
f91672e5
PB
1275 vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null`
1276 vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null`
1be10ad2
JQ
1277 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1278 vnc_tls=yes
1279 libs_softmmu="$vnc_tls_libs $libs_softmmu"
1280 else
1281 if test "$vnc_tls" = "yes" ; then
1282 feature_not_found "vnc-tls"
ae6b5e5a 1283 fi
1be10ad2
JQ
1284 vnc_tls=no
1285 fi
8d5d2d4c
TS
1286fi
1287
2f9606b3
AL
1288##########################################
1289# VNC SASL detection
3aefa744 1290if test "$vnc_sasl" != "no" ; then
ea784e3b 1291 cat > $TMPC <<EOF
2f9606b3
AL
1292#include <sasl/sasl.h>
1293#include <stdio.h>
1294int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1295EOF
ea784e3b
JQ
1296 # Assuming Cyrus-SASL installed in /usr prefix
1297 vnc_sasl_cflags=""
1298 vnc_sasl_libs="-lsasl2"
1299 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1300 vnc_sasl=yes
1301 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1302 else
1303 if test "$vnc_sasl" = "yes" ; then
1304 feature_not_found "vnc-sasl"
2f9606b3 1305 fi
ea784e3b
JQ
1306 vnc_sasl=no
1307 fi
2f9606b3
AL
1308fi
1309
2f6f5c7a
CC
1310##########################################
1311# VNC JPEG detection
96763cf9 1312if test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
1313cat > $TMPC <<EOF
1314#include <stdio.h>
1315#include <jpeglib.h>
1316int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
1317EOF
1318 vnc_jpeg_cflags=""
1319 vnc_jpeg_libs="-ljpeg"
1320 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
1321 vnc_jpeg=yes
1322 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
1323 else
1324 if test "$vnc_jpeg" = "yes" ; then
1325 feature_not_found "vnc-jpeg"
1326 fi
1327 vnc_jpeg=no
1328 fi
1329fi
1330
efe556ad
CC
1331##########################################
1332# VNC PNG detection
96763cf9 1333if test "$vnc_png" != "no" ; then
efe556ad
CC
1334cat > $TMPC <<EOF
1335//#include <stdio.h>
1336#include <png.h>
832ce9c2 1337#include <stddef.h>
efe556ad
CC
1338int main(void) {
1339 png_structp png_ptr;
1340 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1341 return 0;
1342}
1343EOF
1344 vnc_png_cflags=""
1345 vnc_png_libs="-lpng"
1346 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1347 vnc_png=yes
1348 libs_softmmu="$vnc_png_libs $libs_softmmu"
1349 else
1350 if test "$vnc_png" = "yes" ; then
1351 feature_not_found "vnc-png"
1352 fi
1353 vnc_png=no
1354 fi
1355fi
1356
76655d6d
AL
1357##########################################
1358# fnmatch() probe, used for ACL routines
1359fnmatch="no"
1360cat > $TMPC << EOF
1361#include <fnmatch.h>
1362int main(void)
1363{
1364 fnmatch("foo", "foo", 0);
1365 return 0;
1366}
1367EOF
52166aa0 1368if compile_prog "" "" ; then
76655d6d
AL
1369 fnmatch="yes"
1370fi
1371
ee682d27
SW
1372##########################################
1373# uuid_generate() probe, used for vdi block driver
1374if test "$uuid" != "no" ; then
1375 uuid_libs="-luuid"
1376 cat > $TMPC << EOF
1377#include <uuid/uuid.h>
1378int main(void)
1379{
1380 uuid_t my_uuid;
1381 uuid_generate(my_uuid);
1382 return 0;
1383}
1384EOF
1385 if compile_prog "" "$uuid_libs" ; then
1386 uuid="yes"
1387 libs_softmmu="$uuid_libs $libs_softmmu"
1388 libs_tools="$uuid_libs $libs_tools"
1389 else
1390 if test "$uuid" = "yes" ; then
1391 feature_not_found "uuid"
1392 fi
1393 uuid=no
1394 fi
1395fi
1396
dce512de
CH
1397##########################################
1398# xfsctl() probe, used for raw-posix
1399if test "$xfs" != "no" ; then
1400 cat > $TMPC << EOF
1401#include <xfs/xfs.h>
1402int main(void)
1403{
1404 xfsctl(NULL, 0, 0, NULL);
1405 return 0;
1406}
1407EOF
1408 if compile_prog "" "" ; then
1409 xfs="yes"
1410 else
1411 if test "$xfs" = "yes" ; then
1412 feature_not_found "xfs"
1413 fi
1414 xfs=no
1415 fi
1416fi
1417
8a16d273
TS
1418##########################################
1419# vde libraries probe
dfb278bd 1420if test "$vde" != "no" ; then
4baae0ac 1421 vde_libs="-lvdeplug"
8a16d273
TS
1422 cat > $TMPC << EOF
1423#include <libvdeplug.h>
4a7f0e06
PB
1424int main(void)
1425{
1426 struct vde_open_args a = {0, 0, 0};
1427 vde_open("", "", &a);
1428 return 0;
1429}
8a16d273 1430EOF
52166aa0 1431 if compile_prog "" "$vde_libs" ; then
4baae0ac 1432 vde=yes
8e02e54c
JQ
1433 libs_softmmu="$vde_libs $libs_softmmu"
1434 libs_tools="$vde_libs $libs_tools"
dfb278bd
JQ
1435 else
1436 if test "$vde" = "yes" ; then
1437 feature_not_found "vde"
1438 fi
1439 vde=no
4baae0ac 1440 fi
8a16d273
TS
1441fi
1442
8f28f3fb 1443##########################################
c2de5c91 1444# Sound support libraries probe
8f28f3fb 1445
c2de5c91 1446audio_drv_probe()
1447{
1448 drv=$1
1449 hdr=$2
1450 lib=$3
1451 exp=$4
1452 cfl=$5
1453 cat > $TMPC << EOF
1454#include <$hdr>
1455int main(void) { $exp }
8f28f3fb 1456EOF
52166aa0 1457 if compile_prog "$cfl" "$lib" ; then
c2de5c91 1458 :
1459 else
1460 echo
1461 echo "Error: $drv check failed"
1462 echo "Make sure to have the $drv libs and headers installed."
1463 echo
1464 exit 1
1465 fi
1466}
1467
2fa7d3bf 1468audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 1469for drv in $audio_drv_list; do
1470 case $drv in
1471 alsa)
1472 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1473 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
a4bf6780 1474 libs_softmmu="-lasound $libs_softmmu"
c2de5c91 1475 ;;
1476
1477 fmod)
1478 if test -z $fmod_lib || test -z $fmod_inc; then
1479 echo
1480 echo "Error: You must specify path to FMOD library and headers"
1481 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1482 echo
1483 exit 1
1484 fi
1485 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
a4bf6780 1486 libs_softmmu="$fmod_lib $libs_softmmu"
c2de5c91 1487 ;;
1488
1489 esd)
1490 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
a4bf6780 1491 libs_softmmu="-lesd $libs_softmmu"
67f86e8e 1492 audio_pt_int="yes"
c2de5c91 1493 ;;
b8e59f18 1494
1495 pa)
493abda6 1496 audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
b8e59f18 1497 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
493abda6 1498 libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
67f86e8e 1499 audio_pt_int="yes"
b8e59f18 1500 ;;
1501
997e690a
JQ
1502 coreaudio)
1503 libs_softmmu="-framework CoreAudio $libs_softmmu"
1504 ;;
1505
a4bf6780
JQ
1506 dsound)
1507 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
d5631638 1508 audio_win_int="yes"
a4bf6780
JQ
1509 ;;
1510
1511 oss)
1512 libs_softmmu="$oss_lib $libs_softmmu"
1513 ;;
1514
1515 sdl|wav)
2f6a1ab0
BS
1516 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1517 ;;
1518
d5631638 1519 winwave)
1520 libs_softmmu="-lwinmm $libs_softmmu"
1521 audio_win_int="yes"
1522 ;;
1523
e4c63a6a 1524 *)
1c9b2a52 1525 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 1526 echo
1527 echo "Error: Unknown driver '$drv' selected"
1528 echo "Possible drivers are: $audio_possible_drivers"
1529 echo
1530 exit 1
1531 }
1532 ;;
c2de5c91 1533 esac
1534done
8f28f3fb 1535
2e4d9fb1
AJ
1536##########################################
1537# BrlAPI probe
1538
4ffcedb6 1539if test "$brlapi" != "no" ; then
eb82284f
JQ
1540 brlapi_libs="-lbrlapi"
1541 cat > $TMPC << EOF
2e4d9fb1 1542#include <brlapi.h>
832ce9c2 1543#include <stddef.h>
2e4d9fb1
AJ
1544int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1545EOF
52166aa0 1546 if compile_prog "" "$brlapi_libs" ; then
eb82284f 1547 brlapi=yes
264606b3 1548 libs_softmmu="$brlapi_libs $libs_softmmu"
4ffcedb6
JQ
1549 else
1550 if test "$brlapi" = "yes" ; then
1551 feature_not_found "brlapi"
1552 fi
1553 brlapi=no
eb82284f
JQ
1554 fi
1555fi
2e4d9fb1 1556
4d3b6f6e
AZ
1557##########################################
1558# curses probe
4f78ef9a 1559curses_list="-lncurses -lcurses"
4d3b6f6e 1560
c584a6d0
JQ
1561if test "$curses" != "no" ; then
1562 curses_found=no
4d3b6f6e
AZ
1563 cat > $TMPC << EOF
1564#include <curses.h>
5a8ff3aa
BS
1565#ifdef __OpenBSD__
1566#define resize_term resizeterm
1567#endif
1568int main(void) { resize_term(0, 0); return curses_version(); }
4d3b6f6e 1569EOF
4f78ef9a
JQ
1570 for curses_lib in $curses_list; do
1571 if compile_prog "" "$curses_lib" ; then
c584a6d0 1572 curses_found=yes
4f78ef9a
JQ
1573 libs_softmmu="$curses_lib $libs_softmmu"
1574 break
1575 fi
1576 done
c584a6d0
JQ
1577 if test "$curses_found" = "yes" ; then
1578 curses=yes
1579 else
1580 if test "$curses" = "yes" ; then
1581 feature_not_found "curses"
1582 fi
1583 curses=no
1584 fi
4f78ef9a 1585fi
4d3b6f6e 1586
769ce76d
AG
1587##########################################
1588# curl probe
1589
4e2b0658
PB
1590if $pkgconfig libcurl --modversion >/dev/null 2>&1; then
1591 curlconfig="$pkgconfig libcurl"
1592else
1593 curlconfig=curl-config
1594fi
1595
788c8196 1596if test "$curl" != "no" ; then
769ce76d
AG
1597 cat > $TMPC << EOF
1598#include <curl/curl.h>
1599int main(void) { return curl_easy_init(); }
1600EOF
4e2b0658
PB
1601 curl_cflags=`$curlconfig --cflags 2>/dev/null`
1602 curl_libs=`$curlconfig --libs 2>/dev/null`
b1d5a277 1603 if compile_prog "$curl_cflags" "$curl_libs" ; then
769ce76d 1604 curl=yes
f0302935
JQ
1605 libs_tools="$curl_libs $libs_tools"
1606 libs_softmmu="$curl_libs $libs_softmmu"
788c8196
JQ
1607 else
1608 if test "$curl" = "yes" ; then
1609 feature_not_found "curl"
1610 fi
1611 curl=no
769ce76d
AG
1612 fi
1613fi # test "$curl"
1614
5495ed11
LC
1615##########################################
1616# check framework probe
1617
1618if test "$check_utests" != "no" ; then
1619 cat > $TMPC << EOF
1620#include <check.h>
1621int main(void) { suite_create("qemu test"); return 0; }
1622EOF
f91672e5 1623 check_libs=`$pkgconfig --libs check`
5495ed11
LC
1624 if compile_prog "" $check_libs ; then
1625 check_utests=yes
1626 libs_tools="$check_libs $libs_tools"
1627 else
1628 if test "$check_utests" = "yes" ; then
1629 feature_not_found "check"
1630 fi
1631 check_utests=no
1632 fi
1633fi # test "$check_utests"
1634
fb599c9a
AZ
1635##########################################
1636# bluez support probe
a20a6f46 1637if test "$bluez" != "no" ; then
e820e3f4
AZ
1638 cat > $TMPC << EOF
1639#include <bluetooth/bluetooth.h>
1640int main(void) { return bt_error(0); }
1641EOF
f91672e5
PB
1642 bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null`
1643 bluez_libs=`$pkgconfig --libs bluez 2> /dev/null`
52166aa0 1644 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
a20a6f46 1645 bluez=yes
e482d56a 1646 libs_softmmu="$bluez_libs $libs_softmmu"
e820e3f4 1647 else
a20a6f46
JQ
1648 if test "$bluez" = "yes" ; then
1649 feature_not_found "bluez"
1650 fi
e820e3f4
AZ
1651 bluez="no"
1652 fi
fb599c9a
AZ
1653fi
1654
7ba1e619
AL
1655##########################################
1656# kvm probe
b31a0277 1657if test "$kvm" != "no" ; then
7ba1e619
AL
1658 cat > $TMPC <<EOF
1659#include <linux/kvm.h>
9fd8d8d7 1660#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
7ba1e619
AL
1661#error Invalid KVM version
1662#endif
9fd8d8d7
AL
1663#if !defined(KVM_CAP_USER_MEMORY)
1664#error Missing KVM capability KVM_CAP_USER_MEMORY
1665#endif
1666#if !defined(KVM_CAP_SET_TSS_ADDR)
1667#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1668#endif
1669#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1670#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1671#endif
7ba1e619
AL
1672int main(void) { return 0; }
1673EOF
eac30262
AL
1674 if test "$kerneldir" != "" ; then
1675 kvm_cflags=-I"$kerneldir"/include
8444eb6e
AL
1676 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1677 -a -d "$kerneldir/arch/x86/include" ; then
1678 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
406b430d
AL
1679 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1680 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
0e60a699
AG
1681 elif test "$cpu" = "s390x" -a -d "$kerneldir/arch/s390/include" ; then
1682 kvm_cflags="$kvm_cflags -I$kerneldir/arch/s390/include"
8444eb6e
AL
1683 elif test -d "$kerneldir/arch/$cpu/include" ; then
1684 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1685 fi
eac30262 1686 else
f038e8f7 1687 kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
eac30262 1688 fi
52166aa0 1689 if compile_prog "$kvm_cflags" "" ; then
b31a0277 1690 kvm=yes
dae5079a
JK
1691 cat > $TMPC <<EOF
1692#include <linux/kvm_para.h>
1693int main(void) { return 0; }
1694EOF
1695 if compile_prog "$kvm_cflags" "" ; then
1696 kvm_para=yes
1697 fi
7ba1e619 1698 else
b31a0277 1699 if test "$kvm" = "yes" ; then
0dba6195 1700 if has awk && has grep; then
b31a0277 1701 kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \
9fd8d8d7
AL
1702 | grep "error: " \
1703 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
b31a0277
JQ
1704 if test "$kvmerr" != "" ; then
1705 echo -e "${kvmerr}\n\
1706 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1707 recent kvm-kmod from http://sourceforge.net/projects/kvm."
1708 fi
9fd8d8d7 1709 fi
b31a0277 1710 feature_not_found "kvm"
9fd8d8d7 1711 fi
b31a0277 1712 kvm=no
7ba1e619
AL
1713 fi
1714fi
1715
d5970055
MT
1716##########################################
1717# test for vhost net
1718
1719if test "$vhost_net" != "no"; then
1720 if test "$kvm" != "no"; then
1721 cat > $TMPC <<EOF
1722 #include <linux/vhost.h>
1723 int main(void) { return 0; }
1724EOF
1725 if compile_prog "$kvm_cflags" "" ; then
1726 vhost_net=yes
1727 else
1728 if test "$vhost_net" = "yes" ; then
1729 feature_not_found "vhost-net"
1730 fi
1731 vhost_net=no
1732 fi
1733 else
1734 if test "$vhost_net" = "yes" ; then
4021d247 1735 echo "NOTE: vhost-net feature requires KVM (--enable-kvm)."
d5970055
MT
1736 feature_not_found "vhost-net"
1737 fi
1738 vhost_net=no
1739 fi
1740fi
1741
414f0dab 1742##########################################
e5d355d1 1743# pthread probe
de65fe0f 1744PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
3c529d93 1745
4dd75c70 1746pthread=no
e5d355d1 1747cat > $TMPC << EOF
3c529d93 1748#include <pthread.h>
de65fe0f 1749int main(void) { pthread_create(0,0,0,0); return 0; }
414f0dab 1750EOF
bd00d539
AF
1751if compile_prog "" "" ; then
1752 pthread=yes
1753else
1754 for pthread_lib in $PTHREADLIBS_LIST; do
1755 if compile_prog "" "$pthread_lib" ; then
1756 pthread=yes
1757 LIBS="$pthread_lib $LIBS"
1758 break
1759 fi
1760 done
1761fi
414f0dab 1762
4617e593 1763if test "$mingw32" != yes -a "$pthread" = no; then
4dd75c70
CH
1764 echo
1765 echo "Error: pthread check failed"
1766 echo "Make sure to have the pthread libs and headers installed."
1767 echo
1768 exit 1
e5d355d1
AL
1769fi
1770
f27aaf4b
CB
1771##########################################
1772# rbd probe
1773if test "$rbd" != "no" ; then
1774 cat > $TMPC <<EOF
1775#include <stdio.h>
1776#include <rados/librados.h>
1777int main(void) { rados_initialize(0, NULL); return 0; }
1778EOF
1779 rbd_libs="-lrados -lcrypto"
1780 if compile_prog "" "$rbd_libs" ; then
1781 librados_too_old=no
1782 cat > $TMPC <<EOF
1783#include <stdio.h>
1784#include <rados/librados.h>
1785#ifndef CEPH_OSD_TMAP_SET
1786#error missing CEPH_OSD_TMAP_SET
1787#endif
1788int main(void) {
1789 int (*func)(const rados_pool_t pool, uint64_t *snapid) = rados_selfmanaged_snap_create;
1790 rados_initialize(0, NULL);
1791 return 0;
1792}
1793EOF
1794 if compile_prog "" "$rbd_libs" ; then
1795 rbd=yes
1796 libs_tools="$rbd_libs $libs_tools"
1797 libs_softmmu="$rbd_libs $libs_softmmu"
1798 else
1799 rbd=no
1800 librados_too_old=yes
1801 fi
1802 else
1803 if test "$rbd" = "yes" ; then
1804 feature_not_found "rados block device"
1805 fi
1806 rbd=no
1807 fi
1808 if test "$librados_too_old" = "yes" ; then
1809 echo "-> Your librados version is too old - upgrade needed to have rbd support"
1810 fi
1811fi
1812
5c6c3a6c
CH
1813##########################################
1814# linux-aio probe
5c6c3a6c
CH
1815
1816if test "$linux_aio" != "no" ; then
1817 cat > $TMPC <<EOF
1818#include <libaio.h>
1819#include <sys/eventfd.h>
832ce9c2 1820#include <stddef.h>
5c6c3a6c
CH
1821int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1822EOF
1823 if compile_prog "" "-laio" ; then
1824 linux_aio=yes
048d179f
PB
1825 libs_softmmu="$libs_softmmu -laio"
1826 libs_tools="$libs_tools -laio"
5c6c3a6c
CH
1827 else
1828 if test "$linux_aio" = "yes" ; then
1829 feature_not_found "linux AIO"
1830 fi
3cfcae3c 1831 linux_aio=no
5c6c3a6c
CH
1832 fi
1833fi
1834
758e8e38
VJJ
1835##########################################
1836# attr probe
1837
1838if test "$attr" != "no" ; then
1839 cat > $TMPC <<EOF
1840#include <stdio.h>
1841#include <sys/types.h>
1842#include <attr/xattr.h>
1843int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1844EOF
1845 if compile_prog "" "-lattr" ; then
1846 attr=yes
1847 LIBS="-lattr $LIBS"
1848 else
1849 if test "$attr" = "yes" ; then
1850 feature_not_found "ATTR"
1851 fi
1852 attr=no
1853 fi
1854fi
1855
bf9298b9
AL
1856##########################################
1857# iovec probe
1858cat > $TMPC <<EOF
db34f0b3 1859#include <sys/types.h>
bf9298b9 1860#include <sys/uio.h>
db34f0b3 1861#include <unistd.h>
bf9298b9
AL
1862int main(void) { struct iovec iov; return 0; }
1863EOF
1864iovec=no
52166aa0 1865if compile_prog "" "" ; then
bf9298b9
AL
1866 iovec=yes
1867fi
1868
ceb42de8
AL
1869##########################################
1870# preadv probe
1871cat > $TMPC <<EOF
1872#include <sys/types.h>
1873#include <sys/uio.h>
1874#include <unistd.h>
1875int main(void) { preadv; }
1876EOF
1877preadv=no
52166aa0 1878if compile_prog "" "" ; then
ceb42de8
AL
1879 preadv=yes
1880fi
1881
f652e6af
AJ
1882##########################################
1883# fdt probe
2df87df7 1884if test "$fdt" != "no" ; then
b41af4ba
JQ
1885 fdt_libs="-lfdt"
1886 cat > $TMPC << EOF
f652e6af
AJ
1887int main(void) { return 0; }
1888EOF
52166aa0 1889 if compile_prog "" "$fdt_libs" ; then
f652e6af 1890 fdt=yes
e4782985 1891 libs_softmmu="$fdt_libs $libs_softmmu"
2df87df7
JQ
1892 else
1893 if test "$fdt" = "yes" ; then
1894 feature_not_found "fdt"
1895 fi
1896 fdt=no
f652e6af
AJ
1897 fi
1898fi
1899
3b3f24ad
AJ
1900#
1901# Check for xxxat() functions when we are building linux-user
1902# emulator. This is done because older glibc versions don't
1903# have syscall stubs for these implemented.
1904#
1905atfile=no
67ba57f6 1906cat > $TMPC << EOF
3b3f24ad
AJ
1907#define _ATFILE_SOURCE
1908#include <sys/types.h>
1909#include <fcntl.h>
1910#include <unistd.h>
1911
1912int
1913main(void)
1914{
1915 /* try to unlink nonexisting file */
1916 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1917}
1918EOF
52166aa0 1919if compile_prog "" "" ; then
67ba57f6 1920 atfile=yes
3b3f24ad
AJ
1921fi
1922
39386ac7 1923# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
1924# emulator. This is done because older glibc versions don't
1925# have syscall stubs for these implemented. In that case we
1926# don't provide them even if kernel supports them.
1927#
1928inotify=no
67ba57f6 1929cat > $TMPC << EOF
3b3f24ad
AJ
1930#include <sys/inotify.h>
1931
1932int
1933main(void)
1934{
1935 /* try to start inotify */
8690e420 1936 return inotify_init();
3b3f24ad
AJ
1937}
1938EOF
52166aa0 1939if compile_prog "" "" ; then
67ba57f6 1940 inotify=yes
3b3f24ad
AJ
1941fi
1942
c05c7a73
RV
1943inotify1=no
1944cat > $TMPC << EOF
1945#include <sys/inotify.h>
1946
1947int
1948main(void)
1949{
1950 /* try to start inotify */
1951 return inotify_init1(0);
1952}
1953EOF
1954if compile_prog "" "" ; then
1955 inotify1=yes
1956fi
1957
ebc996f3
RV
1958# check if utimensat and futimens are supported
1959utimens=no
1960cat > $TMPC << EOF
1961#define _ATFILE_SOURCE
ebc996f3
RV
1962#include <stddef.h>
1963#include <fcntl.h>
1964
1965int main(void)
1966{
1967 utimensat(AT_FDCWD, "foo", NULL, 0);
1968 futimens(0, NULL);
1969 return 0;
1970}
1971EOF
52166aa0 1972if compile_prog "" "" ; then
ebc996f3
RV
1973 utimens=yes
1974fi
1975
099d6b0f
RV
1976# check if pipe2 is there
1977pipe2=no
1978cat > $TMPC << EOF
099d6b0f
RV
1979#include <unistd.h>
1980#include <fcntl.h>
1981
1982int main(void)
1983{
1984 int pipefd[2];
1985 pipe2(pipefd, O_CLOEXEC);
1986 return 0;
1987}
1988EOF
52166aa0 1989if compile_prog "" "" ; then
099d6b0f
RV
1990 pipe2=yes
1991fi
1992
40ff6d7e
KW
1993# check if accept4 is there
1994accept4=no
1995cat > $TMPC << EOF
40ff6d7e
KW
1996#include <sys/socket.h>
1997#include <stddef.h>
1998
1999int main(void)
2000{
2001 accept4(0, NULL, NULL, SOCK_CLOEXEC);
2002 return 0;
2003}
2004EOF
2005if compile_prog "" "" ; then
2006 accept4=yes
2007fi
2008
3ce34dfb 2009# check if tee/splice is there. vmsplice was added same time.
2010splice=no
2011cat > $TMPC << EOF
3ce34dfb 2012#include <unistd.h>
2013#include <fcntl.h>
2014#include <limits.h>
2015
2016int main(void)
2017{
2018 int len, fd;
2019 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
2020 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
2021 return 0;
2022}
2023EOF
52166aa0 2024if compile_prog "" "" ; then
3ce34dfb 2025 splice=yes
2026fi
2027
dcc38d1c
MT
2028##########################################
2029# signalfd probe
2030signalfd="no"
2031cat > $TMPC << EOF
2032#define _GNU_SOURCE
2033#include <unistd.h>
2034#include <sys/syscall.h>
2035#include <signal.h>
2036int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2037EOF
2038
2039if compile_prog "" "" ; then
2040 signalfd=yes
2041fi
2042
c2882b96
RV
2043# check if eventfd is supported
2044eventfd=no
2045cat > $TMPC << EOF
2046#include <sys/eventfd.h>
2047
2048int main(void)
2049{
2050 int efd = eventfd(0, 0);
2051 return 0;
2052}
2053EOF
2054if compile_prog "" "" ; then
2055 eventfd=yes
2056fi
2057
d0927938
UH
2058# check for fallocate
2059fallocate=no
2060cat > $TMPC << EOF
2061#include <fcntl.h>
2062
2063int main(void)
2064{
2065 fallocate(0, 0, 0, 0);
2066 return 0;
2067}
2068EOF
be17dc90 2069if compile_prog "$ARCH_CFLAGS" "" ; then
d0927938
UH
2070 fallocate=yes
2071fi
2072
c727f47d
PM
2073# check for sync_file_range
2074sync_file_range=no
2075cat > $TMPC << EOF
2076#include <fcntl.h>
2077
2078int main(void)
2079{
2080 sync_file_range(0, 0, 0, 0);
2081 return 0;
2082}
2083EOF
2084if compile_prog "$ARCH_CFLAGS" "" ; then
2085 sync_file_range=yes
2086fi
2087
dace20dc
PM
2088# check for linux/fiemap.h and FS_IOC_FIEMAP
2089fiemap=no
2090cat > $TMPC << EOF
2091#include <sys/ioctl.h>
2092#include <linux/fs.h>
2093#include <linux/fiemap.h>
2094
2095int main(void)
2096{
2097 ioctl(0, FS_IOC_FIEMAP, 0);
2098 return 0;
2099}
2100EOF
2101if compile_prog "$ARCH_CFLAGS" "" ; then
2102 fiemap=yes
2103fi
2104
d0927938
UH
2105# check for dup3
2106dup3=no
2107cat > $TMPC << EOF
2108#include <unistd.h>
2109
2110int main(void)
2111{
2112 dup3(0, 0, 0);
2113 return 0;
2114}
2115EOF
78f5d726 2116if compile_prog "" "" ; then
d0927938
UH
2117 dup3=yes
2118fi
2119
cc8ae6de 2120# Check if tools are available to build documentation.
a25dba17 2121if test "$docs" != "no" ; then
01668d98 2122 if has makeinfo && has pod2man; then
a25dba17 2123 docs=yes
83a3ab8b 2124 else
a25dba17
JQ
2125 if test "$docs" = "yes" ; then
2126 feature_not_found "docs"
83a3ab8b 2127 fi
a25dba17 2128 docs=no
83a3ab8b 2129 fi
cc8ae6de
PB
2130fi
2131
f514f41c 2132# Search for bswap_32 function
6ae9a1f4
JQ
2133byteswap_h=no
2134cat > $TMPC << EOF
2135#include <byteswap.h>
2136int main(void) { return bswap_32(0); }
2137EOF
52166aa0 2138if compile_prog "" "" ; then
6ae9a1f4
JQ
2139 byteswap_h=yes
2140fi
2141
f514f41c 2142# Search for bswap_32 function
6ae9a1f4
JQ
2143bswap_h=no
2144cat > $TMPC << EOF
2145#include <sys/endian.h>
2146#include <sys/types.h>
2147#include <machine/bswap.h>
2148int main(void) { return bswap32(0); }
2149EOF
52166aa0 2150if compile_prog "" "" ; then
6ae9a1f4
JQ
2151 bswap_h=yes
2152fi
2153
da93a1fd
AL
2154##########################################
2155# Do we need librt
2156cat > $TMPC <<EOF
2157#include <signal.h>
2158#include <time.h>
2159int main(void) { clockid_t id; return clock_gettime(id, NULL); }
2160EOF
2161
52166aa0 2162if compile_prog "" "" ; then
07ffa4bd 2163 :
52166aa0 2164elif compile_prog "" "-lrt" ; then
07ffa4bd 2165 LIBS="-lrt $LIBS"
da93a1fd
AL
2166fi
2167
31ff504d 2168if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
179cf400 2169 "$aix" != "yes" -a "$haiku" != "yes" ; then
6362a53f
JQ
2170 libs_softmmu="-lutil $libs_softmmu"
2171fi
2172
de5071c5
BS
2173##########################################
2174# check if the compiler defines offsetof
2175
2176need_offsetof=yes
2177cat > $TMPC << EOF
2178#include <stddef.h>
2179int main(void) { struct s { int f; }; return offsetof(struct s, f); }
2180EOF
2181if compile_prog "" "" ; then
2182 need_offsetof=no
2183fi
2184
747bbdf7
BS
2185##########################################
2186# check if the compiler understands attribute warn_unused_result
2187#
2188# This could be smarter, but gcc -Werror does not error out even when warning
2189# about attribute warn_unused_result
2190
2191gcc_attribute_warn_unused_result=no
2192cat > $TMPC << EOF
2193#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2194#error gcc 3.3 or older
2195#endif
2196int main(void) { return 0;}
2197EOF
2198if compile_prog "" ""; then
2199 gcc_attribute_warn_unused_result=yes
2200fi
2201
cd4ec0b4
GH
2202# spice probe
2203if test "$spice" != "no" ; then
2204 cat > $TMPC << EOF
2205#include <spice.h>
2206int main(void) { spice_server_new(); return 0; }
2207EOF
2208 spice_cflags=$($pkgconfig --cflags spice-protocol spice-server 2>/dev/null)
2209 spice_libs=$($pkgconfig --libs spice-protocol spice-server 2>/dev/null)
ba807829 2210 if $pkgconfig --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \
cd4ec0b4
GH
2211 compile_prog "$spice_cflags" "$spice_libs" ; then
2212 spice="yes"
2213 libs_softmmu="$libs_softmmu $spice_libs"
2214 QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2215 else
2216 if test "$spice" = "yes" ; then
2217 feature_not_found "spice"
2218 fi
2219 spice="no"
2220 fi
2221fi
2222
2223##########################################
2224
5f6b9e8f
BS
2225##########################################
2226# check if we have fdatasync
2227
2228fdatasync=no
2229cat > $TMPC << EOF
2230#include <unistd.h>
2231int main(void) { return fdatasync(0); }
2232EOF
2233if compile_prog "" "" ; then
2234 fdatasync=yes
2235fi
2236
e78815a5
AF
2237##########################################
2238# check if we have madvise
2239
2240madvise=no
2241cat > $TMPC << EOF
2242#include <sys/types.h>
2243#include <sys/mman.h>
832ce9c2 2244#include <stddef.h>
e78815a5
AF
2245int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2246EOF
2247if compile_prog "" "" ; then
2248 madvise=yes
2249fi
2250
2251##########################################
2252# check if we have posix_madvise
2253
2254posix_madvise=no
2255cat > $TMPC << EOF
2256#include <sys/mman.h>
832ce9c2 2257#include <stddef.h>
e78815a5
AF
2258int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2259EOF
2260if compile_prog "" "" ; then
2261 posix_madvise=yes
2262fi
2263
94a420b1
SH
2264##########################################
2265# check if trace backend exists
2266
2267sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
2268if test "$?" -ne 0 ; then
2269 echo
2270 echo "Error: invalid trace backend"
2271 echo "Please choose a supported trace backend."
2272 echo
2273 exit 1
2274fi
2275
7e24e92a
SH
2276##########################################
2277# For 'ust' backend, test if ust headers are present
2278if test "$trace_backend" = "ust"; then
2279 cat > $TMPC << EOF
2280#include <ust/tracepoint.h>
2281#include <ust/marker.h>
2282int main(void) { return 0; }
2283EOF
2284 if compile_prog "" "" ; then
2285 LIBS="-lust $LIBS"
2286 else
2287 echo
2288 echo "Error: Trace backend 'ust' missing libust header files"
2289 echo
2290 exit 1
2291 fi
2292fi
b3d08c02
DB
2293
2294##########################################
2295# For 'dtrace' backend, test if 'dtrace' command is present
2296if test "$trace_backend" = "dtrace"; then
2297 if ! has 'dtrace' ; then
2298 echo
2299 echo "Error: dtrace command is not found in PATH $PATH"
2300 echo
2301 exit 1
2302 fi
c276b17d
DB
2303 trace_backend_stap="no"
2304 if has 'stap' ; then
2305 trace_backend_stap="yes"
2306 fi
b3d08c02
DB
2307fi
2308
7e24e92a 2309##########################################
e86ecd4b
JQ
2310# End of CC checks
2311# After here, no more $cc or $ld runs
2312
e86ecd4b 2313if test "$debug" = "no" ; then
1156c669 2314 CFLAGS="-O2 $CFLAGS"
e86ecd4b 2315fi
a316e378 2316
e86ecd4b
JQ
2317# Consult white-list to determine whether to enable werror
2318# by default. Only enable by default for git builds
20ff6c80
AL
2319z_version=`cut -f3 -d. $source_path/VERSION`
2320
e86ecd4b 2321if test -z "$werror" ; then
e86ecd4b
JQ
2322 if test "$z_version" = "50" -a \
2323 "$linux" = "yes" ; then
2324 werror="yes"
2325 else
2326 werror="no"
2327 fi
2328fi
2329
20ff6c80
AL
2330# Disable zero malloc errors for official releases unless explicitly told to
2331# enable/disable
2332if test -z "$zero_malloc" ; then
2333 if test "$z_version" = "50" ; then
2334 zero_malloc="no"
2335 else
2336 zero_malloc="yes"
2337 fi
2338fi
2339
e86ecd4b 2340if test "$werror" = "yes" ; then
a558ee17 2341 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
e86ecd4b
JQ
2342fi
2343
2344if test "$solaris" = "no" ; then
2345 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 2346 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
2347 fi
2348fi
2349
952afb71
BS
2350# Use ASLR, no-SEH and DEP if available
2351if test "$mingw32" = "yes" ; then
2352 for flag in --dynamicbase --no-seh --nxcompat; do
2353 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2354 LDFLAGS="-Wl,$flag $LDFLAGS"
2355 fi
2356 done
2357fi
2358
190e9c59 2359confdir=$sysconfdir$confsuffix
e7b45cc4 2360
ca35f780
PB
2361tools=
2362if test "$softmmu" = yes ; then
2363 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2364 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2365 tools="qemu-nbd\$(EXESUF) $tools"
2366 if [ "$check_utests" = "yes" ]; then
2367 tools="check-qint check-qstring check-qdict check-qlist $tools"
2368 tools="check-qfloat check-qjson $tools"
2369 fi
2370 fi
2371fi
2372
2373# Mac OS X ships with a broken assembler
2374roms=
2375if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2376 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2377 "$softmmu" = yes ; then
2378 roms="optionrom"
2379fi
2380
2381
43ce4dfe 2382echo "Install prefix $prefix"
f2b9e1e3
PB
2383echo "BIOS directory `eval echo $datadir`"
2384echo "binary directory `eval echo $bindir`"
1c0fd160 2385echo "config directory `eval echo $sysconfdir`"
11d9f695 2386if test "$mingw32" = "no" ; then
f2b9e1e3 2387echo "Manual directory `eval echo $mandir`"
43ce4dfe 2388echo "ELF interp prefix $interp_prefix"
11d9f695 2389fi
5a67135a 2390echo "Source path $source_path"
43ce4dfe 2391echo "C compiler $cc"
83469015 2392echo "Host C compiler $host_cc"
0c439cbf 2393echo "CFLAGS $CFLAGS"
a558ee17 2394echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 2395echo "LDFLAGS $LDFLAGS"
43ce4dfe 2396echo "make $make"
6a882643 2397echo "install $install"
43ce4dfe 2398echo "host CPU $cpu"
de83cd02 2399echo "host big endian $bigendian"
97a847bc 2400echo "target list $target_list"
ade25b0d 2401echo "tcg debug enabled $debug_tcg"
b4475aa2 2402echo "Mon debug enabled $debug_mon"
43ce4dfe 2403echo "gprof enabled $gprof"
03b4fe7d 2404echo "sparse enabled $sparse"
1625af87 2405echo "strip binaries $strip_opt"
05c2a3e7 2406echo "profiler $profiler"
43ce4dfe 2407echo "static build $static"
85aa5189 2408echo "-Werror enabled $werror"
5b0753e0
FB
2409if test "$darwin" = "yes" ; then
2410 echo "Cocoa support $cocoa"
2411fi
97a847bc 2412echo "SDL support $sdl"
4d3b6f6e 2413echo "curses support $curses"
769ce76d 2414echo "curl support $curl"
5495ed11 2415echo "check support $check_utests"
67b915a5 2416echo "mingw32 support $mingw32"
0c58ac1c 2417echo "Audio drivers $audio_drv_list"
2418echo "Extra audio cards $audio_card_list"
eb852011 2419echo "Block whitelist $block_drv_whitelist"
8ff9cbf7 2420echo "Mixer emulation $mixemu"
8d5d2d4c 2421echo "VNC TLS support $vnc_tls"
2f9606b3 2422echo "VNC SASL support $vnc_sasl"
2f6f5c7a 2423echo "VNC JPEG support $vnc_jpeg"
efe556ad 2424echo "VNC PNG support $vnc_png"
bd023f95 2425echo "VNC thread $vnc_thread"
3142255c
BS
2426if test -n "$sparc_cpu"; then
2427 echo "Target Sparc Arch $sparc_cpu"
2428fi
e37630ca 2429echo "xen support $xen"
2e4d9fb1 2430echo "brlapi support $brlapi"
a20a6f46 2431echo "bluez support $bluez"
a25dba17 2432echo "Documentation $docs"
c5937220
PB
2433[ ! -z "$uname_release" ] && \
2434echo "uname -r $uname_release"
bd0c5661 2435echo "NPTL support $nptl"
379f6698 2436echo "GUEST_BASE $guest_base"
34005a00 2437echo "PIE user targets $user_pie"
8a16d273 2438echo "vde support $vde"
e5d355d1 2439echo "IO thread $io_thread"
5c6c3a6c 2440echo "Linux AIO support $linux_aio"
758e8e38 2441echo "ATTR/XATTR support $attr"
77755340 2442echo "Install blobs $blobs"
b31a0277 2443echo "KVM support $kvm"
f652e6af 2444echo "fdt support $fdt"
ceb42de8 2445echo "preadv support $preadv"
5f6b9e8f 2446echo "fdatasync $fdatasync"
e78815a5
AF
2447echo "madvise $madvise"
2448echo "posix_madvise $posix_madvise"
ee682d27 2449echo "uuid support $uuid"
d5970055 2450echo "vhost-net support $vhost_net"
94a420b1 2451echo "Trace backend $trace_backend"
9410b56c 2452echo "Trace output file $trace_file-<pid>"
cd4ec0b4 2453echo "spice support $spice"
f27aaf4b 2454echo "rbd support $rbd"
dce512de 2455echo "xfsctl support $xfs"
67b915a5 2456
97a847bc 2457if test $sdl_too_old = "yes"; then
24b55b96 2458echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 2459fi
7d13299d 2460
98ec69ac 2461config_host_mak="config-host.mak"
4bf6b55b 2462config_host_ld="config-host.ld"
98ec69ac 2463
98ec69ac
JQ
2464echo "# Automatically generated by configure - do not modify" > $config_host_mak
2465printf "# Configured with:" >> $config_host_mak
2466printf " '%s'" "$0" "$@" >> $config_host_mak
2467echo >> $config_host_mak
98ec69ac 2468
e6c3b0f7 2469echo all: >> $config_host_mak
99d7cc75
PB
2470echo "prefix=$prefix" >> $config_host_mak
2471echo "bindir=$bindir" >> $config_host_mak
2472echo "mandir=$mandir" >> $config_host_mak
2473echo "datadir=$datadir" >> $config_host_mak
2474echo "sysconfdir=$sysconfdir" >> $config_host_mak
2475echo "docdir=$docdir" >> $config_host_mak
1dabe05c 2476echo "confdir=$confdir" >> $config_host_mak
804edf29 2477
2408a527 2478case "$cpu" in
24e804ec 2479 i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
e0da9dd3 2480 ARCH=$cpu
2408a527 2481 ;;
a302c32d 2482 armv4b|armv4l)
16dbd14f 2483 ARCH=arm
2408a527 2484 ;;
2408a527 2485esac
98ec69ac 2486echo "ARCH=$ARCH" >> $config_host_mak
f8393946 2487if test "$debug_tcg" = "yes" ; then
2358a494 2488 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 2489fi
b4475aa2
LC
2490if test "$debug_mon" = "yes" ; then
2491 echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2492fi
f3d08ee6 2493if test "$debug" = "yes" ; then
2358a494 2494 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
f3d08ee6 2495fi
1625af87 2496if test "$strip_opt" = "yes" ; then
52ba784d 2497 echo "STRIP=${strip}" >> $config_host_mak
1625af87 2498fi
7d13299d 2499if test "$bigendian" = "yes" ; then
e2542fe2 2500 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 2501fi
2358a494 2502echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
67b915a5 2503if test "$mingw32" = "yes" ; then
98ec69ac 2504 echo "CONFIG_WIN32=y" >> $config_host_mak
9fe6de94
BS
2505 rc_version=`cat $source_path/VERSION`
2506 version_major=${rc_version%%.*}
2507 rc_version=${rc_version#*.}
2508 version_minor=${rc_version%%.*}
2509 rc_version=${rc_version#*.}
2510 version_subminor=${rc_version%%.*}
2511 version_micro=0
2512 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
2513 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
210fa556 2514else
35f4df27 2515 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
2516fi
2517
2518if test "$linux" = "yes" ; then
2519 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 2520fi
128ab2ff 2521
83fb7adf 2522if test "$darwin" = "yes" ; then
98ec69ac 2523 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 2524fi
b29fe3ed 2525
2526if test "$aix" = "yes" ; then
98ec69ac 2527 echo "CONFIG_AIX=y" >> $config_host_mak
b29fe3ed 2528fi
2529
ec530c81 2530if test "$solaris" = "yes" ; then
98ec69ac 2531 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2358a494 2532 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
0475a5ca 2533 if test "$needs_libsunmath" = "yes" ; then
75b5a697 2534 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
0475a5ca 2535 fi
ec530c81 2536fi
179cf400
AF
2537if test "$haiku" = "yes" ; then
2538 echo "CONFIG_HAIKU=y" >> $config_host_mak
2539fi
97a847bc 2540if test "$static" = "yes" ; then
98ec69ac 2541 echo "CONFIG_STATIC=y" >> $config_host_mak
7d13299d 2542fi
05c2a3e7 2543if test $profiler = "yes" ; then
2358a494 2544 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 2545fi
c20709aa 2546if test "$slirp" = "yes" ; then
98ec69ac 2547 echo "CONFIG_SLIRP=y" >> $config_host_mak
b6e31c12 2548 QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS"
c20709aa 2549fi
8a16d273 2550if test "$vde" = "yes" ; then
98ec69ac 2551 echo "CONFIG_VDE=y" >> $config_host_mak
8a16d273 2552fi
0c58ac1c 2553for card in $audio_card_list; do
f6e5889e 2554 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac 2555 echo "$def=y" >> $config_host_mak
0c58ac1c 2556done
2358a494 2557echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 2558for drv in $audio_drv_list; do
f6e5889e 2559 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 2560 echo "$def=y" >> $config_host_mak
923e4521 2561 if test "$drv" = "fmod"; then
7aac6cb1 2562 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
0c58ac1c 2563 fi
2564done
67f86e8e
JQ
2565if test "$audio_pt_int" = "yes" ; then
2566 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2567fi
d5631638 2568if test "$audio_win_int" = "yes" ; then
2569 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2570fi
eb852011 2571echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
8ff9cbf7 2572if test "$mixemu" = "yes" ; then
98ec69ac 2573 echo "CONFIG_MIXEMU=y" >> $config_host_mak
8ff9cbf7 2574fi
8d5d2d4c 2575if test "$vnc_tls" = "yes" ; then
98ec69ac 2576 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
525061bf 2577 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
8d5d2d4c 2578fi
2f9606b3 2579if test "$vnc_sasl" = "yes" ; then
98ec69ac 2580 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
60ddf533 2581 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2f9606b3 2582fi
96763cf9 2583if test "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
2584 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2585 echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2586fi
96763cf9 2587if test "$vnc_png" != "no" ; then
efe556ad
CC
2588 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2589 echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2590fi
96763cf9 2591if test "$vnc_thread" != "no" ; then
bd023f95
CC
2592 echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2593 echo "CONFIG_THREAD=y" >> $config_host_mak
2594fi
76655d6d 2595if test "$fnmatch" = "yes" ; then
2358a494 2596 echo "CONFIG_FNMATCH=y" >> $config_host_mak
76655d6d 2597fi
ee682d27
SW
2598if test "$uuid" = "yes" ; then
2599 echo "CONFIG_UUID=y" >> $config_host_mak
2600fi
dce512de
CH
2601if test "$xfs" = "yes" ; then
2602 echo "CONFIG_XFS=y" >> $config_host_mak
2603fi
b1a550a0 2604qemu_version=`head $source_path/VERSION`
98ec69ac 2605echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 2606echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 2607echo "SRC_PATH=$source_path" >> $config_host_mak
98ec69ac 2608echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 2609if [ "$docs" = "yes" ] ; then
98ec69ac 2610 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 2611fi
1ac88f28 2612if test "$sdl" = "yes" ; then
98ec69ac 2613 echo "CONFIG_SDL=y" >> $config_host_mak
1ac88f28 2614 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
49ecc3fa
FB
2615fi
2616if test "$cocoa" = "yes" ; then
98ec69ac 2617 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
2618fi
2619if test "$curses" = "yes" ; then
98ec69ac 2620 echo "CONFIG_CURSES=y" >> $config_host_mak
49ecc3fa 2621fi
3b3f24ad 2622if test "$atfile" = "yes" ; then
2358a494 2623 echo "CONFIG_ATFILE=y" >> $config_host_mak
3b3f24ad 2624fi
ebc996f3 2625if test "$utimens" = "yes" ; then
2358a494 2626 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
ebc996f3 2627fi
099d6b0f 2628if test "$pipe2" = "yes" ; then
2358a494 2629 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 2630fi
40ff6d7e
KW
2631if test "$accept4" = "yes" ; then
2632 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2633fi
3ce34dfb 2634if test "$splice" = "yes" ; then
2358a494 2635 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 2636fi
c2882b96
RV
2637if test "$eventfd" = "yes" ; then
2638 echo "CONFIG_EVENTFD=y" >> $config_host_mak
2639fi
d0927938
UH
2640if test "$fallocate" = "yes" ; then
2641 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2642fi
c727f47d
PM
2643if test "$sync_file_range" = "yes" ; then
2644 echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
2645fi
dace20dc
PM
2646if test "$fiemap" = "yes" ; then
2647 echo "CONFIG_FIEMAP=y" >> $config_host_mak
2648fi
d0927938
UH
2649if test "$dup3" = "yes" ; then
2650 echo "CONFIG_DUP3=y" >> $config_host_mak
2651fi
3b3f24ad 2652if test "$inotify" = "yes" ; then
2358a494 2653 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 2654fi
c05c7a73
RV
2655if test "$inotify1" = "yes" ; then
2656 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2657fi
6ae9a1f4
JQ
2658if test "$byteswap_h" = "yes" ; then
2659 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2660fi
2661if test "$bswap_h" = "yes" ; then
2662 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2663fi
769ce76d 2664if test "$curl" = "yes" ; then
98ec69ac 2665 echo "CONFIG_CURL=y" >> $config_host_mak
b1d5a277 2666 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
769ce76d 2667fi
2e4d9fb1 2668if test "$brlapi" = "yes" ; then
98ec69ac 2669 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2e4d9fb1 2670fi
fb599c9a 2671if test "$bluez" = "yes" ; then
98ec69ac 2672 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 2673 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 2674fi
e37630ca 2675if test "$xen" = "yes" ; then
5647eb74 2676 echo "CONFIG_XEN=y" >> $config_host_mak
e37630ca 2677fi
e5d355d1 2678if test "$io_thread" = "yes" ; then
98ec69ac 2679 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
bd023f95 2680 echo "CONFIG_THREAD=y" >> $config_host_mak
e5d355d1 2681fi
5c6c3a6c
CH
2682if test "$linux_aio" = "yes" ; then
2683 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2684fi
758e8e38
VJJ
2685if test "$attr" = "yes" ; then
2686 echo "CONFIG_ATTR=y" >> $config_host_mak
2687fi
2688if test "$linux" = "yes" ; then
2689 if test "$attr" = "yes" ; then
2690 echo "CONFIG_VIRTFS=y" >> $config_host_mak
2691 fi
2692fi
77755340 2693if test "$blobs" = "yes" ; then
98ec69ac 2694 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 2695fi
bf9298b9 2696if test "$iovec" = "yes" ; then
2358a494 2697 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 2698fi
ceb42de8 2699if test "$preadv" = "yes" ; then
2358a494 2700 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 2701fi
f652e6af 2702if test "$fdt" = "yes" ; then
3f0855b1 2703 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 2704fi
dcc38d1c
MT
2705if test "$signalfd" = "yes" ; then
2706 echo "CONFIG_SIGNALFD=y" >> $config_host_mak
2707fi
de5071c5
BS
2708if test "$need_offsetof" = "yes" ; then
2709 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2710fi
747bbdf7
BS
2711if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2712 echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2713fi
5f6b9e8f
BS
2714if test "$fdatasync" = "yes" ; then
2715 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2716fi
e78815a5
AF
2717if test "$madvise" = "yes" ; then
2718 echo "CONFIG_MADVISE=y" >> $config_host_mak
2719fi
2720if test "$posix_madvise" = "yes" ; then
2721 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2722fi
97a847bc 2723
cd4ec0b4
GH
2724if test "$spice" = "yes" ; then
2725 echo "CONFIG_SPICE=y" >> $config_host_mak
2726fi
2727
83fb7adf 2728# XXX: suppress that
7d3505c5 2729if [ "$bsd" = "yes" ] ; then
2358a494 2730 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
2731fi
2732
2358a494 2733echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
c5937220 2734
20ff6c80
AL
2735if test "$zero_malloc" = "yes" ; then
2736 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2737fi
f27aaf4b
CB
2738if test "$rbd" = "yes" ; then
2739 echo "CONFIG_RBD=y" >> $config_host_mak
2740fi
20ff6c80 2741
68063649
BS
2742# USB host support
2743case "$usb" in
2744linux)
98ec69ac 2745 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
2746;;
2747bsd)
98ec69ac 2748 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
2749;;
2750*)
98ec69ac 2751 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
2752;;
2753esac
2754
94a420b1 2755echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
22890ab5
PS
2756if test "$trace_backend" = "simple"; then
2757 echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2758fi
9410b56c
PS
2759# Set the appropriate trace file.
2760if test "$trace_backend" = "simple"; then
2761 trace_file="\"$trace_file-%u\""
2762fi
c276b17d
DB
2763if test "$trace_backend" = "dtrace" -a "$trace_backend_stap" = "yes" ; then
2764 echo "CONFIG_SYSTEMTAP_TRACE=y" >> $config_host_mak
2765fi
9410b56c
PS
2766echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2767
98ec69ac 2768echo "TOOLS=$tools" >> $config_host_mak
98ec69ac 2769echo "ROMS=$roms" >> $config_host_mak
804edf29
JQ
2770echo "MAKE=$make" >> $config_host_mak
2771echo "INSTALL=$install" >> $config_host_mak
2772echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2773echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2774echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2775echo "CC=$cc" >> $config_host_mak
2b2e59e6 2776echo "CC_I386=$cc_i386" >> $config_host_mak
804edf29 2777echo "HOST_CC=$host_cc" >> $config_host_mak
804edf29
JQ
2778echo "AR=$ar" >> $config_host_mak
2779echo "OBJCOPY=$objcopy" >> $config_host_mak
2780echo "LD=$ld" >> $config_host_mak
9fe6de94 2781echo "WINDRES=$windres" >> $config_host_mak
e2a2ed06 2782echo "CFLAGS=$CFLAGS" >> $config_host_mak
a558ee17 2783echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
e39f0062
PB
2784if test "$sparse" = "yes" ; then
2785 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2786 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
2787 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
2788fi
c81da56e 2789echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
e2a2ed06 2790echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
a36abbbb
JQ
2791echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2792echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
73da375e 2793echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 2794echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
804edf29 2795echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 2796
4bf6b55b
JQ
2797# generate list of library paths for linker script
2798
2799$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2800
2801if test -f ${config_host_ld}~ ; then
2802 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2803 mv ${config_host_ld}~ $config_host_ld
2804 else
2805 rm ${config_host_ld}~
2806 fi
2807fi
2808
4d904533
BS
2809for d in libdis libdis-user; do
2810 mkdir -p $d
2811 rm -f $d/Makefile
2812 ln -s $source_path/Makefile.dis $d/Makefile
2813 echo > $d/config.mak
2814done
d44cff22
RH
2815if test "$static" = "no" -a "$user_pie" = "yes" ; then
2816 echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2817fi
4d904533 2818
1d14ffa9 2819for target in $target_list; do
97a847bc 2820target_dir="$target"
25be210f 2821config_target_mak=$target_dir/config-target.mak
600309b6 2822target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 2823target_bigendian="no"
1f3d3c8f 2824
ea2d6a39 2825case "$target_arch2" in
24e804ec 2826 armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
ea2d6a39
JQ
2827 target_bigendian=yes
2828 ;;
2829esac
97a847bc 2830target_softmmu="no"
997344f3 2831target_user_only="no"
831b7825 2832target_linux_user="no"
831b7825 2833target_darwin_user="no"
84778508 2834target_bsd_user="no"
9e407a85 2835case "$target" in
600309b6 2836 ${target_arch2}-softmmu)
9e407a85
PB
2837 target_softmmu="yes"
2838 ;;
600309b6 2839 ${target_arch2}-linux-user)
9c7a4202
BS
2840 if test "$linux" != "yes" ; then
2841 echo "ERROR: Target '$target' is only available on a Linux host"
2842 exit 1
2843 fi
9e407a85
PB
2844 target_user_only="yes"
2845 target_linux_user="yes"
2846 ;;
600309b6 2847 ${target_arch2}-darwin-user)
9c7a4202
BS
2848 if test "$darwin" != "yes" ; then
2849 echo "ERROR: Target '$target' is only available on a Darwin host"
2850 exit 1
2851 fi
9e407a85
PB
2852 target_user_only="yes"
2853 target_darwin_user="yes"
2854 ;;
600309b6 2855 ${target_arch2}-bsd-user)
9cf55765 2856 if test "$bsd" != "yes" ; then
9c7a4202
BS
2857 echo "ERROR: Target '$target' is only available on a BSD host"
2858 exit 1
2859 fi
84778508
BS
2860 target_user_only="yes"
2861 target_bsd_user="yes"
2862 ;;
9e407a85
PB
2863 *)
2864 echo "ERROR: Target '$target' not recognised"
2865 exit 1
2866 ;;
2867esac
831b7825 2868
97a847bc 2869mkdir -p $target_dir
158142c2 2870mkdir -p $target_dir/fpu
57fec1fe 2871mkdir -p $target_dir/tcg
59f2a787 2872mkdir -p $target_dir/ide
84778508 2873if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
2874 mkdir -p $target_dir/nwfpe
2875fi
2876
ec530c81
FB
2877#
2878# don't use ln -sf as not all "ln -sf" over write the file/link
2879#
2880rm -f $target_dir/Makefile
2881ln -s $source_path/Makefile.target $target_dir/Makefile
2882
97a847bc 2883
25be210f 2884echo "# Automatically generated by configure - do not modify" > $config_target_mak
de83cd02 2885
e5fe0c52 2886bflt="no"
bd0c5661 2887target_nptl="no"
600309b6 2888interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
7ee2822c 2889echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
56aebc89 2890gdb_xml_files=""
7ba1e619 2891
938b1edd 2892TARGET_ARCH="$target_arch2"
6acff7da 2893TARGET_BASE_ARCH=""
e6e91b9c 2894TARGET_ABI_DIR=""
e73aae67 2895
600309b6 2896case "$target_arch2" in
2408a527 2897 i386)
1ad2134f 2898 target_phys_bits=32
2408a527
AJ
2899 ;;
2900 x86_64)
6acff7da 2901 TARGET_BASE_ARCH=i386
1ad2134f 2902 target_phys_bits=64
2408a527
AJ
2903 ;;
2904 alpha)
1ad2134f 2905 target_phys_bits=64
a4b388ff 2906 target_nptl="yes"
2408a527
AJ
2907 ;;
2908 arm|armeb)
b498c8a0 2909 TARGET_ARCH=arm
2408a527 2910 bflt="yes"
bd0c5661 2911 target_nptl="yes"
56aebc89 2912 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 2913 target_phys_bits=32
2408a527
AJ
2914 ;;
2915 cris)
253bd7f8 2916 target_nptl="yes"
1ad2134f 2917 target_phys_bits=32
2408a527
AJ
2918 ;;
2919 m68k)
2408a527 2920 bflt="yes"
56aebc89 2921 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 2922 target_phys_bits=32
2408a527 2923 ;;
72b675ca 2924 microblaze)
72b675ca
EI
2925 bflt="yes"
2926 target_nptl="yes"
2927 target_phys_bits=32
2928 ;;
0adcffb1 2929 mips|mipsel)
b498c8a0 2930 TARGET_ARCH=mips
25be210f 2931 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
f04dc72f 2932 target_nptl="yes"
1ad2134f 2933 target_phys_bits=64
2408a527
AJ
2934 ;;
2935 mipsn32|mipsn32el)
b498c8a0 2936 TARGET_ARCH=mipsn32
6acff7da 2937 TARGET_BASE_ARCH=mips
25be210f 2938 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
1ad2134f 2939 target_phys_bits=64
2408a527
AJ
2940 ;;
2941 mips64|mips64el)
b498c8a0 2942 TARGET_ARCH=mips64
6acff7da 2943 TARGET_BASE_ARCH=mips
25be210f 2944 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
1ad2134f 2945 target_phys_bits=64
2408a527
AJ
2946 ;;
2947 ppc)
c8b3532d 2948 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2949 target_phys_bits=32
d6630708 2950 target_nptl="yes"
2408a527
AJ
2951 ;;
2952 ppcemb)
6acff7da 2953 TARGET_BASE_ARCH=ppc
e6e91b9c 2954 TARGET_ABI_DIR=ppc
c8b3532d 2955 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2956 target_phys_bits=64
d6630708 2957 target_nptl="yes"
2408a527
AJ
2958 ;;
2959 ppc64)
6acff7da 2960 TARGET_BASE_ARCH=ppc
e6e91b9c 2961 TARGET_ABI_DIR=ppc
c8b3532d 2962 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2963 target_phys_bits=64
2408a527
AJ
2964 ;;
2965 ppc64abi32)
b498c8a0 2966 TARGET_ARCH=ppc64
6acff7da 2967 TARGET_BASE_ARCH=ppc
e6e91b9c 2968 TARGET_ABI_DIR=ppc
25be210f 2969 echo "TARGET_ABI32=y" >> $config_target_mak
c8b3532d 2970 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 2971 target_phys_bits=64
2408a527
AJ
2972 ;;
2973 sh4|sh4eb)
b498c8a0 2974 TARGET_ARCH=sh4
2408a527 2975 bflt="yes"
0b6d3ae0 2976 target_nptl="yes"
1ad2134f 2977 target_phys_bits=32
2408a527
AJ
2978 ;;
2979 sparc)
1ad2134f 2980 target_phys_bits=64
2408a527
AJ
2981 ;;
2982 sparc64)
6acff7da 2983 TARGET_BASE_ARCH=sparc
1ad2134f 2984 target_phys_bits=64
2408a527
AJ
2985 ;;
2986 sparc32plus)
b498c8a0 2987 TARGET_ARCH=sparc64
6acff7da 2988 TARGET_BASE_ARCH=sparc
e6e91b9c 2989 TARGET_ABI_DIR=sparc
25be210f 2990 echo "TARGET_ABI32=y" >> $config_target_mak
1ad2134f 2991 target_phys_bits=64
2408a527 2992 ;;
24e804ec
AG
2993 s390x)
2994 target_phys_bits=64
2995 ;;
2408a527
AJ
2996 *)
2997 echo "Unsupported target CPU"
2998 exit 1
2999 ;;
3000esac
25be210f 3001echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
053dd92e 3002target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
25be210f
JQ
3003echo "TARGET_$target_arch_name=y" >> $config_target_mak
3004echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
42bc608b 3005# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
3006if [ "$TARGET_BASE_ARCH" = "" ]; then
3007 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da 3008fi
25be210f 3009echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
e6e91b9c
JQ
3010if [ "$TARGET_ABI_DIR" = "" ]; then
3011 TARGET_ABI_DIR=$TARGET_ARCH
3012fi
25be210f 3013echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
1b0c87fc
JQ
3014case "$target_arch2" in
3015 i386|x86_64)
3016 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
25be210f 3017 echo "CONFIG_XEN=y" >> $config_target_mak
1b0c87fc
JQ
3018 fi
3019esac
c59249f9 3020case "$target_arch2" in
0e60a699 3021 i386|x86_64|ppcemb|ppc|ppc64|s390x)
c59249f9
JQ
3022 # Make sure the target and host cpus are compatible
3023 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3024 \( "$target_arch2" = "$cpu" -o \
3025 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5f114bc6 3026 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
c59249f9
JQ
3027 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
3028 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
25be210f
JQ
3029 echo "CONFIG_KVM=y" >> $config_target_mak
3030 echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak
dae5079a
JK
3031 if test "$kvm_para" = "yes"; then
3032 echo "CONFIG_KVM_PARA=y" >> $config_target_mak
3033 fi
d5970055
MT
3034 if test $vhost_net = "yes" ; then
3035 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3036 fi
c59249f9
JQ
3037 fi
3038esac
de83cd02 3039if test "$target_bigendian" = "yes" ; then
25be210f 3040 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
de83cd02 3041fi
97a847bc 3042if test "$target_softmmu" = "yes" ; then
b1aa27c4 3043 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
25be210f
JQ
3044 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3045 echo "LIBS+=$libs_softmmu" >> $config_target_mak
0e8c9214 3046 echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
5791f45b 3047 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
43ce4dfe 3048fi
997344f3 3049if test "$target_user_only" = "yes" ; then
25be210f 3050 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
997344f3 3051fi
831b7825 3052if test "$target_linux_user" = "yes" ; then
25be210f 3053 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
831b7825
TS
3054fi
3055if test "$target_darwin_user" = "yes" ; then
25be210f 3056 echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
831b7825 3057fi
56aebc89
PB
3058list=""
3059if test ! -z "$gdb_xml_files" ; then
3060 for x in $gdb_xml_files; do
3061 list="$list $source_path/gdb-xml/$x"
3062 done
3d0f1517 3063 echo "TARGET_XML_FILES=$list" >> $config_target_mak
56aebc89 3064fi
97a847bc 3065
f57975fb 3066case "$target_arch2" in
990b3e19 3067 alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
25be210f 3068 echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak
f57975fb 3069 ;;
d6b38939 3070 *)
25be210f 3071 echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak
d6b38939 3072 ;;
f57975fb
JQ
3073esac
3074
e5fe0c52 3075if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
25be210f 3076 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
e5fe0c52 3077fi
bd0c5661
PB
3078if test "$target_user_only" = "yes" \
3079 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
25be210f 3080 echo "CONFIG_USE_NPTL=y" >> $config_target_mak
bd0c5661 3081fi
379f6698 3082if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
25be210f 3083 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
379f6698 3084fi
84778508 3085if test "$target_bsd_user" = "yes" ; then
25be210f 3086 echo "CONFIG_BSD_USER=y" >> $config_target_mak
84778508 3087fi
5b0753e0 3088
4afddb55 3089# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 3090
4afddb55 3091cflags=""
fa282484 3092ldflags=""
9b8e111f 3093
57ddfbf7
JQ
3094if test "$ARCH" = "sparc64" ; then
3095 cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
24e804ec
AG
3096elif test "$ARCH" = "s390x" ; then
3097 cflags="-I\$(SRC_PATH)/tcg/s390 $cflags"
5d8a4f8f
RH
3098elif test "$ARCH" = "x86_64" ; then
3099 cflags="-I\$(SRC_PATH)/tcg/i386 $cflags"
57ddfbf7
JQ
3100else
3101 cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
3102fi
3103cflags="-I\$(SRC_PATH)/tcg $cflags"
3104cflags="-I\$(SRC_PATH)/fpu $cflags"
3105
4d904533
BS
3106if test "$target_user_only" = "yes" ; then
3107 libdis_config_mak=libdis-user/config.mak
3108else
3109 libdis_config_mak=libdis/config.mak
3110fi
3111
64656024
JQ
3112for i in $ARCH $TARGET_BASE_ARCH ; do
3113 case "$i" in
3114 alpha)
25be210f 3115 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
4d904533 3116 echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak
64656024
JQ
3117 ;;
3118 arm)
25be210f 3119 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
4d904533 3120 echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak
64656024
JQ
3121 ;;
3122 cris)
25be210f 3123 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
4d904533 3124 echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak
64656024
JQ
3125 ;;
3126 hppa)
25be210f 3127 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
4d904533 3128 echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak
64656024
JQ
3129 ;;
3130 i386|x86_64)
25be210f 3131 echo "CONFIG_I386_DIS=y" >> $config_target_mak
4d904533 3132 echo "CONFIG_I386_DIS=y" >> $libdis_config_mak
64656024 3133 ;;
903ec55c
AJ
3134 ia64*)
3135 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
3136 echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak
3137 ;;
64656024 3138 m68k)
25be210f 3139 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
4d904533 3140 echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak
64656024
JQ
3141 ;;
3142 microblaze)
25be210f 3143 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
4d904533 3144 echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak
64656024
JQ
3145 ;;
3146 mips*)
25be210f 3147 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
4d904533 3148 echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak
64656024
JQ
3149 ;;
3150 ppc*)
25be210f 3151 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
4d904533 3152 echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak
64656024 3153 ;;
24e804ec 3154 s390*)
25be210f 3155 echo "CONFIG_S390_DIS=y" >> $config_target_mak
4d904533 3156 echo "CONFIG_S390_DIS=y" >> $libdis_config_mak
64656024
JQ
3157 ;;
3158 sh4)
25be210f 3159 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
4d904533 3160 echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak
64656024
JQ
3161 ;;
3162 sparc*)
25be210f 3163 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
4d904533 3164 echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak
64656024
JQ
3165 ;;
3166 esac
3167done
3168
6ee7126f
JQ
3169case "$ARCH" in
3170alpha)
3171 # Ensure there's only a single GP
3172 cflags="-msmall-data $cflags"
3173;;
3174esac
3175
55d9c04b
JQ
3176if test "$target_softmmu" = "yes" ; then
3177 case "$TARGET_BASE_ARCH" in
3178 arm)
3179 cflags="-DHAS_AUDIO $cflags"
3180 ;;
3181 i386|mips|ppc)
3182 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
3183 ;;
3184 esac
3185fi
3186
34005a00 3187if test "$target_user_only" = "yes" -a "$static" = "no" -a \
50108930 3188 "$user_pie" = "yes" ; then
34005a00
KS
3189 cflags="-fpie $cflags"
3190 ldflags="-pie $ldflags"
3191fi
3192
471857dd
JQ
3193if test "$target_softmmu" = "yes" -a \( \
3194 "$TARGET_ARCH" = "microblaze" -o \
3195 "$TARGET_ARCH" = "cris" \) ; then
25be210f 3196 echo "CONFIG_NEED_MMU=y" >> $config_target_mak
471857dd
JQ
3197fi
3198
d02c1db3 3199if test "$gprof" = "yes" ; then
25be210f 3200 echo "TARGET_GPROF=yes" >> $config_target_mak
d02c1db3
JQ
3201 if test "$target_linux_user" = "yes" ; then
3202 cflags="-p $cflags"
3203 ldflags="-p $ldflags"
3204 fi
3205 if test "$target_softmmu" = "yes" ; then
3206 ldflags="-p $ldflags"
25be210f 3207 echo "GPROF_CFLAGS=-p" >> $config_target_mak
d02c1db3
JQ
3208 fi
3209fi
3210
6ee7126f 3211linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
9b8e111f 3212if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
fa282484 3213 case "$ARCH" in
fa282484
JQ
3214 sparc)
3215 # -static is used to avoid g1/g3 usage by the dynamic linker
322e5878 3216 ldflags="$linker_script -static $ldflags"
fa282484 3217 ;;
4d58be06
RH
3218 alpha | s390x)
3219 # The default placement of the application is fine.
3220 ;;
fd76e73a 3221 *)
322e5878 3222 ldflags="$linker_script $ldflags"
fa282484
JQ
3223 ;;
3224 esac
3225fi
fa282484 3226
25be210f
JQ
3227echo "LDFLAGS+=$ldflags" >> $config_target_mak
3228echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
fa282484 3229
97a847bc 3230done # for target in $targets
7d13299d
FB
3231
3232# build tree in object directory if source path is different from current one
3233if test "$source_path_used" = "yes" ; then
e1144d00 3234 DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
2d9f27d2 3235 DIRS="$DIRS roms/seabios roms/vgabios"
3e230dd2 3236 DIRS="$DIRS fsdev ui"
7d13299d 3237 FILES="Makefile tests/Makefile"
e7daa605 3238 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
e1ffb0f1 3239 FILES="$FILES tests/test-mmap.c"
ae0bfb79 3240 FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
2d9f27d2 3241 FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
7ea78b74
JK
3242 for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
3243 FILES="$FILES pc-bios/`basename $bios_file`"
3244 done
7d13299d
FB
3245 for dir in $DIRS ; do
3246 mkdir -p $dir
3247 done
ec530c81 3248 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 3249 for f in $FILES ; do
ec530c81
FB
3250 rm -f $f
3251 ln -s $source_path/$f $f
7d13299d
FB
3252 done
3253fi
1ad2134f 3254
c34ebfdc 3255# temporary config to build submodules
2d9f27d2 3256for rom in seabios vgabios ; do
c34ebfdc 3257 config_mak=roms/$rom/config.mak
37116c89 3258 echo "# Automatically generated by configure - do not modify" > $config_mak
c34ebfdc
AL
3259 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3260 echo "CC=$cc" >> $config_mak
3261 echo "BCC=bcc" >> $config_mak
3262 echo "CPP=${cross_prefix}cpp" >> $config_mak
3263 echo "OBJCOPY=objcopy" >> $config_mak
3264 echo "IASL=iasl" >> $config_mak
3265 echo "HOST_CC=$host_cc" >> $config_mak
3266 echo "LD=$ld" >> $config_mak
3267done
3268
1ad2134f
PB
3269for hwlib in 32 64; do
3270 d=libhw$hwlib
3271 mkdir -p $d
9953b2fc 3272 mkdir -p $d/ide
1ad2134f
PB
3273 rm -f $d/Makefile
3274 ln -s $source_path/Makefile.hw $d/Makefile
37116c89 3275 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
1ad2134f 3276done
add16157
BS
3277
3278d=libuser
3279mkdir -p $d
3280rm -f $d/Makefile
3281ln -s $source_path/Makefile.user $d/Makefile
299060a0
KS
3282if test "$static" = "no" -a "$user_pie" = "yes" ; then
3283 echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3284fi
b40292e7
JK
3285
3286if test "$docs" = "yes" ; then
3287 mkdir -p QMP
3288fi