Statistics
| Branch: | Revision:

root / configure @ 3ffd710e

History | View | Annotate | Download (76.2 kB)

1
#!/bin/sh
2
#
3
# qemu configure script (c) 2003 Fabrice Bellard
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

    
14
TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15
TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16
TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
17

    
18
trap "rm -f $TMPC $TMPO $TMPE ; exit" EXIT INT QUIT TERM
19

    
20
compile_object() {
21
  $cc $QEMU_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
22
}
23

    
24
compile_prog() {
25
  local_cflags="$1"
26
  local_ldflags="$2"
27
  $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null
28
}
29

    
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

    
66
# default parameters
67
cpu=""
68
interp_prefix="/usr/gnemul/qemu-%M"
69
static="no"
70
sparc_cpu=""
71
cross_prefix=""
72
cc="gcc"
73
audio_drv_list=""
74
audio_card_list="ac97 es1370 sb16"
75
audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
76
block_drv_whitelist=""
77
host_cc="gcc"
78
ar="ar"
79
make="make"
80
install="install"
81
objcopy="objcopy"
82
ld="ld"
83
strip="strip"
84
helper_cflags=""
85
libs_softmmu=""
86
libs_tools=""
87
audio_pt_int=""
88
audio_win_int=""
89

    
90
# parse CC options first
91
for opt do
92
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
93
  case "$opt" in
94
  --cross-prefix=*) cross_prefix="$optarg"
95
  ;;
96
  --cc=*) cc="$optarg"
97
  ;;
98
  --cpu=*) cpu="$optarg"
99
  ;;
100
  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
101
  ;;
102
  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
103
  ;;
104
  --sparc_cpu=*)
105
    sparc_cpu="$optarg"
106
    case $sparc_cpu in
107
    v7|v8|v8plus|v8plusa)
108
      cpu="sparc"
109
    ;;
110
    v9)
111
      cpu="sparc64"
112
    ;;
113
    *)
114
      echo "undefined SPARC architecture. Exiting";
115
      exit 1
116
    ;;
117
    esac
118
  ;;
119
  esac
120
done
121
# OS specific
122
# Using uname is really, really broken.  Once we have the right set of checks
123
# we can eliminate it's usage altogether
124

    
125
cc="${cross_prefix}${cc}"
126
ar="${cross_prefix}${ar}"
127
objcopy="${cross_prefix}${objcopy}"
128
ld="${cross_prefix}${ld}"
129
strip="${cross_prefix}${strip}"
130

    
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"
137
QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
138
QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"
139
LDFLAGS="-g $LDFLAGS"
140

    
141
gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
142
gcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
143
gcc_flags="-Wmissing-include-dirs -Wempty-body $gcc_flags"
144
gcc_flags="-fstack-protector-all $gcc_flags"
145
cat > $TMPC << EOF
146
int main(void) { return 0; }
147
EOF
148
for flag in $gcc_flags; do
149
    if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
150
	QEMU_CFLAGS="$flag $QEMU_CFLAGS"
151
    fi
152
done
153

    
154
# check that the C compiler works.
155
cat > $TMPC <<EOF
156
int main(void) {}
157
EOF
158

    
159
if compile_object ; then
160
  : C compiler works ok
161
else
162
    echo "ERROR: \"$cc\" either does not exist or does not work"
163
    exit 1
164
fi
165

    
166
check_define() {
167
cat > $TMPC <<EOF
168
#if !defined($1)
169
#error Not defined
170
#endif
171
int main(void) { return 0; }
172
EOF
173
  compile_object
174
}
175

    
176
if test ! -z "$cpu" ; then
177
  # command line argument
178
  :
179
elif check_define __i386__ ; then
180
  cpu="i386"
181
elif check_define __x86_64__ ; then
182
  cpu="x86_64"
183
elif check_define __sparc__ ; then
184
  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
185
  # They must be specified using --sparc_cpu
186
  if check_define __arch64__ ; then
187
    cpu="sparc64"
188
  else
189
    cpu="sparc"
190
  fi
191
elif check_define _ARCH_PPC ; then
192
  if check_define _ARCH_PPC64 ; then
193
    cpu="ppc64"
194
  else
195
    cpu="ppc"
196
  fi
197
elif check_define __mips__ ; then
198
  cpu="mips"
199
elif check_define __ia64__ ; then
200
  cpu="ia64"
201
elif check_define __s390__ ; then
202
  if check_define __s390x__ ; then
203
    cpu="s390x"
204
  else
205
    cpu="s390"
206
  fi
207
else
208
  cpu=`uname -m`
209
fi
210

    
211
target_list=""
212
case "$cpu" in
213
  alpha|cris|ia64|m68k|microblaze|ppc|ppc64|sparc64)
214
    cpu="$cpu"
215
  ;;
216
  i386|i486|i586|i686|i86pc|BePC)
217
    cpu="i386"
218
  ;;
219
  x86_64|amd64)
220
    cpu="x86_64"
221
  ;;
222
  armv*b)
223
    cpu="armv4b"
224
  ;;
225
  armv*l)
226
    cpu="armv4l"
227
  ;;
228
  parisc|parisc64)
229
    cpu="hppa"
230
  ;;
231
  mips*)
232
    cpu="mips"
233
  ;;
234
  s390)
235
    cpu="s390"
236
  ;;
237
  s390x)
238
    cpu="s390x"
239
  ;;
240
  sparc|sun4[cdmuv])
241
    cpu="sparc"
242
  ;;
243
  *)
244
    echo "Unsupported CPU = $cpu"
245
    exit 1
246
  ;;
247
esac
248

    
249
# Default value for a variable defining feature "foo".
250
#  * foo="no"  feature will only be used if --enable-foo arg is given
251
#  * foo=""    feature will be searched for, and if found, will be used
252
#              unless --disable-foo is given
253
#  * foo="yes" this value will only be set by --enable-foo flag.
254
#              feature will searched for,
255
#              if not found, configure exits with error
256
#
257
# Always add --enable-foo and --disable-foo command line args.
258
# Distributions want to ensure that several features are compiled in, and it
259
# is impossible without a --enable-foo that exits if a feature is not found.
260

    
261
bluez=""
262
brlapi=""
263
curl=""
264
curses=""
265
docs=""
266
fdt=""
267
kvm=""
268
kvm_para=""
269
nptl=""
270
sdl=""
271
sparse="no"
272
uuid=""
273
vde=""
274
vnc_tls=""
275
vnc_sasl=""
276
vnc_jpeg=""
277
vnc_png=""
278
vnc_thread="no"
279
xen=""
280
linux_aio=""
281
attr=""
282
vhost_net=""
283

    
284
gprof="no"
285
debug_tcg="no"
286
debug_mon="no"
287
debug="no"
288
strip_opt="yes"
289
bigendian="no"
290
mingw32="no"
291
EXESUF=""
292
prefix="/usr/local"
293
mandir="\${prefix}/share/man"
294
datadir="\${prefix}/share/qemu"
295
docdir="\${prefix}/share/doc/qemu"
296
bindir="\${prefix}/bin"
297
sysconfdir="\${prefix}/etc"
298
confsuffix="/qemu"
299
slirp="yes"
300
fmod_lib=""
301
fmod_inc=""
302
oss_lib=""
303
bsd="no"
304
linux="no"
305
solaris="no"
306
profiler="no"
307
cocoa="no"
308
softmmu="yes"
309
linux_user="no"
310
darwin_user="no"
311
bsd_user="no"
312
guest_base=""
313
uname_release=""
314
io_thread="no"
315
mixemu="no"
316
kerneldir=""
317
aix="no"
318
blobs="yes"
319
pkgversion=""
320
check_utests="no"
321
user_pie="no"
322
zero_malloc=""
323
trace_backend="nop"
324
trace_file="trace"
325

    
326
# OS specific
327
if check_define __linux__ ; then
328
  targetos="Linux"
329
elif check_define _WIN32 ; then
330
  targetos='MINGW32'
331
elif check_define __OpenBSD__ ; then
332
  targetos='OpenBSD'
333
elif check_define __sun__ ; then
334
  targetos='SunOS'
335
else
336
  targetos=`uname -s`
337
fi
338

    
339
case $targetos in
340
CYGWIN*)
341
  mingw32="yes"
342
  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
343
  audio_possible_drivers="winwave sdl"
344
  audio_drv_list="winwave"
345
;;
346
MINGW32*)
347
  mingw32="yes"
348
  audio_possible_drivers="winwave dsound sdl fmod"
349
  audio_drv_list="winwave"
350
;;
351
GNU/kFreeBSD)
352
  bsd="yes"
353
  audio_drv_list="oss"
354
  audio_possible_drivers="oss sdl esd pa"
355
;;
356
FreeBSD)
357
  bsd="yes"
358
  make="gmake"
359
  audio_drv_list="oss"
360
  audio_possible_drivers="oss sdl esd pa"
361
  # needed for kinfo_getvmmap(3) in libutil.h
362
  LIBS="-lutil $LIBS"
363
;;
364
DragonFly)
365
  bsd="yes"
366
  make="gmake"
367
  audio_drv_list="oss"
368
  audio_possible_drivers="oss sdl esd pa"
369
;;
370
NetBSD)
371
  bsd="yes"
372
  make="gmake"
373
  audio_drv_list="oss"
374
  audio_possible_drivers="oss sdl esd"
375
  oss_lib="-lossaudio"
376
;;
377
OpenBSD)
378
  bsd="yes"
379
  make="gmake"
380
  audio_drv_list="oss"
381
  audio_possible_drivers="oss sdl esd"
382
  oss_lib="-lossaudio"
383
;;
384
Darwin)
385
  bsd="yes"
386
  darwin="yes"
387
  # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
388
  # run 64-bit userspace code
389
  if [ "$cpu" = "i386" ] ; then
390
    is_x86_64=`sysctl -n hw.optional.x86_64`
391
    [ "$is_x86_64" = "1" ] && cpu=x86_64
392
  fi
393
  if [ "$cpu" = "x86_64" ] ; then
394
    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
395
    LDFLAGS="-arch x86_64 $LDFLAGS"
396
  else
397
    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
398
  fi
399
  darwin_user="yes"
400
  cocoa="yes"
401
  audio_drv_list="coreaudio"
402
  audio_possible_drivers="coreaudio sdl fmod"
403
  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
404
  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
405
;;
406
SunOS)
407
  solaris="yes"
408
  make="gmake"
409
  install="ginstall"
410
  ld="gld"
411
  needs_libsunmath="no"
412
  solarisrev=`uname -r | cut -f2 -d.`
413
  # have to select again, because `uname -m` returns i86pc
414
  # even on an x86_64 box.
415
  solariscpu=`isainfo -k`
416
  if test "${solariscpu}" = "amd64" ; then
417
    cpu="x86_64"
418
  fi
419
  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
420
    if test "$solarisrev" -le 9 ; then
421
      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
422
        needs_libsunmath="yes"
423
        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
424
        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
425
        LIBS="-lsunmath $LIBS"
426
      else
427
        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
428
        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
429
        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
430
        echo "Studio 11 can be downloaded from www.sun.com."
431
        exit 1
432
      fi
433
    fi
434
  fi
435
  if test -f /usr/include/sys/soundcard.h ; then
436
    audio_drv_list="oss"
437
  fi
438
  audio_possible_drivers="oss sdl"
439
# needed for CMSG_ macros in sys/socket.h
440
  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
441
# needed for TIOCWIN* defines in termios.h
442
  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
443
  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
444
  LIBS="-lsocket -lnsl -lresolv $LIBS"
445
;;
446
AIX)
447
  aix="yes"
448
  make="gmake"
449
;;
450
*)
451
  audio_drv_list="oss"
452
  audio_possible_drivers="oss alsa sdl esd pa"
453
  linux="yes"
454
  linux_user="yes"
455
  usb="linux"
456
  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
457
    audio_possible_drivers="$audio_possible_drivers fmod"
458
  fi
459
;;
460
esac
461

    
462
if [ "$bsd" = "yes" ] ; then
463
  if [ "$darwin" != "yes" ] ; then
