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