]> git.proxmox.com Git - mirror_qemu.git/blame - configure
kvm: Clean up stubs
[mirror_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
VJ
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
VJ
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);
1208 return 0;
1209}
e37630ca 1210EOF
52166aa0 1211 if compile_prog "" "$xen_libs" ; then
d5b93ddf 1212 xen_ctrl_version=410
fc321b4b 1213 xen=yes
d5b93ddf
AP
1214
1215 # Xen 4.0.0
1216 elif (
1217 cat > $TMPC <<EOF
1218#include <xenctrl.h>
1219#include <xs.h>
1220#include <stdint.h>
1221#include <xen/hvm/hvm_info_table.h>
1222#if !defined(HVM_MAX_VCPUS)
1223# error HVM_MAX_VCPUS not defined
1224#endif
1225int main(void) {
1226 xs_daemon_open();
1227 xc_interface_open();
1228 xc_gnttab_open();
1229 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1230 return 0;
1231}
1232EOF
1233 compile_prog "" "$xen_libs"
1234 ) ; then
1235 xen_ctrl_version=400
1236 xen=yes
1237
1238 # Xen 3.3.0, 3.4.0
1239 elif (
1240 cat > $TMPC <<EOF
1241#include <xenctrl.h>
1242#include <xs.h>
1243int main(void) {
1244 xs_daemon_open();
1245 xc_interface_open();
1246 xc_gnttab_open();
1247 xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1248 return 0;
1249}
1250EOF
1251 compile_prog "" "$xen_libs"
1252 ) ; then
1253 xen_ctrl_version=330
1254 xen=yes
1255
1256 # Xen not found or unsupported
b2266bee 1257 else
fc321b4b
JQ
1258 if test "$xen" = "yes" ; then
1259 feature_not_found "xen"
1260 fi
1261 xen=no
b2266bee 1262 fi
d5b93ddf
AP
1263
1264 if test "$xen" = yes; then
1265 libs_softmmu="$xen_libs $libs_softmmu"
1266 fi
e37630ca
AL
1267fi
1268
f91672e5 1269##########################################
a8bd70ad 1270# pkg-config probe
f91672e5 1271
a8bd70ad 1272if ! has $pkg_config; then
08421541
PB
1273 echo warning: proceeding without "$pkg_config" >&2
1274 pkg_config=/bin/false
f91672e5
PB
1275fi
1276
44dc0ca3
AL
1277##########################################
1278# libtool probe
1279
1280if ! has libtool; then
1281 libtool=
1282else
1283 libtool=libtool
1284fi
1285
dfffc653
JQ
1286##########################################
1287# Sparse probe
1288if test "$sparse" != "no" ; then
0dba6195 1289 if has cgcc; then
dfffc653
JQ
1290 sparse=yes
1291 else
1292 if test "$sparse" = "yes" ; then
1293 feature_not_found "sparse"
1294 fi
1295 sparse=no
1296 fi
1297fi
1298
11d9f695
FB
1299##########################################
1300# SDL probe
1301
3ec87ffe
PB
1302# Look for sdl configuration program (pkg-config or sdl-config). Try
1303# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
1304if test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
1305 sdl_config=sdl-config
1306fi
1307
1308if $pkg_config sdl --modversion >/dev/null 2>&1; then
a8bd70ad 1309 sdlconfig="$pkg_config sdl"
9316f803 1310 _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
3ec87ffe
PB
1311elif has ${sdl_config}; then
1312 sdlconfig="$sdl_config"
9316f803 1313 _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
a0dfd8a4
LM
1314else
1315 if test "$sdl" = "yes" ; then
1316 feature_not_found "sdl"
1317 fi
1318 sdl=no
9316f803 1319fi
29e5bada 1320if test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
3ec87ffe
PB
1321 echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
1322fi
11d9f695 1323
9316f803 1324sdl_too_old=no
c4198157 1325if test "$sdl" != "no" ; then
ac119f9d 1326 cat > $TMPC << EOF
11d9f695
FB
1327#include <SDL.h>
1328#undef main /* We don't want SDL to override our main() */
1329int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1330EOF
9316f803 1331 sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
74f42e18
T
1332 if test "$static" = "yes" ; then
1333 sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
1334 else
1335 sdl_libs=`$sdlconfig --libs 2> /dev/null`
1336 fi
52166aa0 1337 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1338 if test "$_sdlversion" -lt 121 ; then
1339 sdl_too_old=yes
1340 else
1341 if test "$cocoa" = "no" ; then
1342 sdl=yes
1343 fi
1344 fi
cd01b4a3 1345
67c274d3 1346 # static link with sdl ? (note: sdl.pc's --static --libs is broken)
ac119f9d 1347 if test "$sdl" = "yes" -a "$static" = "yes" ; then
67c274d3 1348 if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
f8aa6c7b
SW
1349 sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1350 sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
ac119f9d 1351 fi
52166aa0 1352 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1353 :
1354 else
1355 sdl=no
1356 fi
1357 fi # static link
c4198157
JQ
1358 else # sdl not found
1359 if test "$sdl" = "yes" ; then
1360 feature_not_found "sdl"
1361 fi
1362 sdl=no
ac119f9d 1363 fi # sdl compile test
a68551bc 1364fi
11d9f695 1365
5368a422 1366if test "$sdl" = "yes" ; then
ac119f9d 1367 cat > $TMPC <<EOF
5368a422
AL
1368#include <SDL.h>
1369#if defined(SDL_VIDEO_DRIVER_X11)
1370#include <X11/XKBlib.h>
1371#else
1372#error No x11 support
1373#endif
1374int main(void) { return 0; }
1375EOF
52166aa0 1376 if compile_prog "$sdl_cflags" "$sdl_libs" ; then
ac119f9d
JQ
1377 sdl_libs="$sdl_libs -lX11"
1378 fi
07d9ac44
JQ
1379 if test "$mingw32" = "yes" ; then
1380 sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
1381 fi
0705667e 1382 libs_softmmu="$sdl_libs $libs_softmmu"
5368a422
AL
1383fi
1384
8d5d2d4c
TS
1385##########################################
1386# VNC TLS detection
821601ea 1387if test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1be10ad2 1388 cat > $TMPC <<EOF
ae6b5e5a
AL
1389#include <gnutls/gnutls.h>
1390int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1391EOF
a8bd70ad
PB
1392 vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1393 vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
1be10ad2
JQ
1394 if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1395 vnc_tls=yes
1396 libs_softmmu="$vnc_tls_libs $libs_softmmu"
1397 else
1398 if test "$vnc_tls" = "yes" ; then
1399 feature_not_found "vnc-tls"
ae6b5e5a 1400 fi
1be10ad2
JQ
1401 vnc_tls=no
1402 fi
8d5d2d4c
TS
1403fi
1404
2f9606b3
AL
1405##########################################
1406# VNC SASL detection
821601ea 1407if test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
ea784e3b 1408 cat > $TMPC <<EOF
2f9606b3
AL
1409#include <sasl/sasl.h>
1410#include <stdio.h>
1411int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1412EOF
ea784e3b
JQ
1413 # Assuming Cyrus-SASL installed in /usr prefix
1414 vnc_sasl_cflags=""
1415 vnc_sasl_libs="-lsasl2"
1416 if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1417 vnc_sasl=yes
1418 libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1419 else
1420 if test "$vnc_sasl" = "yes" ; then
1421 feature_not_found "vnc-sasl"
2f9606b3 1422 fi
ea784e3b
JQ
1423 vnc_sasl=no
1424 fi
2f9606b3
AL
1425fi
1426
2f6f5c7a
CC
1427##########################################
1428# VNC JPEG detection
821601ea 1429if test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
2f6f5c7a
CC
1430cat > $TMPC <<EOF
1431#include <stdio.h>
1432#include <jpeglib.h>
1433int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
1434EOF
1435 vnc_jpeg_cflags=""
1436 vnc_jpeg_libs="-ljpeg"
1437 if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
1438 vnc_jpeg=yes
1439 libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
1440 else
1441 if test "$vnc_jpeg" = "yes" ; then
1442 feature_not_found "vnc-jpeg"
1443 fi
1444 vnc_jpeg=no
1445 fi
1446fi
1447
efe556ad
CC
1448##########################################
1449# VNC PNG detection
821601ea 1450if test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
efe556ad
CC
1451cat > $TMPC <<EOF
1452//#include <stdio.h>
1453#include <png.h>
832ce9c2 1454#include <stddef.h>
efe556ad
CC
1455int main(void) {
1456 png_structp png_ptr;
1457 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1458 return 0;
1459}
1460EOF
1461 vnc_png_cflags=""
1462 vnc_png_libs="-lpng"
1463 if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1464 vnc_png=yes
1465 libs_softmmu="$vnc_png_libs $libs_softmmu"
1466 else
1467 if test "$vnc_png" = "yes" ; then
1468 feature_not_found "vnc-png"
1469 fi
1470 vnc_png=no
1471 fi
1472fi
1473
76655d6d
AL
1474##########################################
1475# fnmatch() probe, used for ACL routines
1476fnmatch="no"
1477cat > $TMPC << EOF
1478#include <fnmatch.h>
1479int main(void)
1480{
1481 fnmatch("foo", "foo", 0);
1482 return 0;
1483}
1484EOF
52166aa0 1485if compile_prog "" "" ; then
76655d6d
AL
1486 fnmatch="yes"
1487fi
1488
ee682d27
SW
1489##########################################
1490# uuid_generate() probe, used for vdi block driver
1491if test "$uuid" != "no" ; then
1492 uuid_libs="-luuid"
1493 cat > $TMPC << EOF
1494#include <uuid/uuid.h>
1495int main(void)
1496{
1497 uuid_t my_uuid;
1498 uuid_generate(my_uuid);
1499 return 0;
1500}
1501EOF
1502 if compile_prog "" "$uuid_libs" ; then
1503 uuid="yes"
1504 libs_softmmu="$uuid_libs $libs_softmmu"
1505 libs_tools="$uuid_libs $libs_tools"
1506 else
1507 if test "$uuid" = "yes" ; then
1508 feature_not_found "uuid"
1509 fi
1510 uuid=no
1511 fi
1512fi
1513
dce512de
CH
1514##########################################
1515# xfsctl() probe, used for raw-posix
1516if test "$xfs" != "no" ; then
1517 cat > $TMPC << EOF
1518#include <xfs/xfs.h>
1519int main(void)
1520{
1521 xfsctl(NULL, 0, 0, NULL);
1522 return 0;
1523}
1524EOF
1525 if compile_prog "" "" ; then
1526 xfs="yes"
1527 else
1528 if test "$xfs" = "yes" ; then
1529 feature_not_found "xfs"
1530 fi
1531 xfs=no
1532 fi
1533fi
1534
8a16d273
TS
1535##########################################
1536# vde libraries probe
dfb278bd 1537if test "$vde" != "no" ; then
4baae0ac 1538 vde_libs="-lvdeplug"
8a16d273
TS
1539 cat > $TMPC << EOF
1540#include <libvdeplug.h>
4a7f0e06
PB
1541int main(void)
1542{
1543 struct vde_open_args a = {0, 0, 0};
1544 vde_open("", "", &a);
1545 return 0;
1546}
8a16d273 1547EOF
52166aa0 1548 if compile_prog "" "$vde_libs" ; then
4baae0ac 1549 vde=yes
8e02e54c
JQ
1550 libs_softmmu="$vde_libs $libs_softmmu"
1551 libs_tools="$vde_libs $libs_tools"
dfb278bd
JQ
1552 else
1553 if test "$vde" = "yes" ; then
1554 feature_not_found "vde"
1555 fi
1556 vde=no
4baae0ac 1557 fi
8a16d273
TS
1558fi
1559
8f28f3fb 1560##########################################
c2de5c91 1561# Sound support libraries probe
8f28f3fb 1562
c2de5c91 1563audio_drv_probe()
1564{
1565 drv=$1
1566 hdr=$2
1567 lib=$3
1568 exp=$4
1569 cfl=$5
1570 cat > $TMPC << EOF
1571#include <$hdr>
1572int main(void) { $exp }
8f28f3fb 1573EOF
52166aa0 1574 if compile_prog "$cfl" "$lib" ; then
c2de5c91 1575 :
1576 else
1577 echo
1578 echo "Error: $drv check failed"
1579 echo "Make sure to have the $drv libs and headers installed."
1580 echo
1581 exit 1
1582 fi
1583}
1584
2fa7d3bf 1585audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
c2de5c91 1586for drv in $audio_drv_list; do
1587 case $drv in
1588 alsa)
1589 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1590 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
a4bf6780 1591 libs_softmmu="-lasound $libs_softmmu"
c2de5c91 1592 ;;
1593
1594 fmod)
1595 if test -z $fmod_lib || test -z $fmod_inc; then
1596 echo
1597 echo "Error: You must specify path to FMOD library and headers"
1598 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1599 echo
1600 exit 1
1601 fi
1602 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
a4bf6780 1603 libs_softmmu="$fmod_lib $libs_softmmu"
c2de5c91 1604 ;;
1605
1606 esd)
1607 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
a4bf6780 1608 libs_softmmu="-lesd $libs_softmmu"
67f86e8e 1609 audio_pt_int="yes"
c2de5c91 1610 ;;
b8e59f18 1611
1612 pa)
493abda6 1613 audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
b8e59f18 1614 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
493abda6 1615 libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
67f86e8e 1616 audio_pt_int="yes"
b8e59f18 1617 ;;
1618
997e690a
JQ
1619 coreaudio)
1620 libs_softmmu="-framework CoreAudio $libs_softmmu"
1621 ;;
1622
a4bf6780
JQ
1623 dsound)
1624 libs_softmmu="-lole32 -ldxguid $libs_softmmu"
d5631638 1625 audio_win_int="yes"
a4bf6780
JQ
1626 ;;
1627
1628 oss)
1629 libs_softmmu="$oss_lib $libs_softmmu"
1630 ;;
1631
1632 sdl|wav)
2f6a1ab0
BS
1633 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1634 ;;
1635
d5631638 1636 winwave)
1637 libs_softmmu="-lwinmm $libs_softmmu"
1638 audio_win_int="yes"
1639 ;;
1640
e4c63a6a 1641 *)
1c9b2a52 1642 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
e4c63a6a 1643 echo
1644 echo "Error: Unknown driver '$drv' selected"
1645 echo "Possible drivers are: $audio_possible_drivers"
1646 echo
1647 exit 1
1648 }
1649 ;;
c2de5c91 1650 esac
1651done
8f28f3fb 1652
2e4d9fb1
AJ
1653##########################################
1654# BrlAPI probe
1655
4ffcedb6 1656if test "$brlapi" != "no" ; then
eb82284f
JQ
1657 brlapi_libs="-lbrlapi"
1658 cat > $TMPC << EOF
2e4d9fb1 1659#include <brlapi.h>
832ce9c2 1660#include <stddef.h>
2e4d9fb1
AJ
1661int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1662EOF
52166aa0 1663 if compile_prog "" "$brlapi_libs" ; then
eb82284f 1664 brlapi=yes
264606b3 1665 libs_softmmu="$brlapi_libs $libs_softmmu"
4ffcedb6
JQ
1666 else
1667 if test "$brlapi" = "yes" ; then
1668 feature_not_found "brlapi"
1669 fi
1670 brlapi=no
eb82284f
JQ
1671 fi
1672fi
2e4d9fb1 1673
4d3b6f6e
AZ
1674##########################################
1675# curses probe
e095e2f3
SW
1676if test "$mingw32" = "yes" ; then
1677 curses_list="-lpdcurses"
1678else
1679 curses_list="-lncurses -lcurses"
1680fi
4d3b6f6e 1681
c584a6d0
JQ
1682if test "$curses" != "no" ; then
1683 curses_found=no
4d3b6f6e
AZ
1684 cat > $TMPC << EOF
1685#include <curses.h>
5a8ff3aa
BS
1686#ifdef __OpenBSD__
1687#define resize_term resizeterm
1688#endif
1689int main(void) { resize_term(0, 0); return curses_version(); }
4d3b6f6e 1690EOF
4f78ef9a
JQ
1691 for curses_lib in $curses_list; do
1692 if compile_prog "" "$curses_lib" ; then
c584a6d0 1693 curses_found=yes
4f78ef9a
JQ
1694 libs_softmmu="$curses_lib $libs_softmmu"
1695 break
1696 fi
1697 done
c584a6d0
JQ
1698 if test "$curses_found" = "yes" ; then
1699 curses=yes
1700 else
1701 if test "$curses" = "yes" ; then
1702 feature_not_found "curses"
1703 fi
1704 curses=no
1705 fi
4f78ef9a 1706fi
4d3b6f6e 1707
769ce76d
AG
1708##########################################
1709# curl probe
1710
a8bd70ad
PB
1711if $pkg_config libcurl --modversion >/dev/null 2>&1; then
1712 curlconfig="$pkg_config libcurl"
4e2b0658
PB
1713else
1714 curlconfig=curl-config
1715fi
1716
788c8196 1717if test "$curl" != "no" ; then
769ce76d
AG
1718 cat > $TMPC << EOF
1719#include <curl/curl.h>
0b862ced 1720int main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
769ce76d 1721EOF
4e2b0658
PB
1722 curl_cflags=`$curlconfig --cflags 2>/dev/null`
1723 curl_libs=`$curlconfig --libs 2>/dev/null`
b1d5a277 1724 if compile_prog "$curl_cflags" "$curl_libs" ; then
769ce76d 1725 curl=yes
f0302935
JQ
1726 libs_tools="$curl_libs $libs_tools"
1727 libs_softmmu="$curl_libs $libs_softmmu"
788c8196
JQ
1728 else
1729 if test "$curl" = "yes" ; then
1730 feature_not_found "curl"
1731 fi
1732 curl=no
769ce76d
AG
1733 fi
1734fi # test "$curl"
1735
5495ed11
LC
1736##########################################
1737# check framework probe
1738
1739if test "$check_utests" != "no" ; then
1740 cat > $TMPC << EOF
1741#include <check.h>
1742int main(void) { suite_create("qemu test"); return 0; }
1743EOF
a8bd70ad 1744 check_libs=`$pkg_config --libs check`
5495ed11
LC
1745 if compile_prog "" $check_libs ; then
1746 check_utests=yes
1747 libs_tools="$check_libs $libs_tools"
1748 else
1749 if test "$check_utests" = "yes" ; then
1750 feature_not_found "check"
1751 fi
1752 check_utests=no
1753 fi
1754fi # test "$check_utests"
1755
fb599c9a
AZ
1756##########################################
1757# bluez support probe
a20a6f46 1758if test "$bluez" != "no" ; then
e820e3f4
AZ
1759 cat > $TMPC << EOF
1760#include <bluetooth/bluetooth.h>
1761int main(void) { return bt_error(0); }
1762EOF
a8bd70ad
PB
1763 bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
1764 bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
52166aa0 1765 if compile_prog "$bluez_cflags" "$bluez_libs" ; then
a20a6f46 1766 bluez=yes
e482d56a 1767 libs_softmmu="$bluez_libs $libs_softmmu"
e820e3f4 1768 else
a20a6f46
JQ
1769 if test "$bluez" = "yes" ; then
1770 feature_not_found "bluez"
1771 fi
e820e3f4
AZ
1772 bluez="no"
1773 fi
fb599c9a
AZ
1774fi
1775
414f0dab 1776##########################################
e5d355d1 1777# pthread probe
de65fe0f 1778PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
3c529d93 1779
4dd75c70 1780pthread=no
e5d355d1 1781cat > $TMPC << EOF
3c529d93 1782#include <pthread.h>
de65fe0f 1783int main(void) { pthread_create(0,0,0,0); return 0; }
414f0dab 1784EOF
bd00d539
AF
1785if compile_prog "" "" ; then
1786 pthread=yes
1787else
1788 for pthread_lib in $PTHREADLIBS_LIST; do
1789 if compile_prog "" "$pthread_lib" ; then
1790 pthread=yes
1791 LIBS="$pthread_lib $LIBS"
1792 break
1793 fi
1794 done
1795fi
414f0dab 1796
4617e593 1797if test "$mingw32" != yes -a "$pthread" = no; then
4dd75c70
CH
1798 echo
1799 echo "Error: pthread check failed"
1800 echo "Make sure to have the pthread libs and headers installed."
1801 echo
1802 exit 1
e5d355d1
AL
1803fi
1804
f27aaf4b
CB
1805##########################################
1806# rbd probe
1807if test "$rbd" != "no" ; then
1808 cat > $TMPC <<EOF
1809#include <stdio.h>
ad32e9c0 1810#include <rbd/librbd.h>
f27aaf4b 1811int main(void) {
ad32e9c0
JD
1812 rados_t cluster;
1813 rados_create(&cluster, NULL);
f27aaf4b
CB
1814 return 0;
1815}
1816EOF
ad32e9c0
JD
1817 rbd_libs="-lrbd -lrados"
1818 if compile_prog "" "$rbd_libs" ; then
1819 rbd=yes
1820 libs_tools="$rbd_libs $libs_tools"
1821 libs_softmmu="$rbd_libs $libs_softmmu"
f27aaf4b
CB
1822 else
1823 if test "$rbd" = "yes" ; then
1824 feature_not_found "rados block device"
1825 fi
1826 rbd=no
1827 fi
f27aaf4b
CB
1828fi
1829
5c6c3a6c
CH
1830##########################################
1831# linux-aio probe
5c6c3a6c
CH
1832
1833if test "$linux_aio" != "no" ; then
1834 cat > $TMPC <<EOF
1835#include <libaio.h>
1836#include <sys/eventfd.h>
832ce9c2 1837#include <stddef.h>
5c6c3a6c
CH
1838int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1839EOF
1840 if compile_prog "" "-laio" ; then
1841 linux_aio=yes
048d179f
PB
1842 libs_softmmu="$libs_softmmu -laio"
1843 libs_tools="$libs_tools -laio"
5c6c3a6c
CH
1844 else
1845 if test "$linux_aio" = "yes" ; then
1846 feature_not_found "linux AIO"
1847 fi
3cfcae3c 1848 linux_aio=no
5c6c3a6c
CH
1849 fi
1850fi
1851
758e8e38
VJ
1852##########################################
1853# attr probe
1854
1855if test "$attr" != "no" ; then
1856 cat > $TMPC <<EOF
1857#include <stdio.h>
1858#include <sys/types.h>
1859#include <attr/xattr.h>
1860int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1861EOF
1862 if compile_prog "" "-lattr" ; then
1863 attr=yes
1864 LIBS="-lattr $LIBS"
1865 else
1866 if test "$attr" = "yes" ; then
1867 feature_not_found "ATTR"
1868 fi
1869 attr=no
1870 fi
1871fi
1872
bf9298b9
AL
1873##########################################
1874# iovec probe
1875cat > $TMPC <<EOF
db34f0b3 1876#include <sys/types.h>
bf9298b9 1877#include <sys/uio.h>
db34f0b3 1878#include <unistd.h>
bf9298b9
AL
1879int main(void) { struct iovec iov; return 0; }
1880EOF
1881iovec=no
52166aa0 1882if compile_prog "" "" ; then
bf9298b9
AL
1883 iovec=yes
1884fi
1885
ceb42de8
AL
1886##########################################
1887# preadv probe
1888cat > $TMPC <<EOF
1889#include <sys/types.h>
1890#include <sys/uio.h>
1891#include <unistd.h>
1892int main(void) { preadv; }
1893EOF
1894preadv=no
52166aa0 1895if compile_prog "" "" ; then
ceb42de8
AL
1896 preadv=yes
1897fi
1898
f652e6af
AJ
1899##########################################
1900# fdt probe
2df87df7 1901if test "$fdt" != "no" ; then
b41af4ba
JQ
1902 fdt_libs="-lfdt"
1903 cat > $TMPC << EOF
f652e6af
AJ
1904int main(void) { return 0; }
1905EOF
52166aa0 1906 if compile_prog "" "$fdt_libs" ; then
f652e6af 1907 fdt=yes
2df87df7
JQ
1908 else
1909 if test "$fdt" = "yes" ; then
1910 feature_not_found "fdt"
1911 fi
de3a354a 1912 fdt_libs=
2df87df7 1913 fdt=no
f652e6af
AJ
1914 fi
1915fi
1916
20ff075b
MW
1917##########################################
1918# opengl probe, used by milkymist-tmu2
1919if test "$opengl" != "no" ; then
1920 opengl_libs="-lGL"
1921 cat > $TMPC << EOF
1922#include <X11/Xlib.h>
1923#include <GL/gl.h>
1924#include <GL/glx.h>
1925int main(void) { GL_VERSION; return 0; }
1926EOF
1927 if compile_prog "" "-lGL" ; then
1928 opengl=yes
20ff075b
MW
1929 else
1930 if test "$opengl" = "yes" ; then
1931 feature_not_found "opengl"
1932 fi
de3a354a 1933 opengl_libs=
20ff075b
MW
1934 opengl=no
1935 fi
1936fi
1937
3b3f24ad
AJ
1938#
1939# Check for xxxat() functions when we are building linux-user
1940# emulator. This is done because older glibc versions don't
1941# have syscall stubs for these implemented.
1942#
1943atfile=no
67ba57f6 1944cat > $TMPC << EOF
3b3f24ad
AJ
1945#define _ATFILE_SOURCE
1946#include <sys/types.h>
1947#include <fcntl.h>
1948#include <unistd.h>
1949
1950int
1951main(void)
1952{
1953 /* try to unlink nonexisting file */
1954 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1955}
1956EOF
52166aa0 1957if compile_prog "" "" ; then
67ba57f6 1958 atfile=yes
3b3f24ad
AJ
1959fi
1960
39386ac7 1961# Check for inotify functions when we are building linux-user
3b3f24ad
AJ
1962# emulator. This is done because older glibc versions don't
1963# have syscall stubs for these implemented. In that case we
1964# don't provide them even if kernel supports them.
1965#
1966inotify=no
67ba57f6 1967cat > $TMPC << EOF
3b3f24ad
AJ
1968#include <sys/inotify.h>
1969
1970int
1971main(void)
1972{
1973 /* try to start inotify */
8690e420 1974 return inotify_init();
3b3f24ad
AJ
1975}
1976EOF
52166aa0 1977if compile_prog "" "" ; then
67ba57f6 1978 inotify=yes
3b3f24ad
AJ
1979fi
1980
c05c7a73
RV
1981inotify1=no
1982cat > $TMPC << EOF
1983#include <sys/inotify.h>
1984
1985int
1986main(void)
1987{
1988 /* try to start inotify */
1989 return inotify_init1(0);
1990}
1991EOF
1992if compile_prog "" "" ; then
1993 inotify1=yes
1994fi
1995
ebc996f3
RV
1996# check if utimensat and futimens are supported
1997utimens=no
1998cat > $TMPC << EOF
1999#define _ATFILE_SOURCE
ebc996f3
RV
2000#include <stddef.h>
2001#include <fcntl.h>
2002
2003int main(void)
2004{
2005 utimensat(AT_FDCWD, "foo", NULL, 0);
2006 futimens(0, NULL);
2007 return 0;
2008}
2009EOF
52166aa0 2010if compile_prog "" "" ; then
ebc996f3
RV
2011 utimens=yes
2012fi
2013
099d6b0f
RV
2014# check if pipe2 is there
2015pipe2=no
2016cat > $TMPC << EOF
099d6b0f
RV
2017#include <unistd.h>
2018#include <fcntl.h>
2019
2020int main(void)
2021{
2022 int pipefd[2];
2023 pipe2(pipefd, O_CLOEXEC);
2024 return 0;
2025}
2026EOF
52166aa0 2027if compile_prog "" "" ; then
099d6b0f
RV
2028 pipe2=yes
2029fi
2030
40ff6d7e
KW
2031# check if accept4 is there
2032accept4=no
2033cat > $TMPC << EOF
40ff6d7e
KW
2034#include <sys/socket.h>
2035#include <stddef.h>
2036
2037int main(void)
2038{
2039 accept4(0, NULL, NULL, SOCK_CLOEXEC);
2040 return 0;
2041}
2042EOF
2043if compile_prog "" "" ; then
2044 accept4=yes
2045fi
2046
3ce34dfb
VS
2047# check if tee/splice is there. vmsplice was added same time.
2048splice=no
2049cat > $TMPC << EOF
3ce34dfb
VS
2050#include <unistd.h>
2051#include <fcntl.h>
2052#include <limits.h>
2053
2054int main(void)
2055{
2056 int len, fd;
2057 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
2058 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
2059 return 0;
2060}
2061EOF
52166aa0 2062if compile_prog "" "" ; then
3ce34dfb
VS
2063 splice=yes
2064fi
2065
dcc38d1c
MT
2066##########################################
2067# signalfd probe
2068signalfd="no"
2069cat > $TMPC << EOF
2070#define _GNU_SOURCE
2071#include <unistd.h>
2072#include <sys/syscall.h>
2073#include <signal.h>
2074int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2075EOF
2076
2077if compile_prog "" "" ; then
2078 signalfd=yes
de758970
JK
2079elif test "$kvm" = "yes" -a "$io_thread" != "yes"; then
2080 echo
2081 echo "ERROR: Host kernel lacks signalfd() support,"
2082 echo "but KVM depends on it when the IO thread is disabled."
2083 echo
2084 exit 1
dcc38d1c
MT
2085fi
2086
c2882b96
RV
2087# check if eventfd is supported
2088eventfd=no
2089cat > $TMPC << EOF
2090#include <sys/eventfd.h>
2091
2092int main(void)
2093{
2094 int efd = eventfd(0, 0);
2095 return 0;
2096}
2097EOF
2098if compile_prog "" "" ; then
2099 eventfd=yes
2100fi
2101
d0927938
UH
2102# check for fallocate
2103fallocate=no
2104cat > $TMPC << EOF
2105#include <fcntl.h>
2106
2107int main(void)
2108{
2109 fallocate(0, 0, 0, 0);
2110 return 0;
2111}
2112EOF
be17dc90 2113if compile_prog "$ARCH_CFLAGS" "" ; then
d0927938
UH
2114 fallocate=yes
2115fi
2116
c727f47d
PM
2117# check for sync_file_range
2118sync_file_range=no
2119cat > $TMPC << EOF
2120#include <fcntl.h>
2121
2122int main(void)
2123{
2124 sync_file_range(0, 0, 0, 0);
2125 return 0;
2126}
2127EOF
2128if compile_prog "$ARCH_CFLAGS" "" ; then
2129 sync_file_range=yes
2130fi
2131
dace20dc
PM
2132# check for linux/fiemap.h and FS_IOC_FIEMAP
2133fiemap=no
2134cat > $TMPC << EOF
2135#include <sys/ioctl.h>
2136#include <linux/fs.h>
2137#include <linux/fiemap.h>
2138
2139int main(void)
2140{
2141 ioctl(0, FS_IOC_FIEMAP, 0);
2142 return 0;
2143}
2144EOF
2145if compile_prog "$ARCH_CFLAGS" "" ; then
2146 fiemap=yes
2147fi
2148
d0927938
UH
2149# check for dup3
2150dup3=no
2151cat > $TMPC << EOF
2152#include <unistd.h>
2153
2154int main(void)
2155{
2156 dup3(0, 0, 0);
2157 return 0;
2158}
2159EOF
78f5d726 2160if compile_prog "" "" ; then
d0927938
UH
2161 dup3=yes
2162fi
2163
3b6edd16
PM
2164# check for epoll support
2165epoll=no
2166cat > $TMPC << EOF
2167#include <sys/epoll.h>
2168
2169int main(void)
2170{
2171 epoll_create(0);
2172 return 0;
2173}
2174EOF
2175if compile_prog "$ARCH_CFLAGS" "" ; then
2176 epoll=yes
2177fi
2178
2179# epoll_create1 and epoll_pwait are later additions
2180# so we must check separately for their presence
2181epoll_create1=no
2182cat > $TMPC << EOF
2183#include <sys/epoll.h>
2184
2185int main(void)
2186{
19e83f6b
PM
2187 /* Note that we use epoll_create1 as a value, not as
2188 * a function being called. This is necessary so that on
2189 * old SPARC glibc versions where the function was present in
2190 * the library but not declared in the header file we will
2191 * fail the configure check. (Otherwise we will get a compiler
2192 * warning but not an error, and will proceed to fail the
2193 * qemu compile where we compile with -Werror.)
2194 */
2195 epoll_create1;
3b6edd16
PM
2196 return 0;
2197}
2198EOF
2199if compile_prog "$ARCH_CFLAGS" "" ; then
2200 epoll_create1=yes
2201fi
2202
2203epoll_pwait=no
2204cat > $TMPC << EOF
2205#include <sys/epoll.h>
2206
2207int main(void)
2208{
2209 epoll_pwait(0, 0, 0, 0, 0);
2210 return 0;
2211}
2212EOF
2213if compile_prog "$ARCH_CFLAGS" "" ; then
2214 epoll_pwait=yes
2215fi
2216
cc8ae6de 2217# Check if tools are available to build documentation.
a25dba17 2218if test "$docs" != "no" ; then
01668d98 2219 if has makeinfo && has pod2man; then
a25dba17 2220 docs=yes
83a3ab8b 2221 else
a25dba17
JQ
2222 if test "$docs" = "yes" ; then
2223 feature_not_found "docs"
83a3ab8b 2224 fi
a25dba17 2225 docs=no
83a3ab8b 2226 fi
cc8ae6de
PB
2227fi
2228
f514f41c 2229# Search for bswap_32 function
6ae9a1f4
JQ
2230byteswap_h=no
2231cat > $TMPC << EOF
2232#include <byteswap.h>
2233int main(void) { return bswap_32(0); }
2234EOF
52166aa0 2235if compile_prog "" "" ; then
6ae9a1f4
JQ
2236 byteswap_h=yes
2237fi
2238
f514f41c 2239# Search for bswap_32 function
6ae9a1f4
JQ
2240bswap_h=no
2241cat > $TMPC << EOF
2242#include <sys/endian.h>
2243#include <sys/types.h>
2244#include <machine/bswap.h>
2245int main(void) { return bswap32(0); }
2246EOF
52166aa0 2247if compile_prog "" "" ; then
6ae9a1f4
JQ
2248 bswap_h=yes
2249fi
2250
da93a1fd
AL
2251##########################################
2252# Do we need librt
2253cat > $TMPC <<EOF
2254#include <signal.h>
2255#include <time.h>
2256int main(void) { clockid_t id; return clock_gettime(id, NULL); }
2257EOF
2258
52166aa0 2259if compile_prog "" "" ; then
07ffa4bd 2260 :
52166aa0 2261elif compile_prog "" "-lrt" ; then
07ffa4bd 2262 LIBS="-lrt $LIBS"
da93a1fd
AL
2263fi
2264
31ff504d 2265if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
179cf400 2266 "$aix" != "yes" -a "$haiku" != "yes" ; then
6362a53f
JQ
2267 libs_softmmu="-lutil $libs_softmmu"
2268fi
2269
de5071c5
BS
2270##########################################
2271# check if the compiler defines offsetof
2272
2273need_offsetof=yes
2274cat > $TMPC << EOF
2275#include <stddef.h>
2276int main(void) { struct s { int f; }; return offsetof(struct s, f); }
2277EOF
2278if compile_prog "" "" ; then
2279 need_offsetof=no
2280fi
2281
747bbdf7
BS
2282##########################################
2283# check if the compiler understands attribute warn_unused_result
2284#
2285# This could be smarter, but gcc -Werror does not error out even when warning
2286# about attribute warn_unused_result
2287
2288gcc_attribute_warn_unused_result=no
2289cat > $TMPC << EOF
2290#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2291#error gcc 3.3 or older
2292#endif
2293int main(void) { return 0;}
2294EOF
2295if compile_prog "" ""; then
2296 gcc_attribute_warn_unused_result=yes
2297fi
2298
cd4ec0b4
GH
2299# spice probe
2300if test "$spice" != "no" ; then
2301 cat > $TMPC << EOF
2302#include <spice.h>
2303int main(void) { spice_server_new(); return 0; }
2304EOF
710fc4f5
JD
2305 spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2306 spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
012b80d3 2307 if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \
cd4ec0b4
GH
2308 compile_prog "$spice_cflags" "$spice_libs" ; then
2309 spice="yes"
2310 libs_softmmu="$libs_softmmu $spice_libs"
2311 QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2312 else
2313 if test "$spice" = "yes" ; then
2314 feature_not_found "spice"
2315 fi
2316 spice="no"
2317 fi
2318fi
2319
111a38b0
RR
2320# check for libcacard for smartcard support
2321if test "$smartcard" != "no" ; then
2322 smartcard="yes"
2323 smartcard_cflags=""
2324 # TODO - what's the minimal nss version we support?
2325 if test "$smartcard_nss" != "no"; then
2326 if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 ; then
2327 smartcard_nss="yes"
2328 smartcard_cflags="-I\$(SRC_PATH)/libcacard"
2329 libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
2330 libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
2331 QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
2332 LIBS="$libcacard_libs $LIBS"
2333 else
2334 if test "$smartcard_nss" = "yes"; then
2335 feature_not_found "nss"
2336 fi
2337 smartcard_nss="no"
2338 fi
2339 fi
2340fi
2341if test "$smartcard" = "no" ; then
2342 smartcard_nss="no"
2343fi
2344
cd4ec0b4
GH
2345##########################################
2346
5f6b9e8f
BS
2347##########################################
2348# check if we have fdatasync
2349
2350fdatasync=no
2351cat > $TMPC << EOF
2352#include <unistd.h>
d1722a27
AR
2353int main(void) {
2354#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2355return fdatasync(0);
2356#else
2357#abort Not supported
2358#endif
2359}
5f6b9e8f
BS
2360EOF
2361if compile_prog "" "" ; then
2362 fdatasync=yes
2363fi
2364
e78815a5
AF
2365##########################################
2366# check if we have madvise
2367
2368madvise=no
2369cat > $TMPC << EOF
2370#include <sys/types.h>
2371#include <sys/mman.h>
832ce9c2 2372#include <stddef.h>
e78815a5
AF
2373int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2374EOF
2375if compile_prog "" "" ; then
2376 madvise=yes
2377fi
2378
2379##########################################
2380# check if we have posix_madvise
2381
2382posix_madvise=no
2383cat > $TMPC << EOF
2384#include <sys/mman.h>
832ce9c2 2385#include <stddef.h>
e78815a5
AF
2386int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2387EOF
2388if compile_prog "" "" ; then
2389 posix_madvise=yes
2390fi
2391
94a420b1
SH
2392##########################################
2393# check if trace backend exists
2394
4c3b5a48 2395sh "$source_path/scripts/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
94a420b1
SH
2396if test "$?" -ne 0 ; then
2397 echo
2398 echo "Error: invalid trace backend"
2399 echo "Please choose a supported trace backend."
2400 echo
2401 exit 1
2402fi
2403
7e24e92a
SH
2404##########################################
2405# For 'ust' backend, test if ust headers are present
2406if test "$trace_backend" = "ust"; then
2407 cat > $TMPC << EOF
2408#include <ust/tracepoint.h>
2409#include <ust/marker.h>
2410int main(void) { return 0; }
2411EOF
2412 if compile_prog "" "" ; then
2413 LIBS="-lust $LIBS"
2414 else
2415 echo
2416 echo "Error: Trace backend 'ust' missing libust header files"
2417 echo
2418 exit 1
2419 fi
2420fi
b3d08c02
DB
2421
2422##########################################
2423# For 'dtrace' backend, test if 'dtrace' command is present
2424if test "$trace_backend" = "dtrace"; then
2425 if ! has 'dtrace' ; then
2426 echo
2427 echo "Error: dtrace command is not found in PATH $PATH"
2428 echo
2429 exit 1
2430 fi
c276b17d
DB
2431 trace_backend_stap="no"
2432 if has 'stap' ; then
2433 trace_backend_stap="yes"
2434 fi
b3d08c02
DB
2435fi
2436
7e24e92a 2437##########################################
e86ecd4b
JQ
2438# End of CC checks
2439# After here, no more $cc or $ld runs
2440
e86ecd4b 2441if test "$debug" = "no" ; then
1156c669 2442 CFLAGS="-O2 $CFLAGS"
e86ecd4b 2443fi
a316e378 2444
e86ecd4b
JQ
2445# Consult white-list to determine whether to enable werror
2446# by default. Only enable by default for git builds
20ff6c80
AL
2447z_version=`cut -f3 -d. $source_path/VERSION`
2448
e86ecd4b 2449if test -z "$werror" ; then
e86ecd4b
JQ
2450 if test "$z_version" = "50" -a \
2451 "$linux" = "yes" ; then
2452 werror="yes"
2453 else
2454 werror="no"
2455 fi
2456fi
2457
20ff6c80
AL
2458# Disable zero malloc errors for official releases unless explicitly told to
2459# enable/disable
2460if test -z "$zero_malloc" ; then
2461 if test "$z_version" = "50" ; then
2462 zero_malloc="no"
2463 else
2464 zero_malloc="yes"
2465 fi
2466fi
2467
e86ecd4b 2468if test "$werror" = "yes" ; then
a558ee17 2469 QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
e86ecd4b
JQ
2470fi
2471
2472if test "$solaris" = "no" ; then
2473 if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
1156c669 2474 LDFLAGS="-Wl,--warn-common $LDFLAGS"
e86ecd4b
JQ
2475 fi
2476fi
2477
952afb71
BS
2478# Use ASLR, no-SEH and DEP if available
2479if test "$mingw32" = "yes" ; then
2480 for flag in --dynamicbase --no-seh --nxcompat; do
2481 if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2482 LDFLAGS="-Wl,$flag $LDFLAGS"
2483 fi
2484 done
2485fi
2486
190e9c59 2487confdir=$sysconfdir$confsuffix
e7b45cc4 2488
ca35f780
PB
2489tools=
2490if test "$softmmu" = yes ; then
2491 tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2492 if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2493 tools="qemu-nbd\$(EXESUF) $tools"
2494 if [ "$check_utests" = "yes" ]; then
2495 tools="check-qint check-qstring check-qdict check-qlist $tools"
2496 tools="check-qfloat check-qjson $tools"
2497 fi
2498 fi
2499fi
2500
2501# Mac OS X ships with a broken assembler
2502roms=
2503if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2504 "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2505 "$softmmu" = yes ; then
2506 roms="optionrom"
2507fi
d0384d1d 2508if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
39ac8455
DG
2509 roms="$roms spapr-rtas"
2510fi
ca35f780 2511
43ce4dfe 2512echo "Install prefix $prefix"
f2b9e1e3
PB
2513echo "BIOS directory `eval echo $datadir`"
2514echo "binary directory `eval echo $bindir`"
3aa5d2be 2515echo "library directory `eval echo $libdir`"
1c0fd160 2516echo "config directory `eval echo $sysconfdir`"
11d9f695 2517if test "$mingw32" = "no" ; then
f2b9e1e3 2518echo "Manual directory `eval echo $mandir`"
43ce4dfe 2519echo "ELF interp prefix $interp_prefix"
11d9f695 2520fi
5a67135a 2521echo "Source path $source_path"
43ce4dfe 2522echo "C compiler $cc"
83469015 2523echo "Host C compiler $host_cc"
0c439cbf 2524echo "CFLAGS $CFLAGS"
a558ee17 2525echo "QEMU_CFLAGS $QEMU_CFLAGS"
0c439cbf 2526echo "LDFLAGS $LDFLAGS"
43ce4dfe 2527echo "make $make"
6a882643 2528echo "install $install"
43ce4dfe 2529echo "host CPU $cpu"
de83cd02 2530echo "host big endian $bigendian"
97a847bc 2531echo "target list $target_list"
ade25b0d 2532echo "tcg debug enabled $debug_tcg"
b4475aa2 2533echo "Mon debug enabled $debug_mon"
43ce4dfe 2534echo "gprof enabled $gprof"
03b4fe7d 2535echo "sparse enabled $sparse"
1625af87 2536echo "strip binaries $strip_opt"
05c2a3e7 2537echo "profiler $profiler"
43ce4dfe 2538echo "static build $static"
85aa5189 2539echo "-Werror enabled $werror"
5b0753e0
FB
2540if test "$darwin" = "yes" ; then
2541 echo "Cocoa support $cocoa"
2542fi
97a847bc 2543echo "SDL support $sdl"
4d3b6f6e 2544echo "curses support $curses"
769ce76d 2545echo "curl support $curl"
5495ed11 2546echo "check support $check_utests"
67b915a5 2547echo "mingw32 support $mingw32"
0c58ac1c 2548echo "Audio drivers $audio_drv_list"
2549echo "Extra audio cards $audio_card_list"
eb852011 2550echo "Block whitelist $block_drv_whitelist"
8ff9cbf7 2551echo "Mixer emulation $mixemu"
821601ea
JS
2552echo "VNC support $vnc"
2553if test "$vnc" = "yes" ; then
2554 echo "VNC TLS support $vnc_tls"
2555 echo "VNC SASL support $vnc_sasl"
2556 echo "VNC JPEG support $vnc_jpeg"
2557 echo "VNC PNG support $vnc_png"
2558 echo "VNC thread $vnc_thread"
2559fi
3142255c
BS
2560if test -n "$sparc_cpu"; then
2561 echo "Target Sparc Arch $sparc_cpu"
2562fi
e37630ca 2563echo "xen support $xen"
2e4d9fb1 2564echo "brlapi support $brlapi"
a20a6f46 2565echo "bluez support $bluez"
a25dba17 2566echo "Documentation $docs"
c5937220
PB
2567[ ! -z "$uname_release" ] && \
2568echo "uname -r $uname_release"
bd0c5661 2569echo "NPTL support $nptl"
379f6698 2570echo "GUEST_BASE $guest_base"
34005a00 2571echo "PIE user targets $user_pie"
8a16d273 2572echo "vde support $vde"
e5d355d1 2573echo "IO thread $io_thread"
5c6c3a6c 2574echo "Linux AIO support $linux_aio"
758e8e38 2575echo "ATTR/XATTR support $attr"
77755340 2576echo "Install blobs $blobs"
b31a0277 2577echo "KVM support $kvm"
f652e6af 2578echo "fdt support $fdt"
ceb42de8 2579echo "preadv support $preadv"
5f6b9e8f 2580echo "fdatasync $fdatasync"
e78815a5
AF
2581echo "madvise $madvise"
2582echo "posix_madvise $posix_madvise"
ee682d27 2583echo "uuid support $uuid"
d5970055 2584echo "vhost-net support $vhost_net"
94a420b1 2585echo "Trace backend $trace_backend"
9410b56c 2586echo "Trace output file $trace_file-<pid>"
cd4ec0b4 2587echo "spice support $spice"
f27aaf4b 2588echo "rbd support $rbd"
dce512de 2589echo "xfsctl support $xfs"
111a38b0 2590echo "nss used $smartcard_nss"
20ff075b 2591echo "OpenGL support $opengl"
67b915a5 2592
97a847bc 2593if test $sdl_too_old = "yes"; then
24b55b96 2594echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 2595fi
7d13299d 2596
98ec69ac 2597config_host_mak="config-host.mak"
4bf6b55b 2598config_host_ld="config-host.ld"
98ec69ac 2599
98ec69ac
JQ
2600echo "# Automatically generated by configure - do not modify" > $config_host_mak
2601printf "# Configured with:" >> $config_host_mak
2602printf " '%s'" "$0" "$@" >> $config_host_mak
2603echo >> $config_host_mak
98ec69ac 2604
e6c3b0f7 2605echo all: >> $config_host_mak
99d7cc75
PB
2606echo "prefix=$prefix" >> $config_host_mak
2607echo "bindir=$bindir" >> $config_host_mak
3aa5d2be 2608echo "libdir=$libdir" >> $config_host_mak
99d7cc75
PB
2609echo "mandir=$mandir" >> $config_host_mak
2610echo "datadir=$datadir" >> $config_host_mak
2611echo "sysconfdir=$sysconfdir" >> $config_host_mak
2612echo "docdir=$docdir" >> $config_host_mak
1dabe05c 2613echo "confdir=$confdir" >> $config_host_mak
804edf29 2614
2408a527 2615case "$cpu" in
d2fbca94 2616 i386|x86_64|alpha|cris|hppa|ia64|lm32|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64|unicore32)
e0da9dd3 2617 ARCH=$cpu
2408a527 2618 ;;
a302c32d 2619 armv4b|armv4l)
16dbd14f 2620 ARCH=arm
2408a527 2621 ;;
2408a527 2622esac
98ec69ac 2623echo "ARCH=$ARCH" >> $config_host_mak
f8393946 2624if test "$debug_tcg" = "yes" ; then
2358a494 2625 echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
f8393946 2626fi
b4475aa2
LC
2627if test "$debug_mon" = "yes" ; then
2628 echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2629fi
f3d08ee6 2630if test "$debug" = "yes" ; then
2358a494 2631 echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
f3d08ee6 2632fi
1625af87 2633if test "$strip_opt" = "yes" ; then
52ba784d 2634 echo "STRIP=${strip}" >> $config_host_mak
1625af87 2635fi
7d13299d 2636if test "$bigendian" = "yes" ; then
e2542fe2 2637 echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
97a847bc 2638fi
2358a494 2639echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
67b915a5 2640if test "$mingw32" = "yes" ; then
98ec69ac 2641 echo "CONFIG_WIN32=y" >> $config_host_mak
9fe6de94
BS
2642 rc_version=`cat $source_path/VERSION`
2643 version_major=${rc_version%%.*}
2644 rc_version=${rc_version#*.}
2645 version_minor=${rc_version%%.*}
2646 rc_version=${rc_version#*.}
2647 version_subminor=${rc_version%%.*}
2648 version_micro=0
2649 echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
2650 echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
210fa556 2651else
35f4df27 2652 echo "CONFIG_POSIX=y" >> $config_host_mak
dffcb71c
MM
2653fi
2654
2655if test "$linux" = "yes" ; then
2656 echo "CONFIG_LINUX=y" >> $config_host_mak
67b915a5 2657fi
128ab2ff 2658
83fb7adf 2659if test "$darwin" = "yes" ; then
98ec69ac 2660 echo "CONFIG_DARWIN=y" >> $config_host_mak
83fb7adf 2661fi
b29fe3ed 2662
2663if test "$aix" = "yes" ; then
98ec69ac 2664 echo "CONFIG_AIX=y" >> $config_host_mak
b29fe3ed 2665fi
2666
ec530c81 2667if test "$solaris" = "yes" ; then
98ec69ac 2668 echo "CONFIG_SOLARIS=y" >> $config_host_mak
2358a494 2669 echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
0475a5ca 2670 if test "$needs_libsunmath" = "yes" ; then
75b5a697 2671 echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
0475a5ca 2672 fi
ec530c81 2673fi
179cf400
AF
2674if test "$haiku" = "yes" ; then
2675 echo "CONFIG_HAIKU=y" >> $config_host_mak
2676fi
97a847bc 2677if test "$static" = "yes" ; then
98ec69ac 2678 echo "CONFIG_STATIC=y" >> $config_host_mak
7d13299d 2679fi
05c2a3e7 2680if test $profiler = "yes" ; then
2358a494 2681 echo "CONFIG_PROFILER=y" >> $config_host_mak
05c2a3e7 2682fi
c20709aa 2683if test "$slirp" = "yes" ; then
98ec69ac 2684 echo "CONFIG_SLIRP=y" >> $config_host_mak
f9728943 2685 QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
c20709aa 2686fi
8a16d273 2687if test "$vde" = "yes" ; then
98ec69ac 2688 echo "CONFIG_VDE=y" >> $config_host_mak
8a16d273 2689fi
0c58ac1c 2690for card in $audio_card_list; do
f6e5889e 2691 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
98ec69ac 2692 echo "$def=y" >> $config_host_mak
0c58ac1c 2693done
2358a494 2694echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
0c58ac1c 2695for drv in $audio_drv_list; do
f6e5889e 2696 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
98ec69ac 2697 echo "$def=y" >> $config_host_mak
923e4521 2698 if test "$drv" = "fmod"; then
7aac6cb1 2699 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
0c58ac1c 2700 fi
2701done
67f86e8e
JQ
2702if test "$audio_pt_int" = "yes" ; then
2703 echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2704fi
d5631638 2705if test "$audio_win_int" = "yes" ; then
2706 echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2707fi
eb852011 2708echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
8ff9cbf7 2709if test "$mixemu" = "yes" ; then
98ec69ac 2710 echo "CONFIG_MIXEMU=y" >> $config_host_mak
8ff9cbf7 2711fi
821601ea
JS
2712if test "$vnc" = "yes" ; then
2713 echo "CONFIG_VNC=y" >> $config_host_mak
2714fi
8d5d2d4c 2715if test "$vnc_tls" = "yes" ; then
98ec69ac 2716 echo "CONFIG_VNC_TLS=y" >> $config_host_mak
525061bf 2717 echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
8d5d2d4c 2718fi
2f9606b3 2719if test "$vnc_sasl" = "yes" ; then
98ec69ac 2720 echo "CONFIG_VNC_SASL=y" >> $config_host_mak
60ddf533 2721 echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2f9606b3 2722fi
821601ea 2723if test "$vnc_jpeg" = "yes" ; then
2f6f5c7a
CC
2724 echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2725 echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2726fi
821601ea 2727if test "$vnc_png" = "yes" ; then
efe556ad
CC
2728 echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2729 echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2730fi
821601ea 2731if test "$vnc_thread" = "yes" ; then
bd023f95 2732 echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
bd023f95 2733fi
76655d6d 2734if test "$fnmatch" = "yes" ; then
2358a494 2735 echo "CONFIG_FNMATCH=y" >> $config_host_mak
76655d6d 2736fi
ee682d27
SW
2737if test "$uuid" = "yes" ; then
2738 echo "CONFIG_UUID=y" >> $config_host_mak
2739fi
dce512de
CH
2740if test "$xfs" = "yes" ; then
2741 echo "CONFIG_XFS=y" >> $config_host_mak
2742fi
b1a550a0 2743qemu_version=`head $source_path/VERSION`
98ec69ac 2744echo "VERSION=$qemu_version" >>$config_host_mak
2358a494 2745echo "PKGVERSION=$pkgversion" >>$config_host_mak
98ec69ac 2746echo "SRC_PATH=$source_path" >> $config_host_mak
98ec69ac 2747echo "TARGET_DIRS=$target_list" >> $config_host_mak
a25dba17 2748if [ "$docs" = "yes" ] ; then
98ec69ac 2749 echo "BUILD_DOCS=yes" >> $config_host_mak
cc8ae6de 2750fi
1ac88f28 2751if test "$sdl" = "yes" ; then
98ec69ac 2752 echo "CONFIG_SDL=y" >> $config_host_mak
1ac88f28 2753 echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
49ecc3fa
FB
2754fi
2755if test "$cocoa" = "yes" ; then
98ec69ac 2756 echo "CONFIG_COCOA=y" >> $config_host_mak
4d3b6f6e
AZ
2757fi
2758if test "$curses" = "yes" ; then
98ec69ac 2759 echo "CONFIG_CURSES=y" >> $config_host_mak
49ecc3fa 2760fi
3b3f24ad 2761if test "$atfile" = "yes" ; then
2358a494 2762 echo "CONFIG_ATFILE=y" >> $config_host_mak
3b3f24ad 2763fi
ebc996f3 2764if test "$utimens" = "yes" ; then
2358a494 2765 echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
ebc996f3 2766fi
099d6b0f 2767if test "$pipe2" = "yes" ; then
2358a494 2768 echo "CONFIG_PIPE2=y" >> $config_host_mak
099d6b0f 2769fi
40ff6d7e
KW
2770if test "$accept4" = "yes" ; then
2771 echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2772fi
3ce34dfb 2773if test "$splice" = "yes" ; then
2358a494 2774 echo "CONFIG_SPLICE=y" >> $config_host_mak
3ce34dfb 2775fi
c2882b96
RV
2776if test "$eventfd" = "yes" ; then
2777 echo "CONFIG_EVENTFD=y" >> $config_host_mak
2778fi
d0927938
UH
2779if test "$fallocate" = "yes" ; then
2780 echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2781fi
c727f47d
PM
2782if test "$sync_file_range" = "yes" ; then
2783 echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
2784fi
dace20dc
PM
2785if test "$fiemap" = "yes" ; then
2786 echo "CONFIG_FIEMAP=y" >> $config_host_mak
2787fi
d0927938
UH
2788if test "$dup3" = "yes" ; then
2789 echo "CONFIG_DUP3=y" >> $config_host_mak
2790fi
3b6edd16
PM
2791if test "$epoll" = "yes" ; then
2792 echo "CONFIG_EPOLL=y" >> $config_host_mak
2793fi
2794if test "$epoll_create1" = "yes" ; then
2795 echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
2796fi
2797if test "$epoll_pwait" = "yes" ; then
2798 echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
2799fi
3b3f24ad 2800if test "$inotify" = "yes" ; then
2358a494 2801 echo "CONFIG_INOTIFY=y" >> $config_host_mak
3b3f24ad 2802fi
c05c7a73
RV
2803if test "$inotify1" = "yes" ; then
2804 echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2805fi
6ae9a1f4
JQ
2806if test "$byteswap_h" = "yes" ; then
2807 echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2808fi
2809if test "$bswap_h" = "yes" ; then
2810 echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2811fi
769ce76d 2812if test "$curl" = "yes" ; then
98ec69ac 2813 echo "CONFIG_CURL=y" >> $config_host_mak
b1d5a277 2814 echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
769ce76d 2815fi
2e4d9fb1 2816if test "$brlapi" = "yes" ; then
98ec69ac 2817 echo "CONFIG_BRLAPI=y" >> $config_host_mak
2e4d9fb1 2818fi
fb599c9a 2819if test "$bluez" = "yes" ; then
98ec69ac 2820 echo "CONFIG_BLUEZ=y" >> $config_host_mak
ef7635ec 2821 echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
fb599c9a 2822fi
e37630ca 2823if test "$xen" = "yes" ; then
5647eb74 2824 echo "CONFIG_XEN=y" >> $config_host_mak
d5b93ddf 2825 echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
e37630ca 2826fi
e5d355d1 2827if test "$io_thread" = "yes" ; then
98ec69ac 2828 echo "CONFIG_IOTHREAD=y" >> $config_host_mak
e5d355d1 2829fi
5c6c3a6c
CH
2830if test "$linux_aio" = "yes" ; then
2831 echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2832fi
758e8e38
VJ
2833if test "$attr" = "yes" ; then
2834 echo "CONFIG_ATTR=y" >> $config_host_mak
2835fi
2836if test "$linux" = "yes" ; then
2837 if test "$attr" = "yes" ; then
2838 echo "CONFIG_VIRTFS=y" >> $config_host_mak
2839 fi
2840fi
77755340 2841if test "$blobs" = "yes" ; then
98ec69ac 2842 echo "INSTALL_BLOBS=yes" >> $config_host_mak
77755340 2843fi
bf9298b9 2844if test "$iovec" = "yes" ; then
2358a494 2845 echo "CONFIG_IOVEC=y" >> $config_host_mak
bf9298b9 2846fi
ceb42de8 2847if test "$preadv" = "yes" ; then
2358a494 2848 echo "CONFIG_PREADV=y" >> $config_host_mak
ceb42de8 2849fi
f652e6af 2850if test "$fdt" = "yes" ; then
3f0855b1 2851 echo "CONFIG_FDT=y" >> $config_host_mak
f652e6af 2852fi
dcc38d1c
MT
2853if test "$signalfd" = "yes" ; then
2854 echo "CONFIG_SIGNALFD=y" >> $config_host_mak
2855fi
de5071c5
BS
2856if test "$need_offsetof" = "yes" ; then
2857 echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2858fi
747bbdf7
BS
2859if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2860 echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2861fi
5f6b9e8f
BS
2862if test "$fdatasync" = "yes" ; then
2863 echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2864fi
e78815a5
AF
2865if test "$madvise" = "yes" ; then
2866 echo "CONFIG_MADVISE=y" >> $config_host_mak
2867fi
2868if test "$posix_madvise" = "yes" ; then
2869 echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2870fi
97a847bc 2871
cd4ec0b4
GH
2872if test "$spice" = "yes" ; then
2873 echo "CONFIG_SPICE=y" >> $config_host_mak
2874fi
36707144
AL
2875
2876if test "$smartcard" = "yes" ; then
2877 echo "CONFIG_SMARTCARD=y" >> $config_host_mak
2878fi
cd4ec0b4 2879
111a38b0
RR
2880if test "$smartcard_nss" = "yes" ; then
2881 echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
2882fi
2883
20ff075b
MW
2884if test "$opengl" = "yes" ; then
2885 echo "CONFIG_OPENGL=y" >> $config_host_mak
2886fi
2887
83fb7adf 2888# XXX: suppress that
7d3505c5 2889if [ "$bsd" = "yes" ] ; then
2358a494 2890 echo "CONFIG_BSD=y" >> $config_host_mak
7d3505c5
FB
2891fi
2892
2358a494 2893echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
c5937220 2894
20ff6c80
AL
2895if test "$zero_malloc" = "yes" ; then
2896 echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2897fi
f27aaf4b
CB
2898if test "$rbd" = "yes" ; then
2899 echo "CONFIG_RBD=y" >> $config_host_mak
2900fi
20ff6c80 2901
68063649
BS
2902# USB host support
2903case "$usb" in
2904linux)
98ec69ac 2905 echo "HOST_USB=linux" >> $config_host_mak
68063649
BS
2906;;
2907bsd)
98ec69ac 2908 echo "HOST_USB=bsd" >> $config_host_mak
68063649
BS
2909;;
2910*)
98ec69ac 2911 echo "HOST_USB=stub" >> $config_host_mak
68063649
BS
2912;;
2913esac
2914
94a420b1 2915echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
22890ab5
PS
2916if test "$trace_backend" = "simple"; then
2917 echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2918fi
9410b56c
PS
2919# Set the appropriate trace file.
2920if test "$trace_backend" = "simple"; then
953ffe0f 2921 trace_file="\"$trace_file-\" FMT_pid"
9410b56c 2922fi
c276b17d
DB
2923if test "$trace_backend" = "dtrace" -a "$trace_backend_stap" = "yes" ; then
2924 echo "CONFIG_SYSTEMTAP_TRACE=y" >> $config_host_mak
2925fi
9410b56c
PS
2926echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2927
98ec69ac 2928echo "TOOLS=$tools" >> $config_host_mak
98ec69ac 2929echo "ROMS=$roms" >> $config_host_mak
804edf29
JQ
2930echo "MAKE=$make" >> $config_host_mak
2931echo "INSTALL=$install" >> $config_host_mak
2932echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2933echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2934echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2935echo "CC=$cc" >> $config_host_mak
2b2e59e6 2936echo "CC_I386=$cc_i386" >> $config_host_mak
804edf29 2937echo "HOST_CC=$host_cc" >> $config_host_mak
804edf29
JQ
2938echo "AR=$ar" >> $config_host_mak
2939echo "OBJCOPY=$objcopy" >> $config_host_mak
2940echo "LD=$ld" >> $config_host_mak
9fe6de94 2941echo "WINDRES=$windres" >> $config_host_mak
44dc0ca3 2942echo "LIBTOOL=$libtool" >> $config_host_mak
e2a2ed06 2943echo "CFLAGS=$CFLAGS" >> $config_host_mak
a558ee17 2944echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
f9728943 2945echo "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
e39f0062
PB
2946if test "$sparse" = "yes" ; then
2947 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak
2948 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak
2949 echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
2950fi
c81da56e 2951echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
e2a2ed06 2952echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
a36abbbb
JQ
2953echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2954echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
73da375e 2955echo "LIBS+=$LIBS" >> $config_host_mak
3e2e0e6b 2956echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
804edf29 2957echo "EXESUF=$EXESUF" >> $config_host_mak
804edf29 2958
4bf6b55b
JQ
2959# generate list of library paths for linker script
2960
2961$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2962
2963if test -f ${config_host_ld}~ ; then
2964 if cmp -s $config_host_ld ${config_host_ld}~ ; then
2965 mv ${config_host_ld}~ $config_host_ld
2966 else
2967 rm ${config_host_ld}~
2968 fi
2969fi
2970
4d904533
BS
2971for d in libdis libdis-user; do
2972 mkdir -p $d
11568d6d 2973 symlink $source_path/Makefile.dis $d/Makefile
4d904533
BS
2974 echo > $d/config.mak
2975done
d44cff22
RH
2976if test "$static" = "no" -a "$user_pie" = "yes" ; then
2977 echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2978fi
4d904533 2979
1d14ffa9 2980for target in $target_list; do
97a847bc 2981target_dir="$target"
25be210f 2982config_target_mak=$target_dir/config-target.mak
600309b6 2983target_arch2=`echo $target | cut -d '-' -f 1`
97a847bc 2984target_bigendian="no"
1f3d3c8f 2985
ea2d6a39 2986case "$target_arch2" in
613a22c9 2987 armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
ea2d6a39
JQ
2988 target_bigendian=yes
2989 ;;
2990esac
97a847bc 2991target_softmmu="no"
997344f3 2992target_user_only="no"
831b7825 2993target_linux_user="no"
831b7825 2994target_darwin_user="no"
84778508 2995target_bsd_user="no"
9e407a85 2996case "$target" in
600309b6 2997 ${target_arch2}-softmmu)
9e407a85
PB
2998 target_softmmu="yes"
2999 ;;
600309b6 3000 ${target_arch2}-linux-user)
9c7a4202
BS
3001 if test "$linux" != "yes" ; then
3002 echo "ERROR: Target '$target' is only available on a Linux host"
3003 exit 1
3004 fi
9e407a85
PB
3005 target_user_only="yes"
3006 target_linux_user="yes"
3007 ;;
600309b6 3008 ${target_arch2}-darwin-user)
9c7a4202
BS
3009 if test "$darwin" != "yes" ; then
3010 echo "ERROR: Target '$target' is only available on a Darwin host"
3011 exit 1
3012 fi
9e407a85
PB
3013 target_user_only="yes"
3014 target_darwin_user="yes"
3015 ;;
600309b6 3016 ${target_arch2}-bsd-user)
9cf55765 3017 if test "$bsd" != "yes" ; then
9c7a4202
BS
3018 echo "ERROR: Target '$target' is only available on a BSD host"
3019 exit 1
3020 fi
84778508
BS
3021 target_user_only="yes"
3022 target_bsd_user="yes"
3023 ;;
9e407a85
PB
3024 *)
3025 echo "ERROR: Target '$target' not recognised"
3026 exit 1
3027 ;;
3028esac
831b7825 3029
97a847bc 3030mkdir -p $target_dir
158142c2 3031mkdir -p $target_dir/fpu
57fec1fe 3032mkdir -p $target_dir/tcg
59f2a787 3033mkdir -p $target_dir/ide
353ac78d 3034mkdir -p $target_dir/9pfs
84778508 3035if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
69de927c
FB
3036 mkdir -p $target_dir/nwfpe
3037fi
11568d6d 3038symlink $source_path/Makefile.target $target_dir/Makefile
ec530c81 3039
97a847bc 3040
25be210f 3041echo "# Automatically generated by configure - do not modify" > $config_target_mak
de83cd02 3042
e5fe0c52 3043bflt="no"
bd0c5661 3044target_nptl="no"
600309b6 3045interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
7ee2822c 3046echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
56aebc89 3047gdb_xml_files=""
c2e3dee6
LV
3048target_short_alignment=2
3049target_int_alignment=4
3050target_long_alignment=4
3051target_llong_alignment=8
de3a354a 3052target_libs_softmmu=
7ba1e619 3053
938b1edd 3054TARGET_ARCH="$target_arch2"
6acff7da 3055TARGET_BASE_ARCH=""
e6e91b9c 3056TARGET_ABI_DIR=""
e73aae67 3057
600309b6 3058case "$target_arch2" in
2408a527 3059 i386)
71deff27 3060 target_phys_bits=64
2408a527
AJ
3061 ;;
3062 x86_64)
6acff7da 3063 TARGET_BASE_ARCH=i386
1ad2134f 3064 target_phys_bits=64
c2e3dee6 3065 target_long_alignment=8
2408a527
AJ
3066 ;;
3067 alpha)
1ad2134f 3068 target_phys_bits=64
c2e3dee6 3069 target_long_alignment=8
a4b388ff 3070 target_nptl="yes"
2408a527
AJ
3071 ;;
3072 arm|armeb)
b498c8a0 3073 TARGET_ARCH=arm
2408a527 3074 bflt="yes"
bd0c5661 3075 target_nptl="yes"
56aebc89 3076 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1ad2134f 3077 target_phys_bits=32
c2e3dee6 3078 target_llong_alignment=4
2408a527
AJ
3079 ;;
3080 cris)
253bd7f8 3081 target_nptl="yes"
1ad2134f 3082 target_phys_bits=32
2408a527 3083 ;;
613a22c9
MW
3084 lm32)
3085 target_phys_bits=32
de3a354a 3086 target_libs_softmmu="$opengl_libs"
613a22c9 3087 ;;
2408a527 3088 m68k)
2408a527 3089 bflt="yes"
56aebc89 3090 gdb_xml_files="cf-core.xml cf-fp.xml"
1ad2134f 3091 target_phys_bits=32
c2e3dee6
LV
3092 target_int_alignment=2
3093 target_long_alignment=2
3094 target_llong_alignment=2
2408a527 3095 ;;
877fdc12
EI
3096 microblaze|microblazeel)
3097 TARGET_ARCH=microblaze
72b675ca
EI
3098 bflt="yes"
3099 target_nptl="yes"
3100 target_phys_bits=32
de3a354a 3101 target_libs_softmmu="$fdt_libs"
72b675ca 3102 ;;
0adcffb1 3103 mips|mipsel)
b498c8a0 3104 TARGET_ARCH=mips
25be210f 3105 echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
f04dc72f 3106 target_nptl="yes"
1ad2134f 3107 target_phys_bits=64
2408a527
AJ
3108 ;;
3109 mipsn32|mipsn32el)
b498c8a0 3110 TARGET_ARCH=mipsn32
6acff7da 3111 TARGET_BASE_ARCH=mips
25be210f 3112 echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
1ad2134f 3113 target_phys_bits=64
2408a527
AJ
3114 ;;
3115 mips64|mips64el)
b498c8a0 3116 TARGET_ARCH=mips64
6acff7da 3117 TARGET_BASE_ARCH=mips
25be210f 3118 echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
1ad2134f 3119 target_phys_bits=64
c2e3dee6 3120 target_long_alignment=8
2408a527
AJ
3121 ;;
3122 ppc)
c8b3532d 3123 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 3124 target_phys_bits=32
d6630708 3125 target_nptl="yes"
de3a354a 3126 target_libs_softmmu="$fdt_libs"
2408a527
AJ
3127 ;;
3128 ppcemb)
6acff7da 3129 TARGET_BASE_ARCH=ppc
e6e91b9c 3130 TARGET_ABI_DIR=ppc
c8b3532d 3131 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 3132 target_phys_bits=64
d6630708 3133 target_nptl="yes"
de3a354a 3134 target_libs_softmmu="$fdt_libs"
2408a527
AJ
3135 ;;
3136 ppc64)
6acff7da 3137 TARGET_BASE_ARCH=ppc
e6e91b9c 3138 TARGET_ABI_DIR=ppc
c8b3532d 3139 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 3140 target_phys_bits=64
c2e3dee6 3141 target_long_alignment=8
de3a354a 3142 target_libs_softmmu="$fdt_libs"
2408a527
AJ
3143 ;;
3144 ppc64abi32)
b498c8a0 3145 TARGET_ARCH=ppc64
6acff7da 3146 TARGET_BASE_ARCH=ppc
e6e91b9c 3147 TARGET_ABI_DIR=ppc
25be210f 3148 echo "TARGET_ABI32=y" >> $config_target_mak
c8b3532d 3149 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1ad2134f 3150 target_phys_bits=64
de3a354a 3151 target_libs_softmmu="$fdt_libs"
2408a527
AJ
3152 ;;
3153 sh4|sh4eb)
b498c8a0 3154 TARGET_ARCH=sh4
2408a527 3155 bflt="yes"
0b6d3ae0 3156 target_nptl="yes"
1ad2134f 3157 target_phys_bits=32
2408a527
AJ
3158 ;;
3159 sparc)
1ad2134f 3160 target_phys_bits=64
2408a527
AJ
3161 ;;
3162 sparc64)
6acff7da 3163 TARGET_BASE_ARCH=sparc
1ad2134f 3164 target_phys_bits=64
c2e3dee6 3165 target_long_alignment=8
2408a527
AJ
3166 ;;
3167 sparc32plus)
b498c8a0 3168 TARGET_ARCH=sparc64
6acff7da 3169 TARGET_BASE_ARCH=sparc
e6e91b9c 3170 TARGET_ABI_DIR=sparc
25be210f 3171 echo "TARGET_ABI32=y" >> $config_target_mak
1ad2134f 3172 target_phys_bits=64
2408a527 3173 ;;
24e804ec 3174 s390x)
bc434676 3175 target_nptl="yes"
24e804ec 3176 target_phys_bits=64
7b3da903 3177 target_long_alignment=8
24e804ec 3178 ;;
d2fbca94
GX
3179 unicore32)
3180 target_phys_bits=32
3181 ;;
2408a527
AJ
3182 *)
3183 echo "Unsupported target CPU"
3184 exit 1
3185 ;;
3186esac
c2e3dee6
LV
3187echo "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3188echo "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3189echo "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3190echo "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
25be210f 3191echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
053dd92e 3192target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
25be210f
JQ
3193echo "TARGET_$target_arch_name=y" >> $config_target_mak
3194echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
42bc608b 3195# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
6acff7da
JQ
3196if [ "$TARGET_BASE_ARCH" = "" ]; then
3197 TARGET_BASE_ARCH=$TARGET_ARCH
6acff7da 3198fi
25be210f 3199echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
e6e91b9c
JQ
3200if [ "$TARGET_ABI_DIR" = "" ]; then
3201 TARGET_ABI_DIR=$TARGET_ARCH
3202fi
25be210f 3203echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
1b0c87fc
JQ
3204case "$target_arch2" in
3205 i386|x86_64)
3206 if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
64b3cfdb 3207 target_phys_bits=64
25be210f 3208 echo "CONFIG_XEN=y" >> $config_target_mak
432d268c
JN
3209 if test "$cpu" = "i386" -o "$cpu" = "x86_64"; then
3210 echo "CONFIG_XEN_MAPCACHE=y" >> $config_target_mak
3211 fi
1b0c87fc
JQ
3212 fi
3213esac
c59249f9 3214case "$target_arch2" in
0e60a699 3215 i386|x86_64|ppcemb|ppc|ppc64|s390x)
c59249f9
JQ
3216 # Make sure the target and host cpus are compatible
3217 if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3218 \( "$target_arch2" = "$cpu" -o \
3219 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
5f114bc6 3220 \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \
adf82011
RR
3221 \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \
3222 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
c59249f9
JQ
3223 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
3224 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
25be210f 3225 echo "CONFIG_KVM=y" >> $config_target_mak
d5970055
MT
3226 if test $vhost_net = "yes" ; then
3227 echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3228 fi
c59249f9
JQ
3229 fi
3230esac
de83cd02 3231if test "$target_bigendian" = "yes" ; then
25be210f 3232 echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
de83cd02 3233fi
97a847bc 3234if test "$target_softmmu" = "yes" ; then
b1aa27c4 3235 echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
25be210f 3236 echo "CONFIG_SOFTMMU=y" >> $config_target_mak
de3a354a 3237 echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
0e8c9214 3238 echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
5791f45b 3239 echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
43ce4dfe 3240fi
997344f3 3241if test "$target_user_only" = "yes" ; then
25be210f 3242 echo "CONFIG_USER_ONLY=y" >> $config_target_mak
997344f3 3243fi
831b7825 3244if test "$target_linux_user" = "yes" ; then
25be210f 3245 echo "CONFIG_LINUX_USER=y" >> $config_target_mak
831b7825
TS
3246fi
3247if test "$target_darwin_user" = "yes" ; then
25be210f 3248 echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
831b7825 3249fi
111a38b0
RR
3250if test "$smartcard_nss" = "yes" ; then
3251 echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3252 echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3253 echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3254fi
56aebc89
PB
3255list=""
3256if test ! -z "$gdb_xml_files" ; then
3257 for x in $gdb_xml_files; do
3258 list="$list $source_path/gdb-xml/$x"
3259 done
3d0f1517 3260 echo "TARGET_XML_FILES=$list" >> $config_target_mak
56aebc89 3261fi
97a847bc 3262
e5fe0c52 3263if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
25be210f 3264 echo "TARGET_HAS_BFLT=y" >> $config_target_mak
e5fe0c52 3265fi
bd0c5661
PB
3266if test "$target_user_only" = "yes" \
3267 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
25be210f 3268 echo "CONFIG_USE_NPTL=y" >> $config_target_mak
bd0c5661 3269fi
379f6698 3270if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
25be210f 3271 echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
379f6698 3272fi
84778508 3273if test "$target_bsd_user" = "yes" ; then
25be210f 3274 echo "CONFIG_BSD_USER=y" >> $config_target_mak
84778508 3275fi
5b0753e0 3276
4afddb55 3277# generate QEMU_CFLAGS/LDFLAGS for targets
fa282484 3278
4afddb55 3279cflags=""
f9728943 3280includes=""
fa282484 3281ldflags=""
9b8e111f 3282
57ddfbf7 3283if test "$ARCH" = "sparc64" ; then
f9728943 3284 includes="-I\$(SRC_PATH)/tcg/sparc $includes"
24e804ec 3285elif test "$ARCH" = "s390x" ; then
f9728943 3286 includes="-I\$(SRC_PATH)/tcg/s390 $includes"
5d8a4f8f 3287elif test "$ARCH" = "x86_64" ; then
f9728943 3288 includes="-I\$(SRC_PATH)/tcg/i386 $includes"
57ddfbf7 3289else
f9728943 3290 includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
57ddfbf7 3291fi
f9728943
PB
3292includes="-I\$(SRC_PATH)/tcg $includes"
3293includes="-I\$(SRC_PATH)/fpu $includes"
57ddfbf7 3294
4d904533
BS
3295if test "$target_user_only" = "yes" ; then
3296 libdis_config_mak=libdis-user/config.mak
3297else
3298 libdis_config_mak=libdis/config.mak
3299fi
3300
64656024
JQ
3301for i in $ARCH $TARGET_BASE_ARCH ; do
3302 case "$i" in
3303 alpha)
25be210f 3304 echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak
4d904533 3305 echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak
64656024
JQ
3306 ;;
3307 arm)
25be210f 3308 echo "CONFIG_ARM_DIS=y" >> $config_target_mak
4d904533 3309 echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak
64656024
JQ
3310 ;;
3311 cris)
25be210f 3312 echo "CONFIG_CRIS_DIS=y" >> $config_target_mak
4d904533 3313 echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak
64656024
JQ
3314 ;;
3315 hppa)
25be210f 3316 echo "CONFIG_HPPA_DIS=y" >> $config_target_mak
4d904533 3317 echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak
64656024
JQ
3318 ;;
3319 i386|x86_64)
25be210f 3320 echo "CONFIG_I386_DIS=y" >> $config_target_mak
4d904533 3321 echo "CONFIG_I386_DIS=y" >> $libdis_config_mak
64656024 3322 ;;
903ec55c
AJ
3323 ia64*)
3324 echo "CONFIG_IA64_DIS=y" >> $config_target_mak
3325 echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak
3326 ;;
64656024 3327 m68k)
25be210f 3328 echo "CONFIG_M68K_DIS=y" >> $config_target_mak
4d904533 3329 echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak
64656024 3330 ;;
877fdc12 3331 microblaze*)
25be210f 3332 echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak
4d904533 3333 echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak
64656024
JQ
3334 ;;
3335 mips*)
25be210f 3336 echo "CONFIG_MIPS_DIS=y" >> $config_target_mak
4d904533 3337 echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak
64656024
JQ
3338 ;;
3339 ppc*)
25be210f 3340 echo "CONFIG_PPC_DIS=y" >> $config_target_mak
4d904533 3341 echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak
64656024 3342 ;;
24e804ec 3343 s390*)
25be210f 3344 echo "CONFIG_S390_DIS=y" >> $config_target_mak
4d904533 3345 echo "CONFIG_S390_DIS=y" >> $libdis_config_mak
64656024
JQ
3346 ;;
3347 sh4)
25be210f 3348 echo "CONFIG_SH4_DIS=y" >> $config_target_mak
4d904533 3349 echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak
64656024
JQ
3350 ;;
3351 sparc*)
25be210f 3352 echo "CONFIG_SPARC_DIS=y" >> $config_target_mak
4d904533 3353 echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak
64656024
JQ
3354 ;;
3355 esac
3356done
3357
6ee7126f
JQ
3358case "$ARCH" in
3359alpha)
3360 # Ensure there's only a single GP
3361 cflags="-msmall-data $cflags"
3362;;
3363esac
3364
55d9c04b
JQ
3365if test "$target_softmmu" = "yes" ; then
3366 case "$TARGET_BASE_ARCH" in
3367 arm)
3368 cflags="-DHAS_AUDIO $cflags"
25a8bb96
MW
3369 ;;
3370 lm32)
3371 cflags="-DHAS_AUDIO $cflags"
55d9c04b
JQ
3372 ;;
3373 i386|mips|ppc)
3374 cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
3375 ;;
3376 esac
3377fi
3378
34005a00 3379if test "$target_user_only" = "yes" -a "$static" = "no" -a \
50108930 3380 "$user_pie" = "yes" ; then
34005a00
KS
3381 cflags="-fpie $cflags"
3382 ldflags="-pie $ldflags"
3383fi
3384
471857dd
JQ
3385if test "$target_softmmu" = "yes" -a \( \
3386 "$TARGET_ARCH" = "microblaze" -o \
3387 "$TARGET_ARCH" = "cris" \) ; then
25be210f 3388 echo "CONFIG_NEED_MMU=y" >> $config_target_mak
471857dd
JQ
3389fi
3390
d02c1db3 3391if test "$gprof" = "yes" ; then
25be210f 3392 echo "TARGET_GPROF=yes" >> $config_target_mak
d02c1db3
JQ
3393 if test "$target_linux_user" = "yes" ; then
3394 cflags="-p $cflags"
3395 ldflags="-p $ldflags"
3396 fi
3397 if test "$target_softmmu" = "yes" ; then
3398 ldflags="-p $ldflags"
25be210f 3399 echo "GPROF_CFLAGS=-p" >> $config_target_mak
d02c1db3
JQ
3400 fi
3401fi
3402
6ee7126f 3403linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
9b8e111f 3404if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
fa282484 3405 case "$ARCH" in
fa282484
JQ
3406 sparc)
3407 # -static is used to avoid g1/g3 usage by the dynamic linker
322e5878 3408 ldflags="$linker_script -static $ldflags"
fa282484 3409 ;;
4d58be06
RH
3410 alpha | s390x)
3411 # The default placement of the application is fine.
3412 ;;
fd76e73a 3413 *)
322e5878 3414 ldflags="$linker_script $ldflags"
fa282484
JQ
3415 ;;
3416 esac
3417fi
fa282484 3418
e205c790
JK
3419# use included Linux headers
3420includes="-I\$(SRC_PATH)/linux-headers $includes"
3421mkdir -p linux-headers
3422case "$cpu" in
3423i386|x86_64)
3424 symlink $source_path/linux-headers/asm-x86 linux-headers/asm
3425 ;;
3426ppcemb|ppc|ppc64)
3427 symlink $source_path/linux-headers/asm-x86 linux-headers/asm
3428 ;;
3429s390x)
3430 symlink $source_path/linux-headers/asm-s390 linux-headers/asm
3431 ;;
3432esac
3433
25be210f
JQ
3434echo "LDFLAGS+=$ldflags" >> $config_target_mak
3435echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
f9728943 3436echo "QEMU_INCLUDES+=$includes" >> $config_target_mak
fa282484 3437
97a847bc 3438done # for target in $targets
7d13299d 3439
d1807a4f
PB
3440# build tree in object directory in case the source is not in the current directory
3441DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
446b9165 3442DIRS="$DIRS pc-bios/spapr-rtas"
d1807a4f
PB
3443DIRS="$DIRS roms/seabios roms/vgabios"
3444DIRS="$DIRS fsdev ui"
3445FILES="Makefile tests/Makefile"
3446FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
3447FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
446b9165 3448FILES="$FILES pc-bios/spapr-rtas/Makefile"
d1807a4f 3449FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
5ee8ad71 3450for 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
3451 FILES="$FILES pc-bios/`basename $bios_file`"
3452done
3453mkdir -p $DIRS
3454for f in $FILES ; do
eae30c8f 3455 test -e $f || symlink $source_path/$f $f
d1807a4f 3456done
1ad2134f 3457
c34ebfdc 3458# temporary config to build submodules
2d9f27d2 3459for rom in seabios vgabios ; do
c34ebfdc 3460 config_mak=roms/$rom/config.mak
37116c89 3461 echo "# Automatically generated by configure - do not modify" > $config_mak
c34ebfdc
AL
3462 echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3463 echo "CC=$cc" >> $config_mak
3464 echo "BCC=bcc" >> $config_mak
3465 echo "CPP=${cross_prefix}cpp" >> $config_mak
3466 echo "OBJCOPY=objcopy" >> $config_mak
3467 echo "IASL=iasl" >> $config_mak
c34ebfdc
AL
3468 echo "LD=$ld" >> $config_mak
3469done
3470
1ad2134f
PB
3471for hwlib in 32 64; do
3472 d=libhw$hwlib
3473 mkdir -p $d
9953b2fc 3474 mkdir -p $d/ide
11568d6d 3475 symlink $source_path/Makefile.hw $d/Makefile
353ac78d 3476 mkdir -p $d/9pfs
37116c89 3477 echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
1ad2134f 3478done
add16157 3479
111a38b0
RR
3480if [ "$source_path" != `pwd` ]; then
3481 # out of tree build
3482 mkdir -p libcacard
3483 rm -f libcacard/Makefile
44dc0ca3 3484 symlink "$source_path/libcacard/Makefile" libcacard/Makefile
111a38b0
RR
3485fi
3486
add16157
BS
3487d=libuser
3488mkdir -p $d
11568d6d 3489symlink $source_path/Makefile.user $d/Makefile
299060a0
KS
3490if test "$static" = "no" -a "$user_pie" = "yes" ; then
3491 echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3492fi
b40292e7
JK
3493
3494if test "$docs" = "yes" ; then
3495 mkdir -p QMP
3496fi