464
    usb="bsd"
465
  fi
466
  bsd_user="yes"
467
fi
468

    
469
if test "$mingw32" = "yes" ; then
470
  EXESUF=".exe"
471
  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
472
  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
473
  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
474
  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
475
  prefix="c:/Program Files/Qemu"
476
  mandir="\${prefix}"
477
  datadir="\${prefix}"
478
  docdir="\${prefix}"
479
  bindir="\${prefix}"
480
  sysconfdir="\${prefix}"
481
  confsuffix=""
482
fi
483

    
484
# find source path
485
source_path=`dirname "$0"`
486
source_path_used="no"
487
workdir=`pwd`
488
if [ -z "$source_path" ]; then
489
    source_path=$workdir
490
else
491
    source_path=`cd "$source_path"; pwd`
492
fi
493
[ -f "$workdir/vl.c" ] || source_path_used="yes"
494

    
495
werror=""
496

    
497
for opt do
498
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
499
  case "$opt" in
500
  --help|-h) show_help=yes
501
  ;;
502
  --prefix=*) prefix="$optarg"
503
  ;;
504
  --interp-prefix=*) interp_prefix="$optarg"
505
  ;;
506
  --source-path=*) source_path="$optarg"
507
  source_path_used="yes"
508
  ;;
509
  --cross-prefix=*)
510
  ;;
511
  --cc=*)
512
  ;;
513
  --host-cc=*) host_cc="$optarg"
514
  ;;
515
  --make=*) make="$optarg"
516
  ;;
517
  --install=*) install="$optarg"
518
  ;;
519
  --extra-cflags=*)
520
  ;;
521
  --extra-ldflags=*)
522
  ;;
523
  --cpu=*)
524
  ;;
525
  --target-list=*) target_list="$optarg"
526
  ;;
527
  --trace-backend=*) trace_backend="$optarg"
528
  ;;
529
  --trace-file=*) trace_file="$optarg"
530
  ;;
531
  --enable-gprof) gprof="yes"
532
  ;;
533
  --static)
534
    static="yes"
535
    LDFLAGS="-static $LDFLAGS"
536
  ;;
537
  --mandir=*) mandir="$optarg"
538
  ;;
539
  --bindir=*) bindir="$optarg"
540
  ;;
541
  --datadir=*) datadir="$optarg"
542
  ;;
543
  --docdir=*) docdir="$optarg"
544
  ;;
545
  --sysconfdir=*) sysconfdir="$optarg"
546
  ;;
547
  --disable-sdl) sdl="no"
548
  ;;
549
  --enable-sdl) sdl="yes"
550
  ;;
551
  --fmod-lib=*) fmod_lib="$optarg"
552
  ;;
553
  --fmod-inc=*) fmod_inc="$optarg"
554
  ;;
555
  --oss-lib=*) oss_lib="$optarg"
556
  ;;
557
  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
558
  ;;
559
  --audio-drv-list=*) audio_drv_list="$optarg"
560
  ;;
561
  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
562
  ;;
563
  --enable-debug-tcg) debug_tcg="yes"
564
  ;;
565
  --disable-debug-tcg) debug_tcg="no"
566
  ;;
567
  --enable-debug-mon) debug_mon="yes"
568
  ;;
569
  --disable-debug-mon) debug_mon="no"
570
  ;;
571
  --enable-debug)
572
      # Enable debugging options that aren't excessively noisy
573
      debug_tcg="yes"
574
      debug_mon="yes"
575
      debug="yes"
576
      strip_opt="no"
577
  ;;
578
  --enable-sparse) sparse="yes"
579
  ;;
580
  --disable-sparse) sparse="no"
581
  ;;
582
  --disable-strip) strip_opt="no"
583
  ;;
584
  --disable-vnc-tls) vnc_tls="no"
585
  ;;
586
  --enable-vnc-tls) vnc_tls="yes"
587
  ;;
588
  --disable-vnc-sasl) vnc_sasl="no"
589
  ;;
590
  --enable-vnc-sasl) vnc_sasl="yes"
591
  ;;
592
  --disable-vnc-jpeg) vnc_jpeg="no"
593
  ;;
594
  --enable-vnc-jpeg) vnc_jpeg="yes"
595
  ;;
596
  --disable-vnc-png) vnc_png="no"
597
  ;;
598
  --enable-vnc-png) vnc_png="yes"
599
  ;;
600
  --disable-vnc-thread) vnc_thread="no"
601
  ;;
602
  --enable-vnc-thread) vnc_thread="yes"
603
  ;;
604
  --disable-slirp) slirp="no"
605
  ;;
606
  --disable-uuid) uuid="no"
607
  ;;
608
  --enable-uuid) uuid="yes"
609
  ;;
610
  --disable-vde) vde="no"
611
  ;;
612
  --enable-vde) vde="yes"
613
  ;;
614
  --disable-xen) xen="no"
615
  ;;
616
  --enable-xen) xen="yes"
617
  ;;
618
  --disable-brlapi) brlapi="no"
619
  ;;
620
  --enable-brlapi) brlapi="yes"
621
  ;;
622
  --disable-bluez) bluez="no"
623
  ;;
624
  --enable-bluez) bluez="yes"
625
  ;;
626
  --disable-kvm) kvm="no"
627
  ;;
628
  --enable-kvm) kvm="yes"
629
  ;;
630
  --enable-profiler) profiler="yes"
631
  ;;
632
  --enable-cocoa)
633
      cocoa="yes" ;
634
      sdl="no" ;
635
      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
636
  ;;
637
  --disable-system) softmmu="no"
638
  ;;
639
  --enable-system) softmmu="yes"
640
  ;;
641
  --disable-user)
642
      linux_user="no" ;
643
      bsd_user="no" ;
644
      darwin_user="no"
645
  ;;
646
  --enable-user) ;;
647
  --disable-linux-user) linux_user="no"
648
  ;;
649
  --enable-linux-user) linux_user="yes"
650
  ;;
651
  --disable-darwin-user) darwin_user="no"
652
  ;;
653
  --enable-darwin-user) darwin_user="yes"
654
  ;;
655
  --disable-bsd-user) bsd_user="no"
656
  ;;
657
  --enable-bsd-user) bsd_user="yes"
658
  ;;
659
  --enable-guest-base) guest_base="yes"
660
  ;;
661
  --disable-guest-base) guest_base="no"
662
  ;;
663
  --enable-user-pie) user_pie="yes"
664
  ;;
665
  --disable-user-pie) user_pie="no"
666
  ;;
667
  --enable-uname-release=*) uname_release="$optarg"
668
  ;;
669
  --sparc_cpu=*)
670
  ;;
671
  --enable-werror) werror="yes"
672
  ;;
673
  --disable-werror) werror="no"
674
  ;;
675
  --disable-curses) curses="no"
676
  ;;
677
  --enable-curses) curses="yes"
678
  ;;
679
  --disable-curl) curl="no"
680
  ;;
681
  --enable-curl) curl="yes"
682
  ;;
683
  --disable-fdt) fdt="no"
684
  ;;
685
  --enable-fdt) fdt="yes"
686
  ;;
687
  --disable-check-utests) check_utests="no"
688
  ;;
689
  --enable-check-utests) check_utests="yes"
690
  ;;
691
  --disable-nptl) nptl="no"
692
  ;;
693
  --enable-nptl) nptl="yes"
694
  ;;
695
  --enable-mixemu) mixemu="yes"
696
  ;;
697
  --disable-linux-aio) linux_aio="no"
698
  ;;
699
  --enable-linux-aio) linux_aio="yes"
700
  ;;
701
  --disable-attr) attr="no"
702
  ;;
703
  --enable-attr) attr="yes"
704
  ;;
705
  --enable-io-thread) io_thread="yes"
706
  ;;
707
  --disable-blobs) blobs="no"
708
  ;;
709
  --kerneldir=*) kerneldir="$optarg"
710
  ;;
711
  --with-pkgversion=*) pkgversion=" ($optarg)"
712
  ;;
713
  --disable-docs) docs="no"
714
  ;;
715
  --enable-docs) docs="yes"
716
  ;;
717
  --disable-vhost-net) vhost_net="no"
718
  ;;
719
  --enable-vhost-net) vhost_net="yes"
720
  ;;
721
  --*dir)
722
  ;;
723
  *) echo "ERROR: unknown option $opt"; show_help="yes"
724
  ;;
725
  esac
726
done
727

    
728
#
729
# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
730
# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
731
#
732
host_guest_base="no"
733
case "$cpu" in
734
    sparc) case $sparc_cpu in
735
           v7|v8)
736
             QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
737
           ;;
738
           v8plus|v8plusa)
739
             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
740
           ;;
741
           *) # sparc_cpu not defined in the command line
742
             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
743
           esac
744
           LDFLAGS="-m32 $LDFLAGS"
745
           QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
746
           if test "$solaris" = "no" ; then
747
             QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
748
             helper_cflags="-ffixed-i0"
749
           fi
750
           ;;
751
    sparc64)
752
           QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
753
           LDFLAGS="-m64 $LDFLAGS"
754
           QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
755
           if test "$solaris" != "no" ; then
756
             QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
757
           fi
758
           ;;
759
    s390)
760
           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
761
           LDFLAGS="-m31 $LDFLAGS"
762
           host_guest_base="yes"
763
           ;;
764
    s390x)
765
           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
766
           LDFLAGS="-m64 $LDFLAGS"
767
           host_guest_base="yes"
768
           ;;
769
    i386)
770
           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
771
           LDFLAGS="-m32 $LDFLAGS"
772
           helper_cflags="-fomit-frame-pointer"
773
           host_guest_base="yes"
774
           ;;
775
    x86_64)
776
           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
777
           LDFLAGS="-m64 $LDFLAGS"
778
           host_guest_base="yes"
779
           ;;
780
    arm*)
781
           host_guest_base="yes"
782
           ;;
783
    ppc*)
784
           host_guest_base="yes"
785
           ;;
786
    mips*)
787
           host_guest_base="yes"
788
           ;;
789
    ia64*)
790
           host_guest_base="yes"
791
           ;;
792
    hppa*)
793
           host_guest_base="yes"
794
           ;;
