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