]>
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" | |
a91b857c | 16 | TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe" |
7d13299d | 17 | |
4021d247 | 18 | trap "rm -f $TMPC $TMPO $TMPE ; exit" EXIT INT QUIT TERM |
da1d85e3 | 19 | rm -f config.log |
9ac81bbb | 20 | |
52166aa0 | 21 | compile_object() { |
da1d85e3 GH |
22 | echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log |
23 | $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1 | |
52166aa0 JQ |
24 | } |
25 | ||
26 | compile_prog() { | |
27 | local_cflags="$1" | |
28 | local_ldflags="$2" | |
da1d85e3 GH |
29 | echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log |
30 | $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1 | |
52166aa0 JQ |
31 | } |
32 | ||
0dba6195 LM |
33 | # check whether a command is available to this shell (may be either an |
34 | # executable or a builtin) | |
35 | has() { | |
36 | type "$1" >/dev/null 2>&1 | |
37 | } | |
38 | ||
39 | # search for an executable in PATH | |
40 | path_of() { | |
41 | local_command="$1" | |
42 | local_ifs="$IFS" | |
43 | local_dir="" | |
44 | ||
45 | # pathname has a dir component? | |
46 | if [ "${local_command#*/}" != "$local_command" ]; then | |
47 | if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then | |
48 | echo "$local_command" | |
49 | return 0 | |
50 | fi | |
51 | fi | |
52 | if [ -z "$local_command" ]; then | |
53 | return 1 | |
54 | fi | |
55 | ||
56 | IFS=: | |
57 | for local_dir in $PATH; do | |
58 | if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then | |
59 | echo "$local_dir/$local_command" | |
60 | IFS="${local_ifs:-$(printf ' \t\n')}" | |
61 | return 0 | |
62 | fi | |
63 | done | |
64 | # not found | |
65 | IFS="${local_ifs:-$(printf ' \t\n')}" | |
66 | return 1 | |
67 | } | |
68 | ||
7d13299d | 69 | # default parameters |
2ff6b91e | 70 | cpu="" |
1e43adfc | 71 | interp_prefix="/usr/gnemul/qemu-%M" |
43ce4dfe | 72 | static="no" |
ed968ff1 | 73 | sparc_cpu="" |
7d13299d FB |
74 | cross_prefix="" |
75 | cc="gcc" | |
0c58ac1c | 76 | audio_drv_list="" |
4c9b53e3 | 77 | audio_card_list="ac97 es1370 sb16" |
78 | audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" | |
eb852011 | 79 | block_drv_whitelist="" |
7d13299d FB |
80 | host_cc="gcc" |
81 | ar="ar" | |
82 | make="make" | |
6a882643 | 83 | install="install" |
7aa486fe AL |
84 | objcopy="objcopy" |
85 | ld="ld" | |
52ba784d | 86 | strip="strip" |
c81da56e | 87 | helper_cflags="" |
73da375e | 88 | libs_softmmu="" |
3e2e0e6b | 89 | libs_tools="" |
67f86e8e | 90 | audio_pt_int="" |
d5631638 | 91 | audio_win_int="" |
ac0df51d AL |
92 | |
93 | # parse CC options first | |
94 | for opt do | |
95 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` | |
96 | case "$opt" in | |
97 | --cross-prefix=*) cross_prefix="$optarg" | |
98 | ;; | |
99 | --cc=*) cc="$optarg" | |
100 | ;; | |
2ff6b91e JQ |
101 | --cpu=*) cpu="$optarg" |
102 | ;; | |
a558ee17 | 103 | --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" |
e2a2ed06 JQ |
104 | ;; |
105 | --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" | |
106 | ;; | |
50e7b1a0 JQ |
107 | --sparc_cpu=*) |
108 | sparc_cpu="$optarg" | |
109 | case $sparc_cpu in | |
ed968ff1 | 110 | v7|v8|v8plus|v8plusa) |
50e7b1a0 JQ |
111 | cpu="sparc" |
112 | ;; | |
113 | v9) | |
50e7b1a0 JQ |
114 | cpu="sparc64" |
115 | ;; | |
116 | *) | |
117 | echo "undefined SPARC architecture. Exiting"; | |
118 | exit 1 | |
119 | ;; | |
120 | esac | |
121 | ;; | |
ac0df51d AL |
122 | esac |
123 | done | |
ac0df51d AL |
124 | # OS specific |
125 | # Using uname is really, really broken. Once we have the right set of checks | |
126 | # we can eliminate it's usage altogether | |
127 | ||
128 | cc="${cross_prefix}${cc}" | |
129 | ar="${cross_prefix}${ar}" | |
7aa486fe AL |
130 | objcopy="${cross_prefix}${objcopy}" |
131 | ld="${cross_prefix}${ld}" | |
52ba784d | 132 | strip="${cross_prefix}${strip}" |
ac0df51d | 133 | |
be17dc90 MT |
134 | # default flags for all hosts |
135 | QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" | |
136 | CFLAGS="-g $CFLAGS" | |
137 | QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" | |
138 | QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" | |
139 | QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" | |
84958305 | 140 | QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" |
be17dc90 MT |
141 | QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS" |
142 | LDFLAGS="-g $LDFLAGS" | |
143 | ||
a21493e0 BS |
144 | gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" |
145 | gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" | |
0b65b9e1 | 146 | gcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" |
a21493e0 | 147 | gcc_flags="-fstack-protector-all $gcc_flags" |
be17dc90 | 148 | cat > $TMPC << EOF |
aa527b65 | 149 | int main(void) { return 0; } |
be17dc90 MT |
150 | EOF |
151 | for flag in $gcc_flags; do | |
aa527b65 | 152 | if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then |
be17dc90 MT |
153 | QEMU_CFLAGS="$flag $QEMU_CFLAGS" |
154 | fi | |
155 | done | |
156 | ||
ac0df51d AL |
157 | # check that the C compiler works. |
158 | cat > $TMPC <<EOF | |
159 | int main(void) {} | |
160 | EOF | |
161 | ||
52166aa0 | 162 | if compile_object ; then |
ac0df51d AL |
163 | : C compiler works ok |
164 | else | |
165 | echo "ERROR: \"$cc\" either does not exist or does not work" | |
166 | exit 1 | |
167 | fi | |
168 | ||
169 | check_define() { | |
170 | cat > $TMPC <<EOF | |
171 | #if !defined($1) | |
172 | #error Not defined | |
173 | #endif | |
174 | int main(void) { return 0; } | |
175 | EOF | |
52166aa0 | 176 | compile_object |
ac0df51d AL |
177 | } |
178 | ||
2ff6b91e JQ |
179 | if test ! -z "$cpu" ; then |
180 | # command line argument | |
181 | : | |
182 | elif check_define __i386__ ; then | |
ac0df51d AL |
183 | cpu="i386" |
184 | elif check_define __x86_64__ ; then | |
185 | cpu="x86_64" | |
3aa9bd6c BS |
186 | elif check_define __sparc__ ; then |
187 | # We can't check for 64 bit (when gcc is biarch) or V8PLUSA | |
188 | # They must be specified using --sparc_cpu | |
189 | if check_define __arch64__ ; then | |
190 | cpu="sparc64" | |
191 | else | |
192 | cpu="sparc" | |
193 | fi | |
fdf7ed96 | 194 | elif check_define _ARCH_PPC ; then |
195 | if check_define _ARCH_PPC64 ; then | |
196 | cpu="ppc64" | |
197 | else | |
198 | cpu="ppc" | |
199 | fi | |
afa05235 AJ |
200 | elif check_define __mips__ ; then |
201 | cpu="mips" | |
477ba620 AJ |
202 | elif check_define __ia64__ ; then |
203 | cpu="ia64" | |
d66ed0ea AJ |
204 | elif check_define __s390__ ; then |
205 | if check_define __s390x__ ; then | |
206 | cpu="s390x" | |
207 | else | |
208 | cpu="s390" | |
209 | fi | |
ac0df51d | 210 | else |
fdf7ed96 | 211 | cpu=`uname -m` |
ac0df51d AL |
212 | fi |
213 | ||
5327cf48 | 214 | target_list="" |
7d13299d | 215 | case "$cpu" in |
afa05235 | 216 | alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64) |
ea8f20f8 JQ |
217 | cpu="$cpu" |
218 | ;; | |
7d13299d | 219 | i386|i486|i586|i686|i86pc|BePC) |
97a847bc | 220 | cpu="i386" |
7d13299d | 221 | ;; |
aaa5fa14 AJ |
222 | x86_64|amd64) |
223 | cpu="x86_64" | |
224 | ;; | |
ba68055e | 225 | armv*b) |
808c4954 FB |
226 | cpu="armv4b" |
227 | ;; | |
ba68055e | 228 | armv*l) |
7d13299d FB |
229 | cpu="armv4l" |
230 | ;; | |
f54b3f92 AJ |
231 | parisc|parisc64) |
232 | cpu="hppa" | |
233 | ;; | |
afa05235 AJ |
234 | mips*) |
235 | cpu="mips" | |
236 | ;; | |
24e804ec | 237 | s390) |
fb3e5849 FB |
238 | cpu="s390" |
239 | ;; | |
24e804ec AG |
240 | s390x) |
241 | cpu="s390x" | |
242 | ;; | |
3142255c | 243 | sparc|sun4[cdmuv]) |
ae228531 FB |
244 | cpu="sparc" |
245 | ;; | |
7d13299d | 246 | *) |
a447d4dc PB |
247 | echo "Unsupported CPU = $cpu" |
248 | exit 1 | |
7d13299d FB |
249 | ;; |
250 | esac | |
e2d52ad3 | 251 | |
3a3fb96d SW |
252 | # Default value for a variable defining feature "foo". |
253 | # * foo="no" feature will only be used if --enable-foo arg is given | |
254 | # * foo="" feature will be searched for, and if found, will be used | |
255 | # unless --disable-foo is given | |
256 | # * foo="yes" this value will only be set by --enable-foo flag. | |
257 | # feature will searched for, | |
258 | # if not found, configure exits with error | |
e2d52ad3 | 259 | # |
3a3fb96d SW |
260 | # Always add --enable-foo and --disable-foo command line args. |
261 | # Distributions want to ensure that several features are compiled in, and it | |
262 | # is impossible without a --enable-foo that exits if a feature is not found. | |
e2d52ad3 | 263 | |
a20a6f46 | 264 | bluez="" |
4ffcedb6 | 265 | brlapi="" |
788c8196 | 266 | curl="" |
c584a6d0 | 267 | curses="" |
a25dba17 | 268 | docs="" |
2df87df7 | 269 | fdt="" |
b31a0277 | 270 | kvm="" |
dae5079a | 271 | kvm_para="" |
b0a47e79 | 272 | nptl="" |
c4198157 | 273 | sdl="" |
dfffc653 | 274 | sparse="no" |
ee682d27 | 275 | uuid="" |
dfb278bd | 276 | vde="" |
1be10ad2 | 277 | vnc_tls="" |
ea784e3b | 278 | vnc_sasl="" |
2f6f5c7a | 279 | vnc_jpeg="" |
efe556ad | 280 | vnc_png="" |
96763cf9 | 281 | vnc_thread="no" |
fc321b4b | 282 | xen="" |
5c6c3a6c | 283 | linux_aio="" |
758e8e38 | 284 | attr="" |
d5970055 | 285 | vhost_net="" |
dfb278bd | 286 | |
7d13299d | 287 | gprof="no" |
f8393946 | 288 | debug_tcg="no" |
b4475aa2 | 289 | debug_mon="no" |
f3d08ee6 | 290 | debug="no" |
1625af87 | 291 | strip_opt="yes" |
7d13299d | 292 | bigendian="no" |
67b915a5 FB |
293 | mingw32="no" |
294 | EXESUF="" | |
683035de PB |
295 | prefix="/usr/local" |
296 | mandir="\${prefix}/share/man" | |
297 | datadir="\${prefix}/share/qemu" | |
298 | docdir="\${prefix}/share/doc/qemu" | |
299 | bindir="\${prefix}/bin" | |
300 | sysconfdir="\${prefix}/etc" | |
301 | confsuffix="/qemu" | |
443f1376 | 302 | slirp="yes" |
102a52e4 FB |
303 | fmod_lib="" |
304 | fmod_inc="" | |
2f6a1ab0 | 305 | oss_lib="" |
b1a550a0 | 306 | bsd="no" |
5327cf48 | 307 | linux="no" |
d2c7c9b8 | 308 | solaris="no" |
05c2a3e7 | 309 | profiler="no" |
5b0753e0 | 310 | cocoa="no" |
0a8e90f4 | 311 | softmmu="yes" |
831b7825 TS |
312 | linux_user="no" |
313 | darwin_user="no" | |
84778508 | 314 | bsd_user="no" |
379f6698 | 315 | guest_base="" |
c5937220 | 316 | uname_release="" |
e5d355d1 | 317 | io_thread="no" |
8ff9cbf7 | 318 | mixemu="no" |
eac30262 | 319 | kerneldir="" |
b29fe3ed | 320 | aix="no" |
77755340 | 321 | blobs="yes" |
4a19f1ec | 322 | pkgversion="" |
5495ed11 | 323 | check_utests="no" |
34005a00 | 324 | user_pie="no" |
20ff6c80 | 325 | zero_malloc="" |
94a420b1 | 326 | trace_backend="nop" |
9410b56c | 327 | trace_file="trace" |
7d13299d FB |
328 | |
329 | # OS specific | |
ac0df51d AL |
330 | if check_define __linux__ ; then |
331 | targetos="Linux" | |
332 | elif check_define _WIN32 ; then | |
333 | targetos='MINGW32' | |
169dc5d3 BS |
334 | elif check_define __OpenBSD__ ; then |
335 | targetos='OpenBSD' | |
336 | elif check_define __sun__ ; then | |
337 | targetos='SunOS' | |
ac0df51d AL |
338 | else |
339 | targetos=`uname -s` | |
340 | fi | |
0dbfc675 | 341 | |
7d13299d | 342 | case $targetos in |
c326e0af | 343 | CYGWIN*) |
0dbfc675 | 344 | mingw32="yes" |
a558ee17 | 345 | QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" |
d5631638 | 346 | audio_possible_drivers="winwave sdl" |
347 | audio_drv_list="winwave" | |
c326e0af | 348 | ;; |
67b915a5 | 349 | MINGW32*) |
0dbfc675 | 350 | mingw32="yes" |
d5631638 | 351 | audio_possible_drivers="winwave dsound sdl fmod" |
352 | audio_drv_list="winwave" | |
67b915a5 | 353 | ;; |
5c40d2bd | 354 | GNU/kFreeBSD) |
a167ba50 | 355 | bsd="yes" |
0dbfc675 JQ |
356 | audio_drv_list="oss" |
357 | audio_possible_drivers="oss sdl esd pa" | |
5c40d2bd | 358 | ;; |
7d3505c5 | 359 | FreeBSD) |
0dbfc675 | 360 | bsd="yes" |
a167ba50 | 361 | make="gmake" |
0dbfc675 JQ |
362 | audio_drv_list="oss" |
363 | audio_possible_drivers="oss sdl esd pa" | |
f01576f1 JL |
364 | # needed for kinfo_getvmmap(3) in libutil.h |
365 | LIBS="-lutil $LIBS" | |
7d3505c5 | 366 | ;; |
c5e97233 | 367 | DragonFly) |
0dbfc675 | 368 | bsd="yes" |
a167ba50 | 369 | make="gmake" |
0dbfc675 JQ |
370 | audio_drv_list="oss" |
371 | audio_possible_drivers="oss sdl esd pa" | |
c5e97233 | 372 | ;; |
7d3505c5 | 373 | NetBSD) |
0dbfc675 | 374 | bsd="yes" |
a167ba50 | 375 | make="gmake" |
0dbfc675 JQ |
376 | audio_drv_list="oss" |
377 | audio_possible_drivers="oss sdl esd" | |
378 | oss_lib="-lossaudio" | |
7d3505c5 FB |
379 | ;; |
380 | OpenBSD) | |
0dbfc675 | 381 | bsd="yes" |
a167ba50 | 382 | make="gmake" |
0dbfc675 JQ |
383 | audio_drv_list="oss" |
384 | audio_possible_drivers="oss sdl esd" | |
385 | oss_lib="-lossaudio" | |
7d3505c5 | 386 | ;; |
83fb7adf | 387 | Darwin) |
0dbfc675 JQ |
388 | bsd="yes" |
389 | darwin="yes" | |
390 | # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can | |
391 | # run 64-bit userspace code | |
392 | if [ "$cpu" = "i386" ] ; then | |
aab8588a | 393 | is_x86_64=`sysctl -n hw.optional.x86_64` |
394 | [ "$is_x86_64" = "1" ] && cpu=x86_64 | |
0dbfc675 JQ |
395 | fi |
396 | if [ "$cpu" = "x86_64" ] ; then | |
a558ee17 | 397 | QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" |
0c439cbf | 398 | LDFLAGS="-arch x86_64 $LDFLAGS" |
0dbfc675 | 399 | else |
a558ee17 | 400 | QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" |
0dbfc675 JQ |
401 | fi |
402 | darwin_user="yes" | |
403 | cocoa="yes" | |
404 | audio_drv_list="coreaudio" | |
405 | audio_possible_drivers="coreaudio sdl fmod" | |
406 | LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" | |
7973f21c | 407 | libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu" |
83fb7adf | 408 | ;; |
ec530c81 | 409 | SunOS) |
0dbfc675 JQ |
410 | solaris="yes" |
411 | make="gmake" | |
412 | install="ginstall" | |
fa58948d | 413 | ld="gld" |
0dbfc675 JQ |
414 | needs_libsunmath="no" |
415 | solarisrev=`uname -r | cut -f2 -d.` | |
416 | # have to select again, because `uname -m` returns i86pc | |
417 | # even on an x86_64 box. | |
418 | solariscpu=`isainfo -k` | |
419 | if test "${solariscpu}" = "amd64" ; then | |
420 | cpu="x86_64" | |
421 | fi | |
422 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then | |
423 | if test "$solarisrev" -le 9 ; then | |
424 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then | |
425 | needs_libsunmath="yes" | |
f14bfdf9 JQ |
426 | QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS" |
427 | LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS" | |
428 | LIBS="-lsunmath $LIBS" | |
0dbfc675 JQ |
429 | else |
430 | echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" | |
431 | echo "libsunmath from the Sun Studio compilers tools, due to a lack of" | |
432 | echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" | |
433 | echo "Studio 11 can be downloaded from www.sun.com." | |
434 | exit 1 | |
435 | fi | |
86b2bd93 | 436 | fi |
0dbfc675 JQ |
437 | fi |
438 | if test -f /usr/include/sys/soundcard.h ; then | |
439 | audio_drv_list="oss" | |
440 | fi | |
441 | audio_possible_drivers="oss sdl" | |
d741429a BS |
442 | # needed for CMSG_ macros in sys/socket.h |
443 | QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" | |
444 | # needed for TIOCWIN* defines in termios.h | |
445 | QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" | |
a558ee17 | 446 | QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" |
e174c0bb | 447 | LIBS="-lsocket -lnsl -lresolv $LIBS" |
86b2bd93 | 448 | ;; |
b29fe3ed | 449 | AIX) |
0dbfc675 JQ |
450 | aix="yes" |
451 | make="gmake" | |
b29fe3ed | 452 | ;; |
1d14ffa9 | 453 | *) |
0dbfc675 JQ |
454 | audio_drv_list="oss" |
455 | audio_possible_drivers="oss alsa sdl esd pa" | |
456 | linux="yes" | |
457 | linux_user="yes" | |
458 | usb="linux" | |
0dbfc675 | 459 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
c2de5c91 | 460 | audio_possible_drivers="$audio_possible_drivers fmod" |
0dbfc675 | 461 | fi |
fb065187 | 462 | ;; |
7d13299d FB |
463 | esac |
464 | ||
7d3505c5 | 465 | if [ "$bsd" = "yes" ] ; then |
b1a550a0 | 466 | if [ "$darwin" != "yes" ] ; then |
68063649 | 467 | usb="bsd" |
83fb7adf | 468 | fi |
84778508 | 469 | bsd_user="yes" |
7d3505c5 FB |
470 | fi |
471 | ||
3457a3f8 | 472 | if test "$mingw32" = "yes" ; then |
3457a3f8 | 473 | EXESUF=".exe" |
a558ee17 | 474 | QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" |
e94a7936 SW |
475 | # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) |
476 | QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS" | |
884044aa | 477 | LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS" |
683035de PB |
478 | prefix="c:/Program Files/Qemu" |
479 | mandir="\${prefix}" | |
480 | datadir="\${prefix}" | |
481 | docdir="\${prefix}" | |
482 | bindir="\${prefix}" | |
483 | sysconfdir="\${prefix}" | |
484 | confsuffix="" | |
3457a3f8 JQ |
485 | fi |
486 | ||
7d13299d | 487 | # find source path |
ad064840 | 488 | source_path=`dirname "$0"` |
59faef3a AZ |
489 | source_path_used="no" |
490 | workdir=`pwd` | |
ad064840 | 491 | if [ -z "$source_path" ]; then |
59faef3a | 492 | source_path=$workdir |
ad064840 PB |
493 | else |
494 | source_path=`cd "$source_path"; pwd` | |
7d13299d | 495 | fi |
724db118 | 496 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
7d13299d | 497 | |
487fefdb | 498 | werror="" |
85aa5189 | 499 | |
7d13299d | 500 | for opt do |
a46e4035 | 501 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
7d13299d | 502 | case "$opt" in |
2efc3265 FB |
503 | --help|-h) show_help=yes |
504 | ;; | |
b1a550a0 | 505 | --prefix=*) prefix="$optarg" |
7d13299d | 506 | ;; |
b1a550a0 | 507 | --interp-prefix=*) interp_prefix="$optarg" |
32ce6337 | 508 | ;; |
b1a550a0 | 509 | --source-path=*) source_path="$optarg" |
ad064840 | 510 | source_path_used="yes" |
7d13299d | 511 | ;; |
ac0df51d | 512 | --cross-prefix=*) |
7d13299d | 513 | ;; |
ac0df51d | 514 | --cc=*) |
7d13299d | 515 | ;; |
b1a550a0 | 516 | --host-cc=*) host_cc="$optarg" |
83469015 | 517 | ;; |
b1a550a0 | 518 | --make=*) make="$optarg" |
7d13299d | 519 | ;; |
6a882643 PB |
520 | --install=*) install="$optarg" |
521 | ;; | |
e2a2ed06 | 522 | --extra-cflags=*) |
7d13299d | 523 | ;; |
e2a2ed06 | 524 | --extra-ldflags=*) |
7d13299d | 525 | ;; |
2ff6b91e | 526 | --cpu=*) |
7d13299d | 527 | ;; |
b1a550a0 | 528 | --target-list=*) target_list="$optarg" |
de83cd02 | 529 | ;; |
94a420b1 SH |
530 | --trace-backend=*) trace_backend="$optarg" |
531 | ;; | |
9410b56c PS |
532 | --trace-file=*) trace_file="$optarg" |
533 | ;; | |
7d13299d FB |
534 | --enable-gprof) gprof="yes" |
535 | ;; | |
79427693 LM |
536 | --static) |
537 | static="yes" | |
538 | LDFLAGS="-static $LDFLAGS" | |
43ce4dfe | 539 | ;; |
0b24e75f PB |
540 | --mandir=*) mandir="$optarg" |
541 | ;; | |
542 | --bindir=*) bindir="$optarg" | |
543 | ;; | |
544 | --datadir=*) datadir="$optarg" | |
545 | ;; | |
546 | --docdir=*) docdir="$optarg" | |
547 | ;; | |
ca2fb938 | 548 | --sysconfdir=*) sysconfdir="$optarg" |
07381cc1 | 549 | ;; |
97a847bc FB |
550 | --disable-sdl) sdl="no" |
551 | ;; | |
c4198157 JQ |
552 | --enable-sdl) sdl="yes" |
553 | ;; | |
0c58ac1c | 554 | --fmod-lib=*) fmod_lib="$optarg" |
1d14ffa9 | 555 | ;; |
c2de5c91 | 556 | --fmod-inc=*) fmod_inc="$optarg" |
557 | ;; | |
2f6a1ab0 BS |
558 | --oss-lib=*) oss_lib="$optarg" |
559 | ;; | |
2fa7d3bf | 560 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
102a52e4 | 561 | ;; |
0c58ac1c | 562 | --audio-drv-list=*) audio_drv_list="$optarg" |
102a52e4 | 563 | ;; |
eb852011 MA |
564 | --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` |
565 | ;; | |
f8393946 AJ |
566 | --enable-debug-tcg) debug_tcg="yes" |
567 | ;; | |
568 | --disable-debug-tcg) debug_tcg="no" | |
569 | ;; | |
b4475aa2 LC |
570 | --enable-debug-mon) debug_mon="yes" |
571 | ;; | |
572 | --disable-debug-mon) debug_mon="no" | |
573 | ;; | |
f3d08ee6 PB |
574 | --enable-debug) |
575 | # Enable debugging options that aren't excessively noisy | |
576 | debug_tcg="yes" | |
b4475aa2 | 577 | debug_mon="yes" |
f3d08ee6 PB |
578 | debug="yes" |
579 | strip_opt="no" | |
580 | ;; | |
03b4fe7d AL |
581 | --enable-sparse) sparse="yes" |
582 | ;; | |
583 | --disable-sparse) sparse="no" | |
584 | ;; | |
1625af87 AL |
585 | --disable-strip) strip_opt="no" |
586 | ;; | |
8d5d2d4c TS |
587 | --disable-vnc-tls) vnc_tls="no" |
588 | ;; | |
1be10ad2 JQ |
589 | --enable-vnc-tls) vnc_tls="yes" |
590 | ;; | |
2f9606b3 AL |
591 | --disable-vnc-sasl) vnc_sasl="no" |
592 | ;; | |
ea784e3b JQ |
593 | --enable-vnc-sasl) vnc_sasl="yes" |
594 | ;; | |
2f6f5c7a CC |
595 | --disable-vnc-jpeg) vnc_jpeg="no" |
596 | ;; | |
597 | --enable-vnc-jpeg) vnc_jpeg="yes" | |
598 | ;; | |
efe556ad CC |
599 | --disable-vnc-png) vnc_png="no" |
600 | ;; | |
601 | --enable-vnc-png) vnc_png="yes" | |
602 | ;; | |
bd023f95 CC |
603 | --disable-vnc-thread) vnc_thread="no" |
604 | ;; | |
605 | --enable-vnc-thread) vnc_thread="yes" | |
606 | ;; | |
443f1376 | 607 | --disable-slirp) slirp="no" |
1d14ffa9 | 608 | ;; |
ee682d27 SW |
609 | --disable-uuid) uuid="no" |
610 | ;; | |
611 | --enable-uuid) uuid="yes" | |
612 | ;; | |
e0e6c8c0 | 613 | --disable-vde) vde="no" |
8a16d273 | 614 | ;; |
dfb278bd JQ |
615 | --enable-vde) vde="yes" |
616 | ;; | |
e37630ca AL |
617 | --disable-xen) xen="no" |
618 | ;; | |
fc321b4b JQ |
619 | --enable-xen) xen="yes" |
620 | ;; | |
2e4d9fb1 AJ |
621 | --disable-brlapi) brlapi="no" |
622 | ;; | |
4ffcedb6 JQ |
623 | --enable-brlapi) brlapi="yes" |
624 | ;; | |
fb599c9a AZ |
625 | --disable-bluez) bluez="no" |
626 | ;; | |
a20a6f46 JQ |
627 | --enable-bluez) bluez="yes" |
628 | ;; | |
7ba1e619 AL |
629 | --disable-kvm) kvm="no" |
630 | ;; | |
b31a0277 JQ |
631 | --enable-kvm) kvm="yes" |
632 | ;; | |
05c2a3e7 FB |
633 | --enable-profiler) profiler="yes" |
634 | ;; | |
c2de5c91 | 635 | --enable-cocoa) |
636 | cocoa="yes" ; | |
637 | sdl="no" ; | |
638 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" | |
1d14ffa9 | 639 | ;; |
cad25d69 | 640 | --disable-system) softmmu="no" |
0a8e90f4 | 641 | ;; |
cad25d69 | 642 | --enable-system) softmmu="yes" |
0a8e90f4 | 643 | ;; |
0953a80f ZA |
644 | --disable-user) |
645 | linux_user="no" ; | |
646 | bsd_user="no" ; | |
647 | darwin_user="no" | |
648 | ;; | |
649 | --enable-user) ;; | |
831b7825 | 650 | --disable-linux-user) linux_user="no" |
0a8e90f4 | 651 | ;; |
831b7825 TS |
652 | --enable-linux-user) linux_user="yes" |
653 | ;; | |
654 | --disable-darwin-user) darwin_user="no" | |
655 | ;; | |
656 | --enable-darwin-user) darwin_user="yes" | |
0a8e90f4 | 657 | ;; |
84778508 BS |
658 | --disable-bsd-user) bsd_user="no" |
659 | ;; | |
660 | --enable-bsd-user) bsd_user="yes" | |
661 | ;; | |
379f6698 PB |
662 | --enable-guest-base) guest_base="yes" |
663 | ;; | |
664 | --disable-guest-base) guest_base="no" | |
665 | ;; | |
34005a00 KS |
666 | --enable-user-pie) user_pie="yes" |
667 | ;; | |
668 | --disable-user-pie) user_pie="no" | |
669 | ;; | |
c5937220 PB |
670 | --enable-uname-release=*) uname_release="$optarg" |
671 | ;; | |
3142255c | 672 | --sparc_cpu=*) |
3142255c | 673 | ;; |
85aa5189 FB |
674 | --enable-werror) werror="yes" |
675 | ;; | |
676 | --disable-werror) werror="no" | |
677 | ;; | |
4d3b6f6e AZ |
678 | --disable-curses) curses="no" |
679 | ;; | |
c584a6d0 JQ |
680 | --enable-curses) curses="yes" |
681 | ;; | |
769ce76d AG |
682 | --disable-curl) curl="no" |
683 | ;; | |
788c8196 JQ |
684 | --enable-curl) curl="yes" |
685 | ;; | |
2df87df7 JQ |
686 | --disable-fdt) fdt="no" |
687 | ;; | |
688 | --enable-fdt) fdt="yes" | |
689 | ;; | |
5495ed11 LC |
690 | --disable-check-utests) check_utests="no" |
691 | ;; | |
692 | --enable-check-utests) check_utests="yes" | |
693 | ;; | |
bd0c5661 PB |
694 | --disable-nptl) nptl="no" |
695 | ;; | |
b0a47e79 JQ |
696 | --enable-nptl) nptl="yes" |
697 | ;; | |
8ff9cbf7 | 698 | --enable-mixemu) mixemu="yes" |
699 | ;; | |
5c6c3a6c CH |
700 | --disable-linux-aio) linux_aio="no" |
701 | ;; | |
702 | --enable-linux-aio) linux_aio="yes" | |
703 | ;; | |
758e8e38 VJ |
704 | --disable-attr) attr="no" |
705 | ;; | |
706 | --enable-attr) attr="yes" | |
707 | ;; | |
e5d355d1 AL |
708 | --enable-io-thread) io_thread="yes" |
709 | ;; | |
77755340 TS |
710 | --disable-blobs) blobs="no" |
711 | ;; | |
eac30262 AL |
712 | --kerneldir=*) kerneldir="$optarg" |
713 | ;; | |
4a19f1ec PB |
714 | --with-pkgversion=*) pkgversion=" ($optarg)" |
715 | ;; | |
a25dba17 | 716 | --disable-docs) docs="no" |
70ec5dc0 | 717 | ;; |
a25dba17 | 718 | --enable-docs) docs="yes" |
83a3ab8b | 719 | ;; |
d5970055 MT |
720 | --disable-vhost-net) vhost_net="no" |
721 | ;; | |
722 | --enable-vhost-net) vhost_net="yes" | |
723 | ;; | |
6bde81cb PB |
724 | --*dir) |
725 | ;; | |
7f1559c6 AZ |
726 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
727 | ;; | |
7d13299d FB |
728 | esac |
729 | done | |
730 | ||
3142255c BS |
731 | # |
732 | # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right | |
a558ee17 | 733 | # QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) |
3142255c | 734 | # |
379f6698 | 735 | host_guest_base="no" |
40293e58 | 736 | case "$cpu" in |
ed968ff1 JQ |
737 | sparc) case $sparc_cpu in |
738 | v7|v8) | |
a558ee17 | 739 | QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" |
ed968ff1 JQ |
740 | ;; |
741 | v8plus|v8plusa) | |
a558ee17 | 742 | QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" |
ed968ff1 JQ |
743 | ;; |
744 | *) # sparc_cpu not defined in the command line | |
a558ee17 | 745 | QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS" |
ed968ff1 JQ |
746 | esac |
747 | LDFLAGS="-m32 $LDFLAGS" | |
a558ee17 | 748 | QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS" |
762e8230 | 749 | if test "$solaris" = "no" ; then |
a558ee17 | 750 | QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS" |
c81da56e | 751 | helper_cflags="-ffixed-i0" |
762e8230 | 752 | fi |
3142255c | 753 | ;; |
ed968ff1 | 754 | sparc64) |
a558ee17 | 755 | QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS" |
ed968ff1 | 756 | LDFLAGS="-m64 $LDFLAGS" |
a558ee17 | 757 | QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS" |
ed968ff1 | 758 | if test "$solaris" != "no" ; then |
a558ee17 | 759 | QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS" |
762e8230 | 760 | fi |
3142255c | 761 | ;; |
76d83bde | 762 | s390) |
28d7cc49 RH |
763 | QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS" |
764 | LDFLAGS="-m31 $LDFLAGS" | |
48bb3750 | 765 | host_guest_base="yes" |
28d7cc49 RH |
766 | ;; |
767 | s390x) | |
768 | QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" | |
769 | LDFLAGS="-m64 $LDFLAGS" | |
48bb3750 | 770 | host_guest_base="yes" |
76d83bde | 771 | ;; |
40293e58 | 772 | i386) |
a558ee17 | 773 | QEMU_CFLAGS="-m32 $QEMU_CFLAGS" |
0c439cbf | 774 | LDFLAGS="-m32 $LDFLAGS" |
c81da56e | 775 | helper_cflags="-fomit-frame-pointer" |
379f6698 | 776 | host_guest_base="yes" |
40293e58 FB |
777 | ;; |
778 | x86_64) | |
a558ee17 | 779 | QEMU_CFLAGS="-m64 $QEMU_CFLAGS" |
0c439cbf | 780 | LDFLAGS="-m64 $LDFLAGS" |
379f6698 PB |
781 | host_guest_base="yes" |
782 | ;; | |
783 | arm*) | |
784 | host_guest_base="yes" | |
40293e58 | 785 | ;; |
f6548c0a | 786 | ppc*) |
787 | host_guest_base="yes" | |
788 | ;; | |
cc01cc8e AJ |
789 | mips*) |
790 | host_guest_base="yes" | |
791 | ;; | |
477ba620 AJ |
792 | ia64*) |
793 | host_guest_base="yes" | |
794 | ;; | |
fd76e73a RH |
795 | hppa*) |
796 | host_guest_base="yes" | |
797 | ;; | |
3142255c BS |
798 | esac |
799 | ||
379f6698 PB |
800 | [ -z "$guest_base" ] && guest_base="$host_guest_base" |
801 | ||
af5db58e PB |
802 | if test x"$show_help" = x"yes" ; then |
803 | cat << EOF | |
804 | ||
805 | Usage: configure [options] | |
806 | Options: [defaults in brackets after descriptions] | |
807 | ||
808 | EOF | |
809 | echo "Standard options:" | |
810 | echo " --help print this message" | |
811 | echo " --prefix=PREFIX install in PREFIX [$prefix]" | |
812 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." | |
813 | echo " use %M for cpu name [$interp_prefix]" | |
814 | echo " --target-list=LIST set target list [$target_list]" | |
815 | echo "" | |
af5db58e PB |
816 | echo "Advanced options (experts only):" |
817 | echo " --source-path=PATH path of source code [$source_path]" | |
818 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" | |
819 | echo " --cc=CC use C compiler CC [$cc]" | |
0bfe8cc0 PB |
820 | echo " --host-cc=CC use C compiler CC [$host_cc] for code run at" |
821 | echo " build time" | |
a558ee17 | 822 | echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" |
e3fc14c3 | 823 | echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" |
af5db58e | 824 | echo " --make=MAKE use specified make [$make]" |
6a882643 | 825 | echo " --install=INSTALL use specified install [$install]" |
af5db58e | 826 | echo " --static enable static build [$static]" |
0b24e75f PB |
827 | echo " --mandir=PATH install man pages in PATH" |
828 | echo " --datadir=PATH install firmware in PATH" | |
829 | echo " --docdir=PATH install documentation in PATH" | |
830 | echo " --bindir=PATH install binaries in PATH" | |
831 | echo " --sysconfdir=PATH install config in PATH/qemu" | |
f8393946 AJ |
832 | echo " --enable-debug-tcg enable TCG debugging" |
833 | echo " --disable-debug-tcg disable TCG debugging (default)" | |
09695a4a | 834 | echo " --enable-debug enable common debug build options" |
890b1658 AL |
835 | echo " --enable-sparse enable sparse checker" |
836 | echo " --disable-sparse disable sparse checker (default)" | |
1625af87 | 837 | echo " --disable-strip disable stripping binaries" |
85aa5189 | 838 | echo " --disable-werror disable compilation abort on warning" |
fe8f78e4 | 839 | echo " --disable-sdl disable SDL" |
c4198157 | 840 | echo " --enable-sdl enable SDL" |
af5db58e | 841 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
c2de5c91 | 842 | echo " --audio-drv-list=LIST set audio drivers list:" |
843 | echo " Available drivers: $audio_possible_drivers" | |
4c9b53e3 | 844 | echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" |
845 | echo " Available cards: $audio_possible_cards" | |
eb852011 MA |
846 | echo " --block-drv-whitelist=L set block driver whitelist" |
847 | echo " (affects only QEMU, not qemu-img)" | |
8ff9cbf7 | 848 | echo " --enable-mixemu enable mixer emulation" |
e37630ca | 849 | echo " --disable-xen disable xen backend driver support" |
fc321b4b | 850 | echo " --enable-xen enable xen backend driver support" |
2e4d9fb1 | 851 | echo " --disable-brlapi disable BrlAPI" |
4ffcedb6 | 852 | echo " --enable-brlapi enable BrlAPI" |
8d5d2d4c | 853 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
1be10ad2 | 854 | echo " --enable-vnc-tls enable TLS encryption for VNC server" |
2f9606b3 | 855 | echo " --disable-vnc-sasl disable SASL encryption for VNC server" |
ea784e3b | 856 | echo " --enable-vnc-sasl enable SASL encryption for VNC server" |
2f6f5c7a CC |
857 | echo " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" |
858 | echo " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" | |
96763cf9 | 859 | echo " --disable-vnc-png disable PNG compression for VNC server (default)" |
efe556ad | 860 | echo " --enable-vnc-png enable PNG compression for VNC server" |
bd023f95 CC |
861 | echo " --disable-vnc-thread disable threaded VNC server" |
862 | echo " --enable-vnc-thread enable threaded VNC server" | |
af896aaa | 863 | echo " --disable-curses disable curses output" |
c584a6d0 | 864 | echo " --enable-curses enable curses output" |
769ce76d | 865 | echo " --disable-curl disable curl connectivity" |
788c8196 | 866 | echo " --enable-curl enable curl connectivity" |
2df87df7 JQ |
867 | echo " --disable-fdt disable fdt device tree" |
868 | echo " --enable-fdt enable fdt device tree" | |
5495ed11 LC |
869 | echo " --disable-check-utests disable check unit-tests" |
870 | echo " --enable-check-utests enable check unit-tests" | |
fb599c9a | 871 | echo " --disable-bluez disable bluez stack connectivity" |
a20a6f46 | 872 | echo " --enable-bluez enable bluez stack connectivity" |
7ba1e619 | 873 | echo " --disable-kvm disable KVM acceleration support" |
b31a0277 | 874 | echo " --enable-kvm enable KVM acceleration support" |
bd0c5661 | 875 | echo " --disable-nptl disable usermode NPTL support" |
e5934d33 | 876 | echo " --enable-nptl enable usermode NPTL support" |
af5db58e PB |
877 | echo " --enable-system enable all system emulation targets" |
878 | echo " --disable-system disable all system emulation targets" | |
0953a80f ZA |
879 | echo " --enable-user enable supported user emulation targets" |
880 | echo " --disable-user disable all user emulation targets" | |
831b7825 TS |
881 | echo " --enable-linux-user enable all linux usermode emulation targets" |
882 | echo " --disable-linux-user disable all linux usermode emulation targets" | |
883 | echo " --enable-darwin-user enable all darwin usermode emulation targets" | |
884 | echo " --disable-darwin-user disable all darwin usermode emulation targets" | |
84778508 BS |
885 | echo " --enable-bsd-user enable all BSD usermode emulation targets" |
886 | echo " --disable-bsd-user disable all BSD usermode emulation targets" | |
379f6698 PB |
887 | echo " --enable-guest-base enable GUEST_BASE support for usermode" |
888 | echo " emulation targets" | |
889 | echo " --disable-guest-base disable GUEST_BASE support" | |
34005a00 KS |
890 | echo " --enable-user-pie build usermode emulation targets as PIE" |
891 | echo " --disable-user-pie do not build usermode emulation targets as PIE" | |
af5db58e PB |
892 | echo " --fmod-lib path to FMOD library" |
893 | echo " --fmod-inc path to FMOD includes" | |
2f6a1ab0 | 894 | echo " --oss-lib path to OSS library" |
c5937220 | 895 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
3142255c | 896 | echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" |
ee682d27 SW |
897 | echo " --disable-uuid disable uuid support" |
898 | echo " --enable-uuid enable uuid support" | |
e0e6c8c0 | 899 | echo " --disable-vde disable support for vde network" |
dfb278bd | 900 | echo " --enable-vde enable support for vde network" |
5c6c3a6c CH |
901 | echo " --disable-linux-aio disable Linux AIO support" |
902 | echo " --enable-linux-aio enable Linux AIO support" | |
758e8e38 VJ |
903 | echo " --disable-attr disables attr and xattr support" |
904 | echo " --enable-attr enable attr and xattr support" | |
e5d355d1 | 905 | echo " --enable-io-thread enable IO thread" |
77755340 | 906 | echo " --disable-blobs disable installing provided firmware blobs" |
eac30262 | 907 | echo " --kerneldir=PATH look for kernel includes in PATH" |
d2807bc9 DU |
908 | echo " --enable-docs enable documentation build" |
909 | echo " --disable-docs disable documentation build" | |
d5970055 MT |
910 | echo " --disable-vhost-net disable vhost-net acceleration support" |
911 | echo " --enable-vhost-net enable vhost-net acceleration support" | |
7e24e92a | 912 | echo " --trace-backend=B Trace backend nop simple ust" |
9410b56c PS |
913 | echo " --trace-file=NAME Full PATH,NAME of file to store traces" |
914 | echo " Default:trace-<pid>" | |
af5db58e | 915 | echo "" |
5bf08934 | 916 | echo "NOTE: The object files are built at the place where configure is launched" |
af5db58e PB |
917 | exit 1 |
918 | fi | |
919 | ||
ec530c81 FB |
920 | # |
921 | # Solaris specific configure tool chain decisions | |
922 | # | |
923 | if test "$solaris" = "yes" ; then | |
6792aa11 LM |
924 | if has $install; then |
925 | : | |
926 | else | |
ec530c81 FB |
927 | echo "Solaris install program not found. Use --install=/usr/ucb/install or" |
928 | echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" | |
929 | echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" | |
930 | exit 1 | |
931 | fi | |
6792aa11 | 932 | if test "`path_of $install`" = "/usr/sbin/install" ; then |
ec530c81 FB |
933 | echo "Error: Solaris /usr/sbin/install is not an appropriate install program." |
934 | echo "try ginstall from the GNU fileutils available from www.blastwave.org" | |
935 | echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" | |
936 | exit 1 | |
937 | fi | |
6792aa11 LM |
938 | if has ar; then |
939 | : | |
940 | else | |
ec530c81 FB |
941 | echo "Error: No path includes ar" |
942 | if test -f /usr/ccs/bin/ar ; then | |
943 | echo "Add /usr/ccs/bin to your path and rerun configure" | |
944 | fi | |
945 | exit 1 | |
946 | fi | |
5fafdf24 | 947 | fi |
ec530c81 FB |
948 | |
949 | ||
5327cf48 FB |
950 | if test -z "$target_list" ; then |
951 | # these targets are portable | |
0a8e90f4 | 952 | if [ "$softmmu" = "yes" ] ; then |
2408a527 AJ |
953 | target_list="\ |
954 | i386-softmmu \ | |
955 | x86_64-softmmu \ | |
956 | arm-softmmu \ | |
957 | cris-softmmu \ | |
958 | m68k-softmmu \ | |
72b675ca | 959 | microblaze-softmmu \ |
2408a527 AJ |
960 | mips-softmmu \ |
961 | mipsel-softmmu \ | |
962 | mips64-softmmu \ | |
963 | mips64el-softmmu \ | |
964 | ppc-softmmu \ | |
965 | ppcemb-softmmu \ | |
966 | ppc64-softmmu \ | |
967 | sh4-softmmu \ | |
968 | sh4eb-softmmu \ | |
969 | sparc-softmmu \ | |
1b64fcae | 970 | sparc64-softmmu \ |
2408a527 | 971 | " |
0a8e90f4 | 972 | fi |
5327cf48 | 973 | # the following are Linux specific |
831b7825 | 974 | if [ "$linux_user" = "yes" ] ; then |
2408a527 AJ |
975 | target_list="${target_list}\ |
976 | i386-linux-user \ | |
977 | x86_64-linux-user \ | |
978 | alpha-linux-user \ | |
979 | arm-linux-user \ | |
980 | armeb-linux-user \ | |
981 | cris-linux-user \ | |
982 | m68k-linux-user \ | |
72b675ca | 983 | microblaze-linux-user \ |
2408a527 AJ |
984 | mips-linux-user \ |
985 | mipsel-linux-user \ | |
986 | ppc-linux-user \ | |
987 | ppc64-linux-user \ | |
988 | ppc64abi32-linux-user \ | |
989 | sh4-linux-user \ | |
990 | sh4eb-linux-user \ | |
991 | sparc-linux-user \ | |
992 | sparc64-linux-user \ | |
993 | sparc32plus-linux-user \ | |
994 | " | |
831b7825 TS |
995 | fi |
996 | # the following are Darwin specific | |
997 | if [ "$darwin_user" = "yes" ] ; then | |
6cdc7375 | 998 | target_list="$target_list i386-darwin-user ppc-darwin-user " |
5327cf48 | 999 | fi |
84778508 BS |
1000 | # the following are BSD specific |
1001 | if [ "$bsd_user" = "yes" ] ; then | |
1002 | target_list="${target_list}\ | |
31fc12df BS |
1003 | i386-bsd-user \ |
1004 | x86_64-bsd-user \ | |
1005 | sparc-bsd-user \ | |
84778508 BS |
1006 | sparc64-bsd-user \ |
1007 | " | |
1008 | fi | |
6e20a45f | 1009 | else |
b1a550a0 | 1010 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
5327cf48 | 1011 | fi |
0a8e90f4 PB |
1012 | if test -z "$target_list" ; then |
1013 | echo "No targets enabled" | |
1014 | exit 1 | |
1015 | fi | |
f55fe278 PB |
1016 | # see if system emulation was really requested |
1017 | case " $target_list " in | |
1018 | *"-softmmu "*) softmmu=yes | |
1019 | ;; | |
1020 | *) softmmu=no | |
1021 | ;; | |
1022 | esac | |
5327cf48 | 1023 | |
249247c9 JQ |
1024 | feature_not_found() { |
1025 | feature=$1 | |
1026 | ||
1027 | echo "ERROR" | |
1028 | echo "ERROR: User requested feature $feature" | |
9332f6a2 | 1029 | echo "ERROR: configure was not able to find it" |
249247c9 JQ |
1030 | echo "ERROR" |
1031 | exit 1; | |
1032 | } | |
1033 | ||
7d13299d FB |
1034 | if test -z "$cross_prefix" ; then |
1035 | ||
1036 | # --- | |
1037 | # big/little endian test | |
1038 | cat > $TMPC << EOF | |
1039 | #include <inttypes.h> | |
1040 | int main(int argc, char ** argv){ | |
1d14ffa9 FB |
1041 | volatile uint32_t i=0x01234567; |
1042 | return (*((uint8_t*)(&i))) == 0x67; | |
7d13299d FB |
1043 | } |
1044 | EOF | |
1045 | ||
52166aa0 | 1046 | if compile_prog "" "" ; then |
7d13299d FB |
1047 | $TMPE && bigendian="yes" |
1048 | else | |
1049 | echo big/little test failed | |
1050 | fi | |
1051 | ||
1052 | else | |
1053 | ||
1054 | # if cross compiling, cannot launch a program, so make a static guess | |
ea8f20f8 | 1055 | case "$cpu" in |
24e804ec | 1056 | armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) |
ea8f20f8 JQ |
1057 | bigendian=yes |
1058 | ;; | |
1059 | esac | |
7d13299d FB |
1060 | |
1061 | fi | |
1062 | ||
b6853697 FB |
1063 | # host long bits test |
1064 | hostlongbits="32" | |
ea8f20f8 | 1065 | case "$cpu" in |
24e804ec | 1066 | x86_64|alpha|ia64|sparc64|ppc64|s390x) |
ea8f20f8 JQ |
1067 | hostlongbits=64 |
1068 | ;; | |
1069 | esac | |
b6853697 | 1070 | |
b0a47e79 JQ |
1071 | |
1072 | ########################################## | |
1073 | # NPTL probe | |
1074 | ||
1075 | if test "$nptl" != "no" ; then | |
1076 | cat > $TMPC <<EOF | |
bd0c5661 | 1077 | #include <sched.h> |
30813cea | 1078 | #include <linux/futex.h> |
bd0c5661 PB |
1079 | void foo() |
1080 | { | |
1081 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) | |
1082 | #error bork | |
1083 | #endif | |
1084 | } | |
1085 | EOF | |
1086 | ||
b0a47e79 JQ |
1087 | if compile_object ; then |
1088 | nptl=yes | |
1089 | else | |
1090 | if test "$nptl" = "yes" ; then | |
1091 | feature_not_found "nptl" | |
1092 | fi | |
1093 | nptl=no | |
1094 | fi | |
bd0c5661 PB |
1095 | fi |
1096 | ||
ac62922e AZ |
1097 | ########################################## |
1098 | # zlib check | |
1099 | ||
1100 | cat > $TMPC << EOF | |
1101 | #include <zlib.h> | |
1102 | int main(void) { zlibVersion(); return 0; } | |
1103 | EOF | |
52166aa0 | 1104 | if compile_prog "" "-lz" ; then |
ac62922e AZ |
1105 | : |
1106 | else | |
1107 | echo | |
1108 | echo "Error: zlib check failed" | |
1109 | echo "Make sure to have the zlib libs and headers installed." | |
1110 | echo | |
1111 | exit 1 | |
1112 | fi | |
1113 | ||
e37630ca AL |
1114 | ########################################## |
1115 | # xen probe | |
1116 | ||
fc321b4b | 1117 | if test "$xen" != "no" ; then |
b2266bee JQ |
1118 | xen_libs="-lxenstore -lxenctrl -lxenguest" |
1119 | cat > $TMPC <<EOF | |
e37630ca AL |
1120 | #include <xenctrl.h> |
1121 | #include <xs.h> | |
df7a607b | 1122 | int main(void) { xs_daemon_open(); xc_interface_open(); return 0; } |
e37630ca | 1123 | EOF |
52166aa0 | 1124 | if compile_prog "" "$xen_libs" ; then |
fc321b4b | 1125 | xen=yes |
3efd632b | 1126 | libs_softmmu="$xen_libs $libs_softmmu" |
b2266bee | 1127 | else |
fc321b4b JQ |
1128 | if test "$xen" = "yes" ; then |
1129 | feature_not_found "xen" | |
1130 | fi | |
1131 | xen=no | |
b2266bee | 1132 | fi |
e37630ca AL |
1133 | fi |
1134 | ||
f91672e5 PB |
1135 | ########################################## |
1136 | # pkgconfig probe | |
1137 | ||
1138 | pkgconfig="${cross_prefix}pkg-config" | |
0dba6195 | 1139 | if ! has $pkgconfig; then |
f91672e5 PB |
1140 | # likely not cross compiling, or hope for the best |
1141 | pkgconfig=pkg-config | |
1142 | fi | |
1143 | ||
dfffc653 JQ |
1144 | ########################################## |
1145 | # Sparse probe | |
1146 | if test "$sparse" != "no" ; then | |
0dba6195 | 1147 | if has cgcc; then |
dfffc653 JQ |
1148 | sparse=yes |
1149 | else | |
1150 | if test "$sparse" = "yes" ; then | |
1151 | feature_not_found "sparse" | |
1152 | fi | |
1153 | sparse=no | |
1154 | fi | |
1155 | fi | |
1156 | ||
11d9f695 FB |
1157 | ########################################## |
1158 | # SDL probe | |
1159 | ||
fec0e3e8 SW |
1160 | # Look for sdl configuration program (pkg-config or sdl-config). |
1161 | # Prefer variant with cross prefix if cross compiling, | |
1162 | # and favour pkg-config with sdl over sdl-config. | |
1163 | if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \ | |
1164 | $pkgconfig sdl --modversion >/dev/null 2>&1; then | |
1165 | sdlconfig="$pkgconfig sdl" | |
1166 | _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` | |
1167 | elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then | |
1168 | sdlconfig="${cross_prefix}sdl-config" | |
1169 | _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` | |
1170 | elif $pkgconfig sdl --modversion >/dev/null 2>&1; then | |
9316f803 PB |
1171 | sdlconfig="$pkgconfig sdl" |
1172 | _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` | |
0dba6195 | 1173 | elif has sdl-config; then |
9316f803 PB |
1174 | sdlconfig='sdl-config' |
1175 | _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` | |
a0dfd8a4 LM |
1176 | else |
1177 | if test "$sdl" = "yes" ; then | |
1178 | feature_not_found "sdl" | |
1179 | fi | |
1180 | sdl=no | |
9316f803 | 1181 | fi |
11d9f695 | 1182 | |
9316f803 | 1183 | sdl_too_old=no |
c4198157 | 1184 | if test "$sdl" != "no" ; then |
ac119f9d | 1185 | cat > $TMPC << EOF |
11d9f695 FB |
1186 | #include <SDL.h> |
1187 | #undef main /* We don't want SDL to override our main() */ | |
1188 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
1189 | EOF | |
9316f803 | 1190 | sdl_cflags=`$sdlconfig --cflags 2> /dev/null` |
74f42e18 T |
1191 | if test "$static" = "yes" ; then |
1192 | sdl_libs=`$sdlconfig --static-libs 2>/dev/null` | |
1193 | else | |
1194 | sdl_libs=`$sdlconfig --libs 2> /dev/null` | |
1195 | fi | |
52166aa0 | 1196 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
1197 | if test "$_sdlversion" -lt 121 ; then |
1198 | sdl_too_old=yes | |
1199 | else | |
1200 | if test "$cocoa" = "no" ; then | |
1201 | sdl=yes | |
1202 | fi | |
1203 | fi | |
cd01b4a3 | 1204 | |
67c274d3 | 1205 | # static link with sdl ? (note: sdl.pc's --static --libs is broken) |
ac119f9d | 1206 | if test "$sdl" = "yes" -a "$static" = "yes" ; then |
67c274d3 | 1207 | if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then |
f8aa6c7b SW |
1208 | sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" |
1209 | sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" | |
ac119f9d | 1210 | fi |
52166aa0 | 1211 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
1212 | : |
1213 | else | |
1214 | sdl=no | |
1215 | fi | |
1216 | fi # static link | |
c4198157 JQ |
1217 | else # sdl not found |
1218 | if test "$sdl" = "yes" ; then | |
1219 | feature_not_found "sdl" | |
1220 | fi | |
1221 | sdl=no | |
ac119f9d | 1222 | fi # sdl compile test |
a68551bc | 1223 | fi |
11d9f695 | 1224 | |
5368a422 | 1225 | if test "$sdl" = "yes" ; then |
ac119f9d | 1226 | cat > $TMPC <<EOF |
5368a422 AL |
1227 | #include <SDL.h> |
1228 | #if defined(SDL_VIDEO_DRIVER_X11) | |
1229 | #include <X11/XKBlib.h> | |
1230 | #else | |
1231 | #error No x11 support | |
1232 | #endif | |
1233 | int main(void) { return 0; } | |
1234 | EOF | |
52166aa0 | 1235 | if compile_prog "$sdl_cflags" "$sdl_libs" ; then |
ac119f9d JQ |
1236 | sdl_libs="$sdl_libs -lX11" |
1237 | fi | |
07d9ac44 JQ |
1238 | if test "$mingw32" = "yes" ; then |
1239 | sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole" | |
1240 | fi | |
0705667e | 1241 | libs_softmmu="$sdl_libs $libs_softmmu" |
5368a422 AL |
1242 | fi |
1243 | ||
8d5d2d4c TS |
1244 | ########################################## |
1245 | # VNC TLS detection | |
1be10ad2 JQ |
1246 | if test "$vnc_tls" != "no" ; then |
1247 | cat > $TMPC <<EOF | |
ae6b5e5a AL |
1248 | #include <gnutls/gnutls.h> |
1249 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } | |
1250 | EOF | |
f91672e5 PB |
1251 | vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null` |
1252 | vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null` | |
1be10ad2 JQ |
1253 | if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then |
1254 | vnc_tls=yes | |
1255 | libs_softmmu="$vnc_tls_libs $libs_softmmu" | |
1256 | else | |
1257 | if test "$vnc_tls" = "yes" ; then | |
1258 | feature_not_found "vnc-tls" | |
ae6b5e5a | 1259 | fi |
1be10ad2 JQ |
1260 | vnc_tls=no |
1261 | fi | |
8d5d2d4c TS |
1262 | fi |
1263 | ||
2f9606b3 AL |
1264 | ########################################## |
1265 | # VNC SASL detection | |
3aefa744 | 1266 | if test "$vnc_sasl" != "no" ; then |
ea784e3b | 1267 | cat > $TMPC <<EOF |
2f9606b3 AL |
1268 | #include <sasl/sasl.h> |
1269 | #include <stdio.h> | |
1270 | int main(void) { sasl_server_init(NULL, "qemu"); return 0; } | |
1271 | EOF | |
ea784e3b JQ |
1272 | # Assuming Cyrus-SASL installed in /usr prefix |
1273 | vnc_sasl_cflags="" | |
1274 | vnc_sasl_libs="-lsasl2" | |
1275 | if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then | |
1276 | vnc_sasl=yes | |
1277 | libs_softmmu="$vnc_sasl_libs $libs_softmmu" | |
1278 | else | |
1279 | if test "$vnc_sasl" = "yes" ; then | |
1280 | feature_not_found "vnc-sasl" | |
2f9606b3 | 1281 | fi |
ea784e3b JQ |
1282 | vnc_sasl=no |
1283 | fi | |
2f9606b3 AL |
1284 | fi |
1285 | ||
2f6f5c7a CC |
1286 | ########################################## |
1287 | # VNC JPEG detection | |
96763cf9 | 1288 | if test "$vnc_jpeg" != "no" ; then |
2f6f5c7a CC |
1289 | cat > $TMPC <<EOF |
1290 | #include <stdio.h> | |
1291 | #include <jpeglib.h> | |
1292 | int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } | |
1293 | EOF | |
1294 | vnc_jpeg_cflags="" | |
1295 | vnc_jpeg_libs="-ljpeg" | |
1296 | if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then | |
1297 | vnc_jpeg=yes | |
1298 | libs_softmmu="$vnc_jpeg_libs $libs_softmmu" | |
1299 | else | |
1300 | if test "$vnc_jpeg" = "yes" ; then | |
1301 | feature_not_found "vnc-jpeg" | |
1302 | fi | |
1303 | vnc_jpeg=no | |
1304 | fi | |
1305 | fi | |
1306 | ||
efe556ad CC |
1307 | ########################################## |
1308 | # VNC PNG detection | |
96763cf9 | 1309 | if test "$vnc_png" != "no" ; then |
efe556ad CC |
1310 | cat > $TMPC <<EOF |
1311 | //#include <stdio.h> | |
1312 | #include <png.h> | |
1313 | int main(void) { | |
1314 | png_structp png_ptr; | |
1315 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); | |
1316 | return 0; | |
1317 | } | |
1318 | EOF | |
1319 | vnc_png_cflags="" | |
1320 | vnc_png_libs="-lpng" | |
1321 | if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then | |
1322 | vnc_png=yes | |
1323 | libs_softmmu="$vnc_png_libs $libs_softmmu" | |
1324 | else | |
1325 | if test "$vnc_png" = "yes" ; then | |
1326 | feature_not_found "vnc-png" | |
1327 | fi | |
1328 | vnc_png=no | |
1329 | fi | |
1330 | fi | |
1331 | ||
76655d6d AL |
1332 | ########################################## |
1333 | # fnmatch() probe, used for ACL routines | |
1334 | fnmatch="no" | |
1335 | cat > $TMPC << EOF | |
1336 | #include <fnmatch.h> | |
1337 | int main(void) | |
1338 | { | |
1339 | fnmatch("foo", "foo", 0); | |
1340 | return 0; | |
1341 | } | |
1342 | EOF | |
52166aa0 | 1343 | if compile_prog "" "" ; then |
76655d6d AL |
1344 | fnmatch="yes" |
1345 | fi | |
1346 | ||
ee682d27 SW |
1347 | ########################################## |
1348 | # uuid_generate() probe, used for vdi block driver | |
1349 | if test "$uuid" != "no" ; then | |
1350 | uuid_libs="-luuid" | |
1351 | cat > $TMPC << EOF | |
1352 | #include <uuid/uuid.h> | |
1353 | int main(void) | |
1354 | { | |
1355 | uuid_t my_uuid; | |
1356 | uuid_generate(my_uuid); | |
1357 | return 0; | |
1358 | } | |
1359 | EOF | |
1360 | if compile_prog "" "$uuid_libs" ; then | |
1361 | uuid="yes" | |
1362 | libs_softmmu="$uuid_libs $libs_softmmu" | |
1363 | libs_tools="$uuid_libs $libs_tools" | |
1364 | else | |
1365 | if test "$uuid" = "yes" ; then | |
1366 | feature_not_found "uuid" | |
1367 | fi | |
1368 | uuid=no | |
1369 | fi | |
1370 | fi | |
1371 | ||
8a16d273 TS |
1372 | ########################################## |
1373 | # vde libraries probe | |
dfb278bd | 1374 | if test "$vde" != "no" ; then |
4baae0ac | 1375 | vde_libs="-lvdeplug" |
8a16d273 TS |
1376 | cat > $TMPC << EOF |
1377 | #include <libvdeplug.h> | |
4a7f0e06 PB |
1378 | int main(void) |
1379 | { | |
1380 | struct vde_open_args a = {0, 0, 0}; | |
1381 | vde_open("", "", &a); | |
1382 | return 0; | |
1383 | } | |
8a16d273 | 1384 | EOF |
52166aa0 | 1385 | if compile_prog "" "$vde_libs" ; then |
4baae0ac | 1386 | vde=yes |
8e02e54c JQ |
1387 | libs_softmmu="$vde_libs $libs_softmmu" |
1388 | libs_tools="$vde_libs $libs_tools" | |
dfb278bd JQ |
1389 | else |
1390 | if test "$vde" = "yes" ; then | |
1391 | feature_not_found "vde" | |
1392 | fi | |
1393 | vde=no | |
4baae0ac | 1394 | fi |
8a16d273 TS |
1395 | fi |
1396 | ||
8f28f3fb | 1397 | ########################################## |
c2de5c91 | 1398 | # Sound support libraries probe |
8f28f3fb | 1399 | |
c2de5c91 | 1400 | audio_drv_probe() |
1401 | { | |
1402 | drv=$1 | |
1403 | hdr=$2 | |
1404 | lib=$3 | |
1405 | exp=$4 | |
1406 | cfl=$5 | |
1407 | cat > $TMPC << EOF | |
1408 | #include <$hdr> | |
1409 | int main(void) { $exp } | |
8f28f3fb | 1410 | EOF |
52166aa0 | 1411 | if compile_prog "$cfl" "$lib" ; then |
c2de5c91 | 1412 | : |
1413 | else | |
1414 | echo | |
1415 | echo "Error: $drv check failed" | |
1416 | echo "Make sure to have the $drv libs and headers installed." | |
1417 | echo | |
1418 | exit 1 | |
1419 | fi | |
1420 | } | |
1421 | ||
2fa7d3bf | 1422 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
c2de5c91 | 1423 | for drv in $audio_drv_list; do |
1424 | case $drv in | |
1425 | alsa) | |
1426 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ | |
1427 | "snd_pcm_t **handle; return snd_pcm_close(*handle);" | |
a4bf6780 | 1428 | libs_softmmu="-lasound $libs_softmmu" |
c2de5c91 | 1429 | ;; |
1430 | ||
1431 | fmod) | |
1432 | if test -z $fmod_lib || test -z $fmod_inc; then | |
1433 | echo | |
1434 | echo "Error: You must specify path to FMOD library and headers" | |
1435 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" | |
1436 | echo | |
1437 | exit 1 | |
1438 | fi | |
1439 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" | |
a4bf6780 | 1440 | libs_softmmu="$fmod_lib $libs_softmmu" |
c2de5c91 | 1441 | ;; |
1442 | ||
1443 | esd) | |
1444 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' | |
a4bf6780 | 1445 | libs_softmmu="-lesd $libs_softmmu" |
67f86e8e | 1446 | audio_pt_int="yes" |
c2de5c91 | 1447 | ;; |
b8e59f18 | 1448 | |
1449 | pa) | |
493abda6 | 1450 | audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \ |
b8e59f18 | 1451 | "pa_simple *s = NULL; pa_simple_free(s); return 0;" |
493abda6 | 1452 | libs_softmmu="-lpulse -lpulse-simple $libs_softmmu" |
67f86e8e | 1453 | audio_pt_int="yes" |
b8e59f18 | 1454 | ;; |
1455 | ||
997e690a JQ |
1456 | coreaudio) |
1457 | libs_softmmu="-framework CoreAudio $libs_softmmu" | |
1458 | ;; | |
1459 | ||
a4bf6780 JQ |
1460 | dsound) |
1461 | libs_softmmu="-lole32 -ldxguid $libs_softmmu" | |
d5631638 | 1462 | audio_win_int="yes" |
a4bf6780 JQ |
1463 | ;; |
1464 | ||
1465 | oss) | |
1466 | libs_softmmu="$oss_lib $libs_softmmu" | |
1467 | ;; | |
1468 | ||
1469 | sdl|wav) | |
2f6a1ab0 BS |
1470 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
1471 | ;; | |
1472 | ||
d5631638 | 1473 | winwave) |
1474 | libs_softmmu="-lwinmm $libs_softmmu" | |
1475 | audio_win_int="yes" | |
1476 | ;; | |
1477 | ||
e4c63a6a | 1478 | *) |
1c9b2a52 | 1479 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
e4c63a6a | 1480 | echo |
1481 | echo "Error: Unknown driver '$drv' selected" | |
1482 | echo "Possible drivers are: $audio_possible_drivers" | |
1483 | echo | |
1484 | exit 1 | |
1485 | } | |
1486 | ;; | |
c2de5c91 | 1487 | esac |
1488 | done | |
8f28f3fb | 1489 | |
2e4d9fb1 AJ |
1490 | ########################################## |
1491 | # BrlAPI probe | |
1492 | ||
4ffcedb6 | 1493 | if test "$brlapi" != "no" ; then |
eb82284f JQ |
1494 | brlapi_libs="-lbrlapi" |
1495 | cat > $TMPC << EOF | |
2e4d9fb1 AJ |
1496 | #include <brlapi.h> |
1497 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } | |
1498 | EOF | |
52166aa0 | 1499 | if compile_prog "" "$brlapi_libs" ; then |
eb82284f | 1500 | brlapi=yes |
264606b3 | 1501 | libs_softmmu="$brlapi_libs $libs_softmmu" |
4ffcedb6 JQ |
1502 | else |
1503 | if test "$brlapi" = "yes" ; then | |
1504 | feature_not_found "brlapi" | |
1505 | fi | |
1506 | brlapi=no | |
eb82284f JQ |
1507 | fi |
1508 | fi | |
2e4d9fb1 | 1509 | |
4d3b6f6e AZ |
1510 | ########################################## |
1511 | # curses probe | |
4f78ef9a | 1512 | curses_list="-lncurses -lcurses" |
4d3b6f6e | 1513 | |
c584a6d0 JQ |
1514 | if test "$curses" != "no" ; then |
1515 | curses_found=no | |
4d3b6f6e AZ |
1516 | cat > $TMPC << EOF |
1517 | #include <curses.h> | |
5a8ff3aa BS |
1518 | #ifdef __OpenBSD__ |
1519 | #define resize_term resizeterm | |
1520 | #endif | |
1521 | int main(void) { resize_term(0, 0); return curses_version(); } | |
4d3b6f6e | 1522 | EOF |
4f78ef9a JQ |
1523 | for curses_lib in $curses_list; do |
1524 | if compile_prog "" "$curses_lib" ; then | |
c584a6d0 | 1525 | curses_found=yes |
4f78ef9a JQ |
1526 | libs_softmmu="$curses_lib $libs_softmmu" |
1527 | break | |
1528 | fi | |
1529 | done | |
c584a6d0 JQ |
1530 | if test "$curses_found" = "yes" ; then |
1531 | curses=yes | |
1532 | else | |
1533 | if test "$curses" = "yes" ; then | |
1534 | feature_not_found "curses" | |
1535 | fi | |
1536 | curses=no | |
1537 | fi | |
4f78ef9a | 1538 | fi |
4d3b6f6e | 1539 | |
769ce76d AG |
1540 | ########################################## |
1541 | # curl probe | |
1542 | ||
4e2b0658 PB |
1543 | if $pkgconfig libcurl --modversion >/dev/null 2>&1; then |
1544 | curlconfig="$pkgconfig libcurl" | |
1545 | else | |
1546 | curlconfig=curl-config | |
1547 | fi | |
1548 | ||
788c8196 | 1549 | if test "$curl" != "no" ; then |
769ce76d AG |
1550 | cat > $TMPC << EOF |
1551 | #include <curl/curl.h> | |
1552 | int main(void) { return curl_easy_init(); } | |
1553 | EOF | |
4e2b0658 PB |
1554 | curl_cflags=`$curlconfig --cflags 2>/dev/null` |
1555 | curl_libs=`$curlconfig --libs 2>/dev/null` | |
b1d5a277 | 1556 | if compile_prog "$curl_cflags" "$curl_libs" ; then |
769ce76d | 1557 | curl=yes |
f0302935 JQ |
1558 | libs_tools="$curl_libs $libs_tools" |
1559 | libs_softmmu="$curl_libs $libs_softmmu" | |
788c8196 JQ |
1560 | else |
1561 | if test "$curl" = "yes" ; then | |
1562 | feature_not_found "curl" | |
1563 | fi | |
1564 | curl=no | |
769ce76d AG |
1565 | fi |
1566 | fi # test "$curl" | |
1567 | ||
5495ed11 LC |
1568 | ########################################## |
1569 | # check framework probe | |
1570 | ||
1571 | if test "$check_utests" != "no" ; then | |
1572 | cat > $TMPC << EOF | |
1573 | #include <check.h> | |
1574 | int main(void) { suite_create("qemu test"); return 0; } | |
1575 | EOF | |
f91672e5 | 1576 | check_libs=`$pkgconfig --libs check` |
5495ed11 LC |
1577 | if compile_prog "" $check_libs ; then |
1578 | check_utests=yes | |
1579 | libs_tools="$check_libs $libs_tools" | |
1580 | else | |
1581 | if test "$check_utests" = "yes" ; then | |
1582 | feature_not_found "check" | |
1583 | fi | |
1584 | check_utests=no | |
1585 | fi | |
1586 | fi # test "$check_utests" | |
1587 | ||
fb599c9a AZ |
1588 | ########################################## |
1589 | # bluez support probe | |
a20a6f46 | 1590 | if test "$bluez" != "no" ; then |
e820e3f4 AZ |
1591 | cat > $TMPC << EOF |
1592 | #include <bluetooth/bluetooth.h> | |
1593 | int main(void) { return bt_error(0); } | |
1594 | EOF | |
f91672e5 PB |
1595 | bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null` |
1596 | bluez_libs=`$pkgconfig --libs bluez 2> /dev/null` | |
52166aa0 | 1597 | if compile_prog "$bluez_cflags" "$bluez_libs" ; then |
a20a6f46 | 1598 | bluez=yes |
e482d56a | 1599 | libs_softmmu="$bluez_libs $libs_softmmu" |
e820e3f4 | 1600 | else |
a20a6f46 JQ |
1601 | if test "$bluez" = "yes" ; then |
1602 | feature_not_found "bluez" | |
1603 | fi | |
e820e3f4 AZ |
1604 | bluez="no" |
1605 | fi | |
fb599c9a AZ |
1606 | fi |
1607 | ||
7ba1e619 AL |
1608 | ########################################## |
1609 | # kvm probe | |
b31a0277 | 1610 | if test "$kvm" != "no" ; then |
7ba1e619 AL |
1611 | cat > $TMPC <<EOF |
1612 | #include <linux/kvm.h> | |
9fd8d8d7 | 1613 | #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12 |
7ba1e619 AL |
1614 | #error Invalid KVM version |
1615 | #endif | |
9fd8d8d7 AL |
1616 | #if !defined(KVM_CAP_USER_MEMORY) |
1617 | #error Missing KVM capability KVM_CAP_USER_MEMORY | |
1618 | #endif | |
1619 | #if !defined(KVM_CAP_SET_TSS_ADDR) | |
1620 | #error Missing KVM capability KVM_CAP_SET_TSS_ADDR | |
1621 | #endif | |
1622 | #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) | |
1623 | #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS | |
1624 | #endif | |
7ba1e619 AL |
1625 | int main(void) { return 0; } |
1626 | EOF | |
eac30262 AL |
1627 | if test "$kerneldir" != "" ; then |
1628 | kvm_cflags=-I"$kerneldir"/include | |
8444eb6e AL |
1629 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \ |
1630 | -a -d "$kerneldir/arch/x86/include" ; then | |
1631 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include" | |
406b430d AL |
1632 | elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then |
1633 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include" | |
0e60a699 AG |
1634 | elif test "$cpu" = "s390x" -a -d "$kerneldir/arch/s390/include" ; then |
1635 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/s390/include" | |
8444eb6e AL |
1636 | elif test -d "$kerneldir/arch/$cpu/include" ; then |
1637 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include" | |
1638 | fi | |
eac30262 | 1639 | else |
f038e8f7 | 1640 | kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null` |
eac30262 | 1641 | fi |
52166aa0 | 1642 | if compile_prog "$kvm_cflags" "" ; then |
b31a0277 | 1643 | kvm=yes |
dae5079a JK |
1644 | cat > $TMPC <<EOF |
1645 | #include <linux/kvm_para.h> | |
1646 | int main(void) { return 0; } | |
1647 | EOF | |
1648 | if compile_prog "$kvm_cflags" "" ; then | |
1649 | kvm_para=yes | |
1650 | fi | |
7ba1e619 | 1651 | else |
b31a0277 | 1652 | if test "$kvm" = "yes" ; then |
0dba6195 | 1653 | if has awk && has grep; then |
b31a0277 | 1654 | kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \ |
9fd8d8d7 AL |
1655 | | grep "error: " \ |
1656 | | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'` | |
b31a0277 JQ |
1657 | if test "$kvmerr" != "" ; then |
1658 | echo -e "${kvmerr}\n\ | |
1659 | NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \ | |
1660 | recent kvm-kmod from http://sourceforge.net/projects/kvm." | |
1661 | fi | |
9fd8d8d7 | 1662 | fi |
b31a0277 | 1663 | feature_not_found "kvm" |
9fd8d8d7 | 1664 | fi |
b31a0277 | 1665 | kvm=no |
7ba1e619 AL |
1666 | fi |
1667 | fi | |
1668 | ||
d5970055 MT |
1669 | ########################################## |
1670 | # test for vhost net | |
1671 | ||
1672 | if test "$vhost_net" != "no"; then | |
1673 | if test "$kvm" != "no"; then | |
1674 | cat > $TMPC <<EOF | |
1675 | #include <linux/vhost.h> | |
1676 | int main(void) { return 0; } | |
1677 | EOF | |
1678 | if compile_prog "$kvm_cflags" "" ; then | |
1679 | vhost_net=yes | |
1680 | else | |
1681 | if test "$vhost_net" = "yes" ; then | |
1682 | feature_not_found "vhost-net" | |
1683 | fi | |
1684 | vhost_net=no | |
1685 | fi | |
1686 | else | |
1687 | if test "$vhost_net" = "yes" ; then | |
4021d247 | 1688 | echo "NOTE: vhost-net feature requires KVM (--enable-kvm)." |
d5970055 MT |
1689 | feature_not_found "vhost-net" |
1690 | fi | |
1691 | vhost_net=no | |
1692 | fi | |
1693 | fi | |
1694 | ||
414f0dab | 1695 | ########################################## |
e5d355d1 | 1696 | # pthread probe |
de65fe0f | 1697 | PTHREADLIBS_LIST="-lpthread -lpthreadGC2" |
3c529d93 | 1698 | |
4dd75c70 | 1699 | pthread=no |
e5d355d1 | 1700 | cat > $TMPC << EOF |
3c529d93 | 1701 | #include <pthread.h> |
de65fe0f | 1702 | int main(void) { pthread_create(0,0,0,0); return 0; } |
414f0dab | 1703 | EOF |
4dd75c70 CH |
1704 | for pthread_lib in $PTHREADLIBS_LIST; do |
1705 | if compile_prog "" "$pthread_lib" ; then | |
1706 | pthread=yes | |
1707 | LIBS="$pthread_lib $LIBS" | |
1708 | break | |
1709 | fi | |
1710 | done | |
414f0dab | 1711 | |
4617e593 | 1712 | if test "$mingw32" != yes -a "$pthread" = no; then |
4dd75c70 CH |
1713 | echo |
1714 | echo "Error: pthread check failed" | |
1715 | echo "Make sure to have the pthread libs and headers installed." | |
1716 | echo | |
1717 | exit 1 | |
e5d355d1 AL |
1718 | fi |
1719 | ||
5c6c3a6c CH |
1720 | ########################################## |
1721 | # linux-aio probe | |
5c6c3a6c CH |
1722 | |
1723 | if test "$linux_aio" != "no" ; then | |
1724 | cat > $TMPC <<EOF | |
1725 | #include <libaio.h> | |
1726 | #include <sys/eventfd.h> | |
1727 | int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } | |
1728 | EOF | |
1729 | if compile_prog "" "-laio" ; then | |
1730 | linux_aio=yes | |
048d179f PB |
1731 | libs_softmmu="$libs_softmmu -laio" |
1732 | libs_tools="$libs_tools -laio" | |
5c6c3a6c CH |
1733 | else |
1734 | if test "$linux_aio" = "yes" ; then | |
1735 | feature_not_found "linux AIO" | |
1736 | fi | |
3cfcae3c | 1737 | linux_aio=no |
5c6c3a6c CH |
1738 | fi |
1739 | fi | |
1740 | ||
758e8e38 VJ |
1741 | ########################################## |
1742 | # attr probe | |
1743 | ||
1744 | if test "$attr" != "no" ; then | |
1745 | cat > $TMPC <<EOF | |
1746 | #include <stdio.h> | |
1747 | #include <sys/types.h> | |
1748 | #include <attr/xattr.h> | |
1749 | int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } | |
1750 | EOF | |
1751 | if compile_prog "" "-lattr" ; then | |
1752 | attr=yes | |
1753 | LIBS="-lattr $LIBS" | |
1754 | else | |
1755 | if test "$attr" = "yes" ; then | |
1756 | feature_not_found "ATTR" | |
1757 | fi | |
1758 | attr=no | |
1759 | fi | |
1760 | fi | |
1761 | ||
bf9298b9 AL |
1762 | ########################################## |
1763 | # iovec probe | |
1764 | cat > $TMPC <<EOF | |
db34f0b3 | 1765 | #include <sys/types.h> |
bf9298b9 | 1766 | #include <sys/uio.h> |
db34f0b3 | 1767 | #include <unistd.h> |
bf9298b9 AL |
1768 | int main(void) { struct iovec iov; return 0; } |
1769 | EOF | |
1770 | iovec=no | |
52166aa0 | 1771 | if compile_prog "" "" ; then |
bf9298b9 AL |
1772 | iovec=yes |
1773 | fi | |
1774 | ||
ceb42de8 AL |
1775 | ########################################## |
1776 | # preadv probe | |
1777 | cat > $TMPC <<EOF | |
1778 | #include <sys/types.h> | |
1779 | #include <sys/uio.h> | |
1780 | #include <unistd.h> | |
1781 | int main(void) { preadv; } | |
1782 | EOF | |
1783 | preadv=no | |
52166aa0 | 1784 | if compile_prog "" "" ; then |
ceb42de8 AL |
1785 | preadv=yes |
1786 | fi | |
1787 | ||
f652e6af AJ |
1788 | ########################################## |
1789 | # fdt probe | |
2df87df7 | 1790 | if test "$fdt" != "no" ; then |
b41af4ba JQ |
1791 | fdt_libs="-lfdt" |
1792 | cat > $TMPC << EOF | |
f652e6af AJ |
1793 | int main(void) { return 0; } |
1794 | EOF | |
52166aa0 | 1795 | if compile_prog "" "$fdt_libs" ; then |
f652e6af | 1796 | fdt=yes |
e4782985 | 1797 | libs_softmmu="$fdt_libs $libs_softmmu" |
2df87df7 JQ |
1798 | else |
1799 | if test "$fdt" = "yes" ; then | |
1800 | feature_not_found "fdt" | |
1801 | fi | |
1802 | fdt=no | |
f652e6af AJ |
1803 | fi |
1804 | fi | |
1805 | ||
3b3f24ad AJ |
1806 | # |
1807 | # Check for xxxat() functions when we are building linux-user | |
1808 | # emulator. This is done because older glibc versions don't | |
1809 | # have syscall stubs for these implemented. | |
1810 | # | |
1811 | atfile=no | |
67ba57f6 | 1812 | cat > $TMPC << EOF |
3b3f24ad AJ |
1813 | #define _ATFILE_SOURCE |
1814 | #include <sys/types.h> | |
1815 | #include <fcntl.h> | |
1816 | #include <unistd.h> | |
1817 | ||
1818 | int | |
1819 | main(void) | |
1820 | { | |
1821 | /* try to unlink nonexisting file */ | |
1822 | return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); | |
1823 | } | |
1824 | EOF | |
52166aa0 | 1825 | if compile_prog "" "" ; then |
67ba57f6 | 1826 | atfile=yes |
3b3f24ad AJ |
1827 | fi |
1828 | ||
39386ac7 | 1829 | # Check for inotify functions when we are building linux-user |
3b3f24ad AJ |
1830 | # emulator. This is done because older glibc versions don't |
1831 | # have syscall stubs for these implemented. In that case we | |
1832 | # don't provide them even if kernel supports them. | |
1833 | # | |
1834 | inotify=no | |
67ba57f6 | 1835 | cat > $TMPC << EOF |
3b3f24ad AJ |
1836 | #include <sys/inotify.h> |
1837 | ||
1838 | int | |
1839 | main(void) | |
1840 | { | |
1841 | /* try to start inotify */ | |
8690e420 | 1842 | return inotify_init(); |
3b3f24ad AJ |
1843 | } |
1844 | EOF | |
52166aa0 | 1845 | if compile_prog "" "" ; then |
67ba57f6 | 1846 | inotify=yes |
3b3f24ad AJ |
1847 | fi |
1848 | ||
c05c7a73 RV |
1849 | inotify1=no |
1850 | cat > $TMPC << EOF | |
1851 | #include <sys/inotify.h> | |
1852 | ||
1853 | int | |
1854 | main(void) | |
1855 | { | |
1856 | /* try to start inotify */ | |
1857 | return inotify_init1(0); | |
1858 | } | |
1859 | EOF | |
1860 | if compile_prog "" "" ; then | |
1861 | inotify1=yes | |
1862 | fi | |
1863 | ||
ebc996f3 RV |
1864 | # check if utimensat and futimens are supported |
1865 | utimens=no | |
1866 | cat > $TMPC << EOF | |
1867 | #define _ATFILE_SOURCE | |
1868 | #define _GNU_SOURCE | |
1869 | #include <stddef.h> | |
1870 | #include <fcntl.h> | |
1871 | ||
1872 | int main(void) | |
1873 | { | |
1874 | utimensat(AT_FDCWD, "foo", NULL, 0); | |
1875 | futimens(0, NULL); | |
1876 | return 0; | |
1877 | } | |
1878 | EOF | |
52166aa0 | 1879 | if compile_prog "" "" ; then |
ebc996f3 RV |
1880 | utimens=yes |
1881 | fi | |
1882 | ||
099d6b0f RV |
1883 | # check if pipe2 is there |
1884 | pipe2=no | |
1885 | cat > $TMPC << EOF | |
1886 | #define _GNU_SOURCE | |
1887 | #include <unistd.h> | |
1888 | #include <fcntl.h> | |
1889 | ||
1890 | int main(void) | |
1891 | { | |
1892 | int pipefd[2]; | |
1893 | pipe2(pipefd, O_CLOEXEC); | |
1894 | return 0; | |
1895 | } | |
1896 | EOF | |
52166aa0 | 1897 | if compile_prog "" "" ; then |
099d6b0f RV |
1898 | pipe2=yes |
1899 | fi | |
1900 | ||
40ff6d7e KW |
1901 | # check if accept4 is there |
1902 | accept4=no | |
1903 | cat > $TMPC << EOF | |
1904 | #define _GNU_SOURCE | |
1905 | #include <sys/socket.h> | |
1906 | #include <stddef.h> | |
1907 | ||
1908 | int main(void) | |
1909 | { | |
1910 | accept4(0, NULL, NULL, SOCK_CLOEXEC); | |
1911 | return 0; | |
1912 | } | |
1913 | EOF | |
1914 | if compile_prog "" "" ; then | |
1915 | accept4=yes | |
1916 | fi | |
1917 | ||
3ce34dfb VS |
1918 | # check if tee/splice is there. vmsplice was added same time. |
1919 | splice=no | |
1920 | cat > $TMPC << EOF | |
1921 | #define _GNU_SOURCE | |
1922 | #include <unistd.h> | |
1923 | #include <fcntl.h> | |
1924 | #include <limits.h> | |
1925 | ||
1926 | int main(void) | |
1927 | { | |
1928 | int len, fd; | |
1929 | len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); | |
1930 | splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); | |
1931 | return 0; | |
1932 | } | |
1933 | EOF | |
52166aa0 | 1934 | if compile_prog "" "" ; then |
3ce34dfb VS |
1935 | splice=yes |
1936 | fi | |
1937 | ||
c2882b96 RV |
1938 | # check if eventfd is supported |
1939 | eventfd=no | |
1940 | cat > $TMPC << EOF | |
1941 | #include <sys/eventfd.h> | |
1942 | ||
1943 | int main(void) | |
1944 | { | |
1945 | int efd = eventfd(0, 0); | |
1946 | return 0; | |
1947 | } | |
1948 | EOF | |
1949 | if compile_prog "" "" ; then | |
1950 | eventfd=yes | |
1951 | fi | |
1952 | ||
d0927938 UH |
1953 | # check for fallocate |
1954 | fallocate=no | |
1955 | cat > $TMPC << EOF | |
1956 | #include <fcntl.h> | |
1957 | ||
1958 | int main(void) | |
1959 | { | |
1960 | fallocate(0, 0, 0, 0); | |
1961 | return 0; | |
1962 | } | |
1963 | EOF | |
be17dc90 | 1964 | if compile_prog "$ARCH_CFLAGS" "" ; then |
d0927938 UH |
1965 | fallocate=yes |
1966 | fi | |
1967 | ||
1968 | # check for dup3 | |
1969 | dup3=no | |
1970 | cat > $TMPC << EOF | |
1971 | #include <unistd.h> | |
1972 | ||
1973 | int main(void) | |
1974 | { | |
1975 | dup3(0, 0, 0); | |
1976 | return 0; | |
1977 | } | |
1978 | EOF | |
78f5d726 | 1979 | if compile_prog "" "" ; then |
d0927938 UH |
1980 | dup3=yes |
1981 | fi | |
1982 | ||
cc8ae6de | 1983 | # Check if tools are available to build documentation. |
a25dba17 | 1984 | if test "$docs" != "no" ; then |
01668d98 | 1985 | if has makeinfo && has pod2man; then |
a25dba17 | 1986 | docs=yes |
83a3ab8b | 1987 | else |
a25dba17 JQ |
1988 | if test "$docs" = "yes" ; then |
1989 | feature_not_found "docs" | |
83a3ab8b | 1990 | fi |
a25dba17 | 1991 | docs=no |
83a3ab8b | 1992 | fi |
cc8ae6de PB |
1993 | fi |
1994 | ||
f514f41c | 1995 | # Search for bswap_32 function |
6ae9a1f4 JQ |
1996 | byteswap_h=no |
1997 | cat > $TMPC << EOF | |
1998 | #include <byteswap.h> | |
1999 | int main(void) { return bswap_32(0); } | |
2000 | EOF | |
52166aa0 | 2001 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
2002 | byteswap_h=yes |
2003 | fi | |
2004 | ||
f514f41c | 2005 | # Search for bswap_32 function |
6ae9a1f4 JQ |
2006 | bswap_h=no |
2007 | cat > $TMPC << EOF | |
2008 | #include <sys/endian.h> | |
2009 | #include <sys/types.h> | |
2010 | #include <machine/bswap.h> | |
2011 | int main(void) { return bswap32(0); } | |
2012 | EOF | |
52166aa0 | 2013 | if compile_prog "" "" ; then |
6ae9a1f4 JQ |
2014 | bswap_h=yes |
2015 | fi | |
2016 | ||
da93a1fd AL |
2017 | ########################################## |
2018 | # Do we need librt | |
2019 | cat > $TMPC <<EOF | |
2020 | #include <signal.h> | |
2021 | #include <time.h> | |
2022 | int main(void) { clockid_t id; return clock_gettime(id, NULL); } | |
2023 | EOF | |
2024 | ||
52166aa0 | 2025 | if compile_prog "" "" ; then |
07ffa4bd | 2026 | : |
52166aa0 | 2027 | elif compile_prog "" "-lrt" ; then |
07ffa4bd | 2028 | LIBS="-lrt $LIBS" |
da93a1fd AL |
2029 | fi |
2030 | ||
31ff504d | 2031 | if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ |
6362a53f JQ |
2032 | "$aix" != "yes" ; then |
2033 | libs_softmmu="-lutil $libs_softmmu" | |
2034 | fi | |
2035 | ||
de5071c5 BS |
2036 | ########################################## |
2037 | # check if the compiler defines offsetof | |
2038 | ||
2039 | need_offsetof=yes | |
2040 | cat > $TMPC << EOF | |
2041 | #include <stddef.h> | |
2042 | int main(void) { struct s { int f; }; return offsetof(struct s, f); } | |
2043 | EOF | |
2044 | if compile_prog "" "" ; then | |
2045 | need_offsetof=no | |
2046 | fi | |
2047 | ||
747bbdf7 BS |
2048 | ########################################## |
2049 | # check if the compiler understands attribute warn_unused_result | |
2050 | # | |
2051 | # This could be smarter, but gcc -Werror does not error out even when warning | |
2052 | # about attribute warn_unused_result | |
2053 | ||
2054 | gcc_attribute_warn_unused_result=no | |
2055 | cat > $TMPC << EOF | |
2056 | #if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4) | |
2057 | #error gcc 3.3 or older | |
2058 | #endif | |
2059 | int main(void) { return 0;} | |
2060 | EOF | |
2061 | if compile_prog "" ""; then | |
2062 | gcc_attribute_warn_unused_result=yes | |
2063 | fi | |
2064 | ||
5f6b9e8f BS |
2065 | ########################################## |
2066 | # check if we have fdatasync | |
2067 | ||
2068 | fdatasync=no | |
2069 | cat > $TMPC << EOF | |
2070 | #include <unistd.h> | |
2071 | int main(void) { return fdatasync(0); } | |
2072 | EOF | |
2073 | if compile_prog "" "" ; then | |
2074 | fdatasync=yes | |
2075 | fi | |
2076 | ||
94a420b1 SH |
2077 | ########################################## |
2078 | # check if trace backend exists | |
2079 | ||
2080 | sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null | |
2081 | if test "$?" -ne 0 ; then | |
2082 | echo | |
2083 | echo "Error: invalid trace backend" | |
2084 | echo "Please choose a supported trace backend." | |
2085 | echo | |
2086 | exit 1 | |
2087 | fi | |
2088 | ||
7e24e92a SH |
2089 | ########################################## |
2090 | # For 'ust' backend, test if ust headers are present | |
2091 | if test "$trace_backend" = "ust"; then | |
2092 | cat > $TMPC << EOF | |
2093 | #include <ust/tracepoint.h> | |
2094 | #include <ust/marker.h> | |
2095 | int main(void) { return 0; } | |
2096 | EOF | |
2097 | if compile_prog "" "" ; then | |
2098 | LIBS="-lust $LIBS" | |
2099 | else | |
2100 | echo | |
2101 | echo "Error: Trace backend 'ust' missing libust header files" | |
2102 | echo | |
2103 | exit 1 | |
2104 | fi | |
2105 | fi | |
2106 | ########################################## | |
e86ecd4b JQ |
2107 | # End of CC checks |
2108 | # After here, no more $cc or $ld runs | |
2109 | ||
e86ecd4b | 2110 | if test "$debug" = "no" ; then |
1156c669 | 2111 | CFLAGS="-O2 $CFLAGS" |
e86ecd4b | 2112 | fi |
a316e378 | 2113 | |
e86ecd4b JQ |
2114 | # Consult white-list to determine whether to enable werror |
2115 | # by default. Only enable by default for git builds | |
20ff6c80 AL |
2116 | z_version=`cut -f3 -d. $source_path/VERSION` |
2117 | ||
e86ecd4b | 2118 | if test -z "$werror" ; then |
e86ecd4b JQ |
2119 | if test "$z_version" = "50" -a \ |
2120 | "$linux" = "yes" ; then | |
2121 | werror="yes" | |
2122 | else | |
2123 | werror="no" | |
2124 | fi | |
2125 | fi | |
2126 | ||
20ff6c80 AL |
2127 | # Disable zero malloc errors for official releases unless explicitly told to |
2128 | # enable/disable | |
2129 | if test -z "$zero_malloc" ; then | |
2130 | if test "$z_version" = "50" ; then | |
2131 | zero_malloc="no" | |
2132 | else | |
2133 | zero_malloc="yes" | |
2134 | fi | |
2135 | fi | |
2136 | ||
e86ecd4b | 2137 | if test "$werror" = "yes" ; then |
a558ee17 | 2138 | QEMU_CFLAGS="-Werror $QEMU_CFLAGS" |
e86ecd4b JQ |
2139 | fi |
2140 | ||
2141 | if test "$solaris" = "no" ; then | |
2142 | if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then | |
1156c669 | 2143 | LDFLAGS="-Wl,--warn-common $LDFLAGS" |
e86ecd4b JQ |
2144 | fi |
2145 | fi | |
2146 | ||
952afb71 BS |
2147 | # Use ASLR, no-SEH and DEP if available |
2148 | if test "$mingw32" = "yes" ; then | |
2149 | for flag in --dynamicbase --no-seh --nxcompat; do | |
2150 | if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then | |
2151 | LDFLAGS="-Wl,$flag $LDFLAGS" | |
2152 | fi | |
2153 | done | |
2154 | fi | |
2155 | ||
190e9c59 | 2156 | confdir=$sysconfdir$confsuffix |
e7b45cc4 | 2157 | |
ca35f780 PB |
2158 | tools= |
2159 | if test "$softmmu" = yes ; then | |
2160 | tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" | |
2161 | if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then | |
2162 | tools="qemu-nbd\$(EXESUF) $tools" | |
2163 | if [ "$check_utests" = "yes" ]; then | |
2164 | tools="check-qint check-qstring check-qdict check-qlist $tools" | |
2165 | tools="check-qfloat check-qjson $tools" | |
2166 | fi | |
2167 | fi | |
2168 | fi | |
2169 | ||
2170 | # Mac OS X ships with a broken assembler | |
2171 | roms= | |
2172 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ | |
2173 | "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ | |
2174 | "$softmmu" = yes ; then | |
2175 | roms="optionrom" | |
2176 | fi | |
2177 | ||
2178 | ||
43ce4dfe | 2179 | echo "Install prefix $prefix" |
f2b9e1e3 PB |
2180 | echo "BIOS directory `eval echo $datadir`" |
2181 | echo "binary directory `eval echo $bindir`" | |
1c0fd160 | 2182 | echo "config directory `eval echo $sysconfdir`" |
11d9f695 | 2183 | if test "$mingw32" = "no" ; then |
f2b9e1e3 | 2184 | echo "Manual directory `eval echo $mandir`" |
43ce4dfe | 2185 | echo "ELF interp prefix $interp_prefix" |
11d9f695 | 2186 | fi |
5a67135a | 2187 | echo "Source path $source_path" |
43ce4dfe | 2188 | echo "C compiler $cc" |
83469015 | 2189 | echo "Host C compiler $host_cc" |
0c439cbf | 2190 | echo "CFLAGS $CFLAGS" |
a558ee17 | 2191 | echo "QEMU_CFLAGS $QEMU_CFLAGS" |
0c439cbf | 2192 | echo "LDFLAGS $LDFLAGS" |
43ce4dfe | 2193 | echo "make $make" |
6a882643 | 2194 | echo "install $install" |
43ce4dfe | 2195 | echo "host CPU $cpu" |
de83cd02 | 2196 | echo "host big endian $bigendian" |
97a847bc | 2197 | echo "target list $target_list" |
ade25b0d | 2198 | echo "tcg debug enabled $debug_tcg" |
b4475aa2 | 2199 | echo "Mon debug enabled $debug_mon" |
43ce4dfe | 2200 | echo "gprof enabled $gprof" |
03b4fe7d | 2201 | echo "sparse enabled $sparse" |
1625af87 | 2202 | echo "strip binaries $strip_opt" |
05c2a3e7 | 2203 | echo "profiler $profiler" |
43ce4dfe | 2204 | echo "static build $static" |
85aa5189 | 2205 | echo "-Werror enabled $werror" |
5b0753e0 FB |
2206 | if test "$darwin" = "yes" ; then |
2207 | echo "Cocoa support $cocoa" | |
2208 | fi | |
97a847bc | 2209 | echo "SDL support $sdl" |
4d3b6f6e | 2210 | echo "curses support $curses" |
769ce76d | 2211 | echo "curl support $curl" |
5495ed11 | 2212 | echo "check support $check_utests" |
67b915a5 | 2213 | echo "mingw32 support $mingw32" |
0c58ac1c | 2214 | echo "Audio drivers $audio_drv_list" |
2215 | echo "Extra audio cards $audio_card_list" | |
eb852011 | 2216 | echo "Block whitelist $block_drv_whitelist" |
8ff9cbf7 | 2217 | echo "Mixer emulation $mixemu" |
8d5d2d4c | 2218 | echo "VNC TLS support $vnc_tls" |
2f9606b3 | 2219 | echo "VNC SASL support $vnc_sasl" |
2f6f5c7a | 2220 | echo "VNC JPEG support $vnc_jpeg" |
efe556ad | 2221 | echo "VNC PNG support $vnc_png" |
bd023f95 | 2222 | echo "VNC thread $vnc_thread" |
3142255c BS |
2223 | if test -n "$sparc_cpu"; then |
2224 | echo "Target Sparc Arch $sparc_cpu" | |
2225 | fi | |
e37630ca | 2226 | echo "xen support $xen" |
2e4d9fb1 | 2227 | echo "brlapi support $brlapi" |
a20a6f46 | 2228 | echo "bluez support $bluez" |
a25dba17 | 2229 | echo "Documentation $docs" |
c5937220 PB |
2230 | [ ! -z "$uname_release" ] && \ |
2231 | echo "uname -r $uname_release" | |
bd0c5661 | 2232 | echo "NPTL support $nptl" |
379f6698 | 2233 | echo "GUEST_BASE $guest_base" |
34005a00 | 2234 | echo "PIE user targets $user_pie" |
8a16d273 | 2235 | echo "vde support $vde" |
e5d355d1 | 2236 | echo "IO thread $io_thread" |
5c6c3a6c | 2237 | echo "Linux AIO support $linux_aio" |
758e8e38 | 2238 | echo "ATTR/XATTR support $attr" |
77755340 | 2239 | echo "Install blobs $blobs" |
b31a0277 | 2240 | echo "KVM support $kvm" |
f652e6af | 2241 | echo "fdt support $fdt" |
ceb42de8 | 2242 | echo "preadv support $preadv" |
5f6b9e8f | 2243 | echo "fdatasync $fdatasync" |
ee682d27 | 2244 | echo "uuid support $uuid" |
d5970055 | 2245 | echo "vhost-net support $vhost_net" |
94a420b1 | 2246 | echo "Trace backend $trace_backend" |
9410b56c | 2247 | echo "Trace output file $trace_file-<pid>" |
67b915a5 | 2248 | |
97a847bc | 2249 | if test $sdl_too_old = "yes"; then |
24b55b96 | 2250 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
7c1f25b4 | 2251 | fi |
7d13299d | 2252 | |
98ec69ac | 2253 | config_host_mak="config-host.mak" |
4bf6b55b | 2254 | config_host_ld="config-host.ld" |
98ec69ac | 2255 | |
98ec69ac JQ |
2256 | echo "# Automatically generated by configure - do not modify" > $config_host_mak |
2257 | printf "# Configured with:" >> $config_host_mak | |
2258 | printf " '%s'" "$0" "$@" >> $config_host_mak | |
2259 | echo >> $config_host_mak | |
98ec69ac | 2260 | |
99d7cc75 PB |
2261 | echo "prefix=$prefix" >> $config_host_mak |
2262 | echo "bindir=$bindir" >> $config_host_mak | |
2263 | echo "mandir=$mandir" >> $config_host_mak | |
2264 | echo "datadir=$datadir" >> $config_host_mak | |
2265 | echo "sysconfdir=$sysconfdir" >> $config_host_mak | |
2266 | echo "docdir=$docdir" >> $config_host_mak | |
1dabe05c | 2267 | echo "confdir=$confdir" >> $config_host_mak |
804edf29 | 2268 | |
2408a527 | 2269 | case "$cpu" in |
24e804ec | 2270 | i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) |
e0da9dd3 | 2271 | ARCH=$cpu |
2408a527 | 2272 | ;; |
a302c32d | 2273 | armv4b|armv4l) |
16dbd14f | 2274 | ARCH=arm |
2408a527 | 2275 | ;; |
2408a527 | 2276 | esac |
98ec69ac | 2277 | echo "ARCH=$ARCH" >> $config_host_mak |
f8393946 | 2278 | if test "$debug_tcg" = "yes" ; then |
2358a494 | 2279 | echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak |
f8393946 | 2280 | fi |
b4475aa2 LC |
2281 | if test "$debug_mon" = "yes" ; then |
2282 | echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak | |
2283 | fi | |
f3d08ee6 | 2284 | if test "$debug" = "yes" ; then |
2358a494 | 2285 | echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak |
f3d08ee6 | 2286 | fi |
1625af87 | 2287 | if test "$strip_opt" = "yes" ; then |
52ba784d | 2288 | echo "STRIP=${strip}" >> $config_host_mak |
1625af87 | 2289 | fi |
7d13299d | 2290 | if test "$bigendian" = "yes" ; then |
e2542fe2 | 2291 | echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak |
97a847bc | 2292 | fi |
2358a494 | 2293 | echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak |
67b915a5 | 2294 | if test "$mingw32" = "yes" ; then |
98ec69ac | 2295 | echo "CONFIG_WIN32=y" >> $config_host_mak |
210fa556 | 2296 | else |
35f4df27 | 2297 | echo "CONFIG_POSIX=y" >> $config_host_mak |
dffcb71c MM |
2298 | fi |
2299 | ||
2300 | if test "$linux" = "yes" ; then | |
2301 | echo "CONFIG_LINUX=y" >> $config_host_mak | |
67b915a5 | 2302 | fi |
128ab2ff | 2303 | |
83fb7adf | 2304 | if test "$darwin" = "yes" ; then |
98ec69ac | 2305 | echo "CONFIG_DARWIN=y" >> $config_host_mak |
83fb7adf | 2306 | fi |
b29fe3ed | 2307 | |
2308 | if test "$aix" = "yes" ; then | |
98ec69ac | 2309 | echo "CONFIG_AIX=y" >> $config_host_mak |
b29fe3ed | 2310 | fi |
2311 | ||
ec530c81 | 2312 | if test "$solaris" = "yes" ; then |
98ec69ac | 2313 | echo "CONFIG_SOLARIS=y" >> $config_host_mak |
2358a494 | 2314 | echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak |
0475a5ca | 2315 | if test "$needs_libsunmath" = "yes" ; then |
75b5a697 | 2316 | echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak |
0475a5ca | 2317 | fi |
ec530c81 | 2318 | fi |
97a847bc | 2319 | if test "$static" = "yes" ; then |
98ec69ac | 2320 | echo "CONFIG_STATIC=y" >> $config_host_mak |
7d13299d | 2321 | fi |
05c2a3e7 | 2322 | if test $profiler = "yes" ; then |
2358a494 | 2323 | echo "CONFIG_PROFILER=y" >> $config_host_mak |
05c2a3e7 | 2324 | fi |
c20709aa | 2325 | if test "$slirp" = "yes" ; then |
98ec69ac | 2326 | echo "CONFIG_SLIRP=y" >> $config_host_mak |
b6e31c12 | 2327 | QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS" |
c20709aa | 2328 | fi |
8a16d273 | 2329 | if test "$vde" = "yes" ; then |
98ec69ac | 2330 | echo "CONFIG_VDE=y" >> $config_host_mak |
8a16d273 | 2331 | fi |
0c58ac1c | 2332 | for card in $audio_card_list; do |
f6e5889e | 2333 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
98ec69ac | 2334 | echo "$def=y" >> $config_host_mak |
0c58ac1c | 2335 | done |
2358a494 | 2336 | echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak |
0c58ac1c | 2337 | for drv in $audio_drv_list; do |
f6e5889e | 2338 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
98ec69ac | 2339 | echo "$def=y" >> $config_host_mak |
923e4521 | 2340 | if test "$drv" = "fmod"; then |
7aac6cb1 | 2341 | echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak |
0c58ac1c | 2342 | fi |
2343 | done | |
67f86e8e JQ |
2344 | if test "$audio_pt_int" = "yes" ; then |
2345 | echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak | |
2346 | fi | |
d5631638 | 2347 | if test "$audio_win_int" = "yes" ; then |
2348 | echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak | |
2349 | fi | |
eb852011 | 2350 | echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak |
8ff9cbf7 | 2351 | if test "$mixemu" = "yes" ; then |
98ec69ac | 2352 | echo "CONFIG_MIXEMU=y" >> $config_host_mak |
8ff9cbf7 | 2353 | fi |
8d5d2d4c | 2354 | if test "$vnc_tls" = "yes" ; then |
98ec69ac | 2355 | echo "CONFIG_VNC_TLS=y" >> $config_host_mak |
525061bf | 2356 | echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak |
8d5d2d4c | 2357 | fi |
2f9606b3 | 2358 | if test "$vnc_sasl" = "yes" ; then |
98ec69ac | 2359 | echo "CONFIG_VNC_SASL=y" >> $config_host_mak |
60ddf533 | 2360 | echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak |
2f9606b3 | 2361 | fi |
96763cf9 | 2362 | if test "$vnc_jpeg" != "no" ; then |
2f6f5c7a CC |
2363 | echo "CONFIG_VNC_JPEG=y" >> $config_host_mak |
2364 | echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak | |
2365 | fi | |
96763cf9 | 2366 | if test "$vnc_png" != "no" ; then |
efe556ad CC |
2367 | echo "CONFIG_VNC_PNG=y" >> $config_host_mak |
2368 | echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak | |
2369 | fi | |
96763cf9 | 2370 | if test "$vnc_thread" != "no" ; then |
bd023f95 CC |
2371 | echo "CONFIG_VNC_THREAD=y" >> $config_host_mak |
2372 | echo "CONFIG_THREAD=y" >> $config_host_mak | |
2373 | fi | |
76655d6d | 2374 | if test "$fnmatch" = "yes" ; then |
2358a494 | 2375 | echo "CONFIG_FNMATCH=y" >> $config_host_mak |
76655d6d | 2376 | fi |
ee682d27 SW |
2377 | if test "$uuid" = "yes" ; then |
2378 | echo "CONFIG_UUID=y" >> $config_host_mak | |
2379 | fi | |
b1a550a0 | 2380 | qemu_version=`head $source_path/VERSION` |
98ec69ac | 2381 | echo "VERSION=$qemu_version" >>$config_host_mak |
2358a494 | 2382 | echo "PKGVERSION=$pkgversion" >>$config_host_mak |
98ec69ac | 2383 | echo "SRC_PATH=$source_path" >> $config_host_mak |
98ec69ac | 2384 | echo "TARGET_DIRS=$target_list" >> $config_host_mak |
a25dba17 | 2385 | if [ "$docs" = "yes" ] ; then |
98ec69ac | 2386 | echo "BUILD_DOCS=yes" >> $config_host_mak |
cc8ae6de | 2387 | fi |
1ac88f28 | 2388 | if test "$sdl" = "yes" ; then |
98ec69ac | 2389 | echo "CONFIG_SDL=y" >> $config_host_mak |
1ac88f28 | 2390 | echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak |
49ecc3fa FB |
2391 | fi |
2392 | if test "$cocoa" = "yes" ; then | |
98ec69ac | 2393 | echo "CONFIG_COCOA=y" >> $config_host_mak |
4d3b6f6e AZ |
2394 | fi |
2395 | if test "$curses" = "yes" ; then | |
98ec69ac | 2396 | echo "CONFIG_CURSES=y" >> $config_host_mak |
49ecc3fa | 2397 | fi |
3b3f24ad | 2398 | if test "$atfile" = "yes" ; then |
2358a494 | 2399 | echo "CONFIG_ATFILE=y" >> $config_host_mak |
3b3f24ad | 2400 | fi |
ebc996f3 | 2401 | if test "$utimens" = "yes" ; then |
2358a494 | 2402 | echo "CONFIG_UTIMENSAT=y" >> $config_host_mak |
ebc996f3 | 2403 | fi |
099d6b0f | 2404 | if test "$pipe2" = "yes" ; then |
2358a494 | 2405 | echo "CONFIG_PIPE2=y" >> $config_host_mak |
099d6b0f | 2406 | fi |
40ff6d7e KW |
2407 | if test "$accept4" = "yes" ; then |
2408 | echo "CONFIG_ACCEPT4=y" >> $config_host_mak | |
2409 | fi | |
3ce34dfb | 2410 | if test "$splice" = "yes" ; then |
2358a494 | 2411 | echo "CONFIG_SPLICE=y" >> $config_host_mak |
3ce34dfb | 2412 | fi |
c2882b96 RV |
2413 | if test "$eventfd" = "yes" ; then |
2414 | echo "CONFIG_EVENTFD=y" >> $config_host_mak | |
2415 | fi | |
d0927938 UH |
2416 | if test "$fallocate" = "yes" ; then |
2417 | echo "CONFIG_FALLOCATE=y" >> $config_host_mak | |
2418 | fi | |
2419 | if test "$dup3" = "yes" ; then | |
2420 | echo "CONFIG_DUP3=y" >> $config_host_mak | |
2421 | fi | |
3b3f24ad | 2422 | if test "$inotify" = "yes" ; then |
2358a494 | 2423 | echo "CONFIG_INOTIFY=y" >> $config_host_mak |
3b3f24ad | 2424 | fi |
c05c7a73 RV |
2425 | if test "$inotify1" = "yes" ; then |
2426 | echo "CONFIG_INOTIFY1=y" >> $config_host_mak | |
2427 | fi | |
6ae9a1f4 JQ |
2428 | if test "$byteswap_h" = "yes" ; then |
2429 | echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak | |
2430 | fi | |
2431 | if test "$bswap_h" = "yes" ; then | |
2432 | echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak | |
2433 | fi | |
769ce76d | 2434 | if test "$curl" = "yes" ; then |
98ec69ac | 2435 | echo "CONFIG_CURL=y" >> $config_host_mak |
b1d5a277 | 2436 | echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak |
769ce76d | 2437 | fi |
2e4d9fb1 | 2438 | if test "$brlapi" = "yes" ; then |
98ec69ac | 2439 | echo "CONFIG_BRLAPI=y" >> $config_host_mak |
2e4d9fb1 | 2440 | fi |
fb599c9a | 2441 | if test "$bluez" = "yes" ; then |
98ec69ac | 2442 | echo "CONFIG_BLUEZ=y" >> $config_host_mak |
ef7635ec | 2443 | echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak |
fb599c9a | 2444 | fi |
e37630ca | 2445 | if test "$xen" = "yes" ; then |
5647eb74 | 2446 | echo "CONFIG_XEN=y" >> $config_host_mak |
e37630ca | 2447 | fi |
e5d355d1 | 2448 | if test "$io_thread" = "yes" ; then |
98ec69ac | 2449 | echo "CONFIG_IOTHREAD=y" >> $config_host_mak |
bd023f95 | 2450 | echo "CONFIG_THREAD=y" >> $config_host_mak |
e5d355d1 | 2451 | fi |
5c6c3a6c CH |
2452 | if test "$linux_aio" = "yes" ; then |
2453 | echo "CONFIG_LINUX_AIO=y" >> $config_host_mak | |
2454 | fi | |
758e8e38 VJ |
2455 | if test "$attr" = "yes" ; then |
2456 | echo "CONFIG_ATTR=y" >> $config_host_mak | |
2457 | fi | |
2458 | if test "$linux" = "yes" ; then | |
2459 | if test "$attr" = "yes" ; then | |
2460 | echo "CONFIG_VIRTFS=y" >> $config_host_mak | |
2461 | fi | |
2462 | fi | |
77755340 | 2463 | if test "$blobs" = "yes" ; then |
98ec69ac | 2464 | echo "INSTALL_BLOBS=yes" >> $config_host_mak |
77755340 | 2465 | fi |
bf9298b9 | 2466 | if test "$iovec" = "yes" ; then |
2358a494 | 2467 | echo "CONFIG_IOVEC=y" >> $config_host_mak |
bf9298b9 | 2468 | fi |
ceb42de8 | 2469 | if test "$preadv" = "yes" ; then |
2358a494 | 2470 | echo "CONFIG_PREADV=y" >> $config_host_mak |
ceb42de8 | 2471 | fi |
f652e6af | 2472 | if test "$fdt" = "yes" ; then |
3f0855b1 | 2473 | echo "CONFIG_FDT=y" >> $config_host_mak |
f652e6af | 2474 | fi |
de5071c5 BS |
2475 | if test "$need_offsetof" = "yes" ; then |
2476 | echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak | |
2477 | fi | |
747bbdf7 BS |
2478 | if test "$gcc_attribute_warn_unused_result" = "yes" ; then |
2479 | echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak | |
2480 | fi | |
5f6b9e8f BS |
2481 | if test "$fdatasync" = "yes" ; then |
2482 | echo "CONFIG_FDATASYNC=y" >> $config_host_mak | |
2483 | fi | |
97a847bc | 2484 | |
83fb7adf | 2485 | # XXX: suppress that |
7d3505c5 | 2486 | if [ "$bsd" = "yes" ] ; then |
2358a494 | 2487 | echo "CONFIG_BSD=y" >> $config_host_mak |
7d3505c5 FB |
2488 | fi |
2489 | ||
2358a494 | 2490 | echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak |
c5937220 | 2491 | |
20ff6c80 AL |
2492 | if test "$zero_malloc" = "yes" ; then |
2493 | echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak | |
2494 | fi | |
2495 | ||
68063649 BS |
2496 | # USB host support |
2497 | case "$usb" in | |
2498 | linux) | |
98ec69ac | 2499 | echo "HOST_USB=linux" >> $config_host_mak |
68063649 BS |
2500 | ;; |
2501 | bsd) | |
98ec69ac | 2502 | echo "HOST_USB=bsd" >> $config_host_mak |
68063649 BS |
2503 | ;; |
2504 | *) | |
98ec69ac | 2505 | echo "HOST_USB=stub" >> $config_host_mak |
68063649 BS |
2506 | ;; |
2507 | esac | |
2508 | ||
94a420b1 | 2509 | echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak |
22890ab5 PS |
2510 | if test "$trace_backend" = "simple"; then |
2511 | echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak | |
2512 | fi | |
9410b56c PS |
2513 | # Set the appropriate trace file. |
2514 | if test "$trace_backend" = "simple"; then | |
2515 | trace_file="\"$trace_file-%u\"" | |
2516 | fi | |
2517 | echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak | |
2518 | ||
98ec69ac | 2519 | echo "TOOLS=$tools" >> $config_host_mak |
98ec69ac | 2520 | echo "ROMS=$roms" >> $config_host_mak |
804edf29 JQ |
2521 | echo "MAKE=$make" >> $config_host_mak |
2522 | echo "INSTALL=$install" >> $config_host_mak | |
2523 | echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak | |
2524 | echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak | |
2525 | echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak | |
2526 | echo "CC=$cc" >> $config_host_mak | |
2527 | echo "HOST_CC=$host_cc" >> $config_host_mak | |
2528 | if test "$sparse" = "yes" ; then | |
2529 | echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak | |
2530 | echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak | |
a558ee17 | 2531 | echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak |
804edf29 JQ |
2532 | fi |
2533 | echo "AR=$ar" >> $config_host_mak | |
2534 | echo "OBJCOPY=$objcopy" >> $config_host_mak | |
2535 | echo "LD=$ld" >> $config_host_mak | |
e2a2ed06 | 2536 | echo "CFLAGS=$CFLAGS" >> $config_host_mak |
a558ee17 | 2537 | echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak |
c81da56e | 2538 | echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak |
e2a2ed06 | 2539 | echo "LDFLAGS=$LDFLAGS" >> $config_host_mak |
a36abbbb JQ |
2540 | echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak |
2541 | echo "ARLIBS_END=$arlibs_end" >> $config_host_mak | |
73da375e | 2542 | echo "LIBS+=$LIBS" >> $config_host_mak |
3e2e0e6b | 2543 | echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak |
804edf29 | 2544 | echo "EXESUF=$EXESUF" >> $config_host_mak |
804edf29 | 2545 | |
4bf6b55b JQ |
2546 | # generate list of library paths for linker script |
2547 | ||
2548 | $ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} | |
2549 | ||
2550 | if test -f ${config_host_ld}~ ; then | |
2551 | if cmp -s $config_host_ld ${config_host_ld}~ ; then | |
2552 | mv ${config_host_ld}~ $config_host_ld | |
2553 | else | |
2554 | rm ${config_host_ld}~ | |
2555 | fi | |
2556 | fi | |
2557 | ||
4d904533 BS |
2558 | for d in libdis libdis-user; do |
2559 | mkdir -p $d | |
2560 | rm -f $d/Makefile | |
2561 | ln -s $source_path/Makefile.dis $d/Makefile | |
2562 | echo > $d/config.mak | |
2563 | done | |
d44cff22 RH |
2564 | if test "$static" = "no" -a "$user_pie" = "yes" ; then |
2565 | echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak | |
2566 | fi | |
4d904533 | 2567 | |
1d14ffa9 | 2568 | for target in $target_list; do |
97a847bc | 2569 | target_dir="$target" |
25be210f | 2570 | config_target_mak=$target_dir/config-target.mak |
600309b6 | 2571 | target_arch2=`echo $target | cut -d '-' -f 1` |
97a847bc | 2572 | target_bigendian="no" |
1f3d3c8f | 2573 | |
ea2d6a39 | 2574 | case "$target_arch2" in |
24e804ec | 2575 | armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus) |
ea2d6a39 JQ |
2576 | target_bigendian=yes |
2577 | ;; | |
2578 | esac | |
97a847bc | 2579 | target_softmmu="no" |
997344f3 | 2580 | target_user_only="no" |
831b7825 | 2581 | target_linux_user="no" |
831b7825 | 2582 | target_darwin_user="no" |
84778508 | 2583 | target_bsd_user="no" |
9e407a85 | 2584 | case "$target" in |
600309b6 | 2585 | ${target_arch2}-softmmu) |
9e407a85 PB |
2586 | target_softmmu="yes" |
2587 | ;; | |
600309b6 | 2588 | ${target_arch2}-linux-user) |
9c7a4202 BS |
2589 | if test "$linux" != "yes" ; then |
2590 | echo "ERROR: Target '$target' is only available on a Linux host" | |
2591 | exit 1 | |
2592 | fi | |
9e407a85 PB |
2593 | target_user_only="yes" |
2594 | target_linux_user="yes" | |
2595 | ;; | |
600309b6 | 2596 | ${target_arch2}-darwin-user) |
9c7a4202 BS |
2597 | if test "$darwin" != "yes" ; then |
2598 | echo "ERROR: Target '$target' is only available on a Darwin host" | |
2599 | exit 1 | |
2600 | fi | |
9e407a85 PB |
2601 | target_user_only="yes" |
2602 | target_darwin_user="yes" | |
2603 | ;; | |
600309b6 | 2604 | ${target_arch2}-bsd-user) |
9cf55765 | 2605 | if test "$bsd" != "yes" ; then |
9c7a4202 BS |
2606 | echo "ERROR: Target '$target' is only available on a BSD host" |
2607 | exit 1 | |
2608 | fi | |
84778508 BS |
2609 | target_user_only="yes" |
2610 | target_bsd_user="yes" | |
2611 | ;; | |
9e407a85 PB |
2612 | *) |
2613 | echo "ERROR: Target '$target' not recognised" | |
2614 | exit 1 | |
2615 | ;; | |
2616 | esac | |
831b7825 | 2617 | |
97a847bc | 2618 | mkdir -p $target_dir |
158142c2 | 2619 | mkdir -p $target_dir/fpu |
57fec1fe | 2620 | mkdir -p $target_dir/tcg |
59f2a787 | 2621 | mkdir -p $target_dir/ide |
84778508 | 2622 | if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then |
69de927c FB |
2623 | mkdir -p $target_dir/nwfpe |
2624 | fi | |
2625 | ||
ec530c81 FB |
2626 | # |
2627 | # don't use ln -sf as not all "ln -sf" over write the file/link | |
2628 | # | |
2629 | rm -f $target_dir/Makefile | |
2630 | ln -s $source_path/Makefile.target $target_dir/Makefile | |
2631 | ||
97a847bc | 2632 | |
25be210f | 2633 | echo "# Automatically generated by configure - do not modify" > $config_target_mak |
de83cd02 | 2634 | |
e5fe0c52 | 2635 | bflt="no" |
bd0c5661 | 2636 | target_nptl="no" |
600309b6 | 2637 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` |
7ee2822c | 2638 | echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak |
56aebc89 | 2639 | gdb_xml_files="" |
7ba1e619 | 2640 | |
938b1edd | 2641 | TARGET_ARCH="$target_arch2" |
6acff7da | 2642 | TARGET_BASE_ARCH="" |
e6e91b9c | 2643 | TARGET_ABI_DIR="" |
e73aae67 | 2644 | |
600309b6 | 2645 | case "$target_arch2" in |
2408a527 | 2646 | i386) |
1ad2134f | 2647 | target_phys_bits=32 |
2408a527 AJ |
2648 | ;; |
2649 | x86_64) | |
6acff7da | 2650 | TARGET_BASE_ARCH=i386 |
1ad2134f | 2651 | target_phys_bits=64 |
2408a527 AJ |
2652 | ;; |
2653 | alpha) | |
1ad2134f | 2654 | target_phys_bits=64 |
a4b388ff | 2655 | target_nptl="yes" |
2408a527 AJ |
2656 | ;; |
2657 | arm|armeb) | |
b498c8a0 | 2658 | TARGET_ARCH=arm |
2408a527 | 2659 | bflt="yes" |
bd0c5661 | 2660 | target_nptl="yes" |
56aebc89 | 2661 | gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" |
1ad2134f | 2662 | target_phys_bits=32 |
2408a527 AJ |
2663 | ;; |
2664 | cris) | |
253bd7f8 | 2665 | target_nptl="yes" |
1ad2134f | 2666 | target_phys_bits=32 |
2408a527 AJ |
2667 | ;; |
2668 | m68k) | |
2408a527 | 2669 | bflt="yes" |
56aebc89 | 2670 | gdb_xml_files="cf-core.xml cf-fp.xml" |
1ad2134f | 2671 | target_phys_bits=32 |
2408a527 | 2672 | ;; |
72b675ca | 2673 | microblaze) |
72b675ca EI |
2674 | bflt="yes" |
2675 | target_nptl="yes" | |
2676 | target_phys_bits=32 | |
2677 | ;; | |
0adcffb1 | 2678 | mips|mipsel) |
b498c8a0 | 2679 | TARGET_ARCH=mips |
25be210f | 2680 | echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak |
f04dc72f | 2681 | target_nptl="yes" |
1ad2134f | 2682 | target_phys_bits=64 |
2408a527 AJ |
2683 | ;; |
2684 | mipsn32|mipsn32el) | |
b498c8a0 | 2685 | TARGET_ARCH=mipsn32 |
6acff7da | 2686 | TARGET_BASE_ARCH=mips |
25be210f | 2687 | echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak |
1ad2134f | 2688 | target_phys_bits=64 |
2408a527 AJ |
2689 | ;; |
2690 | mips64|mips64el) | |
b498c8a0 | 2691 | TARGET_ARCH=mips64 |
6acff7da | 2692 | TARGET_BASE_ARCH=mips |
25be210f | 2693 | echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak |
1ad2134f | 2694 | target_phys_bits=64 |
2408a527 AJ |
2695 | ;; |
2696 | ppc) | |
c8b3532d | 2697 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 2698 | target_phys_bits=32 |
d6630708 | 2699 | target_nptl="yes" |
2408a527 AJ |
2700 | ;; |
2701 | ppcemb) | |
6acff7da | 2702 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 2703 | TARGET_ABI_DIR=ppc |
c8b3532d | 2704 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 2705 | target_phys_bits=64 |
d6630708 | 2706 | target_nptl="yes" |
2408a527 AJ |
2707 | ;; |
2708 | ppc64) | |
6acff7da | 2709 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 2710 | TARGET_ABI_DIR=ppc |
c8b3532d | 2711 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 2712 | target_phys_bits=64 |
2408a527 AJ |
2713 | ;; |
2714 | ppc64abi32) | |
b498c8a0 | 2715 | TARGET_ARCH=ppc64 |
6acff7da | 2716 | TARGET_BASE_ARCH=ppc |
e6e91b9c | 2717 | TARGET_ABI_DIR=ppc |
25be210f | 2718 | echo "TARGET_ABI32=y" >> $config_target_mak |
c8b3532d | 2719 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
1ad2134f | 2720 | target_phys_bits=64 |
2408a527 AJ |
2721 | ;; |
2722 | sh4|sh4eb) | |
b498c8a0 | 2723 | TARGET_ARCH=sh4 |
2408a527 | 2724 | bflt="yes" |
0b6d3ae0 | 2725 | target_nptl="yes" |
1ad2134f | 2726 | target_phys_bits=32 |
2408a527 AJ |
2727 | ;; |
2728 | sparc) | |
1ad2134f | 2729 | target_phys_bits=64 |
2408a527 AJ |
2730 | ;; |
2731 | sparc64) | |
6acff7da | 2732 | TARGET_BASE_ARCH=sparc |
1ad2134f | 2733 | target_phys_bits=64 |
2408a527 AJ |
2734 | ;; |
2735 | sparc32plus) | |
b498c8a0 | 2736 | TARGET_ARCH=sparc64 |
6acff7da | 2737 | TARGET_BASE_ARCH=sparc |
e6e91b9c | 2738 | TARGET_ABI_DIR=sparc |
25be210f | 2739 | echo "TARGET_ABI32=y" >> $config_target_mak |
1ad2134f | 2740 | target_phys_bits=64 |
2408a527 | 2741 | ;; |
24e804ec AG |
2742 | s390x) |
2743 | target_phys_bits=64 | |
2744 | ;; | |
2408a527 AJ |
2745 | *) |
2746 | echo "Unsupported target CPU" | |
2747 | exit 1 | |
2748 | ;; | |
2749 | esac | |
25be210f | 2750 | echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak |
053dd92e | 2751 | target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`" |
25be210f JQ |
2752 | echo "TARGET_$target_arch_name=y" >> $config_target_mak |
2753 | echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak | |
42bc608b | 2754 | # TARGET_BASE_ARCH needs to be defined after TARGET_ARCH |
6acff7da JQ |
2755 | if [ "$TARGET_BASE_ARCH" = "" ]; then |
2756 | TARGET_BASE_ARCH=$TARGET_ARCH | |
6acff7da | 2757 | fi |
25be210f | 2758 | echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak |
e6e91b9c JQ |
2759 | if [ "$TARGET_ABI_DIR" = "" ]; then |
2760 | TARGET_ABI_DIR=$TARGET_ARCH | |
2761 | fi | |
25be210f | 2762 | echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak |
1b0c87fc JQ |
2763 | case "$target_arch2" in |
2764 | i386|x86_64) | |
2765 | if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then | |
25be210f | 2766 | echo "CONFIG_XEN=y" >> $config_target_mak |
1b0c87fc JQ |
2767 | fi |
2768 | esac | |
c59249f9 | 2769 | case "$target_arch2" in |
0e60a699 | 2770 | i386|x86_64|ppcemb|ppc|ppc64|s390x) |
c59249f9 JQ |
2771 | # Make sure the target and host cpus are compatible |
2772 | if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ | |
2773 | \( "$target_arch2" = "$cpu" -o \ | |
2774 | \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ | |
5f114bc6 | 2775 | \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ |
c59249f9 JQ |
2776 | \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ |
2777 | \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then | |
25be210f JQ |
2778 | echo "CONFIG_KVM=y" >> $config_target_mak |
2779 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak | |
dae5079a JK |
2780 | if test "$kvm_para" = "yes"; then |
2781 | echo "CONFIG_KVM_PARA=y" >> $config_target_mak | |
2782 | fi | |
d5970055 MT |
2783 | if test $vhost_net = "yes" ; then |
2784 | echo "CONFIG_VHOST_NET=y" >> $config_target_mak | |
2785 | fi | |
c59249f9 JQ |
2786 | fi |
2787 | esac | |
de83cd02 | 2788 | if test "$target_bigendian" = "yes" ; then |
25be210f | 2789 | echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak |
de83cd02 | 2790 | fi |
97a847bc | 2791 | if test "$target_softmmu" = "yes" ; then |
b1aa27c4 | 2792 | echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak |
25be210f JQ |
2793 | echo "CONFIG_SOFTMMU=y" >> $config_target_mak |
2794 | echo "LIBS+=$libs_softmmu" >> $config_target_mak | |
0e8c9214 | 2795 | echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak |
5791f45b | 2796 | echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak |
43ce4dfe | 2797 | fi |
997344f3 | 2798 | if test "$target_user_only" = "yes" ; then |
25be210f | 2799 | echo "CONFIG_USER_ONLY=y" >> $config_target_mak |
997344f3 | 2800 | fi |
831b7825 | 2801 | if test "$target_linux_user" = "yes" ; then |
25be210f | 2802 | echo "CONFIG_LINUX_USER=y" >> $config_target_mak |
831b7825 TS |
2803 | fi |
2804 | if test "$target_darwin_user" = "yes" ; then | |
25be210f | 2805 | echo "CONFIG_DARWIN_USER=y" >> $config_target_mak |
831b7825 | 2806 | fi |
56aebc89 PB |
2807 | list="" |
2808 | if test ! -z "$gdb_xml_files" ; then | |
2809 | for x in $gdb_xml_files; do | |
2810 | list="$list $source_path/gdb-xml/$x" | |
2811 | done | |
3d0f1517 | 2812 | echo "TARGET_XML_FILES=$list" >> $config_target_mak |
56aebc89 | 2813 | fi |
97a847bc | 2814 | |
f57975fb | 2815 | case "$target_arch2" in |
990b3e19 | 2816 | alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus) |
25be210f | 2817 | echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak |
f57975fb | 2818 | ;; |
d6b38939 | 2819 | *) |
25be210f | 2820 | echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak |
d6b38939 | 2821 | ;; |
f57975fb JQ |
2822 | esac |
2823 | ||
e5fe0c52 | 2824 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
25be210f | 2825 | echo "TARGET_HAS_BFLT=y" >> $config_target_mak |
e5fe0c52 | 2826 | fi |
bd0c5661 PB |
2827 | if test "$target_user_only" = "yes" \ |
2828 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then | |
25be210f | 2829 | echo "CONFIG_USE_NPTL=y" >> $config_target_mak |
bd0c5661 | 2830 | fi |
379f6698 | 2831 | if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then |
25be210f | 2832 | echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak |
379f6698 | 2833 | fi |
84778508 | 2834 | if test "$target_bsd_user" = "yes" ; then |
25be210f | 2835 | echo "CONFIG_BSD_USER=y" >> $config_target_mak |
84778508 | 2836 | fi |
5b0753e0 | 2837 | |
4afddb55 | 2838 | # generate QEMU_CFLAGS/LDFLAGS for targets |
fa282484 | 2839 | |
4afddb55 | 2840 | cflags="" |
fa282484 | 2841 | ldflags="" |
9b8e111f | 2842 | |
57ddfbf7 JQ |
2843 | if test "$ARCH" = "sparc64" ; then |
2844 | cflags="-I\$(SRC_PATH)/tcg/sparc $cflags" | |
24e804ec AG |
2845 | elif test "$ARCH" = "s390x" ; then |
2846 | cflags="-I\$(SRC_PATH)/tcg/s390 $cflags" | |
5d8a4f8f RH |
2847 | elif test "$ARCH" = "x86_64" ; then |
2848 | cflags="-I\$(SRC_PATH)/tcg/i386 $cflags" | |
57ddfbf7 JQ |
2849 | else |
2850 | cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags" | |
2851 | fi | |
2852 | cflags="-I\$(SRC_PATH)/tcg $cflags" | |
2853 | cflags="-I\$(SRC_PATH)/fpu $cflags" | |
2854 | ||
4d904533 BS |
2855 | if test "$target_user_only" = "yes" ; then |
2856 | libdis_config_mak=libdis-user/config.mak | |
2857 | else | |
2858 | libdis_config_mak=libdis/config.mak | |
2859 | fi | |
2860 | ||
64656024 JQ |
2861 | for i in $ARCH $TARGET_BASE_ARCH ; do |
2862 | case "$i" in | |
2863 | alpha) | |
25be210f | 2864 | echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak |
4d904533 | 2865 | echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2866 | ;; |
2867 | arm) | |
25be210f | 2868 | echo "CONFIG_ARM_DIS=y" >> $config_target_mak |
4d904533 | 2869 | echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2870 | ;; |
2871 | cris) | |
25be210f | 2872 | echo "CONFIG_CRIS_DIS=y" >> $config_target_mak |
4d904533 | 2873 | echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2874 | ;; |
2875 | hppa) | |
25be210f | 2876 | echo "CONFIG_HPPA_DIS=y" >> $config_target_mak |
4d904533 | 2877 | echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2878 | ;; |
2879 | i386|x86_64) | |
25be210f | 2880 | echo "CONFIG_I386_DIS=y" >> $config_target_mak |
4d904533 | 2881 | echo "CONFIG_I386_DIS=y" >> $libdis_config_mak |
64656024 | 2882 | ;; |
903ec55c AJ |
2883 | ia64*) |
2884 | echo "CONFIG_IA64_DIS=y" >> $config_target_mak | |
2885 | echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak | |
2886 | ;; | |
64656024 | 2887 | m68k) |
25be210f | 2888 | echo "CONFIG_M68K_DIS=y" >> $config_target_mak |
4d904533 | 2889 | echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2890 | ;; |
2891 | microblaze) | |
25be210f | 2892 | echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak |
4d904533 | 2893 | echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2894 | ;; |
2895 | mips*) | |
25be210f | 2896 | echo "CONFIG_MIPS_DIS=y" >> $config_target_mak |
4d904533 | 2897 | echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2898 | ;; |
2899 | ppc*) | |
25be210f | 2900 | echo "CONFIG_PPC_DIS=y" >> $config_target_mak |
4d904533 | 2901 | echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak |
64656024 | 2902 | ;; |
24e804ec | 2903 | s390*) |
25be210f | 2904 | echo "CONFIG_S390_DIS=y" >> $config_target_mak |
4d904533 | 2905 | echo "CONFIG_S390_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2906 | ;; |
2907 | sh4) | |
25be210f | 2908 | echo "CONFIG_SH4_DIS=y" >> $config_target_mak |
4d904533 | 2909 | echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2910 | ;; |
2911 | sparc*) | |
25be210f | 2912 | echo "CONFIG_SPARC_DIS=y" >> $config_target_mak |
4d904533 | 2913 | echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak |
64656024 JQ |
2914 | ;; |
2915 | esac | |
2916 | done | |
2917 | ||
6ee7126f JQ |
2918 | case "$ARCH" in |
2919 | alpha) | |
2920 | # Ensure there's only a single GP | |
2921 | cflags="-msmall-data $cflags" | |
2922 | ;; | |
2923 | esac | |
2924 | ||
55d9c04b JQ |
2925 | if test "$target_softmmu" = "yes" ; then |
2926 | case "$TARGET_BASE_ARCH" in | |
2927 | arm) | |
2928 | cflags="-DHAS_AUDIO $cflags" | |
2929 | ;; | |
2930 | i386|mips|ppc) | |
2931 | cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" | |
2932 | ;; | |
2933 | esac | |
2934 | fi | |
2935 | ||
34005a00 | 2936 | if test "$target_user_only" = "yes" -a "$static" = "no" -a \ |
50108930 | 2937 | "$user_pie" = "yes" ; then |
34005a00 KS |
2938 | cflags="-fpie $cflags" |
2939 | ldflags="-pie $ldflags" | |
2940 | fi | |
2941 | ||
471857dd JQ |
2942 | if test "$target_softmmu" = "yes" -a \( \ |
2943 | "$TARGET_ARCH" = "microblaze" -o \ | |
2944 | "$TARGET_ARCH" = "cris" \) ; then | |
25be210f | 2945 | echo "CONFIG_NEED_MMU=y" >> $config_target_mak |
471857dd JQ |
2946 | fi |
2947 | ||
d02c1db3 | 2948 | if test "$gprof" = "yes" ; then |
25be210f | 2949 | echo "TARGET_GPROF=yes" >> $config_target_mak |
d02c1db3 JQ |
2950 | if test "$target_linux_user" = "yes" ; then |
2951 | cflags="-p $cflags" | |
2952 | ldflags="-p $ldflags" | |
2953 | fi | |
2954 | if test "$target_softmmu" = "yes" ; then | |
2955 | ldflags="-p $ldflags" | |
25be210f | 2956 | echo "GPROF_CFLAGS=-p" >> $config_target_mak |
d02c1db3 JQ |
2957 | fi |
2958 | fi | |
2959 | ||
6ee7126f | 2960 | linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" |
9b8e111f | 2961 | if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then |
fa282484 | 2962 | case "$ARCH" in |
fa282484 JQ |
2963 | sparc) |
2964 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
322e5878 | 2965 | ldflags="$linker_script -static $ldflags" |
fa282484 | 2966 | ;; |
4d58be06 RH |
2967 | alpha | s390x) |
2968 | # The default placement of the application is fine. | |
2969 | ;; | |
fd76e73a | 2970 | *) |
322e5878 | 2971 | ldflags="$linker_script $ldflags" |
fa282484 JQ |
2972 | ;; |
2973 | esac | |
2974 | fi | |
fa282484 | 2975 | |
25be210f JQ |
2976 | echo "LDFLAGS+=$ldflags" >> $config_target_mak |
2977 | echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak | |
fa282484 | 2978 | |
97a847bc | 2979 | done # for target in $targets |
7d13299d FB |
2980 | |
2981 | # build tree in object directory if source path is different from current one | |
2982 | if test "$source_path_used" = "yes" ; then | |
e1144d00 | 2983 | DIRS="tests tests/cris slirp audio block net pc-bios/optionrom" |
2d9f27d2 | 2984 | DIRS="$DIRS roms/seabios roms/vgabios" |
3e230dd2 | 2985 | DIRS="$DIRS fsdev ui" |
7d13299d | 2986 | FILES="Makefile tests/Makefile" |
e7daa605 | 2987 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
e1ffb0f1 | 2988 | FILES="$FILES tests/test-mmap.c" |
7ea78b74 | 2989 | FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x" |
2d9f27d2 | 2990 | FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" |
7ea78b74 JK |
2991 | for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do |
2992 | FILES="$FILES pc-bios/`basename $bios_file`" | |
2993 | done | |
7d13299d FB |
2994 | for dir in $DIRS ; do |
2995 | mkdir -p $dir | |
2996 | done | |
ec530c81 | 2997 | # remove the link and recreate it, as not all "ln -sf" overwrite the link |
7d13299d | 2998 | for f in $FILES ; do |
ec530c81 FB |
2999 | rm -f $f |
3000 | ln -s $source_path/$f $f | |
7d13299d FB |
3001 | done |
3002 | fi | |
1ad2134f | 3003 | |
c34ebfdc | 3004 | # temporary config to build submodules |
2d9f27d2 | 3005 | for rom in seabios vgabios ; do |
c34ebfdc | 3006 | config_mak=roms/$rom/config.mak |
37116c89 | 3007 | echo "# Automatically generated by configure - do not modify" > $config_mak |
c34ebfdc AL |
3008 | echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak |
3009 | echo "CC=$cc" >> $config_mak | |
3010 | echo "BCC=bcc" >> $config_mak | |
3011 | echo "CPP=${cross_prefix}cpp" >> $config_mak | |
3012 | echo "OBJCOPY=objcopy" >> $config_mak | |
3013 | echo "IASL=iasl" >> $config_mak | |
3014 | echo "HOST_CC=$host_cc" >> $config_mak | |
3015 | echo "LD=$ld" >> $config_mak | |
3016 | done | |
3017 | ||
1ad2134f PB |
3018 | for hwlib in 32 64; do |
3019 | d=libhw$hwlib | |
3020 | mkdir -p $d | |
9953b2fc | 3021 | mkdir -p $d/ide |
1ad2134f PB |
3022 | rm -f $d/Makefile |
3023 | ln -s $source_path/Makefile.hw $d/Makefile | |
37116c89 | 3024 | echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak |
1ad2134f | 3025 | done |
add16157 BS |
3026 | |
3027 | d=libuser | |
3028 | mkdir -p $d | |
3029 | rm -f $d/Makefile | |
3030 | ln -s $source_path/Makefile.user $d/Makefile | |
299060a0 KS |
3031 | if test "$static" = "no" -a "$user_pie" = "yes" ; then |
3032 | echo "QEMU_CFLAGS+=-fpie" > $d/config.mak | |
3033 | fi | |
b40292e7 JK |
3034 | |
3035 | if test "$docs" = "yes" ; then | |
3036 | mkdir -p QMP | |
3037 | fi |