795
esac
796

    
797
[ -z "$guest_base" ] && guest_base="$host_guest_base"
798

    
799
if test x"$show_help" = x"yes" ; then
800
cat << EOF
801

    
802
Usage: configure [options]
803
Options: [defaults in brackets after descriptions]
804

    
805
EOF
806
echo "Standard options:"
807
echo "  --help                   print this message"
808
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
809
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
810
echo "                           use %M for cpu name [$interp_prefix]"
811
echo "  --target-list=LIST       set target list [$target_list]"
812
echo ""
813
echo "Advanced options (experts only):"
814
echo "  --source-path=PATH       path of source code [$source_path]"
815
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
816
echo "  --cc=CC                  use C compiler CC [$cc]"
817
echo "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
818
echo "                           build time"
819
echo "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
820
echo "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
821
echo "  --make=MAKE              use specified make [$make]"
822
echo "  --install=INSTALL        use specified install [$install]"
823
echo "  --static                 enable static build [$static]"
824
echo "  --mandir=PATH            install man pages in PATH"
825
echo "  --datadir=PATH           install firmware in PATH"
826
echo "  --docdir=PATH            install documentation in PATH"
827
echo "  --bindir=PATH            install binaries in PATH"
828
echo "  --sysconfdir=PATH        install config in PATH/qemu"
829
echo "  --enable-debug-tcg       enable TCG debugging"
830
echo "  --disable-debug-tcg      disable TCG debugging (default)"
831
echo "  --enable-debug           enable common debug build options"
832
echo "  --enable-sparse          enable sparse checker"
833
echo "  --disable-sparse         disable sparse checker (default)"
834
echo "  --disable-strip          disable stripping binaries"
835
echo "  --disable-werror         disable compilation abort on warning"
836
echo "  --disable-sdl            disable SDL"
837
echo "  --enable-sdl             enable SDL"
838
echo "  --enable-cocoa           enable COCOA (Mac OS X only)"
839
echo "  --audio-drv-list=LIST    set audio drivers list:"
840
echo "                           Available drivers: $audio_possible_drivers"
841
echo "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
842
echo "                           Available cards: $audio_possible_cards"
843
echo "  --block-drv-whitelist=L  set block driver whitelist"
844
echo "                           (affects only QEMU, not qemu-img)"
845
echo "  --enable-mixemu          enable mixer emulation"
846
echo "  --disable-xen            disable xen backend driver support"
847
echo "  --enable-xen             enable xen backend driver support"
848
echo "  --disable-brlapi         disable BrlAPI"
849
echo "  --enable-brlapi          enable BrlAPI"
850
echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
851
echo "  --enable-vnc-tls         enable TLS encryption for VNC server"
852
echo "  --disable-vnc-sasl       disable SASL encryption for VNC server"
853
echo "  --enable-vnc-sasl        enable SASL encryption for VNC server"
854
echo "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
855
echo "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
856
echo "  --disable-vnc-png        disable PNG compression for VNC server (default)"
857
echo "  --enable-vnc-png         enable PNG compression for VNC server"
858
echo "  --disable-vnc-thread     disable threaded VNC server"
859
echo "  --enable-vnc-thread      enable threaded VNC server"
860
echo "  --disable-curses         disable curses output"
861
echo "  --enable-curses          enable curses output"
862
echo "  --disable-curl           disable curl connectivity"
863
echo "  --enable-curl            enable curl connectivity"
864
echo "  --disable-fdt            disable fdt device tree"
865
echo "  --enable-fdt             enable fdt device tree"
866
echo "  --disable-check-utests   disable check unit-tests"
867
echo "  --enable-check-utests    enable check unit-tests"
868
echo "  --disable-bluez          disable bluez stack connectivity"
869
echo "  --enable-bluez           enable bluez stack connectivity"
870
echo "  --disable-kvm            disable KVM acceleration support"
871
echo "  --enable-kvm             enable KVM acceleration support"
872
echo "  --disable-nptl           disable usermode NPTL support"
873
echo "  --enable-nptl            enable usermode NPTL support"
874
echo "  --enable-system          enable all system emulation targets"
875
echo "  --disable-system         disable all system emulation targets"
876
echo "  --enable-user            enable supported user emulation targets"
877
echo "  --disable-user           disable all user emulation targets"
878
echo "  --enable-linux-user      enable all linux usermode emulation targets"
879
echo "  --disable-linux-user     disable all linux usermode emulation targets"
880
echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
881
echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
882
echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
883
echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
884
echo "  --enable-guest-base      enable GUEST_BASE support for usermode"
885
echo "                           emulation targets"
886
echo "  --disable-guest-base     disable GUEST_BASE support"
887
echo "  --enable-user-pie        build usermode emulation targets as PIE"
888
echo "  --disable-user-pie       do not build usermode emulation targets as PIE"
889
echo "  --fmod-lib               path to FMOD library"
890
echo "  --fmod-inc               path to FMOD includes"
891
echo "  --oss-lib                path to OSS library"
892
echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
893
echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
894
echo "  --disable-uuid           disable uuid support"
895
echo "  --enable-uuid            enable uuid support"
896
echo "  --disable-vde            disable support for vde network"
897
echo "  --enable-vde             enable support for vde network"
898
echo "  --disable-linux-aio      disable Linux AIO support"
899
echo "  --enable-linux-aio       enable Linux AIO support"
900
echo "  --disable-attr           disables attr and xattr support"
901
echo "  --enable-attr            enable attr and xattr support"
902
echo "  --enable-io-thread       enable IO thread"
903
echo "  --disable-blobs          disable installing provided firmware blobs"
904
echo "  --kerneldir=PATH         look for kernel includes in PATH"
905
echo "  --enable-docs            enable documentation build"
906
echo "  --disable-docs           disable documentation build"
907
echo "  --disable-vhost-net      disable vhost-net acceleration support"
908
echo "  --enable-vhost-net       enable vhost-net acceleration support"
909
echo "  --trace-backend=B        Trace backend nop simple ust"
910
echo "  --trace-file=NAME        Full PATH,NAME of file to store traces"
911
echo "                           Default:trace-<pid>"
912
echo ""
913
echo "NOTE: The object files are built at the place where configure is launched"
914
exit 1
915
fi
916

    
917
#
918
# Solaris specific configure tool chain decisions
919
#
920
if test "$solaris" = "yes" ; then
921
  if has $install; then
922
    :
923
  else
924
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
925
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
926
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
927
    exit 1
928
  fi
929
  if test "`path_of $install`" = "/usr/sbin/install" ; then
930
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
931
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
932
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
933
    exit 1
934
  fi
935
  if has ar; then
936
    :
937
  else
938
    echo "Error: No path includes ar"
939
    if test -f /usr/ccs/bin/ar ; then
940
      echo "Add /usr/ccs/bin to your path and rerun configure"
941
    fi
942
    exit 1
943
  fi
944
fi
945

    
946

    
947
if test -z "$target_list" ; then
948
# these targets are portable
949
    if [ "$softmmu" = "yes" ] ; then
950
        target_list="\
951
i386-softmmu \
952
x86_64-softmmu \
953
arm-softmmu \
954
cris-softmmu \
955
m68k-softmmu \
956
microblaze-softmmu \
957
mips-softmmu \
958
mipsel-softmmu \
959
mips64-softmmu \
960
mips64el-softmmu \
961
ppc-softmmu \
962
ppcemb-softmmu \
963
ppc64-softmmu \
964
sh4-softmmu \
965
sh4eb-softmmu \
966
sparc-softmmu \
967
sparc64-softmmu \
968
"
969
    fi
970
# the following are Linux specific
971
    if [ "$linux_user" = "yes" ] ; then
972
        target_list="${target_list}\
973
i386-linux-user \
974
x86_64-linux-user \
975
alpha-linux-user \
976
arm-linux-user \
977
armeb-linux-user \
978
cris-linux-user \
979
m68k-linux-user \
980
microblaze-linux-user \
981
mips-linux-user \
982
mipsel-linux-user \
983
ppc-linux-user \
984
ppc64-linux-user \
985
ppc64abi32-linux-user \
986
sh4-linux-user \
987
sh4eb-linux-user \
988
sparc-linux-user \
989
sparc64-linux-user \
990
sparc32plus-linux-user \
991
"
992
    fi
993
# the following are Darwin specific
994
    if [ "$darwin_user" = "yes" ] ; then
995
        target_list="$target_list i386-darwin-user ppc-darwin-user "
996
    fi
997
# the following are BSD specific
998
    if [ "$bsd_user" = "yes" ] ; then
999
        target_list="${target_list}\
1000
i386-bsd-user \
1001
x86_64-bsd-user \
1002
sparc-bsd-user \
1003
sparc64-bsd-user \
1004
"
1005
    fi
1006
else
1007
    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
1008
fi
1009
if test -z "$target_list" ; then
1010
    echo "No targets enabled"
1011
    exit 1
1012
fi
1013
# see if system emulation was really requested
1014
case " $target_list " in
1015
  *"-softmmu "*) softmmu=yes
1016
  ;;
1017
  *) softmmu=no
1018
  ;;
1019
esac
1020

    
1021
feature_not_found() {
1022
  feature=$1
1023

    
1024
  echo "ERROR"
1025
  echo "ERROR: User requested feature $feature"
1026
  echo "ERROR: configure was not able to find it"
1027
  echo "ERROR"
1028
  exit 1;
1029
}
1030

    
1031
if test -z "$cross_prefix" ; then
1032

    
1033
# ---
1034
# big/little endian test
1035
cat > $TMPC << EOF
1036
#include <inttypes.h>
1037
int main(int argc, char ** argv){
1038
        volatile uint32_t i=0x01234567;
1039
        return (*((uint8_t*)(&i))) == 0x67;
1040
}
1041
EOF
1042

    
1043
if compile_prog "" "" ; then
1044
$TMPE && bigendian="yes"
1045
else
1046
echo big/little test failed
1047
fi
1048

    
1049
else
1050

    
1051
# if cross compiling, cannot launch a program, so make a static guess
1052
case "$cpu" in
1053
  armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1054
    bigendian=yes
1055
  ;;
1056
esac
1057

    
1058
fi
1059

    
1060
# host long bits test
1061
hostlongbits="32"
1062
case "$cpu" in
1063
  x86_64|alpha|ia64|sparc64|ppc64|s390x)
1064
    hostlongbits=64
1065
  ;;
1066
esac
1067

    
1068

    
1069
##########################################
1070
# NPTL probe
1071

    
1072
if test "$nptl" != "no" ; then
1073
  cat > $TMPC <<EOF
1074
#include <sched.h>
1075
#include <linux/futex.h>
1076
void foo()
1077
{
1078
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1079
#error bork
1080
#endif
1081
}
1082
EOF
1083

    
1084
  if compile_object ; then
1085
    nptl=yes
1086
  else
1087
    if test "$nptl" = "yes" ; then
1088
      feature_not_found "nptl"
1089
    fi
1090
    nptl=no
1091
  fi
1092
fi
1093

    
1094
##########################################
1095
# zlib check
1096

    
1097
cat > $TMPC << EOF
1098
#include <zlib.h>
1099
int main(void) { zlibVersion(); return 0; }
1100
EOF
1101
if compile_prog "" "-lz" ; then
1102
    :
1103
else
1104
    echo
1105
    echo "Error: zlib check failed"
1106
    echo "Make sure to have the zlib libs and headers installed."
1107
    echo
1108
    exit 1
1109
fi
1110

    
1111
##########################################
1112
# xen probe
1113

    
1114
if test "$xen" != "no" ; then
1115
  xen_libs="-lxenstore -lxenctrl -lxenguest"
1116
  cat > $TMPC <<EOF
1117
#include <xenctrl.h>
1118
#include <xs.h>
1119
int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
1120
EOF
1121
  if compile_prog "" "$xen_libs" ; then
1122
    xen=yes
1123
    libs_softmmu="$xen_libs $libs_softmmu"
1124
  else
1125
    if test "$xen" = "yes" ; then
1126
      feature_not_found "xen"
1127
    fi
1128
    xen=no
1129
  fi
1130
fi
1131

    
1132
##########################################
1133
# pkgconfig probe
1134

    
1135
pkgconfig="${cross_prefix}pkg-config"
1136
if ! has $pkgconfig; then
1137
  # likely not cross compiling, or hope for the best
1138
  pkgconfig=pkg-config
1139
fi
1140

    
1141
##########################################
1142
# Sparse probe
1143
if test "$sparse" != "no" ; then
1144
  if has cgcc; then
1145
    sparse=yes
1146
  else
1147
    if test "$sparse" = "yes" ; then
1148
      feature_not_found "sparse"
1149
    fi
1150
    sparse=no
1151
  fi
1152
fi
1153

    
1154
##########################################
1155
# SDL probe
1156

    
1157
# Look for sdl configuration program (pkg-config or sdl-config).
1158
# Prefer variant with cross prefix if cross compiling,
1159
# and favour pkg-config with sdl over sdl-config.
1160
if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \
1161
     $pkgconfig sdl --modversion >/dev/null 2>&1; then
1162
  sdlconfig="$pkgconfig sdl"
1163
  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1164
elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
1165
  sdlconfig="${cross_prefix}sdl-config"
1166
  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1167
elif $pkgconfig sdl --modversion >/dev/null 2>&1; then
1168
  sdlconfig="$pkgconfig sdl"
1169
  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
1170
elif has sdl-config; then
1171
  sdlconfig='sdl-config'
1172
  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1173
else
1174
  if test "$sdl" = "yes" ; then
1175
    feature_not_found "sdl"
1176
  fi
1177
  sdl=no
1178
fi
1179

    
1180
sdl_too_old=no
1181
if test "$sdl" != "no" ; then
1182
  cat > $TMPC << EOF
1183
#include <SDL.h>
1184
#undef main /* We don't want SDL to override our main() */
1185
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1186
EOF
1187
  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
