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