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