1188
  if test "$static" = "yes" ; then
1189
    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
1190
  else
1191
    sdl_libs=`$sdlconfig --libs 2> /dev/null`
1192
  fi
1193
  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1194
    if test "$_sdlversion" -lt 121 ; then
1195
      sdl_too_old=yes
1196
    else
1197
      if test "$cocoa" = "no" ; then
1198
        sdl=yes
1199
      fi
1200
    fi
1201

    
1202
    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
1203
    if test "$sdl" = "yes" -a "$static" = "yes" ; then
1204
      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1205
         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1206
         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
1207
      fi
1208
      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1209
	:
1210
      else
1211
        sdl=no
1212
      fi
1213
    fi # static link
1214
  else # sdl not found
1215
    if test "$sdl" = "yes" ; then
1216
      feature_not_found "sdl"
1217
    fi
1218
    sdl=no
1219
  fi # sdl compile test
1220
fi
1221

    
1222
if test "$sdl" = "yes" ; then
1223
  cat > $TMPC <<EOF
1224
#include <SDL.h>
1225
#if defined(SDL_VIDEO_DRIVER_X11)
1226
#include <X11/XKBlib.h>
1227
#else
1228
#error No x11 support
1229
#endif
1230
int main(void) { return 0; }
1231
EOF
1232
  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1233
    sdl_libs="$sdl_libs -lX11"
1234
  fi
1235
  if test "$mingw32" = "yes" ; then
1236
    sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
1237
  fi
1238
  libs_softmmu="$sdl_libs $libs_softmmu"
1239
fi
1240

    
1241
##########################################
1242
# VNC TLS detection
1243
if test "$vnc_tls" != "no" ; then
1244
  cat > $TMPC <<EOF
1245
#include <gnutls/gnutls.h>
1246
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1247
EOF
1248
  vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null`
1249
  vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null`
1250
  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
1251
    vnc_tls=yes
1252
    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1253
  else
1254
    if test "$vnc_tls" = "yes" ; then
1255
      feature_not_found "vnc-tls"
1256
    fi
1257
    vnc_tls=no
1258
  fi
1259
fi
1260

    
1261
##########################################
1262
# VNC SASL detection
1263
if test "$vnc_sasl" != "no" ; then
1264
  cat > $TMPC <<EOF
1265
#include <sasl/sasl.h>
1266
#include <stdio.h>
1267
int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
1268
EOF
1269
  # Assuming Cyrus-SASL installed in /usr prefix
1270
  vnc_sasl_cflags=""
1271
  vnc_sasl_libs="-lsasl2"
1272
  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1273
    vnc_sasl=yes
1274
    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
1275
  else
1276
    if test "$vnc_sasl" = "yes" ; then
1277
      feature_not_found "vnc-sasl"
1278
    fi
1279
    vnc_sasl=no
1280
  fi
1281
fi
1282

    
1283
##########################################
1284
# VNC JPEG detection
1285
if test "$vnc_jpeg" != "no" ; then
1286
cat > $TMPC <<EOF
1287
#include <stdio.h>
1288
#include <jpeglib.h>
1289
int main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
1290
EOF
1291
    vnc_jpeg_cflags=""
1292
    vnc_jpeg_libs="-ljpeg"
1293
  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
1294
    vnc_jpeg=yes
1295
    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
1296
  else
1297
    if test "$vnc_jpeg" = "yes" ; then
1298
      feature_not_found "vnc-jpeg"
1299
    fi
1300
    vnc_jpeg=no
1301
  fi
1302
fi
1303

    
1304
##########################################
1305
# VNC PNG detection
1306
if test "$vnc_png" != "no" ; then
1307
cat > $TMPC <<EOF
1308
//#include <stdio.h>
1309
#include <png.h>
1310
int main(void) {
1311
    png_structp png_ptr;
1312
    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1313
    return 0;
1314
}
1315
EOF
1316
    vnc_png_cflags=""
1317
    vnc_png_libs="-lpng"
1318
  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1319
    vnc_png=yes
1320
    libs_softmmu="$vnc_png_libs $libs_softmmu"
1321
  else
1322
    if test "$vnc_png" = "yes" ; then
1323
      feature_not_found "vnc-png"
1324
    fi
1325
    vnc_png=no
1326
  fi
1327
fi
1328

    
1329
##########################################
1330
# fnmatch() probe, used for ACL routines
1331
fnmatch="no"
1332
cat > $TMPC << EOF
1333
#include <fnmatch.h>
1334
int main(void)
1335
{
1336
    fnmatch("foo", "foo", 0);
1337
    return 0;
1338
}
1339
EOF
1340
if compile_prog "" "" ; then
1341
   fnmatch="yes"
1342
fi
1343

    
1344
##########################################
1345
# uuid_generate() probe, used for vdi block driver
1346
if test "$uuid" != "no" ; then
1347
  uuid_libs="-luuid"
1348
  cat > $TMPC << EOF
1349
#include <uuid/uuid.h>
1350
int main(void)
1351
{
1352
    uuid_t my_uuid;
1353
    uuid_generate(my_uuid);
1354
    return 0;
1355
}
1356
EOF
1357
  if compile_prog "" "$uuid_libs" ; then
1358
    uuid="yes"
1359
    libs_softmmu="$uuid_libs $libs_softmmu"
1360
    libs_tools="$uuid_libs $libs_tools"
1361
  else
1362
    if test "$uuid" = "yes" ; then
1363
      feature_not_found "uuid"
1364
    fi
1365
    uuid=no
1366
  fi
1367
fi
1368

    
1369
##########################################
1370
# vde libraries probe
1371
if test "$vde" != "no" ; then
1372
  vde_libs="-lvdeplug"
1373
  cat > $TMPC << EOF
1374
#include <libvdeplug.h>
1375
int main(void)
1376
{
1377
    struct vde_open_args a = {0, 0, 0};
1378
    vde_open("", "", &a);
1379
    return 0;
1380
}
1381
EOF
1382
  if compile_prog "" "$vde_libs" ; then
1383
    vde=yes
1384
    libs_softmmu="$vde_libs $libs_softmmu"
1385
    libs_tools="$vde_libs $libs_tools"
1386
  else
1387
    if test "$vde" = "yes" ; then
1388
      feature_not_found "vde"
1389
    fi
1390
    vde=no
1391
  fi
1392
fi
1393

    
1394
##########################################
1395
# Sound support libraries probe
1396

    
1397
audio_drv_probe()
1398
{
1399
    drv=$1
1400
    hdr=$2
1401
    lib=$3
1402
    exp=$4
1403
    cfl=$5
1404
        cat > $TMPC << EOF
1405
#include <$hdr>
1406
int main(void) { $exp }
1407
EOF
1408
    if compile_prog "$cfl" "$lib" ; then
1409
        :
1410
    else
1411
        echo
1412
        echo "Error: $drv check failed"
1413
        echo "Make sure to have the $drv libs and headers installed."
1414
        echo
1415
        exit 1
1416
    fi
1417
}
1418

    
1419
audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1420
for drv in $audio_drv_list; do
1421
    case $drv in
1422
    alsa)
1423
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1424
        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1425
    libs_softmmu="-lasound $libs_softmmu"
1426
    ;;
1427

    
1428
    fmod)
1429
    if test -z $fmod_lib || test -z $fmod_inc; then
1430
        echo
1431
        echo "Error: You must specify path to FMOD library and headers"
1432
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1433
        echo
1434
        exit 1
1435
    fi
1436
    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1437
    libs_softmmu="$fmod_lib $libs_softmmu"
1438
    ;;
1439

    
1440
    esd)
1441
    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1442
    libs_softmmu="-lesd $libs_softmmu"
1443
    audio_pt_int="yes"
1444
    ;;
1445

    
1446
    pa)
1447
    audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
1448
        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1449
    libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
1450
    audio_pt_int="yes"
1451
    ;;
1452

    
1453
    coreaudio)
1454
      libs_softmmu="-framework CoreAudio $libs_softmmu"
1455
    ;;
1456

    
1457
    dsound)
1458
      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1459
      audio_win_int="yes"
1460
    ;;
1461

    
1462
    oss)
1463
      libs_softmmu="$oss_lib $libs_softmmu"
1464
    ;;
1465

    
1466
    sdl|wav)
1467
    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1468
    ;;
1469

    
1470
    winwave)
1471
      libs_softmmu="-lwinmm $libs_softmmu"
1472
      audio_win_int="yes"
1473
    ;;
1474

    
1475
    *)
1476
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1477
        echo
1478
        echo "Error: Unknown driver '$drv' selected"
1479
        echo "Possible drivers are: $audio_possible_drivers"
1480
        echo
1481
        exit 1
1482
    }
1483
    ;;
1484
    esac
1485
done
1486

    
1487
##########################################
1488
# BrlAPI probe
1489

    
1490
if test "$brlapi" != "no" ; then
1491
  brlapi_libs="-lbrlapi"
1492
  cat > $TMPC << EOF
1493
#include <brlapi.h>
1494
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1495
EOF
1496
  if compile_prog "" "$brlapi_libs" ; then
1497
    brlapi=yes
1498
    libs_softmmu="$brlapi_libs $libs_softmmu"
1499
  else
1500
    if test "$brlapi" = "yes" ; then
1501
      feature_not_found "brlapi"
1502
    fi
1503
    brlapi=no
1504
  fi
1505
fi
1506

    
1507
##########################################
1508
# curses probe
1509
curses_list="-lncurses -lcurses"
1510

    
1511
if test "$curses" != "no" ; then
1512
  curses_found=no
1513
  cat > $TMPC << EOF
1514
#include <curses.h>
1515
#ifdef __OpenBSD__
1516
#define resize_term resizeterm
1517
#endif
1518
int main(void) { resize_term(0, 0); return curses_version(); }
1519
EOF
1520
  for curses_lib in $curses_list; do
1521
    if compile_prog "" "$curses_lib" ; then
1522
      curses_found=yes
1523
      libs_softmmu="$curses_lib $libs_softmmu"
1524
      break
1525
    fi
1526
  done
1527
  if test "$curses_found" = "yes" ; then
1528
    curses=yes
1529
  else
1530
    if test "$curses" = "yes" ; then
1531
      feature_not_found "curses"
1532
    fi
1533
    curses=no
1534
  fi
1535
fi
1536

    
1537
##########################################
1538
# curl probe
1539

    
1540
if $pkgconfig libcurl --modversion >/dev/null 2>&1; then
1541
  curlconfig="$pkgconfig libcurl"
1542
else
1543
  curlconfig=curl-config
1544
fi
1545

    
1546
if test "$curl" != "no" ; then
1547
  cat > $TMPC << EOF
1548
#include <curl/curl.h>
1549
int main(void) { return curl_easy_init(); }
1550
EOF
1551
  curl_cflags=`$curlconfig --cflags 2>/dev/null`
1552
  curl_libs=`$curlconfig --libs 2>/dev/null`
1553
  if compile_prog "$curl_cflags" "$curl_libs" ; then
1554
    curl=yes
1555
    libs_tools="$curl_libs $libs_tools"
1556
    libs_softmmu="$curl_libs $libs_softmmu"
1557
  else
1558
    if test "$curl" = "yes" ; then
1559
      feature_not_found "curl"
1560
    fi
1561
    curl=no
1562
  fi
1563
fi # test "$curl"
1564

    
1565
##########################################
1566
# check framework probe
1567

    
1568
if test "$check_utests" != "no" ; then
1569
  cat > $TMPC << EOF
1570
#include <check.h>
1571
int main(void) { suite_create("qemu test"); return 0; }
1572
EOF
1573
  check_libs=`$pkgconfig --libs check`
1574
  if compile_prog "" $check_libs ; then
1575
    check_utests=yes
1576
    libs_tools="$check_libs $libs_tools"
1577
  else
1578
    if test "$check_utests" = "yes" ; then
1579
      feature_not_found "check"
1580
    fi
1581
    check_utests=no
1582
  fi
