]>
Commit | Line | Data |
---|---|---|
7d13299d FB |
1 | #!/bin/sh |
2 | # | |
3ef693a0 | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
7d13299d FB |
4 | # |
5 | # set temporary file name | |
6 | if test ! -z "$TMPDIR" ; then | |
7 | TMPDIR1="${TMPDIR}" | |
8 | elif test ! -z "$TEMPDIR" ; then | |
9 | TMPDIR1="${TEMPDIR}" | |
10 | else | |
11 | TMPDIR1="/tmp" | |
12 | fi | |
13 | ||
3ef693a0 FB |
14 | TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c" |
15 | TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o" | |
16 | TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}" | |
7d13299d | 17 | |
9784cde5 | 18 | trap "rm -f $TMPC $TMPO $TMPE ; exit" 0 2 3 15 |
9ac81bbb | 19 | |
52166aa0 | 20 | compile_object() { |
a558ee17 | 21 | $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null |
52166aa0 JQ |
22 | } |
23 | ||
24 | compile_prog() { | |
25 | local_cflags="$1" | |
26 | local_ldflags="$2" | |
a558ee17 | 27 | $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null |
52166aa0 JQ |
28 | } |
29 | ||
7d13299d | 30 | # default parameters |
2ff6b91e | 31 | cpu="" |
11d9f695 | 32 | prefix="" |
1e43adfc | 33 | interp_prefix="/usr/gnemul/qemu-%M" |
43ce4dfe | 34 | static="no" |
ed968ff1 | 35 | sparc_cpu="" |
7d13299d FB |
36 | cross_prefix="" |
37 | cc="gcc" | |
0c58ac1c | 38 | audio_drv_list="" |
4c9b53e3 | 39 | audio_card_list="ac97 es1370 sb16" |
40 | audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" | |
7d13299d FB |
41 | host_cc="gcc" |
42 | ar="ar" | |
43 | make="make" | |
6a882643 | 44 | install="install" |
7aa486fe AL |
45 | objcopy="objcopy" |
46 | ld="ld" | |
c81da56e | 47 | helper_cflags="" |
73da375e | 48 | libs_softmmu="" |
67f86e8e | 49 | audio_pt_int="" |
ac0df51d AL |
50 | |
51 | # parse CC options first | |
52 | for opt do | |
53 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` | |
54 | case "$opt" in | |
55 | --cross-prefix=*) cross_prefix="$optarg" | |
56 | ;; | |
57 | --cc=*) cc="$optarg" | |
58 | ;; | |
2ff6b91e JQ |
59 | --cpu=*) cpu="$optarg" |
60 | ;; | |
a558ee17 | 61 | --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" |
e2a2ed06 JQ |
62 | ;; |
63 | --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" | |
64 | ;; | |
50e7b1a0 JQ |
65 | --sparc_cpu=*) |
66 | sparc_cpu="$optarg" | |
67 | case $sparc_cpu in | |
ed968ff1 | 68 | v7|v8|v8plus|v8plusa) |
50e7b1a0 JQ |
69 | cpu="sparc" |
70 | ;; | |
71 | v9) | |
50e7b1a0 JQ |
72 | cpu="sparc64" |
73 | ;; | |
74 | *) | |
75 | echo "undefined SPARC architecture. Exiting"; | |
76 | exit 1 | |
77 | ;; | |
78 | esac | |
79 | ;; | |
ac0df51d AL |
80 | esac |
81 | done | |
ac0df51d AL |
82 | # OS specific |
83 | # Using uname is really, really broken. Once we have the right set of checks | |
84 | # we can eliminate it's usage altogether | |
85 | ||
86 | cc="${cross_prefix}${cc}" | |
87 | ar="${cross_prefix}${ar}" | |
7aa486fe AL |
88 | objcopy="${cross_prefix}${objcopy}" |
89 | ld="${cross_prefix}${ld}" | |
ac0df51d AL |
90 | |
91 | # check that the C compiler works. | |
92 | cat > $TMPC <<EOF | |
93 | int main(void) {} | |
94 | EOF | |
95 | ||
52166aa0 | 96 | if compile_object ; then |
ac0df51d AL |
97 | : C compiler works ok |
98 | else | |
99 | echo "ERROR: \"$cc\" either does not exist or does not work" | |
100 | exit 1 | |
101 | fi | |
102 | ||
103 | check_define() { | |
104 | cat > $TMPC <<EOF | |
105 | #if !defined($1) | |
106 | #error Not defined | |
107 | #endif | |
108 | int main(void) { return 0; } | |
109 | EOF | |
52166aa0 | 110 | compile_object |
ac0df51d AL |
111 | } |
112 | ||
2ff6b91e JQ |
113 | if test ! -z "$cpu" ; then |
114 | # command line argument | |
115 | : | |
116 | elif check_define __i386__ ; then | |
ac0df51d AL |
117 | cpu="i386" |
118 | elif check_define __x86_64__ ; then | |
119 | cpu="x86_64" | |
3aa9bd6c BS |
120 | elif check_define __sparc__ ; then |
121 | # We can't check for 64 bit (when gcc is biarch) or V8PLUSA | |
122 | # They must be specified using --sparc_cpu | |
123 | if check_define __arch64__ ; then | |
124 | cpu="sparc64" | |
125 | else | |
126 | cpu="sparc" | |
127 | fi | |
fdf7ed96 | 128 | elif check_define _ARCH_PPC ; then |
129 | if check_define _ARCH_PPC64 ; then | |
130 | cpu="ppc64" | |
131 | else | |
132 | cpu="ppc" | |
133 | fi | |
ac0df51d | 134 | else |
fdf7ed96 | 135 | cpu=`uname -m` |
ac0df51d AL |
136 | fi |
137 | ||
5327cf48 | 138 | target_list="" |
7d13299d | 139 | case "$cpu" in |
ea8f20f8 JQ |
140 | alpha|cris|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|sparc64) |
141 | cpu="$cpu" | |
142 | ;; | |
7d13299d | 143 | i386|i486|i586|i686|i86pc|BePC) |
97a847bc | 144 | cpu="i386" |
7d13299d | 145 | ;; |
aaa5fa14 AJ |
146 | x86_64|amd64) |
147 | cpu="x86_64" | |
148 | ;; | |
ba68055e | 149 | armv*b) |
808c4954 FB |
150 | cpu="armv4b" |
151 | ;; | |
ba68055e | 152 | armv*l) |
7d13299d FB |
153 | cpu="armv4l" |
154 | ;; | |
f54b3f92 AJ |
155 | parisc|parisc64) |
156 | cpu="hppa" | |
157 | ;; | |
0e7b8a9f | 158 | s390*) |
fb3e5849 FB |
159 | cpu="s390" |
160 | ;; | |
3142255c | 161 | sparc|sun4[cdmuv]) |
ae228531 FB |
162 | cpu="sparc" |
163 | ;; | |
7d13299d FB |
164 | *) |
165 | cpu="unknown" | |
166 | ;; | |
167 | esac | |
eb82284f | 168 | brlapi="yes" |
7d13299d | 169 | gprof="no" |
f8393946 | 170 | debug_tcg="no" |
f3d08ee6 | 171 | debug="no" |
03b4fe7d | 172 | sparse="no" |
1625af87 | 173 | strip_opt="yes" |
7d13299d | 174 | bigendian="no" |
67b915a5 FB |
175 | mingw32="no" |
176 | EXESUF="" | |
443f1376 | 177 | slirp="yes" |
e0e6c8c0 | 178 | vde="yes" |
102a52e4 FB |
179 | fmod_lib="" |
180 | fmod_inc="" | |
2f6a1ab0 | 181 | oss_lib="" |
8d5d2d4c | 182 | vnc_tls="yes" |
2f9606b3 | 183 | vnc_sasl="yes" |
b1a550a0 | 184 | bsd="no" |
5327cf48 | 185 | linux="no" |
d2c7c9b8 | 186 | solaris="no" |
c9ec1fe4 | 187 | kqemu="no" |
05c2a3e7 | 188 | profiler="no" |
5b0753e0 | 189 | cocoa="no" |
0a8e90f4 | 190 | softmmu="yes" |
831b7825 TS |
191 | linux_user="no" |
192 | darwin_user="no" | |
84778508 | 193 | bsd_user="no" |
379f6698 | 194 | guest_base="" |
70ec5dc0 | 195 | build_docs="yes" |
c5937220 | 196 | uname_release="" |
4d3b6f6e | 197 | curses="yes" |
769ce76d | 198 | curl="yes" |
e5d355d1 | 199 | pthread="yes" |
414f0dab | 200 | aio="yes" |
e5d355d1 | 201 | io_thread="no" |
bd0c5661 | 202 | nptl="yes" |
8ff9cbf7 | 203 | mixemu="no" |
fb599c9a | 204 | bluez="yes" |
dff84034 | 205 | kvm="no" |
eac30262 | 206 | kerneldir="" |
b29fe3ed | 207 | aix="no" |
77755340 | 208 | blobs="yes" |
f652e6af | 209 | fdt="yes" |
f92f8afe | 210 | sdl="yes" |
e37630ca | 211 | xen="yes" |
4a19f1ec | 212 | pkgversion="" |
7d13299d FB |
213 | |
214 | # OS specific | |
ac0df51d AL |
215 | if check_define __linux__ ; then |
216 | targetos="Linux" | |
217 | elif check_define _WIN32 ; then | |
218 | targetos='MINGW32' | |
169dc5d3 BS |
219 | elif check_define __OpenBSD__ ; then |
220 | targetos='OpenBSD' | |
221 | elif check_define __sun__ ; then | |
222 | targetos='SunOS' | |
ac0df51d AL |
223 | else |
224 | targetos=`uname -s` | |
225 | fi | |
0dbfc675 | 226 | |
7d13299d | 227 | case $targetos in |
c326e0af | 228 | CYGWIN*) |
0dbfc675 | 229 | mingw32="yes" |
a558ee17 | 230 | QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" |
0dbfc675 | 231 | audio_possible_drivers="sdl" |
c326e0af | 232 | ;; |
67b915a5 | 233 | MINGW32*) |
0dbfc675 JQ |
234 | mingw32="yes" |
235 | audio_possible_drivers="dsound sdl fmod" | |
67b915a5 | 236 | ;; |
5c40d2bd | 237 | GNU/kFreeBSD) |
0dbfc675 JQ |
238 | audio_drv_list="oss" |
239 | audio_possible_drivers="oss sdl esd pa" | |
240 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
5c40d2bd | 241 | kqemu="yes" |
0dbfc675 | 242 | fi |
5c40d2bd | 243 | ;; |
7d3505c5 | 244 | FreeBSD) |
0dbfc675 JQ |
245 | bsd="yes" |
246 | audio_drv_list="oss" | |
247 | audio_possible_drivers="oss sdl esd pa" | |
248 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
07f4ddbf | 249 | kqemu="yes" |
0dbfc675 | 250 | fi |
7d3505c5 | 251 | ;; |
c5e97233 | 252 | DragonFly) |
0dbfc675 JQ |
253 | bsd="yes" |
254 | audio_drv_list="oss" | |
255 | audio_possible_drivers="oss sdl esd pa" | |
256 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
c5e97233 | 257 | kqemu="yes" |
0dbfc675 JQ |
258 | fi |
259 | aio="no" | |
c5e97233 | 260 | ;; |
7d3505c5 | 261 | NetBSD) |
0dbfc675 JQ |
262 | bsd="yes" |
263 | audio_drv_list="oss" | |
264 | audio_possible_drivers="oss sdl esd" | |
265 | oss_lib="-lossaudio" | |
7d3505c5 FB |
266 | ;; |
267 | OpenBSD) | |
0dbfc675 JQ |
268 | bsd="yes" |
269 | audio_drv_list="oss" | |
270 | audio_possible_drivers="oss sdl esd" | |
271 | oss_lib="-lossaudio" | |
7d3505c5 | 272 | ;; |
83fb7adf | 273 | Darwin) |
0dbfc675 JQ |
274 | bsd="yes" |
275 | darwin="yes" | |
276 | # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can | |
277 | # run 64-bit userspace code | |
278 | if [ "$cpu" = "i386" ] ; then | |
aab8588a | 279 | is_x86_64=`sysctl -n hw.optional.x86_64` |
280 | [ "$is_x86_64" = "1" ] && cpu=x86_64 | |
0dbfc675 JQ |
281 | fi |
282 | if [ "$cpu" = "x86_64" ] ; then | |
a558ee17 | 283 | QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" |
0c439cbf | 284 | LDFLAGS="-arch x86_64 $LDFLAGS" |
0dbfc675 | 285 | else |
a558ee17 | 286 | QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" |
0dbfc675 JQ |
287 | fi |
288 | darwin_user="yes" | |
289 | cocoa="yes" | |
290 | audio_drv_list="coreaudio" | |
291 | audio_possible_drivers="coreaudio sdl fmod" | |
292 | LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" | |
83fb7adf | 293 | ;; |
ec530c81 | 294 | SunOS) |
0dbfc675 JQ |
295 | solaris="yes" |
296 | make="gmake" | |
297 | install="ginstall" | |
298 | needs_libsunmath="no" | |
299 | solarisrev=`uname -r | cut -f2 -d.` | |
300 | # have to select again, because `uname -m` returns i86pc | |
301 | # even on an x86_64 box. | |
302 | solariscpu=`isainfo -k` | |
303 | if test "${solariscpu}" = "amd64" ; then | |
304 | cpu="x86_64" | |
305 | fi | |
306 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
307 | if test "$solarisrev" -le 9 ; then | |
308 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then | |
309 | needs_libsunmath="yes" | |
310 | else | |
311 | echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" | |
312 | echo "libsunmath from the Sun Studio compilers tools, due to a lack of" | |
313 | echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" | |
314 | echo "Studio 11 can be downloaded from www.sun.com." | |
315 | exit 1 | |
316 | fi | |
86b2bd93 | 317 | fi |
0dbfc675 JQ |
318 | if test "$solarisrev" -ge 9 ; then |
319 | kqemu="yes" | |
6b4d2ba1 | 320 | fi |
0dbfc675 JQ |
321 | fi |
322 | if test -f /usr/include/sys/soundcard.h ; then | |
323 | audio_drv_list="oss" | |
324 | fi | |
325 | audio_possible_drivers="oss sdl" | |
a558ee17 | 326 | QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" |
e174c0bb | 327 | LIBS="-lsocket -lnsl -lresolv $LIBS" |
86b2bd93 | 328 | ;; |
b29fe3ed | 329 | AIX) |
0dbfc675 JQ |
330 | aix="yes" |
331 | make="gmake" | |
b29fe3ed | 332 | ;; |
1d14ffa9 | 333 | *) |
0dbfc675 JQ |
334 | audio_drv_list="oss" |
335 | audio_possible_drivers="oss alsa sdl esd pa" | |
336 | linux="yes" | |
337 | linux_user="yes" | |
338 | usb="linux" | |
339 | kvm="yes" | |
340 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
c9ec1fe4 | 341 | kqemu="yes" |
c2de5c91 | 342 | audio_possible_drivers="$audio_possible_drivers fmod" |
0dbfc675 | 343 | fi |
fb065187 | 344 | ;; |
7d13299d FB |
345 | esac |
346 | ||
7d3505c5 | 347 | if [ "$bsd" = "yes" ] ; then |
b1a550a0 | 348 | if [ "$darwin" != "yes" ] ; then |
83fb7adf | 349 | make="gmake" |
68063649 | 350 | usb="bsd" |
83fb7adf | 351 | fi |
84778508 | 352 | bsd_user="yes" |
7d3505c5 FB |
353 | fi |
354 | ||
3457a3f8 | 355 | if test "$mingw32" = "yes" ; then |
fecde40a JQ |
356 | if [ "$cpu" = "i386" ] ; then |
357 | kqemu="yes" | |
358 | fi | |
3457a3f8 | 359 | EXESUF=".exe" |
a558ee17 | 360 | QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" |
884044aa | 361 | LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS" |
3457a3f8 JQ |
362 | fi |
363 | ||
7d13299d | 364 | # find source path |
ad064840 | 365 | source_path=`dirname "$0"` |
59faef3a AZ |
366 | source_path_used="no" |
367 | workdir=`pwd` | |
ad064840 | 368 | if [ -z "$source_path" ]; then |
59faef3a | 369 | source_path=$workdir |
ad064840 PB |
370 | else |
371 | source_path=`cd "$source_path"; pwd` | |
7d13299d | 372 | fi |
724db118 | 373 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
7d13299d | 374 | |
487fefdb | 375 | werror="" |
85aa5189 | 376 | |
7d13299d | 377 | for opt do |
a46e4035 | 378 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
7d13299d | 379 | case "$opt" in |
2efc3265 FB |
380 | --help|-h) show_help=yes |
381 | ;; | |
b1a550a0 | 382 | --prefix=*) prefix="$optarg" |
7d13299d | 383 | ;; |
b1a550a0 | 384 | --interp-prefix=*) interp_prefix="$optarg" |
32ce6337 | 385 | ;; |
b1a550a0 | 386 | --source-path=*) source_path="$optarg" |
ad064840 | 387 | source_path_used="yes" |
7d13299d | 388 | ;; |
ac0df51d | 389 | --cross-prefix=*) |
7d13299d | 390 | ;; |
ac0df51d | 391 | --cc=*) |
7d13299d | 392 | ;; |
b1a550a0 | 393 | --host-cc=*) host_cc="$optarg" |
83469015 | 394 | ;; |
b1a550a0 | 395 | --make=*) make="$optarg" |
7d13299d | 396 | ;; |
6a882643 PB |
397 | --install=*) install="$optarg" |
398 | ;; | |
e2a2ed06 | 399 | --extra-cflags=*) |
7d13299d | 400 | ;; |
e2a2ed06 | 401 | --extra-ldflags=*) |
7d13299d | 402 | ;; |
2ff6b91e | 403 | --cpu=*) |
7d13299d | 404 | ;; |
b1a550a0 | 405 | --target-list=*) target_list="$optarg" |
de83cd02 | 406 | ;; |
7d13299d FB |
407 | --enable-gprof) gprof="yes" |
408 | ;; | |
43ce4dfe FB |
409 | --static) static="yes" |
410 | ;; | |
97a847bc FB |
411 | --disable-sdl) sdl="no" |
412 | ;; | |
0c58ac1c | 413 | --fmod-lib=*) fmod_lib="$optarg" |
1d14ffa9 | 414 | ;; |
c2de5c91 | 415 | --fmod-inc=*) fmod_inc="$optarg" |
416 | ;; | |
2f6a1ab0 BS |
417 | --oss-lib=*) oss_lib="$optarg" |
418 | ;; | |
2fa7d3bf | 419 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
102a52e4 | 420 | ;; |
0c58ac1c | 421 | --audio-drv-list=*) audio_drv_list="$optarg" |
102a52e4 | 422 | ;; |
f8393946 AJ |
423 | --enable-debug-tcg) debug_tcg="yes" |
424 | ;; | |
425 | --disable-debug-tcg) debug_tcg="no" | |
426 | ;; | |
f3d08ee6 PB |
427 | --enable-debug) |
428 | # Enable debugging options that aren't excessively noisy | |
429 | debug_tcg="yes" | |
430 | debug="yes" | |
431 | strip_opt="no" | |
432 | ;; | |
03b4fe7d AL |
433 | --enable-sparse) sparse="yes" |
434 | ;; | |
435 | --disable-sparse) sparse="no" | |
436 | ;; | |
1625af87 AL |
437 | --disable-strip) strip_opt="no" |
438 | ;; | |
8d5d2d4c TS |
439 | --disable-vnc-tls) vnc_tls="no" |
440 | ;; | |
2f9606b3 AL |
441 | --disable-vnc-sasl) vnc_sasl="no" |
442 | ;; | |
443f1376 | 443 | --disable-slirp) slirp="no" |
1d14ffa9 | 444 | ;; |
e0e6c8c0 | 445 | --disable-vde) vde="no" |
8a16d273 | 446 | ;; |
c9ec1fe4 | 447 | --disable-kqemu) kqemu="no" |
1d14ffa9 | 448 | ;; |
e37630ca AL |
449 | --disable-xen) xen="no" |
450 | ;; | |
2e4d9fb1 AJ |
451 | --disable-brlapi) brlapi="no" |
452 | ;; | |
fb599c9a AZ |
453 | --disable-bluez) bluez="no" |
454 | ;; | |
7ba1e619 AL |
455 | --disable-kvm) kvm="no" |
456 | ;; | |
05c2a3e7 FB |
457 | --enable-profiler) profiler="yes" |
458 | ;; | |
c2de5c91 | 459 | --enable-cocoa) |
460 | cocoa="yes" ; | |
461 | sdl="no" ; | |
462 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" | |
1d14ffa9 | 463 | ;; |
cad25d69 | 464 | --disable-system) softmmu="no" |
0a8e90f4 | 465 | ;; |
cad25d69 | 466 | --enable-system) softmmu="yes" |
0a8e90f4 | 467 | ;; |
831b7825 | 468 | --disable-linux-user) linux_user="no" |
0a8e90f4 | 469 | ;; |
831b7825 TS |
470 | --enable-linux-user) linux_user="yes" |
471 | ;; | |
472 | --disable-darwin-user) darwin_user="no" | |
473 | ;; | |
474 | --enable-darwin-user) darwin_user="yes" | |
0a8e90f4 | 475 | ;; |
84778508 BS |
476 | --disable-bsd-user) bsd_user="no" |
477 | ;; | |
478 | --enable-bsd-user) bsd_user="yes" | |
479 | ;; | |
379f6698 PB |
480 | --enable-guest-base) guest_base="yes" |
481 | ;; | |
482 | --disable-guest-base) guest_base="no" | |
483 | ;; | |
c5937220 PB |
484 | --enable-uname-release=*) uname_release="$optarg" |
485 | ;; | |
3142255c | 486 | --sparc_cpu=*) |
3142255c | 487 | ;; |
85aa5189 FB |
488 | --enable-werror) werror="yes" |
489 | ;; | |
490 | --disable-werror) werror="no" | |
491 | ;; | |
4d3b6f6e AZ |
492 | --disable-curses) curses="no" |
493 | ;; | |
769ce76d AG |
494 | --disable-curl) curl="no" |
495 | ;; | |
bd0c5661 PB |
496 | --disable-nptl) nptl="no" |
497 | ;; | |
8ff9cbf7 | 498 | --enable-mixemu) mixemu="yes" |
499 | ;; | |
e5d355d1 AL |
500 | --disable-pthread) pthread="no" |
501 | ;; | |
414f0dab BS |
502 | --disable-aio) aio="no" |
503 | ;; | |
e5d355d1 AL |
504 | --enable-io-thread) io_thread="yes" |
505 | ;; | |
77755340 TS |
506 | --disable-blobs) blobs="no" |
507 | ;; | |
eac30262 AL |
508 | --kerneldir=*) kerneldir="$optarg" |
509 | ;; | |
4a19f1ec PB |
510 | --with-pkgversion=*) pkgversion=" ($optarg)" |
511 | ;; | |
70ec5dc0 AL |
512 | --disable-docs) build_docs="no" |
513 | ;; | |
7f1559c6 AZ |
514 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
515 | ;; | |
7d13299d FB |
516 | esac |
517 | done | |
518 | ||
3142255c BS |
519 | # |
520 | # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right | |
a558ee17 | 521 | # QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) |
3142255c | 522 | # |
379f6698 | 523 | host_guest_base="no" |
40293e58 | 524 | case "$cpu" in |
ed968ff1 JQ |
525 | sparc) case $sparc_cpu in |
526 | v7|v8) | |
a558ee17 | 527 | QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" |
ed968ff1 JQ |
528 | ;; |
529 | v8plus|v8plusa) | |
a558ee17 | 530 | QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" |
ed968ff1 JQ |
531 | ;; |
532 | *) # sparc_cpu not defined in the command line | |
a558ee17 | 533 | QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS" |
ed968ff1 JQ |
534 | esac |
535 | LDFLAGS="-m32 $LDFLAGS" | |
a558ee17 | 536 | QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS" |
762e8230 | 537 | if test "$solaris" = "no" ; then |
a558ee17 | 538 | QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS" |
c81da56e | 539 | helper_cflags="-ffixed-i0" |
762e8230 | 540 | fi |
3142255c | 541 | ;; |
ed968ff1 | 542 | sparc64) |
a558ee17 | 543 | QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS" |
ed968ff1 | 544 | LDFLAGS="-m64 $LDFLAGS" |
a558ee17 | 545 | QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS" |
ed968ff1 | 546 | if test "$solaris" != "no" ; then |
a558ee17 | 547 | QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS" |
762e8230 | 548 | fi |
3142255c | 549 | ;; |
76d83bde | 550 | s390) |
a558ee17 | 551 | QEMU_CFLAGS="-march=z900 $QEMU_CFLAGS" |
76d83bde | 552 | ;; |
40293e58 | 553 | i386) |
a558ee17 | 554 | QEMU_CFLAGS="-m32 $QEMU_CFLAGS" |
0c439cbf | 555 | LDFLAGS="-m32 $LDFLAGS" |
c81da56e | 556 | helper_cflags="-fomit-frame-pointer" |
379f6698 | 557 | host_guest_base="yes" |
40293e58 FB |
558 | ;; |
559 | x86_64) | |
a558ee17 | 560 | QEMU_CFLAGS="-m64 $QEMU_CFLAGS" |
0c439cbf | 561 | LDFLAGS="-m64 $LDFLAGS" |
379f6698 PB |
562 | host_guest_base="yes" |
563 | ;; | |
564 | arm*) | |
565 | host_guest_base="yes" | |
40293e58 | 566 | ;; |
f6548c0a | 567 | ppc*) |
568 | host_guest_base="yes" | |
569 | ;; | |
3142255c BS |
570 | esac |
571 | ||
379f6698 PB |
572 | [ -z "$guest_base" ] && guest_base="$host_guest_base" |
573 | ||
af5db58e PB |
574 | if test x"$show_help" = x"yes" ; then |
575 | cat << EOF | |
576 | ||
577 | Usage: configure [options] | |
578 | Options: [defaults in brackets after descriptions] | |
579 | ||
580 | EOF | |
581 | echo "Standard options:" | |
582 | echo " --help print this message" | |
583 | echo " --prefix=PREFIX install in PREFIX [$prefix]" | |
584 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." | |
585 | echo " use %M for cpu name [$interp_prefix]" | |
586 | echo " --target-list=LIST set target list [$target_list]" | |
587 | echo "" | |
588 | echo "kqemu kernel acceleration support:" | |
589 | echo " --disable-kqemu disable kqemu support" | |
af5db58e PB |
590 | echo "" |
591 | echo "Advanced options (experts only):" | |
592 | echo " --source-path=PATH path of source code [$source_path]" | |
593 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" | |
594 | echo " --cc=CC use C compiler CC [$cc]" | |
595 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." | |
a558ee17 | 596 | echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" |
e3fc14c3 | 597 | echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" |
af5db58e | 598 | echo " --make=MAKE use specified make [$make]" |
6a882643 | 599 | echo " --install=INSTALL use specified install [$install]" |
af5db58e | 600 | echo " --static enable static build [$static]" |
f8393946 AJ |
601 | echo " --enable-debug-tcg enable TCG debugging" |
602 | echo " --disable-debug-tcg disable TCG debugging (default)" | |
09695a4a | 603 | echo " --enable-debug enable common debug build options" |
890b1658 AL |
604 | echo " --enable-sparse enable sparse checker" |
605 | echo " --disable-sparse disable sparse checker (default)" | |
1625af87 | 606 | echo " --disable-strip disable stripping binaries" |
85aa5189 | 607 | echo " --disable-werror disable compilation abort on warning" |
fe8f78e4 | 608 | echo " --disable-sdl disable SDL" |
af5db58e | 609 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
c2de5c91 | 610 | echo " --audio-drv-list=LIST set audio drivers list:" |
611 | echo " Available drivers: $audio_possible_drivers" | |
4c9b53e3 | 612 | echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" |
613 | echo " Available cards: $audio_possible_cards" | |
8ff9cbf7 | 614 | echo " --enable-mixemu enable mixer emulation" |
e37630ca | 615 | echo " --disable-xen disable xen backend driver support" |
2e4d9fb1 | 616 | echo " --disable-brlapi disable BrlAPI" |
8d5d2d4c | 617 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
2f9606b3 | 618 | echo " --disable-vnc-sasl disable SASL encryption for VNC server" |
af896aaa | 619 | echo " --disable-curses disable curses output" |
769ce76d | 620 | echo " --disable-curl disable curl connectivity" |
fb599c9a | 621 | echo " --disable-bluez disable bluez stack connectivity" |
7ba1e619 | 622 | echo " --disable-kvm disable KVM acceleration support" |
bd0c5661 | 623 | echo " --disable-nptl disable usermode NPTL support" |
af5db58e PB |
624 | echo " --enable-system enable all system emulation targets" |
625 | echo " --disable-system disable all system emulation targets" | |
831b7825 TS |
626 | echo " --enable-linux-user enable all linux usermode emulation targets" |
627 | echo " --disable-linux-user disable all linux usermode emulation targets" | |
628 | echo " --enable-darwin-user enable all darwin usermode emulation targets" | |
629 | echo " --disable-darwin-user disable all darwin usermode emulation targets" | |
84778508 BS |
630 | echo " --enable-bsd-user enable all BSD usermode emulation targets" |
631 | echo " --disable-bsd-user disable all BSD usermode emulation targets" | |
379f6698 PB |
632 | echo " --enable-guest-base enable GUEST_BASE support for usermode" |
633 | echo " emulation targets" | |
634 | echo " --disable-guest-base disable GUEST_BASE support" | |
af5db58e PB |
635 | echo " --fmod-lib path to FMOD library" |
636 | echo " --fmod-inc path to FMOD includes" | |
2f6a1ab0 | 637 | echo " --oss-lib path to OSS library" |
c5937220 | 638 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
3142255c | 639 | echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" |
e0e6c8c0 | 640 | echo " --disable-vde disable support for vde network" |
e5d355d1 | 641 | echo " --disable-pthread disable pthread support" |
414f0dab | 642 | echo " --disable-aio disable AIO support" |
e5d355d1 | 643 | echo " --enable-io-thread enable IO thread" |
77755340 | 644 | echo " --disable-blobs disable installing provided firmware blobs" |
eac30262 | 645 | echo " --kerneldir=PATH look for kernel includes in PATH" |
af5db58e | 646 | echo "" |
5bf08934 | 647 | echo "NOTE: The object files are built at the place where configure is launched" |
af5db58e PB |
648 | exit 1 |
649 | fi | |
650 | ||
03b4fe7d AL |
651 | if test ! -x "$(which cgcc 2>/dev/null)"; then |
652 | sparse="no" | |
653 | fi | |
654 | ||
ec530c81 FB |
655 | # |
656 | # Solaris specific configure tool chain decisions | |
657 | # | |
658 | if test "$solaris" = "yes" ; then | |
ec530c81 FB |
659 | solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` |
660 | if test -z "$solinst" ; then | |
661 | echo "Solaris install program not found. Use --install=/usr/ucb/install or" | |
662 | echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" | |
663 | echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" | |
664 | exit 1 | |
665 | fi | |
666 | if test "$solinst" = "/usr/sbin/install" ; then | |
667 | echo "Error: Solaris /usr/sbin/install is not an appropriate install program." | |
668 | echo "try ginstall from the GNU fileutils available from www.blastwave.org" | |
669 | echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" | |
670 | exit 1 | |
671 | fi | |
ec530c81 FB |
672 | sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` |
673 | if test -z "$sol_ar" ; then | |
674 | echo "Error: No path includes ar" | |
675 | if test -f /usr/ccs/bin/ar ; then | |
676 | echo "Add /usr/ccs/bin to your path and rerun configure" | |
677 | fi | |
678 | exit 1 | |
679 | fi | |
5fafdf24 | 680 | fi |
ec530c81 FB |
681 | |
682 | ||
5327cf48 FB |
683 | if test -z "$target_list" ; then |
684 | # these targets are portable | |
0a8e90f4 | 685 | if [ "$softmmu" = "yes" ] ; then |
2408a527 AJ |
686 | target_list="\ |
687 | i386-softmmu \ | |
688 | x86_64-softmmu \ | |
689 | arm-softmmu \ | |
690 | cris-softmmu \ | |
691 | m68k-softmmu \ | |
72b675ca | 692 | microblaze-softmmu \ |
2408a527 AJ |
693 | mips-softmmu \ |
694 | mipsel-softmmu \ | |
695 | mips64-softmmu \ | |
696 | mips64el-softmmu \ | |
697 | ppc-softmmu \ | |
698 | ppcemb-softmmu \ | |
699 | ppc64-softmmu \ | |
700 | sh4-softmmu \ | |
701 | sh4eb-softmmu \ | |
702 | sparc-softmmu \ | |
1b64fcae | 703 | sparc64-softmmu \ |
2408a527 | 704 | " |
0a8e90f4 | 705 | fi |
5327cf48 | 706 | # the following are Linux specific |
831b7825 | 707 | if [ "$linux_user" = "yes" ] ; then |
2408a527 AJ |
708 | target_list="${target_list}\ |
709 | i386-linux-user \ | |
710 | x86_64-linux-user \ | |
711 | alpha-linux-user \ | |
712 | arm-linux-user \ | |
713 | armeb-linux-user \ | |
714 | cris-linux-user \ | |
715 | m68k-linux-user \ | |
72b675ca | 716 | microblaze-linux-user \ |
2408a527 AJ |
717 | mips-linux-user \ |
718 | mipsel-linux-user \ | |
719 | ppc-linux-user \ | |
720 | ppc64-linux-user \ | |
721 | ppc64abi32-linux-user \ | |
722 | sh4-linux-user \ | |
723 | sh4eb-linux-user \ | |
724 | sparc-linux-user \ | |
725 | sparc64-linux-user \ | |
726 | sparc32plus-linux-user \ | |
727 | " | |
831b7825 TS |
728 | fi |
729 | # the following are Darwin specific | |
730 | if [ "$darwin_user" = "yes" ] ; then | |
6cdc7375 | 731 | target_list="$target_list i386-darwin-user ppc-darwin-user " |
5327cf48 | 732 | fi |
84778508 BS |
733 | # the following are BSD specific |
734 | if [ "$bsd_user" = "yes" ] ; then | |
735 | target_list="${target_list}\ | |
31fc12df BS |
736 | i386-bsd-user \ |
737 | x86_64-bsd-user \ | |
738 | sparc-bsd-user \ | |
84778508 BS |
739 | sparc64-bsd-user \ |
740 | " | |
741 | fi | |
6e20a45f | 742 | else |
b1a550a0 | 743 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
5327cf48 | 744 | fi |
0a8e90f4 PB |
745 | if test -z "$target_list" ; then |
746 | echo "No targets enabled" | |
747 | exit 1 | |
748 | fi | |
5327cf48 | 749 | |
7d13299d FB |
750 | if test -z "$cross_prefix" ; then |
751 | ||
752 | # --- | |
753 | # big/little endian test | |
754 | cat > $TMPC << EOF | |
755 | #include <inttypes.h> | |
756 | int main(int argc, char ** argv){ | |
1d14ffa9 FB |
757 | volatile uint32_t i=0x01234567; |
758 | return (*((uint8_t*)(&i))) == 0x67; | |
7d13299d FB |
759 | } |
760 | EOF | |
761 | ||
52166aa0 | 762 | if compile_prog "" "" ; then |
7d13299d FB |
763 | $TMPE && bigendian="yes" |
764 | else | |
765 | echo big/little test failed | |
766 | fi | |
767 | ||
768 | else | |
769 | ||
770 | # if cross compiling, cannot launch a program, so make a static guess | |
ea8f20f8 JQ |
771 | case "$cpu" in |
772 | armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|sparc|sparc64) | |
773 | bigendian=yes | |
774 | ;; | |
775 | esac | |
7d13299d FB |
776 | |
777 | fi | |
778 | ||
b6853697 FB |
779 | # host long bits test |
780 | hostlongbits="32" | |
ea8f20f8 JQ |
781 | case "$cpu" in |
782 | x86_64|alpha|ia64|sparc64|ppc64) | |
783 | hostlongbits=64 | |
784 | ;; | |
785 | esac | |
b6853697 | 786 | |
bd0c5661 PB |
787 | # Check host NPTL support |
788 | cat > $TMPC <<EOF | |
789 | #include <sched.h> | |
30813cea | 790 | #include <linux/futex.h> |
bd0c5661 PB |
791 | void foo() |
792 | { | |
793 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) | |
794 | #error bork | |
795 | #endif | |
796 | } | |
797 | EOF | |
798 | ||
52166aa0 | 799 | if compile_object ; then |
bd0c5661 PB |
800 | : |
801 | else | |
802 | nptl="no" | |
803 | fi | |
804 | ||
ac62922e AZ |
805 | ########################################## |
806 | # zlib check | |
807 | ||
808 | cat > $TMPC << EOF | |
809 | #include <zlib.h> | |
810 | int main(void) { zlibVersion(); return 0; } | |
811 | EOF | |
52166aa0 | 812 | if compile_prog "" "-lz" ; then |
ac62922e AZ |
813 | : |
814 | else | |
815 | echo | |
816 | echo "Error: zlib check failed" | |
817 | echo "Make sure to have the zlib libs and headers installed." | |
818 | echo | |
819 | exit 1 | |
820 | fi | |
821 | ||
e37630ca AL |
822 | ########################################## |
823 | # xen probe | |
824 | ||
825 | if test "$xen" = "yes" ; then | |
b2266bee JQ |
826 | xen_libs="-lxenstore -lxenctrl -lxenguest" |
827 | cat > $TMPC <<EOF | |
e37630ca AL |
828 | #include <xenctrl.h> |
829 | #include <xs.h> | |
df7a607b | 830 | int main(void) { xs_daemon_open(); xc_interface_open(); return 0; } |
e37630ca | 831 | EOF |
52166aa0 | 832 | if compile_prog "" "$xen_libs" ; then |
3efd632b | 833 | libs_softmmu="$xen_libs $libs_softmmu" |
b2266bee JQ |
834 | else |
835 | xen="no" | |
836 | fi | |
e37630ca AL |
837 | fi |
838 | ||
11d9f695 FB |
839 | ########################################## |
840 | # SDL probe | |
841 | ||
842 | sdl_too_old=no | |
843 | ||
f92f8afe | 844 | if test "$sdl" = "yes" ; then |
ac119f9d JQ |
845 | sdl=no |
846 | cat > $TMPC << EOF | |
11d9f695 FB |
847 | #include <SDL.h> |
848 | #undef main /* We don't want SDL to override our main() */ | |
849 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
850 | EOF | |
ac119f9d JQ |
851 | sdl_cflags=`sdl-config --cflags 2> /dev/null` |
852 | sdl_libs=`sdl-config --libs 2> /dev/null` | |
52166aa0 | 853 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
854 | _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'` |
855 | if test "$_sdlversion" -lt 121 ; then | |
856 | sdl_too_old=yes | |
857 | else | |
858 | if test "$cocoa" = "no" ; then | |
859 | sdl=yes | |
860 | fi | |
861 | fi | |
cd01b4a3 | 862 | |
ac119f9d JQ |
863 | # static link with sdl ? |
864 | if test "$sdl" = "yes" -a "$static" = "yes" ; then | |
865 | sdl_libs=`sdl-config --static-libs 2>/dev/null` | |
866 | if test `sdl-config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` ; then | |
867 | sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`" | |
868 | sdl_cflags="$sd_cflags `aalib-config --cflags >2 /dev/null`" | |
869 | fi | |
52166aa0 | 870 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
871 | : |
872 | else | |
873 | sdl=no | |
874 | fi | |
875 | fi # static link | |
876 | fi # sdl compile test | |
a68551bc | 877 | fi |
11d9f695 | 878 | |
5368a422 | 879 | if test "$sdl" = "yes" ; then |
ac119f9d | 880 | cat > $TMPC <<EOF |
5368a422 AL |
881 | #include <SDL.h> |
882 | #if defined(SDL_VIDEO_DRIVER_X11) | |
883 | #include <X11/XKBlib.h> | |
884 | #else | |
885 | #error No x11 support | |
886 | #endif | |
887 | int main(void) { return 0; } | |
888 | EOF | |
52166aa0 | 889 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
890 | sdl_libs="$sdl_libs -lX11" |
891 | fi | |
07d9ac44 JQ |
892 | if test "$mingw32" = "yes" ; then |
893 | sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole" | |
894 | fi | |
0705667e | 895 | libs_softmmu="$sdl_libs $libs_softmmu" |
5368a422 AL |
896 | fi |
897 | ||
8d5d2d4c TS |
898 | ########################################## |
899 | # VNC TLS detection | |
900 | if test "$vnc_tls" = "yes" ; then | |
ae6b5e5a AL |
901 | cat > $TMPC <<EOF |
902 | #include <gnutls/gnutls.h> | |
903 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } | |
904 | EOF | |
905 | vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` | |
906 | vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` | |
52166aa0 | 907 | if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then |
a5e32cc9 | 908 | libs_softmmu="$vnc_tls_libs $libs_softmmu" |
ae6b5e5a AL |
909 | else |
910 | vnc_tls="no" | |
911 | fi | |
8d5d2d4c TS |
912 | fi |
913 | ||
2f9606b3 AL |
914 | ########################################## |
915 | # VNC SASL detection | |
916 | if test "$vnc_sasl" = "yes" ; then | |
917 | cat > $TMPC <<EOF | |
918 | #include <sasl/sasl.h> | |
919 | #include <stdio.h> | |
920 | int main(void) { sasl_server_init(NULL, "qemu"); return 0; } | |
921 | EOF | |
922 | # Assuming Cyrus-SASL installed in /usr prefix | |
923 | vnc_sasl_cflags="" | |
924 | vnc_sasl_libs="-lsasl2" | |
52166aa0 | 925 | if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then |
fa838301 | 926 | libs_softmmu="$vnc_sasl_libs $libs_softmmu" |
2f9606b3 AL |
927 | else |
928 | vnc_sasl="no" | |
929 | fi | |
930 | fi | |
931 | ||
76655d6d AL |
932 | ########################################## |
933 | # fnmatch() probe, used for ACL routines | |
934 | fnmatch="no" | |
935 | cat > $TMPC << EOF | |
936 | #include <fnmatch.h> | |
937 | int main(void) | |
938 | { | |
939 | fnmatch("foo", "foo", 0); | |
940 | return 0; | |
941 | } | |
942 | EOF | |
52166aa0 | 943 | if compile_prog "" "" ; then |
76655d6d AL |
944 | fnmatch="yes" |
945 | fi | |
946 | ||
8a16d273 TS |
947 | ########################################## |
948 | # vde libraries probe | |
949 | if test "$vde" = "yes" ; then | |
4baae0ac JQ |
950 | vde=no |
951 | vde_libs="-lvdeplug" | |
8a16d273 TS |
952 | cat > $TMPC << EOF |
953 | #include <libvdeplug.h> | |
4a7f0e06 PB |
954 | int main(void) |
955 | { | |
956 | struct vde_open_args a = {0, 0, 0}; | |
957 | vde_open("", "", &a); | |
958 | return 0; | |
959 | } | |
8a16d273 | 960 | EOF |
52166aa0 | 961 | if compile_prog "" "$vde_libs" ; then |
4baae0ac JQ |
962 | vde=yes |
963 | fi | |
8a16d273 TS |
964 | fi |
965 | ||
8f28f3fb | 966 | ########################################## |
c2de5c91 | 967 | # Sound support libraries probe |
8f28f3fb | 968 | |
c2de5c91 | 969 | audio_drv_probe() |
970 | { | |
971 | drv=$1 | |
972 | hdr=$2 | |
973 | lib=$3 | |
974 | exp=$4 | |
975 | cfl=$5 | |
976 | cat > $TMPC << EOF | |
977 | #include <$hdr> | |
978 | int main(void) { $exp } | |
8f28f3fb | 979 | EOF |
52166aa0 | 980 | if compile_prog "$cfl" "$lib" ; then |
c2de5c91 | 981 | : |
982 | else | |
983 | echo | |
984 | echo "Error: $drv check failed" | |
985 | echo "Make sure to have the $drv libs and headers installed." | |
986 | echo | |
987 | exit 1 | |
988 | fi | |
989 | } | |
990 | ||
2fa7d3bf | 991 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
c2de5c91 | 992 | for drv in $audio_drv_list; do |
993 | case $drv in | |
994 | alsa) | |
995 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ | |
996 | "snd_pcm_t **handle; return snd_pcm_close(*handle);" | |
a4bf6780 | 997 | libs_softmmu="-lasound $libs_softmmu" |
c2de5c91 | 998 | ;; |
999 | ||
1000 | fmod) | |
1001 | if test -z $fmod_lib || test -z $fmod_inc; then | |
1002 | echo | |
1003 | echo "Error: You must specify path to FMOD library and headers" | |
1004 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" | |
1005 | echo | |
1006 | exit 1 | |
1007 | fi | |
1008 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" | |
a4bf6780 | 1009 | libs_softmmu="$fmod_lib $libs_softmmu" |
c2de5c91 | 1010 | ;; |
1011 | ||
1012 | esd) | |
1013 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' | |
a4bf6780 | 1014 | libs_softmmu="-lesd $libs_softmmu" |
67f86e8e | 1015 | audio_pt_int="yes" |
c2de5c91 | 1016 | ;; |
b8e59f18 | 1017 | |
1018 | pa) | |
1019 | audio_drv_probe $drv pulse/simple.h -lpulse-simple \ | |
1020 | "pa_simple *s = NULL; pa_simple_free(s); return 0;" | |
a4bf6780 | 1021 | libs_softmmu="-lpulse-simple $libs_softmmu" |
67f86e8e | 1022 | audio_pt_int="yes" |
b8e59f18 | 1023 | ;; |
1024 | ||
997e690a JQ |
1025 | coreaudio) |
1026 | libs_softmmu="-framework CoreAudio $libs_softmmu" | |
1027 | ;; | |
1028 | ||
a4bf6780 JQ |
1029 | dsound) |
1030 | libs_softmmu="-lole32 -ldxguid $libs_softmmu" | |
1031 | ;; | |
1032 | ||
1033 | oss) | |
1034 | libs_softmmu="$oss_lib $libs_softmmu" | |
1035 | ;; | |
1036 | ||
1037 | sdl|wav) | |
2f6a1ab0 BS |
1038 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
1039 | ;; | |
1040 | ||
e4c63a6a | 1041 | *) |
1c9b2a52 | 1042 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
e4c63a6a | 1043 | echo |
1044 | echo "Error: Unknown driver '$drv' selected" | |
1045 | echo "Possible drivers are: $audio_possible_drivers" | |
1046 | echo | |
1047 | exit 1 | |
1048 | } | |
1049 | ;; | |
c2de5c91 | 1050 | esac |
1051 | done | |
8f28f3fb | 1052 | |
2e4d9fb1 AJ |
1053 | ########################################## |
1054 | # BrlAPI probe | |
1055 | ||
eb82284f JQ |
1056 | if test "$brlapi" = "yes" ; then |
1057 | brlapi=no | |
1058 | brlapi_libs="-lbrlapi" | |
1059 | cat > $TMPC << EOF | |
2e4d9fb1 AJ |
1060 | #include <brlapi.h> |
1061 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } | |
1062 | EOF | |
52166aa0 | 1063 | if compile_prog "" "$brlapi_libs" ; then |
eb82284f | 1064 | brlapi=yes |
264606b3 | 1065 | libs_softmmu="$brlapi_libs $libs_softmmu" |
eb82284f JQ |
1066 | fi |
1067 | fi | |
2e4d9fb1 | 1068 | |
4d3b6f6e AZ |
1069 | ########################################## |
1070 | # curses probe | |
1071 | ||
1072 | if test "$curses" = "yes" ; then | |
4d3b6f6e AZ |
1073 | cat > $TMPC << EOF |
1074 | #include <curses.h> | |
5a8ff3aa BS |
1075 | #ifdef __OpenBSD__ |
1076 | #define resize_term resizeterm | |
1077 | #endif | |
1078 | int main(void) { resize_term(0, 0); return curses_version(); } | |
4d3b6f6e | 1079 | EOF |
52166aa0 | 1080 | if compile_prog "" "-lncurses" ; then |
d2ef30d5 | 1081 | libs_softmmu="-lncurses $libs_softmmu" |
52166aa0 | 1082 | elif compile_prog "" "-lcurses" ; then |
d2ef30d5 | 1083 | libs_softmmu="-lcurses $libs_softmmu" |
e0b7a42b JQ |
1084 | else |
1085 | curses=no | |
4d3b6f6e AZ |
1086 | fi |
1087 | fi # test "$curses" | |
1088 | ||
769ce76d AG |
1089 | ########################################## |
1090 | # curl probe | |
1091 | ||
1092 | if test "$curl" = "yes" ; then | |
1093 | curl=no | |
1094 | cat > $TMPC << EOF | |
1095 | #include <curl/curl.h> | |
1096 | int main(void) { return curl_easy_init(); } | |
1097 | EOF | |
b1d5a277 | 1098 | curl_cflags=`curl-config --cflags 2>/dev/null` |
52368552 | 1099 | curl_libs=`curl-config --libs 2>/dev/null` |
b1d5a277 | 1100 | if compile_prog "$curl_cflags" "$curl_libs" ; then |
769ce76d AG |
1101 | curl=yes |
1102 | fi | |
1103 | fi # test "$curl" | |
1104 | ||
fb599c9a AZ |
1105 | ########################################## |
1106 | # bluez support probe | |
1107 | if test "$bluez" = "yes" ; then | |
efcfd0c5 | 1108 | `pkg-config bluez 2> /dev/null` || bluez="no" |
fb599c9a AZ |
1109 | fi |
1110 | if test "$bluez" = "yes" ; then | |
e820e3f4 AZ |
1111 | cat > $TMPC << EOF |
1112 | #include <bluetooth/bluetooth.h> | |
1113 | int main(void) { return bt_error(0); } | |
1114 | EOF | |
efcfd0c5 BS |
1115 | bluez_cflags=`pkg-config --cflags bluez 2> /dev/null` |
1116 | bluez_libs=`pkg-config --libs bluez 2> /dev/null` | |
52166aa0 | 1117 | if compile_prog "$bluez_cflags" "$bluez_libs" ; then |
e482d56a | 1118 | libs_softmmu="$bluez_libs $libs_softmmu" |
e820e3f4 AZ |
1119 | else |
1120 | bluez="no" | |
1121 | fi | |
fb599c9a AZ |
1122 | fi |
1123 | ||
7ba1e619 AL |
1124 | ########################################## |
1125 | # kvm probe | |
1126 | if test "$kvm" = "yes" ; then | |
1127 | cat > $TMPC <<EOF | |
1128 | #include <linux/kvm.h> | |
9fd8d8d7 | 1129 | #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12 |
7ba1e619 AL |
1130 | #error Invalid KVM version |
1131 | #endif | |
9fd8d8d7 AL |
1132 | #if !defined(KVM_CAP_USER_MEMORY) |
1133 | #error Missing KVM capability KVM_CAP_USER_MEMORY | |
1134 | #endif | |
1135 | #if !defined(KVM_CAP_SET_TSS_ADDR) | |
1136 | #error Missing KVM capability KVM_CAP_SET_TSS_ADDR | |
1137 | #endif | |
1138 | #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) | |
1139 | #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS | |
1140 | #endif | |
7ba1e619 AL |
1141 | int main(void) { return 0; } |
1142 | EOF | |
eac30262 AL |
1143 | if test "$kerneldir" != "" ; then |
1144 | kvm_cflags=-I"$kerneldir"/include | |
8444eb6e AL |
1145 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \ |
1146 | -a -d "$kerneldir/arch/x86/include" ; then | |
1147 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include" | |
406b430d AL |
1148 | elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then |
1149 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include" | |
8444eb6e AL |
1150 | elif test -d "$kerneldir/arch/$cpu/include" ; then |
1151 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include" | |
1152 | fi | |
eac30262 AL |
1153 | else |
1154 | kvm_cflags="" | |
1155 | fi | |
52166aa0 | 1156 | if compile_prog "$kvm_cflags" "" ; then |
7ba1e619 AL |
1157 | : |
1158 | else | |
9fd8d8d7 AL |
1159 | kvm="no"; |
1160 | if [ -x "`which awk 2>/dev/null`" ] && \ | |
1161 | [ -x "`which grep 2>/dev/null`" ]; then | |
a558ee17 | 1162 | kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \ |
9fd8d8d7 AL |
1163 | | grep "error: " \ |
1164 | | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'` | |
1165 | if test "$kvmerr" != "" ; then | |
168ccc11 JK |
1166 | kvm="no - (${kvmerr})\n\ |
1167 | NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \ | |
1168 | recent kvm-kmod from http://sourceforge.net/projects/kvm." | |
9fd8d8d7 AL |
1169 | fi |
1170 | fi | |
7ba1e619 AL |
1171 | fi |
1172 | fi | |
1173 | ||
414f0dab | 1174 | ########################################## |
e5d355d1 | 1175 | # pthread probe |
de65fe0f | 1176 | PTHREADLIBS_LIST="-lpthread -lpthreadGC2" |
3c529d93 | 1177 | |
e5d355d1 AL |
1178 | if test "$pthread" = yes; then |
1179 | pthread=no | |
1180 | cat > $TMPC << EOF | |
3c529d93 | 1181 | #include <pthread.h> |
de65fe0f | 1182 | int main(void) { pthread_create(0,0,0,0); return 0; } |
414f0dab | 1183 | EOF |
de65fe0f | 1184 | for pthread_lib in $PTHREADLIBS_LIST; do |
52166aa0 | 1185 | if compile_prog "" "$pthread_lib" ; then |
de65fe0f | 1186 | pthread=yes |
5572b539 | 1187 | LIBS="$pthread_lib $LIBS" |
de65fe0f SH |
1188 | break |
1189 | fi | |
1190 | done | |
414f0dab BS |
1191 | fi |
1192 | ||
e5d355d1 AL |
1193 | if test "$pthread" = no; then |
1194 | aio=no | |
1195 | io_thread=no | |
1196 | fi | |
1197 | ||
bf9298b9 AL |
1198 | ########################################## |
1199 | # iovec probe | |
1200 | cat > $TMPC <<EOF | |
db34f0b3 | 1201 | #include <sys/types.h> |
bf9298b9 | 1202 | #include <sys/uio.h> |
db34f0b3 | 1203 | #include <unistd.h> |
bf9298b9 AL |
1204 | int main(void) { struct iovec iov; return 0; } |
1205 | EOF | |
1206 | iovec=no | |
52166aa0 | 1207 | if compile_prog "" "" ; then |
bf9298b9 AL |
1208 | iovec=yes |
1209 | fi | |
1210 | ||
ceb42de8 AL |
1211 | ########################################## |
1212 | # preadv probe | |
1213 | cat > $TMPC <<EOF | |
1214 | #include <sys/types.h> | |
1215 | #include <sys/uio.h> | |
1216 | #include <unistd.h> | |
1217 | int main(void) { preadv; } | |
1218 | EOF | |
1219 | preadv=no | |
52166aa0 | 1220 | if compile_prog "" "" ; then |
ceb42de8 AL |
1221 | preadv=yes |
1222 | fi | |
1223 | ||
f652e6af AJ |
1224 | ########################################## |
1225 | # fdt probe | |
1226 | if test "$fdt" = "yes" ; then | |
b41af4ba JQ |
1227 | fdt=no |
1228 | fdt_libs="-lfdt" | |
1229 | cat > $TMPC << EOF | |
f652e6af AJ |
1230 | int main(void) { return 0; } |
1231 | EOF | |
52166aa0 | 1232 | if compile_prog "" "$fdt_libs" ; then |
f652e6af | 1233 | fdt=yes |
e4782985 | 1234 | libs_softmmu="$fdt_libs $libs_softmmu" |
f652e6af AJ |
1235 | fi |
1236 | fi | |
1237 | ||
3b3f24ad AJ |
1238 | # |
1239 | # Check for xxxat() functions when we are building linux-user | |
1240 | # emulator. This is done because older glibc versions don't | |
1241 | # have syscall stubs for these implemented. | |
1242 | # | |
1243 | atfile=no | |
67ba57f6 | 1244 | cat > $TMPC << EOF |
3b3f24ad AJ |
1245 | #define _ATFILE_SOURCE |
1246 | #include <sys/types.h> | |
1247 | #include <fcntl.h> | |
1248 | #include <unistd.h> | |
1249 | ||
1250 | int | |
1251 | main(void) | |
1252 | { | |
1253 | /* try to unlink nonexisting file */ | |
1254 | return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); | |
1255 | } | |
1256 | EOF | |
52166aa0 | 1257 | if compile_prog "" "" ; then |
67ba57f6 | 1258 | atfile=yes |
3b3f24ad AJ |
1259 | fi |
1260 | ||
39386ac7 | 1261 | # Check for inotify functions when we are building linux-user |
3b3f24ad AJ |
1262 | # emulator. This is done because older glibc versions don't |
1263 | # have syscall stubs for these implemented. In that case we | |
1264 | # don't provide them even if kernel supports them. | |
1265 | # | |
1266 | inotify=no | |
67ba57f6 | 1267 | cat > $TMPC << EOF |
3b3f24ad AJ |
1268 | #include <sys/inotify.h> |
1269 | ||
1270 | int | |
1271 | main(void) | |
1272 | { | |
1273 | /* try to start inotify */ | |
8690e420 | 1274 | return inotify_init(); |
3b3f24ad AJ |
1275 | } |
1276 | EOF | |
52166aa0 | 1277 | if compile_prog "" "" ; then |
67ba57f6 | 1278 | inotify=yes |
3b3f24ad AJ |
1279 | fi |
1280 | ||
ebc996f3 RV |
1281 | # check if utimensat and futimens are supported |
1282 | utimens=no | |
1283 | cat > $TMPC << EOF | |
1284 | #define _ATFILE_SOURCE | |
1285 | #define _GNU_SOURCE | |
1286 | #include <stddef.h> | |
1287 | #include <fcntl.h> | |
1288 | ||
1289 | int main(void) | |
1290 | { | |
1291 | utimensat(AT_FDCWD, "foo", NULL, 0); | |
1292 | futimens(0, NULL); | |
1293 | return 0; | |
1294 | } | |
1295 | EOF | |
52166aa0 | 1296 | if compile_prog "" "" ; then |
ebc996f3 RV |
1297 | utimens=yes |
1298 | fi | |
1299 | ||
099d6b0f RV |
1300 | # check if pipe2 is there |
1301 | pipe2=no | |
1302 | cat > $TMPC << EOF | |
1303 | #define _GNU_SOURCE | |
1304 | #include <unistd.h> | |
1305 | #include <fcntl.h> | |
1306 | ||
1307 | int main(void) | |
1308 | { | |
1309 | int pipefd[2]; | |
1310 | pipe2(pipefd, O_CLOEXEC); | |
1311 | return 0; | |
1312 | } | |
1313 | EOF | |
52166aa0 | 1314 | if compile_prog "" "" ; then |
099d6b0f RV |
1315 | pipe2=yes |
1316 | fi | |
1317 | ||
3ce34dfb VS |
1318 | # check if tee/splice is there. vmsplice was added same time. |
1319 | splice=no | |
1320 | cat > $TMPC << EOF | |
1321 | #define _GNU_SOURCE | |
1322 | #include <unistd.h> | |
1323 | #include <fcntl.h> | |
1324 | #include <limits.h> | |
1325 | ||
1326 | int main(void) | |
1327 | { | |
1328 | int len, fd; | |
1329 | len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); | |
1330 | splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); | |
1331 | return 0; | |
1332 | } | |
1333 | EOF | |
52166aa0 | 1334 | if compile_prog "" "" ; then |
3ce34dfb VS |
1335 | splice=yes |
1336 | fi | |
1337 | ||
cc8ae6de | 1338 | # Check if tools are available to build documentation. |
70ec5dc0 AL |
1339 | if test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then |
1340 | build_docs="no" | |
cc8ae6de PB |
1341 | fi |
1342 | ||
6ae9a1f4 JQ |
1343 | # Search for bsawp_32 function |
1344 | byteswap_h=no | |
1345 | cat > $TMPC << EOF | |
1346 | #include <byteswap.h> | |
1347 | int main(void) { return bswap_32(0); } | |
1348 | EOF | |
52166aa0 | 1349 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
1350 | byteswap_h=yes |
1351 | fi | |
1352 | ||
1353 | # Search for bsawp_32 function | |
1354 | bswap_h=no | |
1355 | cat > $TMPC << EOF | |
1356 | #include <sys/endian.h> | |
1357 | #include <sys/types.h> | |
1358 | #include <machine/bswap.h> | |
1359 | int main(void) { return bswap32(0); } | |
1360 | EOF | |
52166aa0 | 1361 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
1362 | bswap_h=yes |
1363 | fi | |
1364 | ||
da93a1fd AL |
1365 | ########################################## |
1366 | # Do we need librt | |
1367 | cat > $TMPC <<EOF | |
1368 | #include <signal.h> | |
1369 | #include <time.h> | |
1370 | int main(void) { clockid_t id; return clock_gettime(id, NULL); } | |
1371 | EOF | |
1372 | ||
52166aa0 | 1373 | if compile_prog "" "" ; then |
07ffa4bd | 1374 | : |
52166aa0 | 1375 | elif compile_prog "" "-lrt" ; then |
07ffa4bd | 1376 | LIBS="-lrt $LIBS" |
da93a1fd AL |
1377 | fi |
1378 | ||
a36abbbb JQ |
1379 | # Determine what linker flags to use to force archive inclusion |
1380 | check_linker_flags() | |
1381 | { | |
1382 | w2= | |
1383 | if test "$2" ; then | |
1384 | w2=-Wl,$2 | |
1385 | fi | |
52166aa0 | 1386 | compile_prog "" "-Wl,$1 ${w2}" |
a36abbbb JQ |
1387 | } |
1388 | ||
1389 | cat > $TMPC << EOF | |
1390 | int main(void) { } | |
1391 | EOF | |
1392 | if check_linker_flags --whole-archive --no-whole-archive ; then | |
1393 | # GNU ld | |
1394 | arlibs_begin="-Wl,--whole-archive" | |
1395 | arlibs_end="-Wl,--no-whole-archive" | |
1396 | elif check_linker_flags -z,allextract -z,defaultextract ; then | |
1397 | # Solaris ld | |
1398 | arlibs_begin"=-Wl,-z,allextract" | |
1399 | arlibs_end="-Wl,-z,defaultextract" | |
1400 | elif check_linker_flags -all_load ; then | |
1401 | # Mac OS X | |
1402 | arlibs_begin="-all_load" | |
1403 | arlibs_end="" | |
1404 | else | |
1405 | echo "Error: your linker does not support --whole-archive or -z." | |
1406 | echo "Please report to [email protected]" | |
1407 | exit 1 | |
1408 | fi | |
1409 | ||
6362a53f JQ |
1410 | if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaries" != yes -a \ |
1411 | "$aix" != "yes" ; then | |
1412 | libs_softmmu="-lutil $libs_softmmu" | |
1413 | fi | |
1414 | ||
e86ecd4b JQ |
1415 | # End of CC checks |
1416 | # After here, no more $cc or $ld runs | |
1417 | ||
1418 | # default flags for all hosts | |
a558ee17 JQ |
1419 | QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" |
1420 | CFLAGS="-g $CFLAGS" | |
e86ecd4b | 1421 | if test "$debug" = "no" ; then |
1156c669 | 1422 | CFLAGS="-O2 $CFLAGS" |
e86ecd4b | 1423 | fi |
867c16fd JQ |
1424 | QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" |
1425 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" | |
6c90361a JQ |
1426 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" |
1427 | QEMU_CFLAGS="-U_FORTIFY_SOURCE $QEMU_CFLAGS" | |
1428 | QEMU_CFLAGS="-I. -I\$(SRC_PATH) -MMD -MP -MT \$@ $QEMU_CFLAGS" | |
1156c669 | 1429 | LDFLAGS="-g $LDFLAGS" |
e86ecd4b JQ |
1430 | |
1431 | # Consult white-list to determine whether to enable werror | |
1432 | # by default. Only enable by default for git builds | |
1433 | if test -z "$werror" ; then | |
1434 | z_version=`cut -f3 -d. $source_path/VERSION` | |
1435 | if test "$z_version" = "50" -a \ | |
1436 | "$linux" = "yes" ; then | |
1437 | werror="yes" | |
1438 | else | |
1439 | werror="no" | |
1440 | fi | |
1441 | fi | |
1442 | ||
1443 | if test "$werror" = "yes" ; then | |
a558ee17 | 1444 | QEMU_CFLAGS="-Werror $QEMU_CFLAGS" |
e86ecd4b JQ |
1445 | fi |
1446 | ||
1447 | if test "$solaris" = "no" ; then | |
1448 | if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then | |
1156c669 | 1449 | LDFLAGS="-Wl,--warn-common $LDFLAGS" |
e86ecd4b JQ |
1450 | fi |
1451 | fi | |
1452 | ||
11d9f695 | 1453 | if test "$mingw32" = "yes" ; then |
308c3593 | 1454 | if test -z "$prefix" ; then |
55418b96 | 1455 | prefix="c:/Program Files/Qemu" |
308c3593 PB |
1456 | fi |
1457 | mansuffix="" | |
1458 | datasuffix="" | |
1459 | docsuffix="" | |
1460 | binsuffix="" | |
11d9f695 | 1461 | else |
308c3593 PB |
1462 | if test -z "$prefix" ; then |
1463 | prefix="/usr/local" | |
1464 | fi | |
1465 | mansuffix="/share/man" | |
1466 | datasuffix="/share/qemu" | |
1467 | docsuffix="/share/doc/qemu" | |
1468 | binsuffix="/bin" | |
11d9f695 | 1469 | fi |
5a67135a | 1470 | |
43ce4dfe | 1471 | echo "Install prefix $prefix" |
308c3593 PB |
1472 | echo "BIOS directory $prefix$datasuffix" |
1473 | echo "binary directory $prefix$binsuffix" | |
11d9f695 | 1474 | if test "$mingw32" = "no" ; then |
308c3593 | 1475 | echo "Manual directory $prefix$mansuffix" |
43ce4dfe | 1476 | echo "ELF interp prefix $interp_prefix" |
11d9f695 | 1477 | fi |
5a67135a | 1478 | echo "Source path $source_path" |
43ce4dfe | 1479 | echo "C compiler $cc" |
83469015 | 1480 | echo "Host C compiler $host_cc" |
0c439cbf | 1481 | echo "CFLAGS $CFLAGS" |
a558ee17 | 1482 | echo "QEMU_CFLAGS $QEMU_CFLAGS" |
0c439cbf | 1483 | echo "LDFLAGS $LDFLAGS" |
43ce4dfe | 1484 | echo "make $make" |
6a882643 | 1485 | echo "install $install" |
43ce4dfe | 1486 | echo "host CPU $cpu" |
de83cd02 | 1487 | echo "host big endian $bigendian" |
97a847bc | 1488 | echo "target list $target_list" |
ade25b0d | 1489 | echo "tcg debug enabled $debug_tcg" |
43ce4dfe | 1490 | echo "gprof enabled $gprof" |
03b4fe7d | 1491 | echo "sparse enabled $sparse" |
1625af87 | 1492 | echo "strip binaries $strip_opt" |
05c2a3e7 | 1493 | echo "profiler $profiler" |
43ce4dfe | 1494 | echo "static build $static" |
85aa5189 | 1495 | echo "-Werror enabled $werror" |
5b0753e0 FB |
1496 | if test "$darwin" = "yes" ; then |
1497 | echo "Cocoa support $cocoa" | |
1498 | fi | |
97a847bc | 1499 | echo "SDL support $sdl" |
4d3b6f6e | 1500 | echo "curses support $curses" |
769ce76d | 1501 | echo "curl support $curl" |
67b915a5 | 1502 | echo "mingw32 support $mingw32" |
0c58ac1c | 1503 | echo "Audio drivers $audio_drv_list" |
1504 | echo "Extra audio cards $audio_card_list" | |
8ff9cbf7 | 1505 | echo "Mixer emulation $mixemu" |
8d5d2d4c TS |
1506 | echo "VNC TLS support $vnc_tls" |
1507 | if test "$vnc_tls" = "yes" ; then | |
1508 | echo " TLS CFLAGS $vnc_tls_cflags" | |
1509 | echo " TLS LIBS $vnc_tls_libs" | |
1510 | fi | |
2f9606b3 AL |
1511 | echo "VNC SASL support $vnc_sasl" |
1512 | if test "$vnc_sasl" = "yes" ; then | |
1513 | echo " SASL CFLAGS $vnc_sasl_cflags" | |
1514 | echo " SASL LIBS $vnc_sasl_libs" | |
1515 | fi | |
3142255c BS |
1516 | if test -n "$sparc_cpu"; then |
1517 | echo "Target Sparc Arch $sparc_cpu" | |
1518 | fi | |
07f4ddbf | 1519 | echo "kqemu support $kqemu" |
e37630ca | 1520 | echo "xen support $xen" |
2e4d9fb1 | 1521 | echo "brlapi support $brlapi" |
cc8ae6de | 1522 | echo "Documentation $build_docs" |
c5937220 PB |
1523 | [ ! -z "$uname_release" ] && \ |
1524 | echo "uname -r $uname_release" | |
bd0c5661 | 1525 | echo "NPTL support $nptl" |
379f6698 | 1526 | echo "GUEST_BASE $guest_base" |
8a16d273 | 1527 | echo "vde support $vde" |
414f0dab | 1528 | echo "AIO support $aio" |
e5d355d1 | 1529 | echo "IO thread $io_thread" |
77755340 | 1530 | echo "Install blobs $blobs" |
168ccc11 | 1531 | echo -e "KVM support $kvm" |
f652e6af | 1532 | echo "fdt support $fdt" |
ceb42de8 | 1533 | echo "preadv support $preadv" |
67b915a5 | 1534 | |
97a847bc | 1535 | if test $sdl_too_old = "yes"; then |
24b55b96 | 1536 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
7c1f25b4 | 1537 | fi |
7d13299d | 1538 | |
98ec69ac JQ |
1539 | config_host_mak="config-host.mak" |
1540 | config_host_h="config-host.h" | |
4bf6b55b | 1541 | config_host_ld="config-host.ld" |
98ec69ac JQ |
1542 | |
1543 | #echo "Creating $config_host_mak and $config_host_h" | |
1544 | ||
1545 | test -f $config_host_h && mv $config_host_h ${config_host_h}~ | |
1546 | ||
1547 | echo "# Automatically generated by configure - do not modify" > $config_host_mak | |
1548 | printf "# Configured with:" >> $config_host_mak | |
1549 | printf " '%s'" "$0" "$@" >> $config_host_mak | |
1550 | echo >> $config_host_mak | |
98ec69ac | 1551 | |
2358a494 | 1552 | echo "CONFIG_QEMU_SHAREDIR=\"$prefix$datasuffix\"" >> $config_host_mak |
804edf29 | 1553 | |
2408a527 | 1554 | case "$cpu" in |
c62bbcd3 | 1555 | i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64) |
e0da9dd3 | 1556 | ARCH=$cpu |
2408a527 | 1557 | ;; |
a302c32d | 1558 | armv4b|armv4l) |
16dbd14f | 1559 | ARCH=arm |
2408a527 | 1560 | ;; |
2408a527 AJ |
1561 | *) |
1562 | echo "Unsupported CPU = $cpu" | |
1563 | exit 1 | |
1564 | ;; | |
1565 | esac | |
98ec69ac | 1566 | echo "ARCH=$ARCH" >> $config_host_mak |
f8393946 | 1567 | if test "$debug_tcg" = "yes" ; then |
2358a494 | 1568 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
f8393946 | 1569 | fi |
f3d08ee6 | 1570 | if test "$debug" = "yes" ; then |
2358a494 | 1571 | echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak |
f3d08ee6 | 1572 | fi |
1625af87 | 1573 | if test "$strip_opt" = "yes" ; then |
98ec69ac | 1574 | echo "STRIP_OPT=-s" >> $config_host_mak |
1625af87 | 1575 | fi |
7d13299d | 1576 | if test "$bigendian" = "yes" ; then |
e2542fe2 | 1577 | echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak |
97a847bc | 1578 | fi |
2358a494 | 1579 | echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak |
67b915a5 | 1580 | if test "$mingw32" = "yes" ; then |
98ec69ac | 1581 | echo "CONFIG_WIN32=y" >> $config_host_mak |
210fa556 | 1582 | else |
35f4df27 | 1583 | echo "CONFIG_POSIX=y" >> $config_host_mak |
67b915a5 | 1584 | fi |
128ab2ff | 1585 | |
83fb7adf | 1586 | if test "$darwin" = "yes" ; then |
98ec69ac | 1587 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
83fb7adf | 1588 | fi |
b29fe3ed | 1589 | |
1590 | if test "$aix" = "yes" ; then | |
98ec69ac | 1591 | echo "CONFIG_AIX=y" >> $config_host_mak |
b29fe3ed | 1592 | fi |
1593 | ||
ec530c81 | 1594 | if test "$solaris" = "yes" ; then |
98ec69ac | 1595 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
2358a494 | 1596 | echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak |
0475a5ca | 1597 | if test "$needs_libsunmath" = "yes" ; then |
75b5a697 | 1598 | echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak |
0475a5ca | 1599 | fi |
ec530c81 | 1600 | fi |
97a847bc | 1601 | if test "$static" = "yes" ; then |
98ec69ac | 1602 | echo "CONFIG_STATIC=y" >> $config_host_mak |
1156c669 | 1603 | LDFLAGS="-static $LDFLAGS" |
7d13299d | 1604 | fi |
05c2a3e7 | 1605 | if test $profiler = "yes" ; then |
2358a494 | 1606 | echo "CONFIG_PROFILER=y" >> $config_host_mak |
05c2a3e7 | 1607 | fi |
c20709aa | 1608 | if test "$slirp" = "yes" ; then |
98ec69ac | 1609 | echo "CONFIG_SLIRP=y" >> $config_host_mak |
4de67f2f | 1610 | CFLAGS="-I\$(SRC_PATH)/slirp $CFLAGS" |
c20709aa | 1611 | fi |
8a16d273 | 1612 | if test "$vde" = "yes" ; then |
98ec69ac | 1613 | echo "CONFIG_VDE=y" >> $config_host_mak |
4baae0ac | 1614 | echo "VDE_LIBS=$vde_libs" >> $config_host_mak |
8a16d273 | 1615 | fi |
0c58ac1c | 1616 | for card in $audio_card_list; do |
f6e5889e | 1617 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
98ec69ac | 1618 | echo "$def=y" >> $config_host_mak |
0c58ac1c | 1619 | done |
2358a494 | 1620 | echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak |
0c58ac1c | 1621 | for drv in $audio_drv_list; do |
f6e5889e | 1622 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
98ec69ac | 1623 | echo "$def=y" >> $config_host_mak |
923e4521 | 1624 | if test "$drv" = "fmod"; then |
7aac6cb1 | 1625 | echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak |
0c58ac1c | 1626 | fi |
1627 | done | |
67f86e8e JQ |
1628 | if test "$audio_pt_int" = "yes" ; then |
1629 | echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak | |
1630 | fi | |
8ff9cbf7 | 1631 | if test "$mixemu" = "yes" ; then |
98ec69ac | 1632 | echo "CONFIG_MIXEMU=y" >> $config_host_mak |
8ff9cbf7 | 1633 | fi |
8d5d2d4c | 1634 | if test "$vnc_tls" = "yes" ; then |
98ec69ac | 1635 | echo "CONFIG_VNC_TLS=y" >> $config_host_mak |
525061bf | 1636 | echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak |
8d5d2d4c | 1637 | fi |
2f9606b3 | 1638 | if test "$vnc_sasl" = "yes" ; then |
98ec69ac | 1639 | echo "CONFIG_VNC_SASL=y" >> $config_host_mak |
60ddf533 | 1640 | echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak |
2f9606b3 | 1641 | fi |
76655d6d | 1642 | if test "$fnmatch" = "yes" ; then |
2358a494 | 1643 | echo "CONFIG_FNMATCH=y" >> $config_host_mak |
76655d6d | 1644 | fi |
b1a550a0 | 1645 | qemu_version=`head $source_path/VERSION` |
98ec69ac | 1646 | echo "VERSION=$qemu_version" >>$config_host_mak |
2358a494 | 1647 | echo "PKGVERSION=$pkgversion" >>$config_host_mak |
98ec69ac | 1648 | echo "SRC_PATH=$source_path" >> $config_host_mak |
ad064840 | 1649 | if [ "$source_path_used" = "yes" ]; then |
98ec69ac | 1650 | echo "VPATH=$source_path" >> $config_host_mak |
ad064840 | 1651 | fi |
98ec69ac | 1652 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
cc8ae6de | 1653 | if [ "$build_docs" = "yes" ] ; then |
98ec69ac | 1654 | echo "BUILD_DOCS=yes" >> $config_host_mak |
cc8ae6de | 1655 | fi |
1ac88f28 | 1656 | if test "$sdl" = "yes" ; then |
98ec69ac | 1657 | echo "CONFIG_SDL=y" >> $config_host_mak |
1ac88f28 | 1658 | echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak |
49ecc3fa FB |
1659 | fi |
1660 | if test "$cocoa" = "yes" ; then | |
98ec69ac | 1661 | echo "CONFIG_COCOA=y" >> $config_host_mak |
4d3b6f6e AZ |
1662 | fi |
1663 | if test "$curses" = "yes" ; then | |
98ec69ac | 1664 | echo "CONFIG_CURSES=y" >> $config_host_mak |
49ecc3fa | 1665 | fi |
3b3f24ad | 1666 | if test "$atfile" = "yes" ; then |
2358a494 | 1667 | echo "CONFIG_ATFILE=y" >> $config_host_mak |
3b3f24ad | 1668 | fi |
ebc996f3 | 1669 | if test "$utimens" = "yes" ; then |
2358a494 | 1670 | echo "CONFIG_UTIMENSAT=y" >> $config_host_mak |
ebc996f3 | 1671 | fi |
099d6b0f | 1672 | if test "$pipe2" = "yes" ; then |
2358a494 | 1673 | echo "CONFIG_PIPE2=y" >> $config_host_mak |
099d6b0f | 1674 | fi |
3ce34dfb | 1675 | if test "$splice" = "yes" ; then |
2358a494 | 1676 | echo "CONFIG_SPLICE=y" >> $config_host_mak |
3ce34dfb | 1677 | fi |
3b3f24ad | 1678 | if test "$inotify" = "yes" ; then |
2358a494 | 1679 | echo "CONFIG_INOTIFY=y" >> $config_host_mak |
3b3f24ad | 1680 | fi |
6ae9a1f4 JQ |
1681 | if test "$byteswap_h" = "yes" ; then |
1682 | echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak | |
1683 | fi | |
1684 | if test "$bswap_h" = "yes" ; then | |
1685 | echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak | |
1686 | fi | |
769ce76d | 1687 | if test "$curl" = "yes" ; then |
98ec69ac | 1688 | echo "CONFIG_CURL=y" >> $config_host_mak |
b1d5a277 | 1689 | echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak |
98ec69ac | 1690 | echo "CURL_LIBS=$curl_libs" >> $config_host_mak |
769ce76d | 1691 | fi |
2e4d9fb1 | 1692 | if test "$brlapi" = "yes" ; then |
98ec69ac | 1693 | echo "CONFIG_BRLAPI=y" >> $config_host_mak |
2e4d9fb1 | 1694 | fi |
fb599c9a | 1695 | if test "$bluez" = "yes" ; then |
98ec69ac | 1696 | echo "CONFIG_BLUEZ=y" >> $config_host_mak |
ef7635ec | 1697 | echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak |
fb599c9a | 1698 | fi |
e37630ca | 1699 | if test "$xen" = "yes" ; then |
5647eb74 | 1700 | echo "CONFIG_XEN=y" >> $config_host_mak |
e37630ca | 1701 | fi |
414f0dab | 1702 | if test "$aio" = "yes" ; then |
98ec69ac | 1703 | echo "CONFIG_AIO=y" >> $config_host_mak |
414f0dab | 1704 | fi |
e5d355d1 | 1705 | if test "$io_thread" = "yes" ; then |
98ec69ac | 1706 | echo "CONFIG_IOTHREAD=y" >> $config_host_mak |
e5d355d1 | 1707 | fi |
77755340 | 1708 | if test "$blobs" = "yes" ; then |
98ec69ac | 1709 | echo "INSTALL_BLOBS=yes" >> $config_host_mak |
77755340 | 1710 | fi |
bf9298b9 | 1711 | if test "$iovec" = "yes" ; then |
2358a494 | 1712 | echo "CONFIG_IOVEC=y" >> $config_host_mak |
bf9298b9 | 1713 | fi |
ceb42de8 | 1714 | if test "$preadv" = "yes" ; then |
2358a494 | 1715 | echo "CONFIG_PREADV=y" >> $config_host_mak |
ceb42de8 | 1716 | fi |
f652e6af | 1717 | if test "$fdt" = "yes" ; then |
3f0855b1 | 1718 | echo "CONFIG_FDT=y" >> $config_host_mak |
f652e6af | 1719 | fi |
97a847bc | 1720 | |
83fb7adf | 1721 | # XXX: suppress that |
7d3505c5 | 1722 | if [ "$bsd" = "yes" ] ; then |
2358a494 | 1723 | echo "CONFIG_BSD=y" >> $config_host_mak |
7d3505c5 FB |
1724 | fi |
1725 | ||
2358a494 | 1726 | echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak |
c5937220 | 1727 | |
68063649 BS |
1728 | # USB host support |
1729 | case "$usb" in | |
1730 | linux) | |
98ec69ac | 1731 | echo "HOST_USB=linux" >> $config_host_mak |
68063649 BS |
1732 | ;; |
1733 | bsd) | |
98ec69ac | 1734 | echo "HOST_USB=bsd" >> $config_host_mak |
68063649 BS |
1735 | ;; |
1736 | *) | |
98ec69ac | 1737 | echo "HOST_USB=stub" >> $config_host_mak |
68063649 BS |
1738 | ;; |
1739 | esac | |
1740 | ||
c39e3338 PB |
1741 | tools= |
1742 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then | |
3dd1f8ef | 1743 | tools="qemu-img\$(EXESUF) $tools" |
7a5ca864 | 1744 | if [ "$linux" = "yes" ] ; then |
3dd1f8ef | 1745 | tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" |
7a5ca864 | 1746 | fi |
c39e3338 | 1747 | fi |
98ec69ac | 1748 | echo "TOOLS=$tools" >> $config_host_mak |
c39e3338 | 1749 | |
161294d8 | 1750 | # Mac OS X ships with a broken assembler |
253d0942 | 1751 | roms= |
161294d8 JQ |
1752 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ |
1753 | "$targetos" != "Darwin" ; then | |
c05ac895 | 1754 | roms="optionrom" |
253d0942 | 1755 | fi |
98ec69ac | 1756 | echo "ROMS=$roms" >> $config_host_mak |
253d0942 | 1757 | |
804edf29 JQ |
1758 | echo "prefix=$prefix" >> $config_host_mak |
1759 | echo "bindir=\${prefix}$binsuffix" >> $config_host_mak | |
1760 | echo "mandir=\${prefix}$mansuffix" >> $config_host_mak | |
1761 | echo "datadir=\${prefix}$datasuffix" >> $config_host_mak | |
1762 | echo "docdir=\${prefix}$docsuffix" >> $config_host_mak | |
1763 | echo "MAKE=$make" >> $config_host_mak | |
1764 | echo "INSTALL=$install" >> $config_host_mak | |
1765 | echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak | |
1766 | echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak | |
1767 | echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak | |
1768 | echo "CC=$cc" >> $config_host_mak | |
1769 | echo "HOST_CC=$host_cc" >> $config_host_mak | |
1770 | if test "$sparse" = "yes" ; then | |
1771 | echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak | |
1772 | echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak | |
a558ee17 | 1773 | echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak |
804edf29 JQ |
1774 | fi |
1775 | echo "AR=$ar" >> $config_host_mak | |
1776 | echo "OBJCOPY=$objcopy" >> $config_host_mak | |
1777 | echo "LD=$ld" >> $config_host_mak | |
e2a2ed06 | 1778 | echo "CFLAGS=$CFLAGS" >> $config_host_mak |
a558ee17 | 1779 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
c81da56e | 1780 | echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak |
e2a2ed06 | 1781 | echo "LDFLAGS=$LDFLAGS" >> $config_host_mak |
a36abbbb JQ |
1782 | echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak |
1783 | echo "ARLIBS_END=$arlibs_end" >> $config_host_mak | |
73da375e | 1784 | echo "LIBS+=$LIBS" >> $config_host_mak |
804edf29 | 1785 | echo "EXESUF=$EXESUF" >> $config_host_mak |
804edf29 | 1786 | |
2358a494 JQ |
1787 | echo "/* Automatically generated by configure - do not modify */" > $config_host_h |
1788 | ||
0ff6697d | 1789 | $SHELL $source_path/create_config < $config_host_mak >> $config_host_h |
2358a494 | 1790 | |
98ec69ac JQ |
1791 | if test -f ${config_host_h}~ ; then |
1792 | if cmp -s $config_host_h ${config_host_h}~ ; then | |
1793 | mv ${config_host_h}~ $config_host_h | |
370ab986 | 1794 | else |
98ec69ac | 1795 | rm ${config_host_h}~ |
370ab986 PB |
1796 | fi |
1797 | fi | |
1798 | ||
4bf6b55b JQ |
1799 | # generate list of library paths for linker script |
1800 | ||
1801 | $ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} | |
1802 | ||
1803 | if test -f ${config_host_ld}~ ; then | |
1804 | if cmp -s $config_host_ld ${config_host_ld}~ ; then | |
1805 | mv ${config_host_ld}~ $config_host_ld | |
1806 | else | |
1807 | rm ${config_host_ld}~ | |
1808 | fi | |
1809 | fi | |
1810 | ||
1d14ffa9 | 1811 | for target in $target_list; do |
97a847bc FB |
1812 | target_dir="$target" |
1813 | config_mak=$target_dir/config.mak | |
1814 | config_h=$target_dir/config.h | |
600309b6 | 1815 | target_arch2=`echo $target | cut -d '-' -f 1` |
97a847bc | 1816 | target_bigendian="no" |
ea2d6a39 JQ |
1817 | case "$target_arch2" in |
1818 | armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus) | |
1819 | target_bigendian=yes | |
1820 | ;; | |
1821 | esac | |
97a847bc | 1822 | target_softmmu="no" |
997344f3 | 1823 | target_user_only="no" |
831b7825 | 1824 | target_linux_user="no" |
831b7825 | 1825 | target_darwin_user="no" |
84778508 | 1826 | target_bsd_user="no" |
9e407a85 | 1827 | case "$target" in |
600309b6 | 1828 | ${target_arch2}-softmmu) |
9e407a85 PB |
1829 | target_softmmu="yes" |
1830 | ;; | |
600309b6 | 1831 | ${target_arch2}-linux-user) |
9e407a85 PB |
1832 | target_user_only="yes" |
1833 | target_linux_user="yes" | |
1834 | ;; | |
600309b6 | 1835 | ${target_arch2}-darwin-user) |
9e407a85 PB |
1836 | target_user_only="yes" |
1837 | target_darwin_user="yes" | |
1838 | ;; | |
600309b6 | 1839 | ${target_arch2}-bsd-user) |
84778508 BS |
1840 | target_user_only="yes" |
1841 | target_bsd_user="yes" | |
1842 | ;; | |
9e407a85 PB |
1843 | *) |
1844 | echo "ERROR: Target '$target' not recognised" | |
1845 | exit 1 | |
1846 | ;; | |
1847 | esac | |
831b7825 | 1848 | |
7c1f25b4 | 1849 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
97a847bc | 1850 | |
15d9ca0f TS |
1851 | test -f $config_h && mv $config_h ${config_h}~ |
1852 | ||
97a847bc | 1853 | mkdir -p $target_dir |
158142c2 | 1854 | mkdir -p $target_dir/fpu |
57fec1fe | 1855 | mkdir -p $target_dir/tcg |
84778508 | 1856 | if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then |
69de927c FB |
1857 | mkdir -p $target_dir/nwfpe |
1858 | fi | |
1859 | ||
ec530c81 FB |
1860 | # |
1861 | # don't use ln -sf as not all "ln -sf" over write the file/link | |
1862 | # | |
1863 | rm -f $target_dir/Makefile | |
1864 | ln -s $source_path/Makefile.target $target_dir/Makefile | |
1865 | ||
97a847bc FB |
1866 | |
1867 | echo "# Automatically generated by configure - do not modify" > $config_mak | |
de83cd02 | 1868 | |
97a847bc | 1869 | echo "include ../config-host.mak" >> $config_mak |
1e43adfc | 1870 | |
e5fe0c52 | 1871 | bflt="no" |
cb33da57 | 1872 | elfload32="no" |
bd0c5661 | 1873 | target_nptl="no" |
600309b6 | 1874 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` |
42bc608b | 1875 | echo "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak |
56aebc89 | 1876 | gdb_xml_files="" |
7ba1e619 | 1877 | |
938b1edd | 1878 | TARGET_ARCH="$target_arch2" |
6acff7da | 1879 | TARGET_BASE_ARCH="" |
e6e91b9c | 1880 | TARGET_ABI_DIR="" |
e73aae67 | 1881 | |
600309b6 | 1882 | case "$target_arch2" in |
2408a527 | 1883 | i386) |
1ad2134f | 1884 | target_phys_bits=32 |
2408a527 AJ |
1885 | ;; |
1886 | x86_64) | |
6acff7da | 1887 | TARGET_BASE_ARCH=i386 |
1ad2134f | 1888 | target_phys_bits=64 |
2408a527 AJ |
1889 | ;; |
1890 | alpha) | |
1ad2134f | 1891 | target_phys_bits=64 |
2408a527 AJ |
1892 | ;; |
1893 | arm|armeb) | |
b498c8a0 | 1894 | TARGET_ARCH=arm |
2408a527 | 1895 | bflt="yes" |
bd0c5661 | 1896 | target_nptl="yes" |
56aebc89 | 1897 | gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" |
1ad2134f | 1898 | target_phys_bits=32 |
2408a527 AJ |
1899 | ;; |
1900 | cris) | |
253bd7f8 | 1901 | target_nptl="yes" |
1ad2134f | 1902 | target_phys_bits=32 |
2408a527 AJ |
1903 | ;; |
1904 | m68k) | |
2408a527 | 1905 | bflt="yes" |
56aebc89 | 1906 | gdb_xml_files="cf-core.xml cf-fp.xml" |
1ad2134f | 1907 | target_phys_bits=32 |
2408a527 | 1908 | ;; |
72b675ca | 1909 | microblaze) |
72b675ca EI |
1910 | bflt="yes" |
1911 | target_nptl="yes" | |
1912 | target_phys_bits=32 | |
1913 | ;; | |
0adcffb1 | 1914 | mips|mipsel) |
b498c8a0 | 1915 | TARGET_ARCH=mips |
42bc608b | 1916 | echo "TARGET_ABI_MIPSO32=y" >> $config_mak |
f04dc72f | 1917 | target_nptl="yes" |
1ad2134f | 1918 | target_phys_bits=64 |
2408a527 AJ |
1919 | ;; |
1920 | mipsn32|mipsn32el) | |
b498c8a0 | 1921 | TARGET_ARCH=mipsn32 |
6acff7da | 1922 | TARGET_BASE_ARCH=mips |
42bc608b | 1923 | echo "TARGET_ABI_MIPSN32=y" >> $config_mak |
1ad2134f | 1924 | target_phys_bits=64 |
2408a527 AJ |
1925 | ;; |
1926 | mips64|mips64el) | |
b498c8a0 | 1927 | TARGET_ARCH=mips64 |
6acff7da | 1928 | TARGET_BASE_ARCH=mips |
42bc608b | 1929 | echo "TARGET_ABI_MIPSN64=y" >> $config_mak |
1ad2134f | 1930 | target_phys_bits=64 |
2408a527 AJ |
1931 | ;; |
1932 | ppc) | |
c8b3532d | 1933 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 1934 | target_phys_bits=32 |
d6630708 | 1935 | target_nptl="yes" |
2408a527 AJ |
1936 | ;; |
1937 | ppcemb) | |
6acff7da | 1938 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 1939 | TARGET_ABI_DIR=ppc |
c8b3532d | 1940 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 1941 | target_phys_bits=64 |
d6630708 | 1942 | target_nptl="yes" |
2408a527 AJ |
1943 | ;; |
1944 | ppc64) | |
6acff7da | 1945 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 1946 | TARGET_ABI_DIR=ppc |
c8b3532d | 1947 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 1948 | target_phys_bits=64 |
2408a527 AJ |
1949 | ;; |
1950 | ppc64abi32) | |
b498c8a0 | 1951 | TARGET_ARCH=ppc64 |
6acff7da | 1952 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 1953 | TARGET_ABI_DIR=ppc |
42bc608b | 1954 | echo "TARGET_ABI32=y" >> $config_mak |
c8b3532d | 1955 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 1956 | target_phys_bits=64 |
2408a527 AJ |
1957 | ;; |
1958 | sh4|sh4eb) | |
b498c8a0 | 1959 | TARGET_ARCH=sh4 |
2408a527 | 1960 | bflt="yes" |
0b6d3ae0 | 1961 | target_nptl="yes" |
1ad2134f | 1962 | target_phys_bits=32 |
2408a527 AJ |
1963 | ;; |
1964 | sparc) | |
1ad2134f | 1965 | target_phys_bits=64 |
2408a527 AJ |
1966 | ;; |
1967 | sparc64) | |
6acff7da | 1968 | TARGET_BASE_ARCH=sparc |
2408a527 | 1969 | elfload32="yes" |
1ad2134f | 1970 | target_phys_bits=64 |
2408a527 AJ |
1971 | ;; |
1972 | sparc32plus) | |
b498c8a0 | 1973 | TARGET_ARCH=sparc64 |
6acff7da | 1974 | TARGET_BASE_ARCH=sparc |
e6e91b9c | 1975 | TARGET_ABI_DIR=sparc |
42bc608b | 1976 | echo "TARGET_ABI32=y" >> $config_mak |
1ad2134f | 1977 | target_phys_bits=64 |
2408a527 AJ |
1978 | ;; |
1979 | *) | |
1980 | echo "Unsupported target CPU" | |
1981 | exit 1 | |
1982 | ;; | |
1983 | esac | |
b498c8a0 | 1984 | echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak |
0adcffb1 | 1985 | echo "TARGET_ARCH2=$target_arch2" >> $config_mak |
42bc608b | 1986 | # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH |
6acff7da JQ |
1987 | if [ "$TARGET_BASE_ARCH" = "" ]; then |
1988 | TARGET_BASE_ARCH=$TARGET_ARCH | |
6acff7da JQ |
1989 | fi |
1990 | echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak | |
e6e91b9c JQ |
1991 | if [ "$TARGET_ABI_DIR" = "" ]; then |
1992 | TARGET_ABI_DIR=$TARGET_ARCH | |
1993 | fi | |
1994 | echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak | |
1ad2134f PB |
1995 | if [ $target_phys_bits -lt $hostlongbits ] ; then |
1996 | target_phys_bits=$hostlongbits | |
1997 | fi | |
1b0c87fc JQ |
1998 | case "$target_arch2" in |
1999 | i386|x86_64) | |
2000 | if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then | |
2001 | echo "CONFIG_XEN=y" >> $config_mak | |
1b0c87fc | 2002 | fi |
0d46b7ed JQ |
2003 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" |
2004 | then | |
2005 | echo "CONFIG_KQEMU=y" >> $config_mak | |
0d46b7ed | 2006 | fi |
1b0c87fc | 2007 | esac |
c59249f9 | 2008 | case "$target_arch2" in |
5f114bc6 | 2009 | i386|x86_64|ppcemb|ppc|ppc64) |
c59249f9 JQ |
2010 | # Make sure the target and host cpus are compatible |
2011 | if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ | |
2012 | \( "$target_arch2" = "$cpu" -o \ | |
2013 | \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ | |
5f114bc6 | 2014 | \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ |
c59249f9 JQ |
2015 | \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ |
2016 | \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then | |
2017 | echo "CONFIG_KVM=y" >> $config_mak | |
2018 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak | |
c59249f9 JQ |
2019 | fi |
2020 | esac | |
1ad2134f | 2021 | echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak |
42bc608b | 2022 | echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak |
1ad2134f | 2023 | echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak |
de83cd02 | 2024 | if test "$target_bigendian" = "yes" ; then |
42bc608b | 2025 | echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak |
de83cd02 | 2026 | fi |
97a847bc | 2027 | if test "$target_softmmu" = "yes" ; then |
e34af2ce | 2028 | echo "CONFIG_SOFTMMU=y" >> $config_mak |
73da375e | 2029 | echo "LIBS+=$libs_softmmu" >> $config_mak |
43ce4dfe | 2030 | fi |
997344f3 | 2031 | if test "$target_user_only" = "yes" ; then |
e34af2ce | 2032 | echo "CONFIG_USER_ONLY=y" >> $config_mak |
997344f3 | 2033 | fi |
831b7825 | 2034 | if test "$target_linux_user" = "yes" ; then |
e34af2ce | 2035 | echo "CONFIG_LINUX_USER=y" >> $config_mak |
831b7825 TS |
2036 | fi |
2037 | if test "$target_darwin_user" = "yes" ; then | |
e34af2ce | 2038 | echo "CONFIG_DARWIN_USER=y" >> $config_mak |
831b7825 | 2039 | fi |
56aebc89 PB |
2040 | list="" |
2041 | if test ! -z "$gdb_xml_files" ; then | |
2042 | for x in $gdb_xml_files; do | |
2043 | list="$list $source_path/gdb-xml/$x" | |
2044 | done | |
2045 | fi | |
2046 | echo "TARGET_XML_FILES=$list" >> $config_mak | |
97a847bc | 2047 | |
f57975fb JQ |
2048 | case "$target_arch2" in |
2049 | arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus) | |
2050 | echo "CONFIG_SOFTFLOAT=y" >> $config_mak | |
f57975fb | 2051 | ;; |
d6b38939 JQ |
2052 | *) |
2053 | echo "CONFIG_NOSOFTFLOAT=y" >> $config_mak | |
2054 | ;; | |
f57975fb JQ |
2055 | esac |
2056 | ||
e5fe0c52 | 2057 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
e34af2ce | 2058 | echo "TARGET_HAS_BFLT=y" >> $config_mak |
e5fe0c52 | 2059 | fi |
bd0c5661 PB |
2060 | if test "$target_user_only" = "yes" \ |
2061 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then | |
2f7bb878 | 2062 | echo "CONFIG_USE_NPTL=y" >> $config_mak |
bd0c5661 | 2063 | fi |
cb33da57 BS |
2064 | # 32 bit ELF loader in addition to native 64 bit loader? |
2065 | if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then | |
e34af2ce | 2066 | echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak |
cb33da57 | 2067 | fi |
379f6698 PB |
2068 | if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then |
2069 | echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak | |
2070 | fi | |
84778508 | 2071 | if test "$target_bsd_user" = "yes" ; then |
e34af2ce | 2072 | echo "CONFIG_BSD_USER=y" >> $config_mak |
84778508 | 2073 | fi |
5b0753e0 | 2074 | |
4afddb55 | 2075 | # generate QEMU_CFLAGS/LDFLAGS for targets |
fa282484 | 2076 | |
4afddb55 | 2077 | cflags="" |
fa282484 | 2078 | ldflags="" |
9b8e111f | 2079 | |
57ddfbf7 JQ |
2080 | if test "$ARCH" = "sparc64" ; then |
2081 | cflags="-I\$(SRC_PATH)/tcg/sparc $cflags" | |
2082 | else | |
2083 | cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags" | |
2084 | fi | |
2085 | cflags="-I\$(SRC_PATH)/tcg $cflags" | |
2086 | cflags="-I\$(SRC_PATH)/fpu $cflags" | |
2087 | ||
64656024 JQ |
2088 | for i in $ARCH $TARGET_BASE_ARCH ; do |
2089 | case "$i" in | |
2090 | alpha) | |
2091 | echo "CONFIG_ALPHA_DIS=y" >> $config_mak | |
2092 | ;; | |
2093 | arm) | |
2094 | echo "CONFIG_ARM_DIS=y" >> $config_mak | |
2095 | ;; | |
2096 | cris) | |
2097 | echo "CONFIG_CRIS_DIS=y" >> $config_mak | |
2098 | ;; | |
2099 | hppa) | |
2100 | echo "CONFIG_HPPA_DIS=y" >> $config_mak | |
2101 | ;; | |
2102 | i386|x86_64) | |
2103 | echo "CONFIG_I386_DIS=y" >> $config_mak | |
2104 | ;; | |
2105 | m68k) | |
2106 | echo "CONFIG_M68K_DIS=y" >> $config_mak | |
2107 | ;; | |
2108 | microblaze) | |
2109 | echo "CONFIG_MICROBLAZE_DIS=y" >> $config_mak | |
2110 | ;; | |
2111 | mips*) | |
2112 | echo "CONFIG_MIPS_DIS=y" >> $config_mak | |
2113 | ;; | |
2114 | ppc*) | |
2115 | echo "CONFIG_PPC_DIS=y" >> $config_mak | |
2116 | ;; | |
2117 | s390) | |
2118 | echo "CONFIG_S390_DIS=y" >> $config_mak | |
2119 | ;; | |
2120 | sh4) | |
2121 | echo "CONFIG_SH4_DIS=y" >> $config_mak | |
2122 | ;; | |
2123 | sparc*) | |
2124 | echo "CONFIG_SPARC_DIS=y" >> $config_mak | |
2125 | ;; | |
2126 | esac | |
2127 | done | |
2128 | ||
6ee7126f JQ |
2129 | case "$ARCH" in |
2130 | alpha) | |
2131 | # Ensure there's only a single GP | |
2132 | cflags="-msmall-data $cflags" | |
2133 | ;; | |
c60d0afa JQ |
2134 | ia64) |
2135 | cflags="-mno-sdata $cflags" | |
2136 | ;; | |
6ee7126f JQ |
2137 | esac |
2138 | ||
471857dd JQ |
2139 | if test "$target_softmmu" = "yes" -a \( \ |
2140 | "$TARGET_ARCH" = "microblaze" -o \ | |
2141 | "$TARGET_ARCH" = "cris" \) ; then | |
2142 | echo "CONFIG_NEED_MMU=y" >> $config_mak | |
2143 | fi | |
2144 | ||
d02c1db3 JQ |
2145 | if test "$gprof" = "yes" ; then |
2146 | echo "TARGET_GPROF=yes" >> $config_mak | |
2147 | if test "$target_linux_user" = "yes" ; then | |
2148 | cflags="-p $cflags" | |
2149 | ldflags="-p $ldflags" | |
2150 | fi | |
2151 | if test "$target_softmmu" = "yes" ; then | |
2152 | ldflags="-p $ldflags" | |
2153 | fi | |
2154 | fi | |
2155 | ||
6ee7126f | 2156 | linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" |
9b8e111f | 2157 | if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then |
fa282484 JQ |
2158 | case "$ARCH" in |
2159 | i386) | |
2160 | if test "$gprof" = "yes" -o "$static" = "yes" ; then | |
322e5878 | 2161 | ldflags="$linker_script $ldflags" |
fa282484 JQ |
2162 | else |
2163 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object | |
2164 | # that the kernel ELF loader considers as an executable. I think this | |
2165 | # is the simplest way to make it self virtualizable! | |
322e5878 | 2166 | ldflags="-Wl,-shared $ldflags" |
fa282484 JQ |
2167 | fi |
2168 | ;; | |
2169 | sparc) | |
2170 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
322e5878 | 2171 | ldflags="$linker_script -static $ldflags" |
fa282484 JQ |
2172 | ;; |
2173 | ia64) | |
322e5878 | 2174 | ldflags="-Wl,-G0 $linker_script -static $ldflags" |
fa282484 JQ |
2175 | ;; |
2176 | x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) | |
322e5878 | 2177 | ldflags="$linker_script $ldflags" |
fa282484 JQ |
2178 | ;; |
2179 | esac | |
2180 | fi | |
2181 | if test "$target_softmmu" = "yes" ; then | |
2182 | case "$ARCH" in | |
2183 | ia64) | |
322e5878 | 2184 | ldflags="-Wl,-G0 $linker_script -static $ldflags" |
fa282484 JQ |
2185 | ;; |
2186 | esac | |
2187 | fi | |
2188 | ||
07dac55d | 2189 | echo "LDFLAGS+=$ldflags" >> $config_mak |
4afddb55 | 2190 | echo "QEMU_CFLAGS+=$cflags" >> $config_mak |
fa282484 | 2191 | |
2358a494 JQ |
2192 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
2193 | echo "#include \"../config-host.h\"" >> $config_h | |
2194 | ||
0ff6697d | 2195 | $SHELL $source_path/create_config < $config_mak >> $config_h |
42bc608b | 2196 | |
a900c002 JQ |
2197 | if test -f ${config_h}~ ; then |
2198 | if cmp -s $config_h ${config_h}~ ; then | |
2199 | mv ${config_h}~ $config_h | |
2200 | else | |
2201 | rm ${config_h}~ | |
2202 | fi | |
2203 | fi | |
15d9ca0f | 2204 | |
97a847bc | 2205 | done # for target in $targets |
7d13299d FB |
2206 | |
2207 | # build tree in object directory if source path is different from current one | |
2208 | if test "$source_path_used" = "yes" ; then | |
253d0942 | 2209 | DIRS="tests tests/cris slirp audio block pc-bios/optionrom" |
7d13299d | 2210 | FILES="Makefile tests/Makefile" |
e7daa605 | 2211 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
e1ffb0f1 | 2212 | FILES="$FILES tests/test-mmap.c" |
7ea78b74 JK |
2213 | FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x" |
2214 | for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do | |
2215 | FILES="$FILES pc-bios/`basename $bios_file`" | |
2216 | done | |
7d13299d FB |
2217 | for dir in $DIRS ; do |
2218 | mkdir -p $dir | |
2219 | done | |
ec530c81 | 2220 | # remove the link and recreate it, as not all "ln -sf" overwrite the link |
7d13299d | 2221 | for f in $FILES ; do |
ec530c81 FB |
2222 | rm -f $f |
2223 | ln -s $source_path/$f $f | |
7d13299d FB |
2224 | done |
2225 | fi | |
1ad2134f PB |
2226 | |
2227 | for hwlib in 32 64; do | |
2228 | d=libhw$hwlib | |
2229 | mkdir -p $d | |
2230 | rm -f $d/Makefile | |
2231 | ln -s $source_path/Makefile.hw $d/Makefile | |
2232 | echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak | |
a558ee17 | 2233 | echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak |
1ad2134f | 2234 | done |