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