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