1583
fi # test "$check_utests"
1584

    
1585
##########################################
1586
# bluez support probe
1587
if test "$bluez" != "no" ; then
1588
  cat > $TMPC << EOF
1589
#include <bluetooth/bluetooth.h>
1590
int main(void) { return bt_error(0); }
1591
EOF
1592
  bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null`
1593
  bluez_libs=`$pkgconfig --libs bluez 2> /dev/null`
1594
  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
1595
    bluez=yes
1596
    libs_softmmu="$bluez_libs $libs_softmmu"
1597
  else
1598
    if test "$bluez" = "yes" ; then
1599
      feature_not_found "bluez"
1600
    fi
1601
    bluez="no"
1602
  fi
1603
fi
1604

    
1605
##########################################
1606
# kvm probe
1607
if test "$kvm" != "no" ; then
1608
    cat > $TMPC <<EOF
1609
#include <linux/kvm.h>
1610
#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1611
#error Invalid KVM version
1612
#endif
1613
#if !defined(KVM_CAP_USER_MEMORY)
1614
#error Missing KVM capability KVM_CAP_USER_MEMORY
1615
#endif
1616
#if !defined(KVM_CAP_SET_TSS_ADDR)
1617
#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1618
#endif
1619
#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1620
#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1621
#endif
1622
int main(void) { return 0; }
1623
EOF
1624
  if test "$kerneldir" != "" ; then
1625
      kvm_cflags=-I"$kerneldir"/include
1626
      if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1627
         -a -d "$kerneldir/arch/x86/include" ; then
1628
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1629
	elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1630
	    kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1631
	elif test "$cpu" = "s390x" -a -d "$kerneldir/arch/s390/include" ; then
1632
	    kvm_cflags="$kvm_cflags -I$kerneldir/arch/s390/include"
1633
        elif test -d "$kerneldir/arch/$cpu/include" ; then
1634
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1635
      fi
1636
  else
1637
    kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
1638
  fi
1639
  if compile_prog "$kvm_cflags" "" ; then
1640
    kvm=yes
1641
    cat > $TMPC <<EOF
1642
#include <linux/kvm_para.h>
1643
int main(void) { return 0; }
1644
EOF
1645
    if compile_prog "$kvm_cflags" "" ; then
1646
      kvm_para=yes
1647
    fi
1648
  else
1649
    if test "$kvm" = "yes" ; then
1650
      if has awk && has grep; then
1651
        kvmerr=`LANG=C $cc $QEMU_CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \
1652
	| grep "error: " \
1653
	| awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1654
        if test "$kvmerr" != "" ; then
1655
          echo -e "${kvmerr}\n\
1656
      NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1657
  recent kvm-kmod from http://sourceforge.net/projects/kvm."
1658
        fi
1659
      fi
1660
      feature_not_found "kvm"
1661
    fi
1662
    kvm=no
1663
  fi
1664
fi
1665

    
1666
##########################################
1667
# test for vhost net
1668

    
1669
if test "$vhost_net" != "no"; then
1670
    if test "$kvm" != "no"; then
1671
            cat > $TMPC <<EOF
1672
    #include <linux/vhost.h>
1673
    int main(void) { return 0; }
1674
EOF
1675
            if compile_prog "$kvm_cflags" "" ; then
1676
                vhost_net=yes
1677
            else
1678
                if test "$vhost_net" = "yes" ; then
1679
                    feature_not_found "vhost-net"
1680
                fi
1681
                vhost_net=no
1682
            fi
1683
    else
1684
            if test "$vhost_net" = "yes" ; then
1685
                echo "NOTE: vhost-net feature requires KVM (--enable-kvm)."
1686
                feature_not_found "vhost-net"
1687
            fi
1688
            vhost_net=no
1689
    fi
1690
fi
1691

    
1692
##########################################
1693
# pthread probe
1694
PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
1695

    
1696
pthread=no
1697
cat > $TMPC << EOF
1698
#include <pthread.h>
1699
int main(void) { pthread_create(0,0,0,0); return 0; }
1700
EOF
1701
for pthread_lib in $PTHREADLIBS_LIST; do
1702
  if compile_prog "" "$pthread_lib" ; then
1703
    pthread=yes
1704
    LIBS="$pthread_lib $LIBS"
1705
    break
1706
  fi
1707
done
1708

    
1709
if test "$mingw32" != yes -a "$pthread" = no; then
1710
  echo
1711
  echo "Error: pthread check failed"
1712
  echo "Make sure to have the pthread libs and headers installed."
1713
  echo
1714
  exit 1
1715
fi
1716

    
1717
##########################################
1718
# linux-aio probe
1719

    
1720
if test "$linux_aio" != "no" ; then
1721
  cat > $TMPC <<EOF
1722
#include <libaio.h>
1723
#include <sys/eventfd.h>
1724
int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
1725
EOF
1726
  if compile_prog "" "-laio" ; then
1727
    linux_aio=yes
1728
    libs_softmmu="$libs_softmmu -laio"
1729
    libs_tools="$libs_tools -laio"
1730
  else
1731
    if test "$linux_aio" = "yes" ; then
1732
      feature_not_found "linux AIO"
1733
    fi
1734
    linux_aio=no
1735
  fi
1736
fi
1737

    
1738
##########################################
1739
# attr probe
1740

    
1741
if test "$attr" != "no" ; then
1742
  cat > $TMPC <<EOF
1743
#include <stdio.h>
1744
#include <sys/types.h>
1745
#include <attr/xattr.h>
1746
int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1747
EOF
1748
  if compile_prog "" "-lattr" ; then
1749
    attr=yes
1750
    LIBS="-lattr $LIBS"
1751
  else
1752
    if test "$attr" = "yes" ; then
1753
      feature_not_found "ATTR"
1754
    fi
1755
    attr=no
1756
  fi
1757
fi
1758

    
1759
##########################################
1760
# iovec probe
1761
cat > $TMPC <<EOF
1762
#include <sys/types.h>
1763
#include <sys/uio.h>
1764
#include <unistd.h>
1765
int main(void) { struct iovec iov; return 0; }
1766
EOF
1767
iovec=no
1768
if compile_prog "" "" ; then
1769
  iovec=yes
1770
fi
1771

    
1772
##########################################
1773
# preadv probe
1774
cat > $TMPC <<EOF
1775
#include <sys/types.h>
1776
#include <sys/uio.h>
1777
#include <unistd.h>
1778
int main(void) { preadv; }
1779
EOF
1780
preadv=no
1781
if compile_prog "" "" ; then
1782
  preadv=yes
1783
fi
1784

    
1785
##########################################
1786
# fdt probe
1787
if test "$fdt" != "no" ; then
1788
  fdt_libs="-lfdt"
1789
  cat > $TMPC << EOF
1790
int main(void) { return 0; }
1791
EOF
1792
  if compile_prog "" "$fdt_libs" ; then
1793
    fdt=yes
1794
    libs_softmmu="$fdt_libs $libs_softmmu"
1795
  else
1796
    if test "$fdt" = "yes" ; then
1797
      feature_not_found "fdt"
1798
    fi
1799
    fdt=no
1800
  fi
1801
fi
1802

    
1803
#
1804
# Check for xxxat() functions when we are building linux-user
1805
# emulator.  This is done because older glibc versions don't
1806
# have syscall stubs for these implemented.
1807
#
1808
atfile=no
1809
cat > $TMPC << EOF
1810
#define _ATFILE_SOURCE
1811
#include <sys/types.h>
1812
#include <fcntl.h>
1813
#include <unistd.h>
1814

    
1815
int
1816
main(void)
1817
{
1818
	/* try to unlink nonexisting file */
1819
	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1820
}
1821
EOF
1822
if compile_prog "" "" ; then
1823
  atfile=yes
1824
fi
1825

    
1826
# Check for inotify functions when we are building linux-user
1827
# emulator.  This is done because older glibc versions don't
1828
# have syscall stubs for these implemented.  In that case we
1829
# don't provide them even if kernel supports them.
1830
#
1831
inotify=no
1832
cat > $TMPC << EOF
1833
#include <sys/inotify.h>
1834

    
1835
int
1836
main(void)
1837
{
1838
	/* try to start inotify */
1839
	return inotify_init();
1840
}
1841
EOF
1842
if compile_prog "" "" ; then
1843
  inotify=yes
1844
fi
1845

    
1846
inotify1=no
1847
cat > $TMPC << EOF
1848
#include <sys/inotify.h>
1849

    
1850
int
1851
main(void)
1852
{
1853
    /* try to start inotify */
1854
    return inotify_init1(0);
1855
}
1856
EOF
1857
if compile_prog "" "" ; then
1858
  inotify1=yes
1859
fi
1860

    
1861
# check if utimensat and futimens are supported
1862
utimens=no
1863
cat > $TMPC << EOF
1864
#define _ATFILE_SOURCE
1865
#define _GNU_SOURCE
1866
#include <stddef.h>
1867
#include <fcntl.h>
1868

    
1869
int main(void)
1870
{
1871
    utimensat(AT_FDCWD, "foo", NULL, 0);
1872
    futimens(0, NULL);
1873
    return 0;
1874
}
1875
EOF
1876
if compile_prog "" "" ; then
1877
  utimens=yes
1878
fi
1879

    
1880
# check if pipe2 is there
1881
pipe2=no
1882
cat > $TMPC << EOF
1883
#define _GNU_SOURCE
1884
#include <unistd.h>
1885
#include <fcntl.h>
1886

    
1887
int main(void)
1888
{
1889
    int pipefd[2];
1890
    pipe2(pipefd, O_CLOEXEC);
1891
    return 0;
1892
}
1893
EOF
1894
if compile_prog "" "" ; then
1895
  pipe2=yes
1896
fi
1897

    
1898
# check if accept4 is there
1899
accept4=no
1900
cat > $TMPC << EOF
1901
#define _GNU_SOURCE
1902
#include <sys/socket.h>
1903
#include <stddef.h>
1904

    
1905
int main(void)
1906
{
1907
    accept4(0, NULL, NULL, SOCK_CLOEXEC);
1908
    return 0;
1909
}
1910
EOF
1911
if compile_prog "" "" ; then
1912
  accept4=yes
1913
fi
1914

    
1915
# check if tee/splice is there. vmsplice was added same time.
1916
splice=no
1917
cat > $TMPC << EOF
1918
#define _GNU_SOURCE
1919
#include <unistd.h>
1920
#include <fcntl.h>
1921
#include <limits.h>
1922

    
1923
int main(void)
1924
{
1925
    int len, fd;
1926
    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1927
    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1928
    return 0;
1929
}
1930
EOF
1931
if compile_prog "" "" ; then
1932
  splice=yes
1933
fi
1934

    
1935
# check if eventfd is supported
1936
eventfd=no
1937
cat > $TMPC << EOF
1938
#include <sys/eventfd.h>
1939

    
1940
int main(void)
1941
{
1942
    int efd = eventfd(0, 0);
1943
    return 0;
1944
}
1945
EOF
1946
if compile_prog "" "" ; then
1947
  eventfd=yes
1948
fi
1949

    
1950
# check for fallocate
1951
fallocate=no
1952
cat > $TMPC << EOF
1953
#include <fcntl.h>
1954

    
1955
int main(void)
1956
{
1957
    fallocate(0, 0, 0, 0);
1958
    return 0;
1959
}
1960
EOF
1961
if compile_prog "$ARCH_CFLAGS" "" ; then
1962
  fallocate=yes
1963
fi
1964

    
1965
# check for dup3
1966
dup3=no
1967
cat > $TMPC << EOF
1968
#include <unistd.h>
1969

    
1970
int main(void)
1971
{
1972
    dup3(0, 0, 0);
1973
    return 0;
1974
}
1975
EOF
1976
if compile_prog "" "" ; then
1977
  dup3=yes
1978
fi
1979

    
1980
# Check if tools are available to build documentation.
1981
if test "$docs" != "no" ; then
1982
  if has makeinfo && has pod2man; then
1983
    docs=yes
1984
  else
1985
    if test "$docs" = "yes" ; then
1986
      feature_not_found "docs"
1987
    fi
1988
    docs=no
