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