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