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