1989
  fi
1990
fi
1991

    
1992
# Search for bswap_32 function
1993
byteswap_h=no
1994
cat > $TMPC << EOF
1995
#include <byteswap.h>
1996
int main(void) { return bswap_32(0); }
1997
EOF
1998
if compile_prog "" "" ; then
1999
  byteswap_h=yes
2000
fi
2001

    
2002
# Search for bswap_32 function
2003
bswap_h=no
2004
cat > $TMPC << EOF
2005
#include <sys/endian.h>
2006
#include <sys/types.h>
2007
#include <machine/bswap.h>
2008
int main(void) { return bswap32(0); }
2009
EOF
2010
if compile_prog "" "" ; then
2011
  bswap_h=yes
2012
fi
2013

    
2014
##########################################
2015
# Do we need librt
2016
cat > $TMPC <<EOF
2017
#include <signal.h>
2018
#include <time.h>
2019
int main(void) { clockid_t id; return clock_gettime(id, NULL); }
2020
EOF
2021

    
2022
if compile_prog "" "" ; then
2023
  :
2024
elif compile_prog "" "-lrt" ; then
2025
  LIBS="-lrt $LIBS"
2026
fi
2027

    
2028
if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2029
        "$aix" != "yes" ; then
2030
    libs_softmmu="-lutil $libs_softmmu"
2031
fi
2032

    
2033
##########################################
2034
# check if the compiler defines offsetof
2035

    
2036
need_offsetof=yes
2037
cat > $TMPC << EOF
2038
#include <stddef.h>
2039
int main(void) { struct s { int f; }; return offsetof(struct s, f); }
2040
EOF
2041
if compile_prog "" "" ; then
2042
    need_offsetof=no
2043
fi
2044

    
2045
##########################################
2046
# check if the compiler understands attribute warn_unused_result
2047
#
2048
# This could be smarter, but gcc -Werror does not error out even when warning
2049
# about attribute warn_unused_result
2050

    
2051
gcc_attribute_warn_unused_result=no
2052
cat > $TMPC << EOF
2053
#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2054
#error gcc 3.3 or older
2055
#endif
2056
int main(void) { return 0;}
2057
EOF
2058
if compile_prog "" ""; then
2059
    gcc_attribute_warn_unused_result=yes
2060
fi
2061

    
2062
##########################################
2063
# check if we have fdatasync
2064

    
2065
fdatasync=no
2066
cat > $TMPC << EOF
2067
#include <unistd.h>
2068
int main(void) { return fdatasync(0); }
2069
EOF
2070
if compile_prog "" "" ; then
2071
    fdatasync=yes
2072
fi
2073

    
2074
##########################################
2075
# check if trace backend exists
2076

    
2077
sh "$source_path/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
2078
if test "$?" -ne 0 ; then
2079
  echo
2080
  echo "Error: invalid trace backend"
2081
  echo "Please choose a supported trace backend."
2082
  echo
2083
  exit 1
2084
fi
2085

    
2086
##########################################
2087
# For 'ust' backend, test if ust headers are present
2088
if test "$trace_backend" = "ust"; then
2089
  cat > $TMPC << EOF
2090
#include <ust/tracepoint.h>
2091
#include <ust/marker.h>
2092
int main(void) { return 0; }
2093
EOF
2094
  if compile_prog "" "" ; then
2095
    LIBS="-lust $LIBS"
2096
  else
2097
    echo
2098
    echo "Error: Trace backend 'ust' missing libust header files"
2099
    echo
2100
    exit 1
2101
  fi
2102
fi
2103
##########################################
2104
# End of CC checks
2105
# After here, no more $cc or $ld runs
2106

    
2107
if test "$debug" = "no" ; then
2108
  CFLAGS="-O2 $CFLAGS"
2109
fi
2110

    
2111
# Consult white-list to determine whether to enable werror
2112
# by default.  Only enable by default for git builds
2113
z_version=`cut -f3 -d. $source_path/VERSION`
2114

    
2115
if test -z "$werror" ; then
2116
    if test "$z_version" = "50" -a \
2117
        "$linux" = "yes" ; then
2118
        werror="yes"
2119
    else
2120
        werror="no"
2121
    fi
2122
fi
2123

    
2124
# Disable zero malloc errors for official releases unless explicitly told to
2125
# enable/disable
2126
if test -z "$zero_malloc" ; then
2127
    if test "$z_version" = "50" ; then
2128
	zero_malloc="no"
2129
    else
2130
	zero_malloc="yes"
2131
    fi
2132
fi
2133

    
2134
if test "$werror" = "yes" ; then
2135
    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
2136
fi
2137

    
2138
if test "$solaris" = "no" ; then
2139
    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
2140
        LDFLAGS="-Wl,--warn-common $LDFLAGS"
2141
    fi
2142
fi
2143

    
2144
confdir=$sysconfdir$confsuffix
2145

    
2146
tools=
2147
if test "$softmmu" = yes ; then
2148
  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2149
  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2150
      tools="qemu-nbd\$(EXESUF) $tools"
2151
    if [ "$check_utests" = "yes" ]; then
2152
      tools="check-qint check-qstring check-qdict check-qlist $tools"
2153
      tools="check-qfloat check-qjson $tools"
2154
    fi
2155
  fi
2156
fi
2157

    
2158
# Mac OS X ships with a broken assembler
2159
roms=
2160
if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2161
        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2162
        "$softmmu" = yes ; then
2163
  roms="optionrom"
2164
fi
2165

    
2166

    
2167
echo "Install prefix    $prefix"
2168
echo "BIOS directory    `eval echo $datadir`"
2169
echo "binary directory  `eval echo $bindir`"
2170
echo "config directory  `eval echo $sysconfdir`"
2171
if test "$mingw32" = "no" ; then
2172
echo "Manual directory  `eval echo $mandir`"
2173
echo "ELF interp prefix $interp_prefix"
2174
fi
2175
echo "Source path       $source_path"
2176
echo "C compiler        $cc"
2177
echo "Host C compiler   $host_cc"
2178
echo "CFLAGS            $CFLAGS"
2179
echo "QEMU_CFLAGS       $QEMU_CFLAGS"
2180
echo "LDFLAGS           $LDFLAGS"
2181
echo "make              $make"
2182
echo "install           $install"
2183
echo "host CPU          $cpu"
2184
echo "host big endian   $bigendian"
2185
echo "target list       $target_list"
2186
echo "tcg debug enabled $debug_tcg"
2187
echo "Mon debug enabled $debug_mon"
2188
echo "gprof enabled     $gprof"
2189
echo "sparse enabled    $sparse"
2190
echo "strip binaries    $strip_opt"
2191
echo "profiler          $profiler"
2192
echo "static build      $static"
2193
echo "-Werror enabled   $werror"
2194
if test "$darwin" = "yes" ; then
2195
    echo "Cocoa support     $cocoa"
2196
fi
2197
echo "SDL support       $sdl"
2198
echo "curses support    $curses"
2199
echo "curl support      $curl"
2200
echo "check support     $check_utests"
2201
echo "mingw32 support   $mingw32"
2202
echo "Audio drivers     $audio_drv_list"
2203
echo "Extra audio cards $audio_card_list"
2204
echo "Block whitelist   $block_drv_whitelist"
2205
echo "Mixer emulation   $mixemu"
2206
echo "VNC TLS support   $vnc_tls"
2207
echo "VNC SASL support  $vnc_sasl"
2208
echo "VNC JPEG support  $vnc_jpeg"
2209
echo "VNC PNG support   $vnc_png"
2210
echo "VNC thread        $vnc_thread"
2211
if test -n "$sparc_cpu"; then
2212
    echo "Target Sparc Arch $sparc_cpu"
2213
fi
2214
echo "xen support       $xen"
2215
echo "brlapi support    $brlapi"
2216
echo "bluez  support    $bluez"
2217
echo "Documentation     $docs"
2218
[ ! -z "$uname_release" ] && \
2219
echo "uname -r          $uname_release"
2220
echo "NPTL support      $nptl"
2221
echo "GUEST_BASE        $guest_base"
2222
echo "PIE user targets  $user_pie"
2223
echo "vde support       $vde"
2224
echo "IO thread         $io_thread"
2225
echo "Linux AIO support $linux_aio"
2226
echo "ATTR/XATTR support $attr"
2227
echo "Install blobs     $blobs"
2228
echo "KVM support       $kvm"
2229
echo "fdt support       $fdt"
2230
echo "preadv support    $preadv"
2231
echo "fdatasync         $fdatasync"
2232
echo "uuid support      $uuid"
2233
echo "vhost-net support $vhost_net"
2234
echo "Trace backend     $trace_backend"
2235
echo "Trace output file $trace_file-<pid>"
2236

    
2237
if test $sdl_too_old = "yes"; then
2238
echo "-> Your SDL version is too old - please upgrade to have SDL support"
2239
fi
2240

    
2241
config_host_mak="config-host.mak"
2242
config_host_ld="config-host.ld"
2243

    
2244
echo "# Automatically generated by configure - do not modify" > $config_host_mak
2245
printf "# Configured with:" >> $config_host_mak
2246
printf " '%s'" "$0" "$@" >> $config_host_mak
2247
echo >> $config_host_mak
2248

    
2249
echo "prefix=$prefix" >> $config_host_mak
2250
echo "bindir=$bindir" >> $config_host_mak
2251
echo "mandir=$mandir" >> $config_host_mak
2252
echo "datadir=$datadir" >> $config_host_mak
2253
echo "sysconfdir=$sysconfdir" >> $config_host_mak
2254
echo "docdir=$docdir" >> $config_host_mak
2255
echo "confdir=$confdir" >> $config_host_mak
2256

    
2257
case "$cpu" in
2258
  i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
2259
    ARCH=$cpu
2260
  ;;
2261
  armv4b|armv4l)
2262
    ARCH=arm
2263
  ;;
2264
esac
2265
echo "ARCH=$ARCH" >> $config_host_mak
2266
if test "$debug_tcg" = "yes" ; then
2267
  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
2268
fi
2269
if test "$debug_mon" = "yes" ; then
2270
  echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2271
fi
2272
if test "$debug" = "yes" ; then
2273
  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
2274
fi
2275
if test "$strip_opt" = "yes" ; then
2276
  echo "STRIP=${strip}" >> $config_host_mak
2277
fi
2278
if test "$bigendian" = "yes" ; then
2279
  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
2280
fi
2281
echo "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
2282
if test "$mingw32" = "yes" ; then
2283
  echo "CONFIG_WIN32=y" >> $config_host_mak
2284
else
2285
  echo "CONFIG_POSIX=y" >> $config_host_mak
2286
fi
2287

    
2288
if test "$linux" = "yes" ; then
2289
  echo "CONFIG_LINUX=y" >> $config_host_mak
2290
fi
2291

    
2292
if test "$darwin" = "yes" ; then
2293
  echo "CONFIG_DARWIN=y" >> $config_host_mak
2294
fi
2295

    
2296
if test "$aix" = "yes" ; then
2297
  echo "CONFIG_AIX=y" >> $config_host_mak
2298
fi
2299

    
2300
if test "$solaris" = "yes" ; then
2301
  echo "CONFIG_SOLARIS=y" >> $config_host_mak
2302
  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
2303
  if test "$needs_libsunmath" = "yes" ; then
2304
    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
2305
  fi
2306
fi
2307
if test "$static" = "yes" ; then
2308
  echo "CONFIG_STATIC=y" >> $config_host_mak
2309
fi
2310
if test $profiler = "yes" ; then
2311
  echo "CONFIG_PROFILER=y" >> $config_host_mak
2312
fi
2313
if test "$slirp" = "yes" ; then
2314
  echo "CONFIG_SLIRP=y" >> $config_host_mak
2315
  QEMU_CFLAGS="-I\$(SRC_PATH)/slirp $QEMU_CFLAGS"
2316
fi
2317
if test "$vde" = "yes" ; then
2318
  echo "CONFIG_VDE=y" >> $config_host_mak
2319
fi
2320
for card in $audio_card_list; do
2321
    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
