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