]>
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="" |
30 | audio_card_list="" | |
7d13299d FB |
31 | host_cc="gcc" |
32 | ar="ar" | |
33 | make="make" | |
6a882643 | 34 | install="install" |
7d13299d | 35 | strip="strip" |
b29fe3ed | 36 | cpu=`test $(uname -s) = AIX && uname -p || uname -m` |
5327cf48 | 37 | target_list="" |
7d13299d FB |
38 | case "$cpu" in |
39 | i386|i486|i586|i686|i86pc|BePC) | |
97a847bc | 40 | cpu="i386" |
7d13299d | 41 | ;; |
aaa5fa14 AJ |
42 | x86_64|amd64) |
43 | cpu="x86_64" | |
44 | ;; | |
45 | alpha) | |
46 | cpu="alpha" | |
47 | ;; | |
ba68055e | 48 | armv*b) |
808c4954 FB |
49 | cpu="armv4b" |
50 | ;; | |
ba68055e | 51 | armv*l) |
7d13299d FB |
52 | cpu="armv4l" |
53 | ;; | |
aaa5fa14 AJ |
54 | cris) |
55 | cpu="cris" | |
7d13299d | 56 | ;; |
f54b3f92 AJ |
57 | parisc|parisc64) |
58 | cpu="hppa" | |
59 | ;; | |
aaa5fa14 AJ |
60 | ia64) |
61 | cpu="ia64" | |
62 | ;; | |
63 | m68k) | |
64 | cpu="m68k" | |
7d13299d FB |
65 | ;; |
66 | mips) | |
67 | cpu="mips" | |
68 | ;; | |
fbe4f65b TS |
69 | mips64) |
70 | cpu="mips64" | |
71 | ;; | |
b29fe3ed | 72 | "Power Macintosh"|ppc|ppc64|powerpc) |
aaa5fa14 | 73 | cpu="powerpc" |
e7daa605 | 74 | ;; |
0e7b8a9f | 75 | s390*) |
fb3e5849 FB |
76 | cpu="s390" |
77 | ;; | |
3142255c | 78 | sparc|sun4[cdmuv]) |
ae228531 FB |
79 | cpu="sparc" |
80 | ;; | |
81 | sparc64) | |
82 | cpu="sparc64" | |
83 | ;; | |
7d13299d FB |
84 | *) |
85 | cpu="unknown" | |
86 | ;; | |
87 | esac | |
88 | gprof="no" | |
03b4fe7d | 89 | sparse="no" |
7d13299d | 90 | bigendian="no" |
67b915a5 FB |
91 | mingw32="no" |
92 | EXESUF="" | |
93 | gdbstub="yes" | |
443f1376 | 94 | slirp="yes" |
e0e6c8c0 | 95 | vde="yes" |
102a52e4 FB |
96 | fmod_lib="" |
97 | fmod_inc="" | |
2f6a1ab0 | 98 | oss_lib="" |
8d5d2d4c | 99 | vnc_tls="yes" |
b1a550a0 | 100 | bsd="no" |
5327cf48 | 101 | linux="no" |
d2c7c9b8 | 102 | solaris="no" |
c9ec1fe4 | 103 | kqemu="no" |
05c2a3e7 | 104 | profiler="no" |
5b0753e0 | 105 | cocoa="no" |
97ccc689 | 106 | check_gfx="yes" |
0a8e90f4 | 107 | softmmu="yes" |
831b7825 TS |
108 | linux_user="no" |
109 | darwin_user="no" | |
84778508 | 110 | bsd_user="no" |
cc8ae6de | 111 | build_docs="no" |
c5937220 | 112 | uname_release="" |
4d3b6f6e | 113 | curses="yes" |
414f0dab | 114 | aio="yes" |
bd0c5661 | 115 | nptl="yes" |
8ff9cbf7 | 116 | mixemu="no" |
fb599c9a | 117 | bluez="yes" |
7ba1e619 | 118 | kvm="yes" |
eac30262 | 119 | kerneldir="" |
b29fe3ed | 120 | aix="no" |
77755340 | 121 | blobs="yes" |
7d13299d FB |
122 | |
123 | # OS specific | |
124 | targetos=`uname -s` | |
125 | case $targetos in | |
c326e0af FB |
126 | CYGWIN*) |
127 | mingw32="yes" | |
6f30fa85 | 128 | OS_CFLAGS="-mno-cygwin" |
db8d7dd1 TS |
129 | if [ "$cpu" = "i386" ] ; then |
130 | kqemu="yes" | |
131 | fi | |
c2de5c91 | 132 | audio_possible_drivers="sdl" |
c326e0af | 133 | ;; |
67b915a5 FB |
134 | MINGW32*) |
135 | mingw32="yes" | |
db8d7dd1 TS |
136 | if [ "$cpu" = "i386" ] ; then |
137 | kqemu="yes" | |
138 | fi | |
c2de5c91 | 139 | audio_possible_drivers="dsound sdl fmod" |
67b915a5 | 140 | ;; |
5c40d2bd | 141 | GNU/kFreeBSD) |
0c58ac1c | 142 | audio_drv_list="oss" |
f34af52c | 143 | audio_possible_drivers="oss sdl esd pa" |
5c40d2bd TS |
144 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
145 | kqemu="yes" | |
146 | fi | |
147 | ;; | |
7d3505c5 FB |
148 | FreeBSD) |
149 | bsd="yes" | |
0c58ac1c | 150 | audio_drv_list="oss" |
f34af52c | 151 | audio_possible_drivers="oss sdl esd pa" |
f4887919 | 152 | aio_lib="-lpthread" |
e99f9060 | 153 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
07f4ddbf FB |
154 | kqemu="yes" |
155 | fi | |
7d3505c5 FB |
156 | ;; |
157 | NetBSD) | |
158 | bsd="yes" | |
0c58ac1c | 159 | audio_drv_list="oss" |
c2de5c91 | 160 | audio_possible_drivers="oss sdl esd" |
8ef92a88 BS |
161 | oss_lib="-lossaudio" |
162 | aio_lib="-lrt -lpthread" | |
7d3505c5 FB |
163 | ;; |
164 | OpenBSD) | |
165 | bsd="yes" | |
128ab2ff | 166 | openbsd="yes" |
0c58ac1c | 167 | audio_drv_list="oss" |
c2de5c91 | 168 | audio_possible_drivers="oss sdl esd" |
2f6a1ab0 | 169 | oss_lib="-lossaudio" |
8ef92a88 | 170 | aio_lib="-lpthread" |
7d3505c5 | 171 | ;; |
83fb7adf FB |
172 | Darwin) |
173 | bsd="yes" | |
174 | darwin="yes" | |
831b7825 | 175 | darwin_user="yes" |
fd677642 | 176 | cocoa="yes" |
0c58ac1c | 177 | audio_drv_list="coreaudio" |
c2de5c91 | 178 | audio_possible_drivers="coreaudio sdl fmod" |
6f30fa85 | 179 | OS_CFLAGS="-mdynamic-no-pic" |
c2c59c3e | 180 | OS_LDFLAGS="-framework CoreFoundation -framework IOKit" |
8ef92a88 | 181 | aio_lib="-lpthread" |
83fb7adf | 182 | ;; |
ec530c81 | 183 | SunOS) |
c2b84fab TS |
184 | solaris="yes" |
185 | make="gmake" | |
186 | install="ginstall" | |
0475a5ca | 187 | needs_libsunmath="no" |
c2b84fab | 188 | solarisrev=`uname -r | cut -f2 -d.` |
ef18c883 TS |
189 | # have to select again, because `uname -m` returns i86pc |
190 | # even on an x86_64 box. | |
191 | solariscpu=`isainfo -k` | |
192 | if test "${solariscpu}" = "amd64" ; then | |
193 | cpu="x86_64" | |
194 | fi | |
c2b84fab | 195 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
0475a5ca TS |
196 | if test "$solarisrev" -le 9 ; then |
197 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then | |
198 | needs_libsunmath="yes" | |
199 | else | |
200 | echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" | |
201 | echo "libsunmath from the Sun Studio compilers tools, due to a lack of" | |
202 | echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" | |
203 | echo "Studio 11 can be downloaded from www.sun.com." | |
204 | exit 1 | |
205 | fi | |
206 | fi | |
207 | if test "$solarisrev" -ge 9 ; then | |
c2b84fab TS |
208 | kqemu="yes" |
209 | fi | |
86b2bd93 | 210 | fi |
6b4d2ba1 | 211 | if test -f /usr/include/sys/soundcard.h ; then |
0c58ac1c | 212 | audio_drv_list="oss" |
6b4d2ba1 | 213 | fi |
c2de5c91 | 214 | audio_possible_drivers="oss sdl" |
86b2bd93 | 215 | ;; |
b29fe3ed | 216 | AIX) |
217 | aix="yes" | |
218 | make="gmake" | |
219 | ;; | |
1d14ffa9 | 220 | *) |
0c58ac1c | 221 | audio_drv_list="oss" |
b8e59f18 | 222 | audio_possible_drivers="oss alsa sdl esd pa" |
5327cf48 | 223 | linux="yes" |
831b7825 | 224 | linux_user="yes" |
68063649 | 225 | usb="linux" |
07f4ddbf | 226 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
c9ec1fe4 | 227 | kqemu="yes" |
c2de5c91 | 228 | audio_possible_drivers="$audio_possible_drivers fmod" |
c9ec1fe4 | 229 | fi |
fb065187 | 230 | ;; |
7d13299d FB |
231 | esac |
232 | ||
7d3505c5 | 233 | if [ "$bsd" = "yes" ] ; then |
b1a550a0 | 234 | if [ "$darwin" != "yes" ] ; then |
83fb7adf | 235 | make="gmake" |
68063649 | 236 | usb="bsd" |
83fb7adf | 237 | fi |
84778508 | 238 | bsd_user="yes" |
7d3505c5 FB |
239 | fi |
240 | ||
7d13299d | 241 | # find source path |
ad064840 | 242 | source_path=`dirname "$0"` |
59faef3a AZ |
243 | source_path_used="no" |
244 | workdir=`pwd` | |
ad064840 | 245 | if [ -z "$source_path" ]; then |
59faef3a | 246 | source_path=$workdir |
ad064840 PB |
247 | else |
248 | source_path=`cd "$source_path"; pwd` | |
7d13299d | 249 | fi |
724db118 | 250 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
7d13299d | 251 | |
85aa5189 | 252 | werror="no" |
0d1e2394 FB |
253 | # generate compile errors on warnings for development builds |
254 | #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then | |
255 | #werror="yes"; | |
256 | #fi | |
85aa5189 | 257 | |
7d13299d | 258 | for opt do |
a46e4035 | 259 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
7d13299d | 260 | case "$opt" in |
2efc3265 FB |
261 | --help|-h) show_help=yes |
262 | ;; | |
b1a550a0 | 263 | --prefix=*) prefix="$optarg" |
7d13299d | 264 | ;; |
b1a550a0 | 265 | --interp-prefix=*) interp_prefix="$optarg" |
32ce6337 | 266 | ;; |
b1a550a0 | 267 | --source-path=*) source_path="$optarg" |
ad064840 | 268 | source_path_used="yes" |
7d13299d | 269 | ;; |
b1a550a0 | 270 | --cross-prefix=*) cross_prefix="$optarg" |
7d13299d | 271 | ;; |
b1a550a0 | 272 | --cc=*) cc="$optarg" |
7d13299d | 273 | ;; |
b1a550a0 | 274 | --host-cc=*) host_cc="$optarg" |
83469015 | 275 | ;; |
b1a550a0 | 276 | --make=*) make="$optarg" |
7d13299d | 277 | ;; |
6a882643 PB |
278 | --install=*) install="$optarg" |
279 | ;; | |
b1a550a0 | 280 | --extra-cflags=*) CFLAGS="$optarg" |
7d13299d | 281 | ;; |
b1a550a0 | 282 | --extra-ldflags=*) LDFLAGS="$optarg" |
7d13299d | 283 | ;; |
b1a550a0 | 284 | --cpu=*) cpu="$optarg" |
7d13299d | 285 | ;; |
b1a550a0 | 286 | --target-list=*) target_list="$optarg" |
de83cd02 | 287 | ;; |
7d13299d FB |
288 | --enable-gprof) gprof="yes" |
289 | ;; | |
43ce4dfe FB |
290 | --static) static="yes" |
291 | ;; | |
97a847bc FB |
292 | --disable-sdl) sdl="no" |
293 | ;; | |
0c58ac1c | 294 | --fmod-lib=*) fmod_lib="$optarg" |
1d14ffa9 | 295 | ;; |
c2de5c91 | 296 | --fmod-inc=*) fmod_inc="$optarg" |
297 | ;; | |
2f6a1ab0 BS |
298 | --oss-lib=*) oss_lib="$optarg" |
299 | ;; | |
2fa7d3bf | 300 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
102a52e4 | 301 | ;; |
0c58ac1c | 302 | --audio-drv-list=*) audio_drv_list="$optarg" |
102a52e4 | 303 | ;; |
03b4fe7d AL |
304 | --enable-sparse) sparse="yes" |
305 | ;; | |
306 | --disable-sparse) sparse="no" | |
307 | ;; | |
8d5d2d4c TS |
308 | --disable-vnc-tls) vnc_tls="no" |
309 | ;; | |
443f1376 | 310 | --disable-slirp) slirp="no" |
1d14ffa9 | 311 | ;; |
e0e6c8c0 | 312 | --disable-vde) vde="no" |
8a16d273 | 313 | ;; |
c9ec1fe4 | 314 | --disable-kqemu) kqemu="no" |
1d14ffa9 | 315 | ;; |
2e4d9fb1 AJ |
316 | --disable-brlapi) brlapi="no" |
317 | ;; | |
fb599c9a AZ |
318 | --disable-bluez) bluez="no" |
319 | ;; | |
7ba1e619 AL |
320 | --disable-kvm) kvm="no" |
321 | ;; | |
05c2a3e7 FB |
322 | --enable-profiler) profiler="yes" |
323 | ;; | |
c2de5c91 | 324 | --enable-cocoa) |
325 | cocoa="yes" ; | |
326 | sdl="no" ; | |
327 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" | |
1d14ffa9 | 328 | ;; |
97ccc689 FB |
329 | --disable-gfx-check) check_gfx="no" |
330 | ;; | |
cad25d69 | 331 | --disable-system) softmmu="no" |
0a8e90f4 | 332 | ;; |
cad25d69 | 333 | --enable-system) softmmu="yes" |
0a8e90f4 | 334 | ;; |
831b7825 | 335 | --disable-linux-user) linux_user="no" |
0a8e90f4 | 336 | ;; |
831b7825 TS |
337 | --enable-linux-user) linux_user="yes" |
338 | ;; | |
339 | --disable-darwin-user) darwin_user="no" | |
340 | ;; | |
341 | --enable-darwin-user) darwin_user="yes" | |
0a8e90f4 | 342 | ;; |
84778508 BS |
343 | --disable-bsd-user) bsd_user="no" |
344 | ;; | |
345 | --enable-bsd-user) bsd_user="yes" | |
346 | ;; | |
c5937220 PB |
347 | --enable-uname-release=*) uname_release="$optarg" |
348 | ;; | |
3142255c BS |
349 | --sparc_cpu=*) |
350 | sparc_cpu="$optarg" | |
351 | case $sparc_cpu in | |
352 | v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" | |
353 | target_cpu="sparc"; cpu="sparc" ;; | |
354 | v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" | |
355 | target_cpu="sparc"; cpu="sparc" ;; | |
356 | v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64" | |
357 | target_cpu="sparc64"; cpu="sparc64" ;; | |
358 | *) echo "undefined SPARC architecture. Exiting";exit 1;; | |
359 | esac | |
360 | ;; | |
85aa5189 FB |
361 | --enable-werror) werror="yes" |
362 | ;; | |
363 | --disable-werror) werror="no" | |
364 | ;; | |
4d3b6f6e AZ |
365 | --disable-curses) curses="no" |
366 | ;; | |
bd0c5661 PB |
367 | --disable-nptl) nptl="no" |
368 | ;; | |
8ff9cbf7 | 369 | --enable-mixemu) mixemu="yes" |
370 | ;; | |
414f0dab BS |
371 | --disable-aio) aio="no" |
372 | ;; | |
77755340 TS |
373 | --disable-blobs) blobs="no" |
374 | ;; | |
eac30262 AL |
375 | --kerneldir=*) kerneldir="$optarg" |
376 | ;; | |
7f1559c6 AZ |
377 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
378 | ;; | |
7d13299d FB |
379 | esac |
380 | done | |
381 | ||
6f30fa85 | 382 | # default flags for all hosts |
ac41a620 BS |
383 | CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing" |
384 | CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings" | |
6f30fa85 | 385 | LDFLAGS="$LDFLAGS -g" |
85aa5189 FB |
386 | if test "$werror" = "yes" ; then |
387 | CFLAGS="$CFLAGS -Werror" | |
388 | fi | |
6f30fa85 | 389 | |
d2c7c9b8 BS |
390 | if test "$solaris" = "no" ; then |
391 | if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then | |
392 | LDFLAGS="$LDFLAGS -Wl,--warn-common" | |
393 | fi | |
49237acd BS |
394 | fi |
395 | ||
3142255c BS |
396 | # |
397 | # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right | |
398 | # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) | |
399 | # | |
40293e58 | 400 | case "$cpu" in |
3142255c BS |
401 | sparc) if test -z "$sparc_cpu" ; then |
402 | ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__" | |
403 | ARCH_LDFLAGS="-m32" | |
404 | else | |
405 | ARCH_CFLAGS="${SP_CFLAGS}" | |
406 | ARCH_LDFLAGS="${SP_LDFLAGS}" | |
407 | fi | |
408 | ;; | |
409 | sparc64) if test -z "$sparc_cpu" ; then | |
410 | ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__" | |
411 | ARCH_LDFLAGS="-m64" | |
412 | else | |
413 | ARCH_CFLAGS="${SP_CFLAGS}" | |
414 | ARCH_LDFLAGS="${SP_LDFLAGS}" | |
415 | fi | |
416 | ;; | |
76d83bde TS |
417 | s390) |
418 | ARCH_CFLAGS="-march=z900" | |
419 | ;; | |
40293e58 FB |
420 | i386) |
421 | ARCH_CFLAGS="-m32" | |
422 | ARCH_LDFLAGS="-m32" | |
423 | ;; | |
424 | x86_64) | |
425 | ARCH_CFLAGS="-m64" | |
426 | ARCH_LDFLAGS="-m64" | |
427 | ;; | |
3142255c BS |
428 | esac |
429 | ||
af5db58e PB |
430 | if test x"$show_help" = x"yes" ; then |
431 | cat << EOF | |
432 | ||
433 | Usage: configure [options] | |
434 | Options: [defaults in brackets after descriptions] | |
435 | ||
436 | EOF | |
437 | echo "Standard options:" | |
438 | echo " --help print this message" | |
439 | echo " --prefix=PREFIX install in PREFIX [$prefix]" | |
440 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." | |
441 | echo " use %M for cpu name [$interp_prefix]" | |
442 | echo " --target-list=LIST set target list [$target_list]" | |
443 | echo "" | |
444 | echo "kqemu kernel acceleration support:" | |
445 | echo " --disable-kqemu disable kqemu support" | |
af5db58e PB |
446 | echo "" |
447 | echo "Advanced options (experts only):" | |
448 | echo " --source-path=PATH path of source code [$source_path]" | |
449 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" | |
450 | echo " --cc=CC use C compiler CC [$cc]" | |
451 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." | |
452 | echo " --make=MAKE use specified make [$make]" | |
6a882643 | 453 | echo " --install=INSTALL use specified install [$install]" |
af5db58e | 454 | echo " --static enable static build [$static]" |
890b1658 AL |
455 | echo " --enable-sparse enable sparse checker" |
456 | echo " --disable-sparse disable sparse checker (default)" | |
85aa5189 | 457 | echo " --disable-werror disable compilation abort on warning" |
fe8f78e4 | 458 | echo " --disable-sdl disable SDL" |
af5db58e | 459 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
c2de5c91 | 460 | echo " --audio-drv-list=LIST set audio drivers list:" |
461 | echo " Available drivers: $audio_possible_drivers" | |
462 | echo " --audio-card-list=LIST set list of additional emulated audio cards" | |
463 | echo " Available cards: ac97 adlib cs4231a gus" | |
8ff9cbf7 | 464 | echo " --enable-mixemu enable mixer emulation" |
2e4d9fb1 | 465 | echo " --disable-brlapi disable BrlAPI" |
8d5d2d4c | 466 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
af896aaa | 467 | echo " --disable-curses disable curses output" |
fb599c9a | 468 | echo " --disable-bluez disable bluez stack connectivity" |
7ba1e619 | 469 | echo " --disable-kvm disable KVM acceleration support" |
bd0c5661 | 470 | echo " --disable-nptl disable usermode NPTL support" |
af5db58e PB |
471 | echo " --enable-system enable all system emulation targets" |
472 | echo " --disable-system disable all system emulation targets" | |
831b7825 TS |
473 | echo " --enable-linux-user enable all linux usermode emulation targets" |
474 | echo " --disable-linux-user disable all linux usermode emulation targets" | |
475 | echo " --enable-darwin-user enable all darwin usermode emulation targets" | |
476 | echo " --disable-darwin-user disable all darwin usermode emulation targets" | |
84778508 BS |
477 | echo " --enable-bsd-user enable all BSD usermode emulation targets" |
478 | echo " --disable-bsd-user disable all BSD usermode emulation targets" | |
af5db58e PB |
479 | echo " --fmod-lib path to FMOD library" |
480 | echo " --fmod-inc path to FMOD includes" | |
2f6a1ab0 | 481 | echo " --oss-lib path to OSS library" |
c5937220 | 482 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
3142255c | 483 | echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" |
e0e6c8c0 | 484 | echo " --disable-vde disable support for vde network" |
414f0dab | 485 | echo " --disable-aio disable AIO support" |
77755340 | 486 | echo " --disable-blobs disable installing provided firmware blobs" |
eac30262 | 487 | echo " --kerneldir=PATH look for kernel includes in PATH" |
af5db58e | 488 | echo "" |
5bf08934 | 489 | echo "NOTE: The object files are built at the place where configure is launched" |
af5db58e PB |
490 | exit 1 |
491 | fi | |
492 | ||
7d13299d FB |
493 | cc="${cross_prefix}${cc}" |
494 | ar="${cross_prefix}${ar}" | |
495 | strip="${cross_prefix}${strip}" | |
496 | ||
064aae13 PB |
497 | # check that the C compiler works. |
498 | cat > $TMPC <<EOF | |
499 | int main(void) {} | |
500 | EOF | |
501 | ||
db7287ed | 502 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then |
064aae13 PB |
503 | : C compiler works ok |
504 | else | |
505 | echo "ERROR: \"$cc\" either does not exist or does not work" | |
506 | exit 1 | |
a7350fa1 FB |
507 | fi |
508 | ||
cd01b4a3 AL |
509 | # check compiler to see if we're on mingw32 |
510 | cat > $TMPC <<EOF | |
511 | #include <windows.h> | |
512 | #ifndef _WIN32 | |
513 | #error not windows | |
514 | #endif | |
515 | int main(void) {} | |
516 | EOF | |
517 | ||
518 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then | |
519 | mingw32="yes" | |
520 | fi | |
521 | ||
67b915a5 | 522 | if test "$mingw32" = "yes" ; then |
5327cf48 | 523 | linux="no" |
67b915a5 | 524 | EXESUF=".exe" |
9f059eca | 525 | oss="no" |
cd01b4a3 | 526 | linux_user="no" |
84778508 | 527 | bsd_user="no" |
cd01b4a3 AL |
528 | fi |
529 | ||
997306fc | 530 | if [ "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then |
cd01b4a3 | 531 | AIOLIBS= |
997306fc | 532 | elif [ "$bsd" = "yes" ]; then |
8ef92a88 | 533 | AIOLIBS="$aio_lib" |
cd01b4a3 AL |
534 | else |
535 | # Some Linux architectures (e.g. s390) don't imply -lpthread automatically. | |
536 | AIOLIBS="-lrt -lpthread" | |
67b915a5 FB |
537 | fi |
538 | ||
03b4fe7d AL |
539 | if test ! -x "$(which cgcc 2>/dev/null)"; then |
540 | sparse="no" | |
541 | fi | |
542 | ||
ec530c81 FB |
543 | # |
544 | # Solaris specific configure tool chain decisions | |
545 | # | |
546 | if test "$solaris" = "yes" ; then | |
ec530c81 FB |
547 | solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` |
548 | if test -z "$solinst" ; then | |
549 | echo "Solaris install program not found. Use --install=/usr/ucb/install or" | |
550 | echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" | |
551 | echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" | |
552 | exit 1 | |
553 | fi | |
554 | if test "$solinst" = "/usr/sbin/install" ; then | |
555 | echo "Error: Solaris /usr/sbin/install is not an appropriate install program." | |
556 | echo "try ginstall from the GNU fileutils available from www.blastwave.org" | |
557 | echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" | |
558 | exit 1 | |
559 | fi | |
ec530c81 FB |
560 | sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` |
561 | if test -z "$sol_ar" ; then | |
562 | echo "Error: No path includes ar" | |
563 | if test -f /usr/ccs/bin/ar ; then | |
564 | echo "Add /usr/ccs/bin to your path and rerun configure" | |
565 | fi | |
566 | exit 1 | |
567 | fi | |
5fafdf24 | 568 | fi |
ec530c81 FB |
569 | |
570 | ||
5327cf48 FB |
571 | if test -z "$target_list" ; then |
572 | # these targets are portable | |
0a8e90f4 | 573 | if [ "$softmmu" = "yes" ] ; then |
2408a527 AJ |
574 | target_list="\ |
575 | i386-softmmu \ | |
576 | x86_64-softmmu \ | |
577 | arm-softmmu \ | |
578 | cris-softmmu \ | |
579 | m68k-softmmu \ | |
580 | mips-softmmu \ | |
581 | mipsel-softmmu \ | |
582 | mips64-softmmu \ | |
583 | mips64el-softmmu \ | |
584 | ppc-softmmu \ | |
585 | ppcemb-softmmu \ | |
586 | ppc64-softmmu \ | |
587 | sh4-softmmu \ | |
588 | sh4eb-softmmu \ | |
589 | sparc-softmmu \ | |
590 | " | |
0a8e90f4 | 591 | fi |
5327cf48 | 592 | # the following are Linux specific |
831b7825 | 593 | if [ "$linux_user" = "yes" ] ; then |
2408a527 AJ |
594 | target_list="${target_list}\ |
595 | i386-linux-user \ | |
596 | x86_64-linux-user \ | |
597 | alpha-linux-user \ | |
598 | arm-linux-user \ | |
599 | armeb-linux-user \ | |
600 | cris-linux-user \ | |
601 | m68k-linux-user \ | |
602 | mips-linux-user \ | |
603 | mipsel-linux-user \ | |
604 | ppc-linux-user \ | |
605 | ppc64-linux-user \ | |
606 | ppc64abi32-linux-user \ | |
607 | sh4-linux-user \ | |
608 | sh4eb-linux-user \ | |
609 | sparc-linux-user \ | |
610 | sparc64-linux-user \ | |
611 | sparc32plus-linux-user \ | |
612 | " | |
831b7825 TS |
613 | fi |
614 | # the following are Darwin specific | |
615 | if [ "$darwin_user" = "yes" ] ; then | |
2408a527 | 616 | target_list="$target_list i386-darwin-user ppc-darwin-user" |
5327cf48 | 617 | fi |
84778508 BS |
618 | # the following are BSD specific |
619 | if [ "$bsd_user" = "yes" ] ; then | |
620 | target_list="${target_list}\ | |
621 | sparc64-bsd-user \ | |
622 | " | |
623 | fi | |
6e20a45f | 624 | else |
b1a550a0 | 625 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
5327cf48 | 626 | fi |
0a8e90f4 PB |
627 | if test -z "$target_list" ; then |
628 | echo "No targets enabled" | |
629 | exit 1 | |
630 | fi | |
5327cf48 | 631 | |
7d13299d FB |
632 | if test -z "$cross_prefix" ; then |
633 | ||
634 | # --- | |
635 | # big/little endian test | |
636 | cat > $TMPC << EOF | |
637 | #include <inttypes.h> | |
638 | int main(int argc, char ** argv){ | |
1d14ffa9 FB |
639 | volatile uint32_t i=0x01234567; |
640 | return (*((uint8_t*)(&i))) == 0x67; | |
7d13299d FB |
641 | } |
642 | EOF | |
643 | ||
db7287ed | 644 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
7d13299d FB |
645 | $TMPE && bigendian="yes" |
646 | else | |
647 | echo big/little test failed | |
648 | fi | |
649 | ||
650 | else | |
651 | ||
652 | # if cross compiling, cannot launch a program, so make a static guess | |
0938cda5 | 653 | if test "$cpu" = "armv4b" \ |
f54b3f92 | 654 | -o "$cpu" = "hppa" \ |
0938cda5 AJ |
655 | -o "$cpu" = "m68k" \ |
656 | -o "$cpu" = "mips" \ | |
657 | -o "$cpu" = "mips64" \ | |
658 | -o "$cpu" = "powerpc" \ | |
659 | -o "$cpu" = "s390" \ | |
660 | -o "$cpu" = "sparc" \ | |
661 | -o "$cpu" = "sparc64"; then | |
7d13299d FB |
662 | bigendian="yes" |
663 | fi | |
664 | ||
665 | fi | |
666 | ||
b6853697 FB |
667 | # host long bits test |
668 | hostlongbits="32" | |
0938cda5 AJ |
669 | if test "$cpu" = "x86_64" \ |
670 | -o "$cpu" = "alpha" \ | |
671 | -o "$cpu" = "ia64" \ | |
672 | -o "$cpu" = "sparc64"; then | |
b6853697 FB |
673 | hostlongbits="64" |
674 | fi | |
675 | ||
810260a8 | 676 | # ppc specific hostlongbits selection |
677 | if test "$cpu" = "powerpc" ; then | |
9d56d2dc | 678 | if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then |
679 | grep -q __powerpc64__ $TMPI && hostlongbits=64 | |
810260a8 | 680 | else |
681 | echo hostlongbits test failed | |
ba69a08a | 682 | exit 1 |
810260a8 | 683 | fi |
684 | fi | |
685 | ||
e8cd23de | 686 | # check gcc options support |
04369ff2 FB |
687 | cat > $TMPC <<EOF |
688 | int main(void) { | |
04369ff2 FB |
689 | } |
690 | EOF | |
691 | ||
bd0c5661 PB |
692 | # Check host NPTL support |
693 | cat > $TMPC <<EOF | |
694 | #include <sched.h> | |
30813cea | 695 | #include <linux/futex.h> |
bd0c5661 PB |
696 | void foo() |
697 | { | |
698 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) | |
699 | #error bork | |
700 | #endif | |
701 | } | |
702 | EOF | |
703 | ||
704 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then | |
705 | : | |
706 | else | |
707 | nptl="no" | |
708 | fi | |
709 | ||
ac62922e AZ |
710 | ########################################## |
711 | # zlib check | |
712 | ||
713 | cat > $TMPC << EOF | |
714 | #include <zlib.h> | |
715 | int main(void) { zlibVersion(); return 0; } | |
716 | EOF | |
17e1592d | 717 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz 2> /dev/null ; then |
ac62922e AZ |
718 | : |
719 | else | |
720 | echo | |
721 | echo "Error: zlib check failed" | |
722 | echo "Make sure to have the zlib libs and headers installed." | |
723 | echo | |
724 | exit 1 | |
725 | fi | |
726 | ||
11d9f695 FB |
727 | ########################################## |
728 | # SDL probe | |
729 | ||
730 | sdl_too_old=no | |
731 | ||
732 | if test -z "$sdl" ; then | |
069b0bda TS |
733 | sdl_config="sdl-config" |
734 | sdl=no | |
735 | sdl_static=no | |
736 | ||
11d9f695 FB |
737 | cat > $TMPC << EOF |
738 | #include <SDL.h> | |
739 | #undef main /* We don't want SDL to override our main() */ | |
740 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
741 | EOF | |
d4742de8 | 742 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> $TMPSDLLOG ; then |
cd01b4a3 AL |
743 | _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` |
744 | if test "$_sdlversion" -lt 121 ; then | |
745 | sdl_too_old=yes | |
746 | else | |
747 | if test "$cocoa" = "no" ; then | |
748 | sdl=yes | |
069b0bda | 749 | fi |
cd01b4a3 | 750 | fi |
11d9f695 | 751 | |
cd01b4a3 AL |
752 | # static link with sdl ? |
753 | if test "$sdl" = "yes" ; then | |
754 | aa="no" | |
755 | `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" | |
756 | sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` | |
757 | if [ "$aa" = "yes" ] ; then | |
758 | sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" | |
759 | fi | |
760 | ||
761 | if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then | |
762 | sdl_static=yes | |
763 | fi | |
764 | fi # static link | |
765 | fi # sdl compile test | |
fd677642 | 766 | else |
069b0bda TS |
767 | # Make sure to disable cocoa if sdl was set |
768 | if test "$sdl" = "yes" ; then | |
769 | cocoa="no" | |
c2de5c91 | 770 | audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`" |
069b0bda | 771 | fi |
a6e022ad | 772 | fi # -z $sdl |
11d9f695 | 773 | |
8d5d2d4c TS |
774 | ########################################## |
775 | # VNC TLS detection | |
776 | if test "$vnc_tls" = "yes" ; then | |
ae6b5e5a AL |
777 | cat > $TMPC <<EOF |
778 | #include <gnutls/gnutls.h> | |
779 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } | |
780 | EOF | |
781 | vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` | |
782 | vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` | |
783 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \ | |
784 | $vnc_tls_libs 2> /dev/null ; then | |
785 | : | |
786 | else | |
787 | vnc_tls="no" | |
788 | fi | |
8d5d2d4c TS |
789 | fi |
790 | ||
8a16d273 TS |
791 | ########################################## |
792 | # vde libraries probe | |
793 | if test "$vde" = "yes" ; then | |
794 | cat > $TMPC << EOF | |
795 | #include <libvdeplug.h> | |
4a7f0e06 PB |
796 | int main(void) |
797 | { | |
798 | struct vde_open_args a = {0, 0, 0}; | |
799 | vde_open("", "", &a); | |
800 | return 0; | |
801 | } | |
8a16d273 | 802 | EOF |
4a7f0e06 | 803 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug 2> /dev/null ; then |
8a16d273 TS |
804 | : |
805 | else | |
e0e6c8c0 | 806 | vde="no" |
8a16d273 TS |
807 | fi |
808 | fi | |
809 | ||
8f28f3fb | 810 | ########################################## |
c2de5c91 | 811 | # Sound support libraries probe |
8f28f3fb | 812 | |
c2de5c91 | 813 | audio_drv_probe() |
814 | { | |
815 | drv=$1 | |
816 | hdr=$2 | |
817 | lib=$3 | |
818 | exp=$4 | |
819 | cfl=$5 | |
820 | cat > $TMPC << EOF | |
821 | #include <$hdr> | |
822 | int main(void) { $exp } | |
8f28f3fb | 823 | EOF |
c2de5c91 | 824 | if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then |
825 | : | |
826 | else | |
827 | echo | |
828 | echo "Error: $drv check failed" | |
829 | echo "Make sure to have the $drv libs and headers installed." | |
830 | echo | |
831 | exit 1 | |
832 | fi | |
833 | } | |
834 | ||
2fa7d3bf | 835 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
c2de5c91 | 836 | for drv in $audio_drv_list; do |
837 | case $drv in | |
838 | alsa) | |
839 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ | |
840 | "snd_pcm_t **handle; return snd_pcm_close(*handle);" | |
841 | ;; | |
842 | ||
843 | fmod) | |
844 | if test -z $fmod_lib || test -z $fmod_inc; then | |
845 | echo | |
846 | echo "Error: You must specify path to FMOD library and headers" | |
847 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" | |
848 | echo | |
849 | exit 1 | |
850 | fi | |
851 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" | |
852 | ;; | |
853 | ||
854 | esd) | |
855 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' | |
856 | ;; | |
b8e59f18 | 857 | |
858 | pa) | |
859 | audio_drv_probe $drv pulse/simple.h -lpulse-simple \ | |
860 | "pa_simple *s = NULL; pa_simple_free(s); return 0;" | |
861 | ;; | |
862 | ||
2f6a1ab0 BS |
863 | oss|sdl|core|wav|dsound) |
864 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) | |
865 | ;; | |
866 | ||
e4c63a6a | 867 | *) |
1c9b2a52 | 868 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
e4c63a6a | 869 | echo |
870 | echo "Error: Unknown driver '$drv' selected" | |
871 | echo "Possible drivers are: $audio_possible_drivers" | |
872 | echo | |
873 | exit 1 | |
874 | } | |
875 | ;; | |
c2de5c91 | 876 | esac |
877 | done | |
8f28f3fb | 878 | |
2e4d9fb1 AJ |
879 | ########################################## |
880 | # BrlAPI probe | |
881 | ||
882 | if test -z "$brlapi" ; then | |
883 | brlapi=no | |
884 | cat > $TMPC << EOF | |
885 | #include <brlapi.h> | |
886 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } | |
887 | EOF | |
a40e56d5 | 888 | if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi 2> /dev/null ; then |
2e4d9fb1 AJ |
889 | brlapi=yes |
890 | fi # brlapi compile test | |
891 | fi # -z $brlapi | |
892 | ||
4d3b6f6e AZ |
893 | ########################################## |
894 | # curses probe | |
895 | ||
896 | if test "$curses" = "yes" ; then | |
897 | curses=no | |
898 | cat > $TMPC << EOF | |
899 | #include <curses.h> | |
900 | int main(void) { return curses_version(); } | |
901 | EOF | |
af896aaa | 902 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses 2> /dev/null ; then |
4d3b6f6e AZ |
903 | curses=yes |
904 | fi | |
905 | fi # test "$curses" | |
906 | ||
fb599c9a AZ |
907 | ########################################## |
908 | # bluez support probe | |
909 | if test "$bluez" = "yes" ; then | |
910 | `pkg-config bluez` || bluez="no" | |
911 | fi | |
912 | if test "$bluez" = "yes" ; then | |
e820e3f4 AZ |
913 | cat > $TMPC << EOF |
914 | #include <bluetooth/bluetooth.h> | |
915 | int main(void) { return bt_error(0); } | |
916 | EOF | |
fb599c9a AZ |
917 | bluez_cflags=`pkg-config --cflags bluez` |
918 | bluez_libs=`pkg-config --libs bluez` | |
17e1592d | 919 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \ |
e820e3f4 AZ |
920 | $bluez_libs 2> /dev/null ; then |
921 | : | |
922 | else | |
923 | bluez="no" | |
924 | fi | |
fb599c9a AZ |
925 | fi |
926 | ||
7ba1e619 AL |
927 | ########################################## |
928 | # kvm probe | |
929 | if test "$kvm" = "yes" ; then | |
930 | cat > $TMPC <<EOF | |
931 | #include <linux/kvm.h> | |
932 | #if !defined(KVM_API_VERSION) || \ | |
933 | KVM_API_VERSION < 12 || \ | |
934 | KVM_API_VERSION > 12 || \ | |
935 | !defined(KVM_CAP_USER_MEMORY) || \ | |
936 | !defined(KVM_CAP_SET_TSS_ADDR) | |
937 | #error Invalid KVM version | |
938 | #endif | |
939 | int main(void) { return 0; } | |
940 | EOF | |
eac30262 AL |
941 | if test "$kerneldir" != "" ; then |
942 | kvm_cflags=-I"$kerneldir"/include | |
943 | else | |
944 | kvm_cflags="" | |
945 | fi | |
7ba1e619 AL |
946 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \ |
947 | 2>/dev/null ; then | |
948 | : | |
949 | else | |
950 | kvm="no" | |
951 | fi | |
952 | fi | |
953 | ||
414f0dab BS |
954 | ########################################## |
955 | # AIO probe | |
956 | if test "$aio" = "yes" ; then | |
957 | aio=no | |
958 | cat > $TMPC << EOF | |
959 | #include <aio.h> | |
960 | int main(void) { return aio_write(NULL); } | |
961 | EOF | |
962 | if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then | |
963 | aio=yes | |
964 | fi | |
965 | fi | |
966 | ||
bf9298b9 AL |
967 | ########################################## |
968 | # iovec probe | |
969 | cat > $TMPC <<EOF | |
970 | #include <sys/uio.h> | |
971 | int main(void) { struct iovec iov; return 0; } | |
972 | EOF | |
973 | iovec=no | |
974 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then | |
975 | iovec=yes | |
976 | fi | |
977 | ||
cc8ae6de | 978 | # Check if tools are available to build documentation. |
6c591867 TS |
979 | if [ -x "`which texi2html 2>/dev/null`" ] && \ |
980 | [ -x "`which pod2man 2>/dev/null`" ]; then | |
cc8ae6de PB |
981 | build_docs="yes" |
982 | fi | |
983 | ||
11d9f695 | 984 | if test "$mingw32" = "yes" ; then |
308c3593 | 985 | if test -z "$prefix" ; then |
17e90973 | 986 | prefix="c:\\\\Program Files\\\\Qemu" |
308c3593 PB |
987 | fi |
988 | mansuffix="" | |
989 | datasuffix="" | |
990 | docsuffix="" | |
991 | binsuffix="" | |
11d9f695 | 992 | else |
308c3593 PB |
993 | if test -z "$prefix" ; then |
994 | prefix="/usr/local" | |
995 | fi | |
996 | mansuffix="/share/man" | |
997 | datasuffix="/share/qemu" | |
998 | docsuffix="/share/doc/qemu" | |
999 | binsuffix="/bin" | |
11d9f695 | 1000 | fi |
5a67135a | 1001 | |
43ce4dfe | 1002 | echo "Install prefix $prefix" |
308c3593 PB |
1003 | echo "BIOS directory $prefix$datasuffix" |
1004 | echo "binary directory $prefix$binsuffix" | |
11d9f695 | 1005 | if test "$mingw32" = "no" ; then |
308c3593 | 1006 | echo "Manual directory $prefix$mansuffix" |
43ce4dfe | 1007 | echo "ELF interp prefix $interp_prefix" |
11d9f695 | 1008 | fi |
5a67135a | 1009 | echo "Source path $source_path" |
43ce4dfe | 1010 | echo "C compiler $cc" |
83469015 | 1011 | echo "Host C compiler $host_cc" |
db7287ed | 1012 | echo "ARCH_CFLAGS $ARCH_CFLAGS" |
43ce4dfe | 1013 | echo "make $make" |
6a882643 | 1014 | echo "install $install" |
43ce4dfe | 1015 | echo "host CPU $cpu" |
de83cd02 | 1016 | echo "host big endian $bigendian" |
97a847bc | 1017 | echo "target list $target_list" |
43ce4dfe | 1018 | echo "gprof enabled $gprof" |
03b4fe7d | 1019 | echo "sparse enabled $sparse" |
05c2a3e7 | 1020 | echo "profiler $profiler" |
43ce4dfe | 1021 | echo "static build $static" |
85aa5189 | 1022 | echo "-Werror enabled $werror" |
5b0753e0 FB |
1023 | if test "$darwin" = "yes" ; then |
1024 | echo "Cocoa support $cocoa" | |
1025 | fi | |
97a847bc | 1026 | echo "SDL support $sdl" |
e4afee97 FB |
1027 | if test "$sdl" != "no" ; then |
1028 | echo "SDL static link $sdl_static" | |
1029 | fi | |
4d3b6f6e | 1030 | echo "curses support $curses" |
67b915a5 | 1031 | echo "mingw32 support $mingw32" |
0c58ac1c | 1032 | echo "Audio drivers $audio_drv_list" |
1033 | echo "Extra audio cards $audio_card_list" | |
8ff9cbf7 | 1034 | echo "Mixer emulation $mixemu" |
8d5d2d4c TS |
1035 | echo "VNC TLS support $vnc_tls" |
1036 | if test "$vnc_tls" = "yes" ; then | |
1037 | echo " TLS CFLAGS $vnc_tls_cflags" | |
1038 | echo " TLS LIBS $vnc_tls_libs" | |
1039 | fi | |
3142255c BS |
1040 | if test -n "$sparc_cpu"; then |
1041 | echo "Target Sparc Arch $sparc_cpu" | |
1042 | fi | |
07f4ddbf | 1043 | echo "kqemu support $kqemu" |
2e4d9fb1 | 1044 | echo "brlapi support $brlapi" |
cc8ae6de | 1045 | echo "Documentation $build_docs" |
c5937220 PB |
1046 | [ ! -z "$uname_release" ] && \ |
1047 | echo "uname -r $uname_release" | |
bd0c5661 | 1048 | echo "NPTL support $nptl" |
8a16d273 | 1049 | echo "vde support $vde" |
414f0dab | 1050 | echo "AIO support $aio" |
77755340 | 1051 | echo "Install blobs $blobs" |
7ba1e619 | 1052 | echo "KVM support $kvm" |
67b915a5 | 1053 | |
97a847bc | 1054 | if test $sdl_too_old = "yes"; then |
24b55b96 | 1055 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
7c1f25b4 | 1056 | fi |
d4742de8 | 1057 | if [ -s $TMPSDLLOG ]; then |
20b40c6a | 1058 | echo "The error log from compiling the libSDL test is: " |
d4742de8 | 1059 | cat $TMPSDLLOG |
20b40c6a | 1060 | fi |
24b55b96 FB |
1061 | #if test "$sdl_static" = "no"; then |
1062 | # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" | |
1063 | #fi | |
97a847bc FB |
1064 | config_mak="config-host.mak" |
1065 | config_h="config-host.h" | |
7d13299d | 1066 | |
7c1f25b4 | 1067 | #echo "Creating $config_mak and $config_h" |
7d13299d | 1068 | |
15d9ca0f TS |
1069 | test -f $config_h && mv $config_h ${config_h}~ |
1070 | ||
97a847bc | 1071 | echo "# Automatically generated by configure - do not modify" > $config_mak |
29517134 | 1072 | echo "# Configured with: $0 $@" >> $config_mak |
97a847bc | 1073 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
7d13299d | 1074 | |
97a847bc | 1075 | echo "prefix=$prefix" >> $config_mak |
308c3593 PB |
1076 | echo "bindir=\${prefix}$binsuffix" >> $config_mak |
1077 | echo "mandir=\${prefix}$mansuffix" >> $config_mak | |
1078 | echo "datadir=\${prefix}$datasuffix" >> $config_mak | |
4ad5b06d | 1079 | echo "docdir=\${prefix}$docsuffix" >> $config_mak |
308c3593 | 1080 | echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h |
97a847bc | 1081 | echo "MAKE=$make" >> $config_mak |
6a882643 | 1082 | echo "INSTALL=$install" >> $config_mak |
97a847bc | 1083 | echo "CC=$cc" >> $config_mak |
97a847bc FB |
1084 | echo "HOST_CC=$host_cc" >> $config_mak |
1085 | echo "AR=$ar" >> $config_mak | |
1086 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak | |
40293e58 FB |
1087 | # XXX: only use CFLAGS and LDFLAGS ? |
1088 | # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross | |
1089 | # compilation of dyngen tool (useful for win32 build on Linux host) | |
6f30fa85 | 1090 | echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak |
3142255c BS |
1091 | echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak |
1092 | echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak | |
1093 | echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak | |
97a847bc FB |
1094 | echo "CFLAGS=$CFLAGS" >> $config_mak |
1095 | echo "LDFLAGS=$LDFLAGS" >> $config_mak | |
67b915a5 | 1096 | echo "EXESUF=$EXESUF" >> $config_mak |
70956b77 | 1097 | echo "AIOLIBS=$AIOLIBS" >> $config_mak |
2408a527 AJ |
1098 | case "$cpu" in |
1099 | i386) | |
1100 | echo "ARCH=i386" >> $config_mak | |
1101 | echo "#define HOST_I386 1" >> $config_h | |
1102 | ;; | |
1103 | x86_64) | |
1104 | echo "ARCH=x86_64" >> $config_mak | |
1105 | echo "#define HOST_X86_64 1" >> $config_h | |
1106 | ;; | |
1107 | alpha) | |
1108 | echo "ARCH=alpha" >> $config_mak | |
1109 | echo "#define HOST_ALPHA 1" >> $config_h | |
1110 | ;; | |
1111 | armv4b) | |
1112 | echo "ARCH=arm" >> $config_mak | |
1113 | echo "#define HOST_ARM 1" >> $config_h | |
1114 | ;; | |
1115 | armv4l) | |
1116 | echo "ARCH=arm" >> $config_mak | |
1117 | echo "#define HOST_ARM 1" >> $config_h | |
1118 | ;; | |
1119 | cris) | |
1120 | echo "ARCH=cris" >> $config_mak | |
1121 | echo "#define HOST_CRIS 1" >> $config_h | |
1122 | ;; | |
1123 | hppa) | |
1124 | echo "ARCH=hppa" >> $config_mak | |
1125 | echo "#define HOST_HPPA 1" >> $config_h | |
1126 | ;; | |
1127 | ia64) | |
1128 | echo "ARCH=ia64" >> $config_mak | |
1129 | echo "#define HOST_IA64 1" >> $config_h | |
1130 | ;; | |
1131 | m68k) | |
1132 | echo "ARCH=m68k" >> $config_mak | |
1133 | echo "#define HOST_M68K 1" >> $config_h | |
1134 | ;; | |
1135 | mips) | |
1136 | echo "ARCH=mips" >> $config_mak | |
1137 | echo "#define HOST_MIPS 1" >> $config_h | |
1138 | ;; | |
1139 | mips64) | |
1140 | echo "ARCH=mips64" >> $config_mak | |
1141 | echo "#define HOST_MIPS64 1" >> $config_h | |
1142 | ;; | |
1143 | powerpc) | |
810260a8 | 1144 | if test "$hostlongbits" = "32"; then |
1145 | echo "ARCH=ppc" >> $config_mak | |
1146 | echo "#define HOST_PPC 1" >> $config_h | |
1147 | else | |
1148 | echo "ARCH=ppc64" >> $config_mak | |
1149 | echo "#define HOST_PPC64 1" >> $config_h | |
1150 | fi | |
2408a527 AJ |
1151 | ;; |
1152 | s390) | |
1153 | echo "ARCH=s390" >> $config_mak | |
1154 | echo "#define HOST_S390 1" >> $config_h | |
1155 | ;; | |
1156 | sparc) | |
1157 | echo "ARCH=sparc" >> $config_mak | |
1158 | echo "#define HOST_SPARC 1" >> $config_h | |
1159 | ;; | |
1160 | sparc64) | |
1161 | echo "ARCH=sparc64" >> $config_mak | |
1162 | echo "#define HOST_SPARC64 1" >> $config_h | |
1163 | ;; | |
1164 | *) | |
1165 | echo "Unsupported CPU = $cpu" | |
1166 | exit 1 | |
1167 | ;; | |
1168 | esac | |
03b4fe7d AL |
1169 | if test "$sparse" = "yes" ; then |
1170 | echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak | |
1171 | echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak | |
1172 | echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak | |
1173 | fi | |
7d13299d | 1174 | if test "$bigendian" = "yes" ; then |
97a847bc FB |
1175 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
1176 | echo "#define WORDS_BIGENDIAN 1" >> $config_h | |
1177 | fi | |
b6853697 | 1178 | echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h |
67b915a5 FB |
1179 | if test "$mingw32" = "yes" ; then |
1180 | echo "CONFIG_WIN32=yes" >> $config_mak | |
11d9f695 | 1181 | echo "#define CONFIG_WIN32 1" >> $config_h |
210fa556 PB |
1182 | else |
1183 | cat > $TMPC << EOF | |
1184 | #include <byteswap.h> | |
1185 | int main(void) { return bswap_32(0); } | |
1186 | EOF | |
db7287ed | 1187 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
210fa556 PB |
1188 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
1189 | fi | |
1360677c BS |
1190 | cat > $TMPC << EOF |
1191 | #include <sys/endian.h> | |
1192 | #include <sys/types.h> | |
1193 | #include <machine/bswap.h> | |
1194 | int main(void) { return bswap32(0); } | |
1195 | EOF | |
1196 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then | |
1197 | echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h | |
1198 | fi | |
67b915a5 | 1199 | fi |
128ab2ff BS |
1200 | |
1201 | if [ "$openbsd" = "yes" ] ; then | |
1202 | echo "#define ENOTSUP 4096" >> $config_h | |
1203 | fi | |
1204 | ||
83fb7adf FB |
1205 | if test "$darwin" = "yes" ; then |
1206 | echo "CONFIG_DARWIN=yes" >> $config_mak | |
1207 | echo "#define CONFIG_DARWIN 1" >> $config_h | |
1208 | fi | |
b29fe3ed | 1209 | |
1210 | if test "$aix" = "yes" ; then | |
1211 | echo "CONFIG_AIX=yes" >> $config_mak | |
1212 | echo "#define CONFIG_AIX 1" >> $config_h | |
1213 | fi | |
1214 | ||
ec530c81 FB |
1215 | if test "$solaris" = "yes" ; then |
1216 | echo "CONFIG_SOLARIS=yes" >> $config_mak | |
38cfa06c | 1217 | echo "#define HOST_SOLARIS $solarisrev" >> $config_h |
0475a5ca TS |
1218 | if test "$needs_libsunmath" = "yes" ; then |
1219 | echo "NEEDS_LIBSUNMATH=yes" >> $config_mak | |
1220 | echo "#define NEEDS_LIBSUNMATH 1" >> $config_h | |
1221 | fi | |
ec530c81 | 1222 | fi |
3142255c BS |
1223 | if test -n "$sparc_cpu"; then |
1224 | echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak | |
1225 | echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h | |
1226 | fi | |
67b915a5 FB |
1227 | if test "$gdbstub" = "yes" ; then |
1228 | echo "CONFIG_GDBSTUB=yes" >> $config_mak | |
1229 | echo "#define CONFIG_GDBSTUB 1" >> $config_h | |
1230 | fi | |
97a847bc FB |
1231 | if test "$gprof" = "yes" ; then |
1232 | echo "TARGET_GPROF=yes" >> $config_mak | |
1233 | echo "#define HAVE_GPROF 1" >> $config_h | |
1234 | fi | |
1235 | if test "$static" = "yes" ; then | |
1236 | echo "CONFIG_STATIC=yes" >> $config_mak | |
50863472 | 1237 | echo "#define CONFIG_STATIC 1" >> $config_h |
7d13299d | 1238 | fi |
05c2a3e7 FB |
1239 | if test $profiler = "yes" ; then |
1240 | echo "#define CONFIG_PROFILER 1" >> $config_h | |
1241 | fi | |
c20709aa FB |
1242 | if test "$slirp" = "yes" ; then |
1243 | echo "CONFIG_SLIRP=yes" >> $config_mak | |
1244 | echo "#define CONFIG_SLIRP 1" >> $config_h | |
1245 | fi | |
8a16d273 TS |
1246 | if test "$vde" = "yes" ; then |
1247 | echo "CONFIG_VDE=yes" >> $config_mak | |
1248 | echo "#define CONFIG_VDE 1" >> $config_h | |
1249 | echo "VDE_LIBS=-lvdeplug" >> $config_mak | |
1250 | fi | |
0c58ac1c | 1251 | for card in $audio_card_list; do |
f6e5889e | 1252 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
0c58ac1c | 1253 | echo "$def=yes" >> $config_mak |
1254 | echo "#define $def 1" >> $config_h | |
1255 | done | |
1256 | echo "#define AUDIO_DRIVERS \\" >> $config_h | |
1257 | for drv in $audio_drv_list; do | |
1258 | echo " &${drv}_audio_driver, \\" >>$config_h | |
f6e5889e | 1259 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
0c58ac1c | 1260 | echo "$def=yes" >> $config_mak |
923e4521 | 1261 | if test "$drv" = "fmod"; then |
0c58ac1c | 1262 | echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak |
1263 | echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak | |
2f6a1ab0 BS |
1264 | elif test "$drv" = "oss"; then |
1265 | echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak | |
0c58ac1c | 1266 | fi |
1267 | done | |
1268 | echo "" >>$config_h | |
8ff9cbf7 | 1269 | if test "$mixemu" = "yes" ; then |
1270 | echo "CONFIG_MIXEMU=yes" >> $config_mak | |
1271 | echo "#define CONFIG_MIXEMU 1" >> $config_h | |
1272 | fi | |
8d5d2d4c TS |
1273 | if test "$vnc_tls" = "yes" ; then |
1274 | echo "CONFIG_VNC_TLS=yes" >> $config_mak | |
1275 | echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak | |
1276 | echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak | |
1277 | echo "#define CONFIG_VNC_TLS 1" >> $config_h | |
1278 | fi | |
b1a550a0 PB |
1279 | qemu_version=`head $source_path/VERSION` |
1280 | echo "VERSION=$qemu_version" >>$config_mak | |
d4b8f039 | 1281 | echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h |
97a847bc FB |
1282 | |
1283 | echo "SRC_PATH=$source_path" >> $config_mak | |
ad064840 PB |
1284 | if [ "$source_path_used" = "yes" ]; then |
1285 | echo "VPATH=$source_path" >> $config_mak | |
1286 | fi | |
97a847bc | 1287 | echo "TARGET_DIRS=$target_list" >> $config_mak |
cc8ae6de PB |
1288 | if [ "$build_docs" = "yes" ] ; then |
1289 | echo "BUILD_DOCS=yes" >> $config_mak | |
1290 | fi | |
49ecc3fa FB |
1291 | if test "$static" = "yes"; then |
1292 | sdl1=$sdl_static | |
1293 | else | |
1294 | sdl1=$sdl | |
1295 | fi | |
1296 | if test "$sdl1" = "yes" ; then | |
1297 | echo "#define CONFIG_SDL 1" >> $config_h | |
1298 | echo "CONFIG_SDL=yes" >> $config_mak | |
1299 | if test "$target_softmmu" = "no" -o "$static" = "yes"; then | |
1300 | echo "SDL_LIBS=$sdl_static_libs" >> $config_mak | |
1301 | else | |
1302 | echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak | |
1303 | fi | |
1304 | if [ "${aa}" = "yes" ] ; then | |
1305 | echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak | |
1306 | else | |
1307 | echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak | |
1308 | fi | |
1309 | fi | |
1310 | if test "$cocoa" = "yes" ; then | |
4d3b6f6e AZ |
1311 | echo "#define CONFIG_COCOA 1" >> $config_h |
1312 | echo "CONFIG_COCOA=yes" >> $config_mak | |
1313 | fi | |
1314 | if test "$curses" = "yes" ; then | |
1315 | echo "#define CONFIG_CURSES 1" >> $config_h | |
1316 | echo "CONFIG_CURSES=yes" >> $config_mak | |
1317 | echo "CURSES_LIBS=-lcurses" >> $config_mak | |
49ecc3fa | 1318 | fi |
2e4d9fb1 AJ |
1319 | if test "$brlapi" = "yes" ; then |
1320 | echo "CONFIG_BRLAPI=yes" >> $config_mak | |
1321 | echo "#define CONFIG_BRLAPI 1" >> $config_h | |
1322 | echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak | |
1323 | fi | |
fb599c9a AZ |
1324 | if test "$bluez" = "yes" ; then |
1325 | echo "CONFIG_BLUEZ=yes" >> $config_mak | |
1326 | echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak | |
1327 | echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak | |
1328 | echo "#define CONFIG_BLUEZ 1" >> $config_h | |
1329 | fi | |
414f0dab BS |
1330 | if test "$aio" = "yes" ; then |
1331 | echo "#define CONFIG_AIO 1" >> $config_h | |
a3392f9b | 1332 | echo "CONFIG_AIO=yes" >> $config_mak |
414f0dab | 1333 | fi |
77755340 TS |
1334 | if test "$blobs" = "yes" ; then |
1335 | echo "INSTALL_BLOBS=yes" >> $config_mak | |
1336 | fi | |
bf9298b9 AL |
1337 | if test "$iovec" = "yes" ; then |
1338 | echo "#define HAVE_IOVEC 1" >> $config_h | |
1339 | fi | |
97a847bc | 1340 | |
83fb7adf | 1341 | # XXX: suppress that |
7d3505c5 | 1342 | if [ "$bsd" = "yes" ] ; then |
43003046 | 1343 | echo "#define O_LARGEFILE 0" >> $config_h |
43003046 | 1344 | echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h |
7d3505c5 FB |
1345 | echo "#define _BSD 1" >> $config_h |
1346 | fi | |
1347 | ||
c5937220 PB |
1348 | echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h |
1349 | ||
68063649 BS |
1350 | # USB host support |
1351 | case "$usb" in | |
1352 | linux) | |
1353 | echo "HOST_USB=linux" >> $config_mak | |
1354 | ;; | |
1355 | bsd) | |
1356 | echo "HOST_USB=bsd" >> $config_mak | |
1357 | ;; | |
1358 | *) | |
1359 | echo "HOST_USB=stub" >> $config_mak | |
1360 | ;; | |
1361 | esac | |
1362 | ||
c39e3338 PB |
1363 | tools= |
1364 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then | |
1365 | tools="qemu-img\$(EXESUF) $tools" | |
7a5ca864 FB |
1366 | if [ "$linux" = "yes" ] ; then |
1367 | tools="qemu-nbd\$(EXESUF) $tools" | |
1368 | fi | |
c39e3338 PB |
1369 | fi |
1370 | echo "TOOLS=$tools" >> $config_mak | |
1371 | ||
15d9ca0f TS |
1372 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
1373 | ||
1d14ffa9 | 1374 | for target in $target_list; do |
97a847bc FB |
1375 | target_dir="$target" |
1376 | config_mak=$target_dir/config.mak | |
1377 | config_h=$target_dir/config.h | |
1378 | target_cpu=`echo $target | cut -d '-' -f 1` | |
1379 | target_bigendian="no" | |
808c4954 | 1380 | [ "$target_cpu" = "armeb" ] && target_bigendian=yes |
0938cda5 AJ |
1381 | [ "$target_cpu" = "m68k" ] && target_bigendian=yes |
1382 | [ "$target_cpu" = "mips" ] && target_bigendian=yes | |
1383 | [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes | |
1384 | [ "$target_cpu" = "mips64" ] && target_bigendian=yes | |
67867308 | 1385 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
d4082e95 | 1386 | [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes |
22f8a8b3 | 1387 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
e85e7c6e | 1388 | [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes |
908f52b0 | 1389 | [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes |
0938cda5 AJ |
1390 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
1391 | [ "$target_cpu" = "sparc64" ] && target_bigendian=yes | |
1392 | [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes | |
97a847bc | 1393 | target_softmmu="no" |
997344f3 | 1394 | target_user_only="no" |
831b7825 | 1395 | target_linux_user="no" |
831b7825 | 1396 | target_darwin_user="no" |
84778508 | 1397 | target_bsd_user="no" |
9e407a85 PB |
1398 | case "$target" in |
1399 | ${target_cpu}-softmmu) | |
1400 | target_softmmu="yes" | |
1401 | ;; | |
1402 | ${target_cpu}-linux-user) | |
1403 | target_user_only="yes" | |
1404 | target_linux_user="yes" | |
1405 | ;; | |
1406 | ${target_cpu}-darwin-user) | |
1407 | target_user_only="yes" | |
1408 | target_darwin_user="yes" | |
1409 | ;; | |
84778508 BS |
1410 | ${target_cpu}-bsd-user) |
1411 | target_user_only="yes" | |
1412 | target_bsd_user="yes" | |
1413 | ;; | |
9e407a85 PB |
1414 | *) |
1415 | echo "ERROR: Target '$target' not recognised" | |
1416 | exit 1 | |
1417 | ;; | |
1418 | esac | |
831b7825 | 1419 | |
97ccc689 | 1420 | if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \ |
1d14ffa9 | 1421 | -a "$sdl" = "no" -a "$cocoa" = "no" ; then |
97ccc689 | 1422 | echo "ERROR: QEMU requires SDL or Cocoa for graphical output" |
9c038506 | 1423 | echo "To build QEMU without graphical output configure with --disable-gfx-check" |
4d3b6f6e AZ |
1424 | echo "Note that this will disable all output from the virtual graphics card" |
1425 | echo "except through VNC or curses." | |
97ccc689 FB |
1426 | exit 1; |
1427 | fi | |
1428 | ||
7c1f25b4 | 1429 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
97a847bc | 1430 | |
15d9ca0f TS |
1431 | test -f $config_h && mv $config_h ${config_h}~ |
1432 | ||
97a847bc | 1433 | mkdir -p $target_dir |
158142c2 | 1434 | mkdir -p $target_dir/fpu |
57fec1fe | 1435 | mkdir -p $target_dir/tcg |
84778508 | 1436 | if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then |
69de927c FB |
1437 | mkdir -p $target_dir/nwfpe |
1438 | fi | |
1439 | ||
ec530c81 FB |
1440 | # |
1441 | # don't use ln -sf as not all "ln -sf" over write the file/link | |
1442 | # | |
1443 | rm -f $target_dir/Makefile | |
1444 | ln -s $source_path/Makefile.target $target_dir/Makefile | |
1445 | ||
97a847bc FB |
1446 | |
1447 | echo "# Automatically generated by configure - do not modify" > $config_mak | |
1448 | echo "/* Automatically generated by configure - do not modify */" > $config_h | |
1449 | ||
de83cd02 | 1450 | |
97a847bc FB |
1451 | echo "include ../config-host.mak" >> $config_mak |
1452 | echo "#include \"../config-host.h\"" >> $config_h | |
1e43adfc | 1453 | |
e5fe0c52 | 1454 | bflt="no" |
cb33da57 | 1455 | elfload32="no" |
bd0c5661 | 1456 | target_nptl="no" |
1e43adfc FB |
1457 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
1458 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h | |
56aebc89 | 1459 | gdb_xml_files="" |
97a847bc | 1460 | |
5985ecee AL |
1461 | # Make sure the target and host cpus are compatible |
1462 | if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \ | |
1463 | \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \ | |
1464 | \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then | |
7ba1e619 AL |
1465 | kvm="no" |
1466 | fi | |
1467 | # Disable KVM for linux-user | |
1468 | if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then | |
1469 | kvm="no" | |
1470 | fi | |
1471 | ||
2408a527 AJ |
1472 | case "$target_cpu" in |
1473 | i386) | |
1474 | echo "TARGET_ARCH=i386" >> $config_mak | |
1475 | echo "#define TARGET_ARCH \"i386\"" >> $config_h | |
1476 | echo "#define TARGET_I386 1" >> $config_h | |
da260249 | 1477 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" |
2408a527 AJ |
1478 | then |
1479 | echo "#define USE_KQEMU 1" >> $config_h | |
1480 | fi | |
7ba1e619 AL |
1481 | if test "$kvm" = "yes" ; then |
1482 | echo "CONFIG_KVM=yes" >> $config_mak | |
1483 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak | |
5985ecee | 1484 | echo "#define CONFIG_KVM 1" >> $config_h |
7ba1e619 | 1485 | fi |
2408a527 AJ |
1486 | ;; |
1487 | x86_64) | |
1488 | echo "TARGET_ARCH=x86_64" >> $config_mak | |
1489 | echo "#define TARGET_ARCH \"x86_64\"" >> $config_h | |
1490 | echo "#define TARGET_I386 1" >> $config_h | |
1491 | echo "#define TARGET_X86_64 1" >> $config_h | |
1492 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" | |
1493 | then | |
1494 | echo "#define USE_KQEMU 1" >> $config_h | |
1495 | fi | |
7ba1e619 AL |
1496 | if test "$kvm" = "yes" ; then |
1497 | echo "CONFIG_KVM=yes" >> $config_mak | |
1498 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak | |
1499 | echo "#define CONFIG_KVM 1" >> $config_h | |
1500 | fi | |
2408a527 AJ |
1501 | ;; |
1502 | alpha) | |
1503 | echo "TARGET_ARCH=alpha" >> $config_mak | |
1504 | echo "#define TARGET_ARCH \"alpha\"" >> $config_h | |
1505 | echo "#define TARGET_ALPHA 1" >> $config_h | |
1506 | ;; | |
1507 | arm|armeb) | |
1508 | echo "TARGET_ARCH=arm" >> $config_mak | |
2408a527 AJ |
1509 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
1510 | echo "#define TARGET_ARM 1" >> $config_h | |
2408a527 | 1511 | bflt="yes" |
bd0c5661 | 1512 | target_nptl="yes" |
56aebc89 | 1513 | gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" |
2408a527 AJ |
1514 | ;; |
1515 | cris) | |
1516 | echo "TARGET_ARCH=cris" >> $config_mak | |
1517 | echo "#define TARGET_ARCH \"cris\"" >> $config_h | |
1518 | echo "#define TARGET_CRIS 1" >> $config_h | |
2408a527 AJ |
1519 | ;; |
1520 | m68k) | |
1521 | echo "TARGET_ARCH=m68k" >> $config_mak | |
1522 | echo "#define TARGET_ARCH \"m68k\"" >> $config_h | |
1523 | echo "#define TARGET_M68K 1" >> $config_h | |
1524 | bflt="yes" | |
56aebc89 | 1525 | gdb_xml_files="cf-core.xml cf-fp.xml" |
2408a527 AJ |
1526 | ;; |
1527 | mips|mipsel) | |
1528 | echo "TARGET_ARCH=mips" >> $config_mak | |
1529 | echo "#define TARGET_ARCH \"mips\"" >> $config_h | |
1530 | echo "#define TARGET_MIPS 1" >> $config_h | |
1531 | echo "#define TARGET_ABI_MIPSO32 1" >> $config_h | |
1532 | ;; | |
1533 | mipsn32|mipsn32el) | |
1534 | echo "TARGET_ARCH=mipsn32" >> $config_mak | |
1535 | echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h | |
1536 | echo "#define TARGET_MIPS 1" >> $config_h | |
1537 | echo "#define TARGET_ABI_MIPSN32 1" >> $config_h | |
1538 | ;; | |
1539 | mips64|mips64el) | |
1540 | echo "TARGET_ARCH=mips64" >> $config_mak | |
1541 | echo "#define TARGET_ARCH \"mips64\"" >> $config_h | |
1542 | echo "#define TARGET_MIPS 1" >> $config_h | |
1543 | echo "#define TARGET_MIPS64 1" >> $config_h | |
1544 | echo "#define TARGET_ABI_MIPSN64 1" >> $config_h | |
1545 | ;; | |
1546 | ppc) | |
1547 | echo "TARGET_ARCH=ppc" >> $config_mak | |
1548 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h | |
1549 | echo "#define TARGET_PPC 1" >> $config_h | |
1550 | ;; | |
1551 | ppcemb) | |
1552 | echo "TARGET_ARCH=ppcemb" >> $config_mak | |
1553 | echo "TARGET_ABI_DIR=ppc" >> $config_mak | |
1554 | echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h | |
1555 | echo "#define TARGET_PPC 1" >> $config_h | |
1556 | echo "#define TARGET_PPCEMB 1" >> $config_h | |
1557 | ;; | |
1558 | ppc64) | |
1559 | echo "TARGET_ARCH=ppc64" >> $config_mak | |
1560 | echo "TARGET_ABI_DIR=ppc" >> $config_mak | |
1561 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1562 | echo "#define TARGET_PPC 1" >> $config_h | |
1563 | echo "#define TARGET_PPC64 1" >> $config_h | |
1564 | ;; | |
1565 | ppc64abi32) | |
1566 | echo "TARGET_ARCH=ppc64" >> $config_mak | |
1567 | echo "TARGET_ABI_DIR=ppc" >> $config_mak | |
1568 | echo "TARGET_ARCH2=ppc64abi32" >> $config_mak | |
1569 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h | |
1570 | echo "#define TARGET_PPC 1" >> $config_h | |
1571 | echo "#define TARGET_PPC64 1" >> $config_h | |
1572 | echo "#define TARGET_ABI32 1" >> $config_h | |
1573 | ;; | |
1574 | sh4|sh4eb) | |
1575 | echo "TARGET_ARCH=sh4" >> $config_mak | |
1576 | echo "#define TARGET_ARCH \"sh4\"" >> $config_h | |
1577 | echo "#define TARGET_SH4 1" >> $config_h | |
1578 | bflt="yes" | |
0b6d3ae0 | 1579 | target_nptl="yes" |
2408a527 AJ |
1580 | ;; |
1581 | sparc) | |
1582 | echo "TARGET_ARCH=sparc" >> $config_mak | |
1583 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h | |
1584 | echo "#define TARGET_SPARC 1" >> $config_h | |
1585 | ;; | |
1586 | sparc64) | |
1587 | echo "TARGET_ARCH=sparc64" >> $config_mak | |
1588 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h | |
1589 | echo "#define TARGET_SPARC 1" >> $config_h | |
1590 | echo "#define TARGET_SPARC64 1" >> $config_h | |
1591 | elfload32="yes" | |
1592 | ;; | |
1593 | sparc32plus) | |
1594 | echo "TARGET_ARCH=sparc64" >> $config_mak | |
1595 | echo "TARGET_ABI_DIR=sparc" >> $config_mak | |
1596 | echo "TARGET_ARCH2=sparc32plus" >> $config_mak | |
1597 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h | |
1598 | echo "#define TARGET_SPARC 1" >> $config_h | |
1599 | echo "#define TARGET_SPARC64 1" >> $config_h | |
1600 | echo "#define TARGET_ABI32 1" >> $config_h | |
1601 | ;; | |
1602 | *) | |
1603 | echo "Unsupported target CPU" | |
1604 | exit 1 | |
1605 | ;; | |
1606 | esac | |
de83cd02 | 1607 | if test "$target_bigendian" = "yes" ; then |
97a847bc FB |
1608 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
1609 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h | |
de83cd02 | 1610 | fi |
97a847bc FB |
1611 | if test "$target_softmmu" = "yes" ; then |
1612 | echo "CONFIG_SOFTMMU=yes" >> $config_mak | |
1613 | echo "#define CONFIG_SOFTMMU 1" >> $config_h | |
43ce4dfe | 1614 | fi |
997344f3 FB |
1615 | if test "$target_user_only" = "yes" ; then |
1616 | echo "CONFIG_USER_ONLY=yes" >> $config_mak | |
1617 | echo "#define CONFIG_USER_ONLY 1" >> $config_h | |
1618 | fi | |
831b7825 TS |
1619 | if test "$target_linux_user" = "yes" ; then |
1620 | echo "CONFIG_LINUX_USER=yes" >> $config_mak | |
1621 | echo "#define CONFIG_LINUX_USER 1" >> $config_h | |
1622 | fi | |
1623 | if test "$target_darwin_user" = "yes" ; then | |
1624 | echo "CONFIG_DARWIN_USER=yes" >> $config_mak | |
1625 | echo "#define CONFIG_DARWIN_USER 1" >> $config_h | |
1626 | fi | |
56aebc89 PB |
1627 | list="" |
1628 | if test ! -z "$gdb_xml_files" ; then | |
1629 | for x in $gdb_xml_files; do | |
1630 | list="$list $source_path/gdb-xml/$x" | |
1631 | done | |
1632 | fi | |
1633 | echo "TARGET_XML_FILES=$list" >> $config_mak | |
97a847bc | 1634 | |
0938cda5 AJ |
1635 | if test "$target_cpu" = "arm" \ |
1636 | -o "$target_cpu" = "armeb" \ | |
1637 | -o "$target_cpu" = "m68k" \ | |
1638 | -o "$target_cpu" = "mips" \ | |
1639 | -o "$target_cpu" = "mipsel" \ | |
1640 | -o "$target_cpu" = "mipsn32" \ | |
1641 | -o "$target_cpu" = "mipsn32el" \ | |
1642 | -o "$target_cpu" = "mips64" \ | |
1643 | -o "$target_cpu" = "mips64el" \ | |
1644 | -o "$target_cpu" = "sparc" \ | |
1645 | -o "$target_cpu" = "sparc64" \ | |
1646 | -o "$target_cpu" = "sparc32plus"; then | |
158142c2 FB |
1647 | echo "CONFIG_SOFTFLOAT=yes" >> $config_mak |
1648 | echo "#define CONFIG_SOFTFLOAT 1" >> $config_h | |
1649 | fi | |
e5fe0c52 PB |
1650 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
1651 | echo "TARGET_HAS_BFLT=yes" >> $config_mak | |
1652 | echo "#define TARGET_HAS_BFLT 1" >> $config_h | |
1653 | fi | |
bd0c5661 PB |
1654 | if test "$target_user_only" = "yes" \ |
1655 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then | |
1656 | echo "#define USE_NPTL 1" >> $config_h | |
1657 | fi | |
cb33da57 BS |
1658 | # 32 bit ELF loader in addition to native 64 bit loader? |
1659 | if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then | |
1660 | echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak | |
1661 | echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h | |
1662 | fi | |
84778508 BS |
1663 | if test "$target_bsd_user" = "yes" ; then |
1664 | echo "CONFIG_BSD_USER=yes" >> $config_mak | |
1665 | echo "#define CONFIG_BSD_USER 1" >> $config_h | |
1666 | fi | |
5b0753e0 | 1667 | |
15d9ca0f TS |
1668 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
1669 | ||
97a847bc | 1670 | done # for target in $targets |
7d13299d FB |
1671 | |
1672 | # build tree in object directory if source path is different from current one | |
1673 | if test "$source_path_used" = "yes" ; then | |
49ecc3fa | 1674 | DIRS="tests tests/cris slirp audio" |
7d13299d | 1675 | FILES="Makefile tests/Makefile" |
e7daa605 | 1676 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
e1ffb0f1 | 1677 | FILES="$FILES tests/test-mmap.c" |
7d13299d FB |
1678 | for dir in $DIRS ; do |
1679 | mkdir -p $dir | |
1680 | done | |
ec530c81 | 1681 | # remove the link and recreate it, as not all "ln -sf" overwrite the link |
7d13299d | 1682 | for f in $FILES ; do |
ec530c81 FB |
1683 | rm -f $f |
1684 | ln -s $source_path/$f $f | |
7d13299d FB |
1685 | done |
1686 | fi |