2322
    echo "$def=y" >> $config_host_mak
2323
done
2324
echo "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
2325
for drv in $audio_drv_list; do
2326
    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
2327
    echo "$def=y" >> $config_host_mak
2328
    if test "$drv" = "fmod"; then
2329
        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
2330
    fi
2331
done
2332
if test "$audio_pt_int" = "yes" ; then
2333
  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
2334
fi
2335
if test "$audio_win_int" = "yes" ; then
2336
  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2337
fi
2338
echo "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
2339
if test "$mixemu" = "yes" ; then
2340
  echo "CONFIG_MIXEMU=y" >> $config_host_mak
2341
fi
2342
if test "$vnc_tls" = "yes" ; then
2343
  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
2344
  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
2345
fi
2346
if test "$vnc_sasl" = "yes" ; then
2347
  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
2348
  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
2349
fi
2350
if test "$vnc_jpeg" != "no" ; then
2351
  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
2352
  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
2353
fi
2354
if test "$vnc_png" != "no" ; then
2355
  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2356
  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2357
fi
2358
if test "$vnc_thread" != "no" ; then
2359
  echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2360
  echo "CONFIG_THREAD=y" >> $config_host_mak
2361
fi
2362
if test "$fnmatch" = "yes" ; then
2363
  echo "CONFIG_FNMATCH=y" >> $config_host_mak
2364
fi
2365
if test "$uuid" = "yes" ; then
2366
  echo "CONFIG_UUID=y" >> $config_host_mak
2367
fi
2368
qemu_version=`head $source_path/VERSION`
2369
echo "VERSION=$qemu_version" >>$config_host_mak
2370
echo "PKGVERSION=$pkgversion" >>$config_host_mak
2371
echo "SRC_PATH=$source_path" >> $config_host_mak
2372
echo "TARGET_DIRS=$target_list" >> $config_host_mak
2373
if [ "$docs" = "yes" ] ; then
2374
  echo "BUILD_DOCS=yes" >> $config_host_mak
2375
fi
2376
if test "$sdl" = "yes" ; then
2377
  echo "CONFIG_SDL=y" >> $config_host_mak
2378
  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
2379
fi
2380
if test "$cocoa" = "yes" ; then
2381
  echo "CONFIG_COCOA=y" >> $config_host_mak
2382
fi
2383
if test "$curses" = "yes" ; then
2384
  echo "CONFIG_CURSES=y" >> $config_host_mak
2385
fi
2386
if test "$atfile" = "yes" ; then
2387
  echo "CONFIG_ATFILE=y" >> $config_host_mak
2388
fi
2389
if test "$utimens" = "yes" ; then
2390
  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
2391
fi
2392
if test "$pipe2" = "yes" ; then
2393
  echo "CONFIG_PIPE2=y" >> $config_host_mak
2394
fi
2395
if test "$accept4" = "yes" ; then
2396
  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
2397
fi
2398
if test "$splice" = "yes" ; then
2399
  echo "CONFIG_SPLICE=y" >> $config_host_mak
2400
fi
2401
if test "$eventfd" = "yes" ; then
2402
  echo "CONFIG_EVENTFD=y" >> $config_host_mak
2403
fi
2404
if test "$fallocate" = "yes" ; then
2405
  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2406
fi
2407
if test "$dup3" = "yes" ; then
2408
  echo "CONFIG_DUP3=y" >> $config_host_mak
2409
fi
2410
if test "$inotify" = "yes" ; then
2411
  echo "CONFIG_INOTIFY=y" >> $config_host_mak
2412
fi
2413
if test "$inotify1" = "yes" ; then
2414
  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2415
fi
2416
if test "$byteswap_h" = "yes" ; then
2417
  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
2418
fi
2419
if test "$bswap_h" = "yes" ; then
2420
  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
2421
fi
2422
if test "$curl" = "yes" ; then
2423
  echo "CONFIG_CURL=y" >> $config_host_mak
2424
  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
2425
fi
2426
if test "$brlapi" = "yes" ; then
2427
  echo "CONFIG_BRLAPI=y" >> $config_host_mak
2428
fi
2429
if test "$bluez" = "yes" ; then
2430
  echo "CONFIG_BLUEZ=y" >> $config_host_mak
2431
  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
2432
fi
2433
if test "$xen" = "yes" ; then
2434
  echo "CONFIG_XEN=y" >> $config_host_mak
2435
fi
2436
if test "$io_thread" = "yes" ; then
2437
  echo "CONFIG_IOTHREAD=y" >> $config_host_mak
2438
  echo "CONFIG_THREAD=y" >> $config_host_mak
2439
fi
2440
if test "$linux_aio" = "yes" ; then
2441
  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
2442
fi
2443
if test "$attr" = "yes" ; then
2444
  echo "CONFIG_ATTR=y" >> $config_host_mak
2445
fi
2446
if test "$linux" = "yes" ; then
2447
  if test "$attr" = "yes" ; then
2448
    echo "CONFIG_VIRTFS=y" >> $config_host_mak
2449
  fi
2450
fi
2451
if test "$blobs" = "yes" ; then
2452
  echo "INSTALL_BLOBS=yes" >> $config_host_mak
2453
fi
2454
if test "$iovec" = "yes" ; then
2455
  echo "CONFIG_IOVEC=y" >> $config_host_mak
2456
fi
2457
if test "$preadv" = "yes" ; then
2458
  echo "CONFIG_PREADV=y" >> $config_host_mak
2459
fi
2460
if test "$fdt" = "yes" ; then
2461
  echo "CONFIG_FDT=y" >> $config_host_mak
2462
fi
2463
if test "$need_offsetof" = "yes" ; then
2464
  echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2465
fi
2466
if test "$gcc_attribute_warn_unused_result" = "yes" ; then
2467
  echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2468
fi
2469
if test "$fdatasync" = "yes" ; then
2470
  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
2471
fi
2472

    
2473
# XXX: suppress that
2474
if [ "$bsd" = "yes" ] ; then
2475
  echo "CONFIG_BSD=y" >> $config_host_mak
2476
fi
2477

    
2478
echo "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
2479

    
2480
if test "$zero_malloc" = "yes" ; then
2481
  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
2482
fi
2483

    
2484
# USB host support
2485
case "$usb" in
2486
linux)
2487
  echo "HOST_USB=linux" >> $config_host_mak
2488
;;
2489
bsd)
2490
  echo "HOST_USB=bsd" >> $config_host_mak
2491
;;
2492
*)
2493
  echo "HOST_USB=stub" >> $config_host_mak
2494
;;
2495
esac
2496

    
2497
echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
2498
if test "$trace_backend" = "simple"; then
2499
  echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
2500
fi
2501
# Set the appropriate trace file.
2502
if test "$trace_backend" = "simple"; then
2503
  trace_file="\"$trace_file-%u\""
2504
fi
2505
echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
2506

    
2507
echo "TOOLS=$tools" >> $config_host_mak
2508
echo "ROMS=$roms" >> $config_host_mak
2509
echo "MAKE=$make" >> $config_host_mak
2510
echo "INSTALL=$install" >> $config_host_mak
2511
echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
2512
echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
2513
echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
2514
echo "CC=$cc" >> $config_host_mak
2515
echo "HOST_CC=$host_cc" >> $config_host_mak
2516
if test "$sparse" = "yes" ; then
2517
  echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
2518
  echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
2519
  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
2520
fi
2521
echo "AR=$ar" >> $config_host_mak
2522
echo "OBJCOPY=$objcopy" >> $config_host_mak
2523
echo "LD=$ld" >> $config_host_mak
2524
echo "CFLAGS=$CFLAGS" >> $config_host_mak
2525
echo "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
2526
echo "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
2527
echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
2528
echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
2529
echo "ARLIBS_END=$arlibs_end" >> $config_host_mak
2530
echo "LIBS+=$LIBS" >> $config_host_mak
2531
echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
2532
echo "EXESUF=$EXESUF" >> $config_host_mak
2533

    
2534
# generate list of library paths for linker script
2535

    
2536
$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
2537

    
2538
if test -f ${config_host_ld}~ ; then
2539
  if cmp -s $config_host_ld ${config_host_ld}~ ; then
2540
    mv ${config_host_ld}~ $config_host_ld
2541
  else
2542
    rm ${config_host_ld}~
2543
  fi
2544
fi
2545

    
2546
for d in libdis libdis-user; do
2547
    mkdir -p $d
2548
    rm -f $d/Makefile
2549
    ln -s $source_path/Makefile.dis $d/Makefile
2550
    echo > $d/config.mak
2551
done
2552
if test "$static" = "no" -a "$user_pie" = "yes" ; then
2553
  echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
2554
fi
2555

    
2556
for target in $target_list; do
2557
target_dir="$target"
2558
config_target_mak=$target_dir/config-target.mak
2559
target_arch2=`echo $target | cut -d '-' -f 1`
2560
target_bigendian="no"
2561

    
2562
case "$target_arch2" in
2563
  armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
2564
  target_bigendian=yes
2565
  ;;
2566
esac
2567
target_softmmu="no"
2568
target_user_only="no"
2569
target_linux_user="no"
2570
target_darwin_user="no"
2571
target_bsd_user="no"
2572
case "$target" in
2573
  ${target_arch2}-softmmu)
2574
    target_softmmu="yes"
2575
    ;;
2576
  ${target_arch2}-linux-user)
2577
    if test "$linux" != "yes" ; then
2578
      echo "ERROR: Target '$target' is only available on a Linux host"
2579
      exit 1
2580
    fi
2581
    target_user_only="yes"
2582
    target_linux_user="yes"
2583
    ;;
2584
  ${target_arch2}-darwin-user)
2585
    if test "$darwin" != "yes" ; then
2586
      echo "ERROR: Target '$target' is only available on a Darwin host"
2587
      exit 1
2588
    fi
2589
    target_user_only="yes"
2590
    target_darwin_user="yes"
2591
    ;;
2592
  ${target_arch2}-bsd-user)
2593
    if test "$bsd" != "yes" ; then
2594
      echo "ERROR: Target '$target' is only available on a BSD host"
2595
      exit 1
2596
    fi
2597
    target_user_only="yes"
2598
    target_bsd_user="yes"
2599
    ;;
2600
  *)
2601
    echo "ERROR: Target '$target' not recognised"
2602
    exit 1
2603
    ;;
2604
esac
2605

    
2606
mkdir -p $target_dir
2607
mkdir -p $target_dir/fpu
2608
mkdir -p $target_dir/tcg
2609
mkdir -p $target_dir/ide
2610
if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
2611
  mkdir -p $target_dir/nwfpe
2612
fi
2613

    
2614
#
2615
# don't use ln -sf as not all "ln -sf" over write the file/link
2616
#
2617
rm -f $target_dir/Makefile
2618
ln -s $source_path/Makefile.target $target_dir/Makefile
2619

    
2620

    
2621
echo "# Automatically generated by configure - do not modify" > $config_target_mak
2622

    
2623
bflt="no"
2624
target_nptl="no"
2625
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
2626
echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
2627
gdb_xml_files=""
2628

    
2629
TARGET_ARCH="$target_arch2"
2630
TARGET_BASE_ARCH=""
2631
TARGET_ABI_DIR=""
2632

    
2633
case "$target_arch2" in
2634
  i386)
2635
    target_phys_bits=32
2636
  ;;
2637
  x86_64)
2638
    TARGET_BASE_ARCH=i386
2639
    target_phys_bits=64
2640
  ;;
2641
  alpha)
2642
    target_phys_bits=64
2643
    target_nptl="yes"
2644
  ;;
2645
  arm|armeb)
2646
    TARGET_ARCH=arm
2647
    bflt="yes"
2648
    target_nptl="yes"
2649
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
2650
    target_phys_bits=32
2651
  ;;
2652
  cris)
2653
    target_nptl="yes"
2654
    target_phys_bits=32
2655
  ;;
2656
  m68k)
2657
    bflt="yes"
2658
    gdb_xml_files="cf-core.xml cf-fp.xml"
2659
    target_phys_bits=32
2660
  ;;
2661
  microblaze)
2662
    bflt="yes"
2663
    target_nptl="yes"
2664
    target_phys_bits=32
2665
  ;;
2666
  mips|mipsel)
2667
    TARGET_ARCH=mips
2668
    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
2669
    target_nptl="yes"
2670
    target_phys_bits=64
2671
  ;;
2672
  mipsn32|mipsn32el)
2673
    TARGET_ARCH=mipsn32
2674
    TARGET_BASE_ARCH=mips
2675
    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
2676
    target_phys_bits=64
2677
  ;;
2678
  mips64|mips64el)
2679
    TARGET_ARCH=mips64
2680
    TARGET_BASE_ARCH=mips
2681
    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
2682
    target_phys_bits=64
2683
  ;;
2684
  ppc)
2685
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2686
    target_phys_bits=32
2687
    target_nptl="yes"
2688
  ;;
2689
  ppcemb)
2690
    TARGET_BASE_ARCH=ppc
2691
    TARGET_ABI_DIR=ppc
2692
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2693
    target_phys_bits=64
2694
    target_nptl="yes"
2695
  ;;
2696
  ppc64)
2697
    TARGET_BASE_ARCH=ppc
2698
    TARGET_ABI_DIR=ppc
2699
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2700
    target_phys_bits=64
2701
  ;;
2702
  ppc64abi32)
2703
    TARGET_ARCH=ppc64
2704
    TARGET_BASE_ARCH=ppc
2705
    TARGET_ABI_DIR=ppc
2706
    echo "TARGET_ABI32=y" >> $config_target_mak
2707
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
2708
    target_phys_bits=64
2709
  ;;
2710
  sh4|sh4eb)
2711
    TARGET_ARCH=sh4
2712
    bflt="yes"
2713
    target_nptl="yes"
2714
    target_phys_bits=32
2715
  ;;
2716
  sparc)
2717
    target_phys_bits=64
2718
  ;;
2719
  sparc64)
2720
    TARGET_BASE_ARCH=sparc
2721
    target_phys_bits=64
2722
  ;;
2723
  sparc32plus)
2724
    TARGET_ARCH=sparc64
2725
    TARGET_BASE_ARCH=sparc
2726
    TARGET_ABI_DIR=sparc
2727
    echo "TARGET_ABI32=y" >> $config_target_mak
2728
    target_phys_bits=64
2729
  ;;
2730
  s390x)
2731
    target_phys_bits=64
2732
  ;;
2733
  *)
2734
    echo "Unsupported target CPU"
2735
    exit 1
2736
  ;;
2737
esac
2738
echo "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
2739
target_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
2740
echo "TARGET_$target_arch_name=y" >> $config_target_mak
2741
echo "TARGET_ARCH2=$target_arch2" >> $config_target_mak
2742
# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
2743
if [ "$TARGET_BASE_ARCH" = "" ]; then
2744
  TARGET_BASE_ARCH=$TARGET_ARCH
2745
fi
2746
echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
2747
if [ "$TARGET_ABI_DIR" = "" ]; then
2748
  TARGET_ABI_DIR=$TARGET_ARCH
2749
fi
2750
echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
2751
case "$target_arch2" in
2752
  i386|x86_64)
2753
    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2754
      echo "CONFIG_XEN=y" >> $config_target_mak
2755
    fi
2756
esac
2757
case "$target_arch2" in
2758
  i386|x86_64|ppcemb|ppc|ppc64|s390x)
2759
    # Make sure the target and host cpus are compatible
2760
    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2761
      \( "$target_arch2" = "$cpu" -o \
2762
      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
2763
      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
2764
      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
2765
      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
2766
      echo "CONFIG_KVM=y" >> $config_target_mak
2767
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_target_mak
2768
      if test "$kvm_para" = "yes"; then
2769
        echo "CONFIG_KVM_PARA=y" >> $config_target_mak
2770
      fi
2771
      if test $vhost_net = "yes" ; then
2772
        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
2773
      fi
2774
    fi
2775
esac
2776
if test "$target_bigendian" = "yes" ; then
2777
  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
2778
fi
2779
if test "$target_softmmu" = "yes" ; then
2780
  echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
2781
  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
2782
  echo "LIBS+=$libs_softmmu" >> $config_target_mak
2783
  echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
2784
  echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2785
fi
2786
if test "$target_user_only" = "yes" ; then
2787
  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
2788
fi
2789
if test "$target_linux_user" = "yes" ; then
2790
  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
2791
fi
2792
if test "$target_darwin_user" = "yes" ; then
2793
  echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
2794
fi
2795
list=""
2796
if test ! -z "$gdb_xml_files" ; then
2797
  for x in $gdb_xml_files; do
2798
    list="$list $source_path/gdb-xml/$x"
2799
  done
2800
  echo "TARGET_XML_FILES=$list" >> $config_target_mak
2801
fi
2802

    
2803
case "$target_arch2" in
2804
  alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
2805
    echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak
2806
    ;;
2807
  *)
2808
    echo "CONFIG_NOSOFTFLOAT=y" >> $config_target_mak
2809
    ;;
2810
esac
2811

    
2812
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2813
  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
2814
fi
2815
if test "$target_user_only" = "yes" \
2816
        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2817
  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
2818
fi
2819
if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2820
  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
2821
fi
2822
if test "$target_bsd_user" = "yes" ; then
2823
  echo "CONFIG_BSD_USER=y" >> $config_target_mak
2824
fi
2825

    
2826
# generate QEMU_CFLAGS/LDFLAGS for targets
2827

    
2828
cflags=""
2829
ldflags=""
2830

    
2831
if test "$ARCH" = "sparc64" ; then
2832
  cflags="-I\$(SRC_PATH)/tcg/sparc $cflags"
2833
elif test "$ARCH" = "s390x" ; then
2834
  cflags="-I\$(SRC_PATH)/tcg/s390 $cflags"
2835
elif test "$ARCH" = "x86_64" ; then
2836
  cflags="-I\$(SRC_PATH)/tcg/i386 $cflags"
2837
else
2838
  cflags="-I\$(SRC_PATH)/tcg/\$(ARCH) $cflags"
2839
fi
2840
cflags="-I\$(SRC_PATH)/tcg $cflags"
2841
cflags="-I\$(SRC_PATH)/fpu $cflags"
2842

    
2843
if test "$target_user_only" = "yes" ; then
2844
    libdis_config_mak=libdis-user/config.mak
2845
else
2846
    libdis_config_mak=libdis/config.mak
2847
fi
2848

    
2849
for i in $ARCH $TARGET_BASE_ARCH ; do
2850
  case "$i" in
2851
  alpha)
2852
    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
2853
    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
2854
  ;;
2855
  arm)
2856
    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
2857
    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
2858
  ;;
2859
  cris)
2860
    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
2861
    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
2862
  ;;
2863
  hppa)
2864
    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
2865
    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
2866
  ;;
2867
  i386|x86_64)
2868
    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
2869
    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
2870
  ;;
2871
  ia64*)
2872
    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
2873
    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
2874
  ;;
2875
  m68k)
2876
    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
2877
    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
2878
  ;;
2879
  microblaze)
2880
    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
2881
    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
2882
  ;;
2883
  mips*)
2884
    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
2885
    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
2886
  ;;
2887
  ppc*)
2888
    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
2889
    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
2890
  ;;
2891
  s390*)
2892
    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
2893
    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
2894
  ;;
2895
  sh4)
2896
    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
2897
    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
2898
  ;;
2899
  sparc*)
2900
    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
2901
    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
2902
  ;;
2903
  esac
2904
done
2905

    
2906
case "$ARCH" in
2907
alpha)
2908
  # Ensure there's only a single GP
2909
  cflags="-msmall-data $cflags"
2910
;;
2911
esac
2912

    
2913
if test "$target_softmmu" = "yes" ; then
2914
  case "$TARGET_BASE_ARCH" in
2915
  arm)
2916
    cflags="-DHAS_AUDIO $cflags"
2917
  ;;
2918
  i386|mips|ppc)
2919
    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
2920
  ;;
2921
  esac
2922
fi
2923

    
2924
if test "$target_user_only" = "yes" -a "$static" = "no" -a \
2925
	"$user_pie" = "yes" ; then
2926
  cflags="-fpie $cflags"
2927
  ldflags="-pie $ldflags"
2928
fi
2929

    
2930
if test "$target_softmmu" = "yes" -a \( \
2931
        "$TARGET_ARCH" = "microblaze" -o \
2932
        "$TARGET_ARCH" = "cris" \) ; then
2933
  echo "CONFIG_NEED_MMU=y" >> $config_target_mak
2934
fi
2935

    
2936
if test "$gprof" = "yes" ; then
2937
  echo "TARGET_GPROF=yes" >> $config_target_mak
2938
  if test "$target_linux_user" = "yes" ; then
2939
    cflags="-p $cflags"
2940
    ldflags="-p $ldflags"
2941
  fi
2942
  if test "$target_softmmu" = "yes" ; then
2943
    ldflags="-p $ldflags"
2944
    echo "GPROF_CFLAGS=-p" >> $config_target_mak
2945
  fi
2946
fi
2947

    
2948
linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
2949
if test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
2950
  case "$ARCH" in
2951
  sparc)
2952
    # -static is used to avoid g1/g3 usage by the dynamic linker
2953
    ldflags="$linker_script -static $ldflags"
2954
    ;;
2955
  alpha | s390x)
2956
    # The default placement of the application is fine.
2957
    ;;
2958
  *)
2959
    ldflags="$linker_script $ldflags"
2960
    ;;
2961
  esac
2962
fi
2963

    
2964
echo "LDFLAGS+=$ldflags" >> $config_target_mak
2965
echo "QEMU_CFLAGS+=$cflags" >> $config_target_mak
2966

    
2967
done # for target in $targets
2968

    
2969
# build tree in object directory if source path is different from current one
2970
if test "$source_path_used" = "yes" ; then
2971
    DIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
2972
    DIRS="$DIRS roms/seabios roms/vgabios"
2973
    DIRS="$DIRS fsdev ui"
2974
    FILES="Makefile tests/Makefile"
2975
    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2976
    FILES="$FILES tests/test-mmap.c"
2977
    FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
2978
    FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
2979
    for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
2980
        FILES="$FILES pc-bios/`basename $bios_file`"
2981
    done
2982
    for dir in $DIRS ; do
2983
            mkdir -p $dir
2984
    done
2985
    # remove the link and recreate it, as not all "ln -sf" overwrite the link
2986
    for f in $FILES ; do
2987
        rm -f $f
2988
        ln -s $source_path/$f $f
2989
    done
2990
fi
2991

    
2992
# temporary config to build submodules
2993
for rom in seabios vgabios ; do
2994
    config_mak=roms/$rom/config.mak
2995
    echo "# Automatically generated by configure - do not modify" > $config_mak
2996
    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
2997
    echo "CC=$cc" >> $config_mak
2998
    echo "BCC=bcc" >> $config_mak
2999
    echo "CPP=${cross_prefix}cpp" >> $config_mak
3000
    echo "OBJCOPY=objcopy" >> $config_mak
3001
    echo "IASL=iasl" >> $config_mak
3002
    echo "HOST_CC=$host_cc" >> $config_mak
3003
    echo "LD=$ld" >> $config_mak
3004
done
3005

    
3006
for hwlib in 32 64; do
3007
  d=libhw$hwlib
3008
  mkdir -p $d
3009
  mkdir -p $d/ide
3010
  rm -f $d/Makefile
3011
  ln -s $source_path/Makefile.hw $d/Makefile
3012
  echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
3013
done
3014

    
3015
d=libuser
3016
mkdir -p $d
3017
rm -f $d/Makefile
3018
ln -s $source_path/Makefile.user $d/Makefile
3019
if test "$static" = "no" -a "$user_pie" = "yes" ; then
3020
  echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3021
fi
3022

    
3023
if test "$docs" = "yes" ; then
3024
  mkdir -p QMP
3025
fi