Statistics
| Branch: | Revision:

root / configure @ 379f6698

History | View | Annotate | Download (55.3 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}"
17
TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
18
TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
19
TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
20

    
21
trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
22

    
23
# default parameters
24
prefix=""
25
interp_prefix="/usr/gnemul/qemu-%M"
26
static="no"
27
cross_prefix=""
28
cc="gcc"
29
audio_drv_list=""
30
audio_card_list="ac97 es1370 sb16"
31
audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
32
host_cc="gcc"
33
ar="ar"
34
make="make"
35
install="install"
36
strip="strip"
37
objcopy="objcopy"
38
ld="ld"
39

    
40
# parse CC options first
41
for opt do
42
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
43
  case "$opt" in
44
  --cross-prefix=*) cross_prefix="$optarg"
45
  ;;
46
  --cc=*) cc="$optarg"
47
  ;;
48
  esac
49
done
50

    
51
# OS specific
52
# Using uname is really, really broken.  Once we have the right set of checks
53
# we can eliminate it's usage altogether
54

    
55
cc="${cross_prefix}${cc}"
56
ar="${cross_prefix}${ar}"
57
strip="${cross_prefix}${strip}"
58
objcopy="${cross_prefix}${objcopy}"
59
ld="${cross_prefix}${ld}"
60

    
61
# check that the C compiler works.
62
cat > $TMPC <<EOF
63
int main(void) {}
64
EOF
65

    
66
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
67
  : C compiler works ok
68
else
69
    echo "ERROR: \"$cc\" either does not exist or does not work"
70
    exit 1
71
fi
72

    
73
check_define() {
74
cat > $TMPC <<EOF
75
#if !defined($1)
76
#error Not defined
77
#endif
78
int main(void) { return 0; }
79
EOF
80
  $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
81
}
82

    
83
if check_define __i386__ ; then
84
  cpu="i386"
85
elif check_define __x86_64__ ; then
86
  cpu="x86_64"
87
elif check_define __sparc__ ; then
88
  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
89
  # They must be specified using --sparc_cpu
90
  if check_define __arch64__ ; then
91
    cpu="sparc64"
92
  else
93
    cpu="sparc"
94
  fi
95
elif check_define _ARCH_PPC ; then
96
  if check_define _ARCH_PPC64 ; then
97
    cpu="ppc64"
98
  else
99
    cpu="ppc"
100
  fi
101
else
102
  cpu=`uname -m`
103
fi
104

    
105
target_list=""
106
case "$cpu" in
107
  i386|i486|i586|i686|i86pc|BePC)
108
    cpu="i386"
109
  ;;
110
  x86_64|amd64)
111
    cpu="x86_64"
112
  ;;
113
  alpha)
114
    cpu="alpha"
115
  ;;
116
  armv*b)
117
    cpu="armv4b"
118
  ;;
119
  armv*l)
120
    cpu="armv4l"
121
  ;;
122
  cris)
123
    cpu="cris"
124
  ;;
125
  parisc|parisc64)
126
    cpu="hppa"
127
  ;;
128
  ia64)
129
    cpu="ia64"
130
  ;;
131
  m68k)
132
    cpu="m68k"
133
  ;;
134
  microblaze)
135
    cpu="microblaze"
136
  ;;
137
  mips)
138
    cpu="mips"
139
  ;;
140
  mips64)
141
    cpu="mips64"
142
  ;;
143
  ppc)
144
    cpu="ppc"
145
  ;;
146
  ppc64)
147
    cpu="ppc64"
148
  ;;
149
  s390*)
150
    cpu="s390"
151
  ;;
152
  sparc|sun4[cdmuv])
153
    cpu="sparc"
154
  ;;
155
  sparc64)
156
    cpu="sparc64"
157
  ;;
158
  *)
159
    cpu="unknown"
160
  ;;
161
esac
162
gprof="no"
163
debug_tcg="no"
164
debug="no"
165
sparse="no"
166
strip_opt="yes"
167
bigendian="no"
168
mingw32="no"
169
EXESUF=""
170
slirp="yes"
171
vde="yes"
172
fmod_lib=""
173
fmod_inc=""
174
oss_lib=""
175
vnc_tls="yes"
176
vnc_sasl="yes"
177
bsd="no"
178
linux="no"
179
solaris="no"
180
kqemu="no"
181
profiler="no"
182
cocoa="no"
183
softmmu="yes"
184
linux_user="no"
185
darwin_user="no"
186
bsd_user="no"
187
guest_base=""
188
build_docs="yes"
189
uname_release=""
190
curses="yes"
191
curl="yes"
192
pthread="yes"
193
aio="yes"
194
io_thread="no"
195
nptl="yes"
196
mixemu="no"
197
bluez="yes"
198
kvm="no"
199
kerneldir=""
200
aix="no"
201
blobs="yes"
202
fdt="yes"
203
sdl="yes"
204
sdl_x11="no"
205
xen="yes"
206
pkgversion=""
207

    
208
# OS specific
209
if check_define __linux__ ; then
210
  targetos="Linux"
211
elif check_define _WIN32 ; then
212
  targetos='MINGW32'
213
elif check_define __OpenBSD__ ; then
214
  targetos='OpenBSD'
215
elif check_define __sun__ ; then
216
  targetos='SunOS'
217
else
218
  targetos=`uname -s`
219
fi
220
case $targetos in
221
CYGWIN*)
222
mingw32="yes"
223
OS_CFLAGS="-mno-cygwin"
224
if [ "$cpu" = "i386" ] ; then
225
    kqemu="yes"
226
fi
227
audio_possible_drivers="sdl"
228
;;
229
MINGW32*)
230
mingw32="yes"
231
if [ "$cpu" = "i386" ] ; then
232
    kqemu="yes"
233
fi
234
audio_possible_drivers="dsound sdl fmod"
235
;;
236
GNU/kFreeBSD)
237
audio_drv_list="oss"
238
audio_possible_drivers="oss sdl esd pa"
239
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
240
    kqemu="yes"
241
fi
242
;;
243
FreeBSD)
244
bsd="yes"
245
audio_drv_list="oss"
246
audio_possible_drivers="oss sdl esd pa"
247
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
248
    kqemu="yes"
249
fi
250
;;
251
DragonFly)
252
bsd="yes"
253
audio_drv_list="oss"
254
audio_possible_drivers="oss sdl esd pa"
255
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
256
    kqemu="yes"
257
fi
258
aio="no"
259
;;
260
NetBSD)
261
bsd="yes"
262
audio_drv_list="oss"
263
audio_possible_drivers="oss sdl esd"
264
oss_lib="-lossaudio"
265
;;
266
OpenBSD)
267
bsd="yes"
268
openbsd="yes"
269
audio_drv_list="oss"
270
audio_possible_drivers="oss sdl esd"
271
oss_lib="-lossaudio"
272
;;
273
Darwin)
274
bsd="yes"
275
darwin="yes"
276
# on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
277
if [ "$cpu" = "i386" ] ; then
278
    is_x86_64=`sysctl -n hw.optional.x86_64`
279
    [ "$is_x86_64" = "1" ] && cpu=x86_64
280
fi
281
if [ "$cpu" = "x86_64" ] ; then
282
    OS_CFLAGS="-arch x86_64"
283
    LDFLAGS="-arch x86_64"
284
else
285
    OS_CFLAGS="-mdynamic-no-pic"
286
fi
287
darwin_user="yes"
288
cocoa="yes"
289
audio_drv_list="coreaudio"
290
audio_possible_drivers="coreaudio sdl fmod"
291
OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
292
;;
293
SunOS)
294
    solaris="yes"
295
    make="gmake"
296
    install="ginstall"
297
    needs_libsunmath="no"
298
    solarisrev=`uname -r | cut -f2 -d.`
299
    # have to select again, because `uname -m` returns i86pc
300
    # even on an x86_64 box.
301
    solariscpu=`isainfo -k`
302
    if test "${solariscpu}" = "amd64" ; then
303
        cpu="x86_64"
304
    fi
305
    if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
306
        if test "$solarisrev" -le 9 ; then
307
            if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
308
                needs_libsunmath="yes"
309
            else
310
                echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
311
                echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
312
                echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
313
                echo "Studio 11 can be downloaded from www.sun.com."
314
                exit 1
315
            fi
316
        fi
317
        if test "$solarisrev" -ge 9 ; then
318
            kqemu="yes"
319
        fi
320
    fi
321
    if test -f /usr/include/sys/soundcard.h ; then
322
        audio_drv_list="oss"
323
    fi
324
    audio_possible_drivers="oss sdl"
325
    OS_CFLAGS=-std=gnu99
326
;;
327
AIX)
328
aix="yes"
329
make="gmake"
330
;;
331
*)
332
audio_drv_list="oss"
333
audio_possible_drivers="oss alsa sdl esd pa"
334
linux="yes"
335
linux_user="yes"
336
usb="linux"
337
kvm="yes"
338
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
339
    kqemu="yes"
340
    audio_possible_drivers="$audio_possible_drivers fmod"
341
fi
342
;;
343
esac
344

    
345
if [ "$bsd" = "yes" ] ; then
346
  if [ "$darwin" != "yes" ] ; then
347
    make="gmake"
348
    usb="bsd"
349
  fi
350
  bsd_user="yes"
351
fi
352

    
353
# find source path
354
source_path=`dirname "$0"`
355
source_path_used="no"
356
workdir=`pwd`
357
if [ -z "$source_path" ]; then
358
    source_path=$workdir
359
else
360
    source_path=`cd "$source_path"; pwd`
361
fi
362
[ -f "$workdir/vl.c" ] || source_path_used="yes"
363

    
364
werror=""
365

    
366
for opt do
367
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
368
  case "$opt" in
369
  --help|-h) show_help=yes
370
  ;;
371
  --prefix=*) prefix="$optarg"
372
  ;;
373
  --interp-prefix=*) interp_prefix="$optarg"
374
  ;;
375
  --source-path=*) source_path="$optarg"
376
  source_path_used="yes"
377
  ;;
378
  --cross-prefix=*)
379
  ;;
380
  --cc=*)
381
  ;;
382
  --host-cc=*) host_cc="$optarg"
383
  ;;
384
  --make=*) make="$optarg"
385
  ;;
386
  --install=*) install="$optarg"
387
  ;;
388
  --extra-cflags=*) EXTRA_CFLAGS="$optarg"
389
  ;;
390
  --extra-ldflags=*) EXTRA_LDFLAGS="$optarg"
391
  ;;
392
  --cpu=*) cpu="$optarg"
393
  ;;
394
  --target-list=*) target_list="$optarg"
395
  ;;
396
  --enable-gprof) gprof="yes"
397
  ;;
398
  --static) static="yes"
399
  ;;
400
  --disable-sdl) sdl="no"
401
  ;;
402
  --fmod-lib=*) fmod_lib="$optarg"
403
  ;;
404
  --fmod-inc=*) fmod_inc="$optarg"
405
  ;;
406
  --oss-lib=*) oss_lib="$optarg"
407
  ;;
408
  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
409
  ;;
410
  --audio-drv-list=*) audio_drv_list="$optarg"
411
  ;;
412
  --enable-debug-tcg) debug_tcg="yes"
413
  ;;
414
  --disable-debug-tcg) debug_tcg="no"
415
  ;;
416
  --enable-debug)
417
      # Enable debugging options that aren't excessively noisy
418
      debug_tcg="yes"
419
      debug="yes"
420
      strip_opt="no"
421
  ;;
422
  --enable-sparse) sparse="yes"
423
  ;;
424
  --disable-sparse) sparse="no"
425
  ;;
426
  --disable-strip) strip_opt="no"
427
  ;;
428
  --disable-vnc-tls) vnc_tls="no"
429
  ;;
430
  --disable-vnc-sasl) vnc_sasl="no"
431
  ;;
432
  --disable-slirp) slirp="no"
433
  ;;
434
  --disable-vde) vde="no"
435
  ;;
436
  --disable-kqemu) kqemu="no"
437
  ;;
438
  --disable-xen) xen="no"
439
  ;;
440
  --disable-brlapi) brlapi="no"
441
  ;;
442
  --disable-bluez) bluez="no"
443
  ;;
444
  --disable-kvm) kvm="no"
445
  ;;
446
  --enable-profiler) profiler="yes"
447
  ;;
448
  --enable-cocoa)
449
      cocoa="yes" ;
450
      sdl="no" ;
451
      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
452
  ;;
453
  --disable-system) softmmu="no"
454
  ;;
455
  --enable-system) softmmu="yes"
456
  ;;
457
  --disable-linux-user) linux_user="no"
458
  ;;
459
  --enable-linux-user) linux_user="yes"
460
  ;;
461
  --disable-darwin-user) darwin_user="no"
462
  ;;
463
  --enable-darwin-user) darwin_user="yes"
464
  ;;
465
  --disable-bsd-user) bsd_user="no"
466
  ;;
467
  --enable-bsd-user) bsd_user="yes"
468
  ;;
469
  --enable-guest-base) guest_base="yes"
470
  ;;
471
  --disable-guest-base) guest_base="no"
472
  ;;
473
  --enable-uname-release=*) uname_release="$optarg"
474
  ;;
475
  --sparc_cpu=*)
476
      sparc_cpu="$optarg"
477
      case $sparc_cpu in
478
        v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
479
                 target_arch2="sparc"; cpu="sparc" ;;
480
        v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
481
                 target_arch2="sparc"; cpu="sparc" ;;
482
        v9)    SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
483
                 target_arch2="sparc64"; cpu="sparc64" ;;
484
        *)     echo "undefined SPARC architecture. Exiting";exit 1;;
485
      esac
486
  ;;
487
  --enable-werror) werror="yes"
488
  ;;
489
  --disable-werror) werror="no"
490
  ;;
491
  --disable-curses) curses="no"
492
  ;;
493
  --disable-curl) curl="no"
494
  ;;
495
  --disable-nptl) nptl="no"
496
  ;;
497
  --enable-mixemu) mixemu="yes"
498
  ;;
499
  --disable-pthread) pthread="no"
500
  ;;
501
  --disable-aio) aio="no"
502
  ;;
503
  --enable-io-thread) io_thread="yes"
504
  ;;
505
  --disable-blobs) blobs="no"
506
  ;;
507
  --kerneldir=*) kerneldir="$optarg"
508
  ;;
509
  --with-pkgversion=*) pkgversion=" ($optarg)"
510
  ;;
511
  --disable-docs) build_docs="no"
512
  ;;
513
  *) echo "ERROR: unknown option $opt"; show_help="yes"
514
  ;;
515
  esac
516
done
517

    
518
# default flags for all hosts
519
CFLAGS="$CFLAGS -g -fno-strict-aliasing"
520
if test "$debug" = "no" ; then
521
  CFLAGS="$CFLAGS -O2"
522
fi
523
CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
524
LDFLAGS="$LDFLAGS -g"
525

    
526
# Consult white-list to determine whether to enable werror
527
# by default.  Only enable by default for git builds
528
if test -z "$werror" ; then
529
    z_version=`cut -f3 -d. $source_path/VERSION`
530
    if test "$z_version" = "50" -a \
531
        "$linux" = "yes" ; then
532
        werror="yes"
533
    else
534
        werror="no"
535
    fi
536
fi
537

    
538
if test "$werror" = "yes" ; then
539
    CFLAGS="$CFLAGS -Werror"
540
fi
541

    
542
if test "$solaris" = "no" ; then
543
    if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
544
        LDFLAGS="$LDFLAGS -Wl,--warn-common"
545
    fi
546
fi
547

    
548
#
549
# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
550
# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
551
#
552
host_guest_base="no"
553
case "$cpu" in
554
    sparc) if test -z "$sparc_cpu" ; then
555
               ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
556
               ARCH_LDFLAGS="-m32"
557
           else
558
               ARCH_CFLAGS="${SP_CFLAGS}"
559
               ARCH_LDFLAGS="${SP_LDFLAGS}"
560
           fi
561
           ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
562
           if test "$solaris" = "no" ; then
563
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
564
           fi
565
           ;;
566
    sparc64) if test -z "$sparc_cpu" ; then
567
               ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
568
               ARCH_LDFLAGS="-m64"
569
           else
570
               ARCH_CFLAGS="${SP_CFLAGS}"
571
               ARCH_LDFLAGS="${SP_LDFLAGS}"
572
           fi
573
           if test "$solaris" = "no" ; then
574
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
575
           else
576
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
577
           fi
578
           ;;
579
    s390)
580
           ARCH_CFLAGS="-march=z900"
581
           ;;
582
    i386)
583
           ARCH_CFLAGS="-m32"
584
           ARCH_LDFLAGS="-m32"
585
           host_guest_base="yes"
586
           ;;
587
    x86_64)
588
           ARCH_CFLAGS="-m64"
589
           ARCH_LDFLAGS="-m64"
590
           host_guest_base="yes"
591
           ;;
592
    arm*)
593
           host_guest_base="yes"
594
           ;;
595
esac
596

    
597
[ -z "$guest_base" ] && guest_base="$host_guest_base"
598

    
599
if test x"$show_help" = x"yes" ; then
600
cat << EOF
601

    
602
Usage: configure [options]
603
Options: [defaults in brackets after descriptions]
604

    
605
EOF
606
echo "Standard options:"
607
echo "  --help                   print this message"
608
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
609
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
610
echo "                           use %M for cpu name [$interp_prefix]"
611
echo "  --target-list=LIST       set target list [$target_list]"
612
echo ""
613
echo "kqemu kernel acceleration support:"
614
echo "  --disable-kqemu          disable kqemu support"
615
echo ""
616
echo "Advanced options (experts only):"
617
echo "  --source-path=PATH       path of source code [$source_path]"
618
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
619
echo "  --cc=CC                  use C compiler CC [$cc]"
620
echo "  --host-cc=CC             use C compiler CC [$host_cc] for dyngen etc."
621
echo "  --extra-cflags=CFLAGS    append extra C compiler flags CFLAGS"
622
echo "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
623
echo "  --make=MAKE              use specified make [$make]"
624
echo "  --install=INSTALL        use specified install [$install]"
625
echo "  --static                 enable static build [$static]"
626
echo "  --enable-debug-tcg       enable TCG debugging"
627
echo "  --disable-debug-tcg      disable TCG debugging (default)"
628
echo "  --enable-debug           enable common debug build options"
629
echo "  --enable-sparse          enable sparse checker"
630
echo "  --disable-sparse         disable sparse checker (default)"
631
echo "  --disable-strip          disable stripping binaries"
632
echo "  --disable-werror         disable compilation abort on warning"
633
echo "  --disable-sdl            disable SDL"
634
echo "  --enable-cocoa           enable COCOA (Mac OS X only)"
635
echo "  --audio-drv-list=LIST    set audio drivers list:"
636
echo "                           Available drivers: $audio_possible_drivers"
637
echo "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
638
echo "                           Available cards: $audio_possible_cards"
639
echo "  --enable-mixemu          enable mixer emulation"
640
echo "  --disable-xen            disable xen backend driver support"
641
echo "  --disable-brlapi         disable BrlAPI"
642
echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
643
echo "  --disable-vnc-sasl       disable SASL encryption for VNC server"
644
echo "  --disable-curses         disable curses output"
645
echo "  --disable-curl           disable curl connectivity"
646
echo "  --disable-bluez          disable bluez stack connectivity"
647
echo "  --disable-kvm            disable KVM acceleration support"
648
echo "  --disable-nptl           disable usermode NPTL support"
649
echo "  --enable-system          enable all system emulation targets"
650
echo "  --disable-system         disable all system emulation targets"
651
echo "  --enable-linux-user      enable all linux usermode emulation targets"
652
echo "  --disable-linux-user     disable all linux usermode emulation targets"
653
echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
654
echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
655
echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
656
echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
657
echo "  --enable-guest-base      enable GUEST_BASE support for usermode"
658
echo "                           emulation targets"
659
echo "  --disable-guest-base     disable GUEST_BASE support"
660
echo "  --fmod-lib               path to FMOD library"
661
echo "  --fmod-inc               path to FMOD includes"
662
echo "  --oss-lib                path to OSS library"
663
echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
664
echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
665
echo "  --disable-vde            disable support for vde network"
666
echo "  --disable-pthread        disable pthread support"
667
echo "  --disable-aio            disable AIO support"
668
echo "  --enable-io-thread       enable IO thread"
669
echo "  --disable-blobs          disable installing provided firmware blobs"
670
echo "  --kerneldir=PATH         look for kernel includes in PATH"
671
echo ""
672
echo "NOTE: The object files are built at the place where configure is launched"
673
exit 1
674
fi
675

    
676
if test "$mingw32" = "yes" ; then
677
    linux="no"
678
    EXESUF=".exe"
679
    oss="no"
680
    linux_user="no"
681
    bsd_user="no"
682
    OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
683
fi
684

    
685
if test ! -x "$(which cgcc 2>/dev/null)"; then
686
    sparse="no"
687
fi
688

    
689
#
690
# Solaris specific configure tool chain decisions
691
#
692
if test "$solaris" = "yes" ; then
693
  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
694
  if test -z "$solinst" ; then
695
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
696
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
697
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
698
    exit 1
699
  fi
700
  if test "$solinst" = "/usr/sbin/install" ; then
701
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
702
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
703
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
704
    exit 1
705
  fi
706
  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
707
  if test -z "$sol_ar" ; then
708
    echo "Error: No path includes ar"
709
    if test -f /usr/ccs/bin/ar ; then
710
      echo "Add /usr/ccs/bin to your path and rerun configure"
711
    fi
712
    exit 1
713
  fi
714
fi
715

    
716

    
717
if test -z "$target_list" ; then
718
# these targets are portable
719
    if [ "$softmmu" = "yes" ] ; then
720
        target_list="\
721
i386-softmmu \
722
x86_64-softmmu \
723
arm-softmmu \
724
cris-softmmu \
725
m68k-softmmu \
726
microblaze-softmmu \
727
mips-softmmu \
728
mipsel-softmmu \
729
mips64-softmmu \
730
mips64el-softmmu \
731
ppc-softmmu \
732
ppcemb-softmmu \
733
ppc64-softmmu \
734
sh4-softmmu \
735
sh4eb-softmmu \
736
sparc-softmmu \
737
sparc64-softmmu \
738
"
739
    fi
740
# the following are Linux specific
741
    if [ "$linux_user" = "yes" ] ; then
742
        target_list="${target_list}\
743
i386-linux-user \
744
x86_64-linux-user \
745
alpha-linux-user \
746
arm-linux-user \
747
armeb-linux-user \
748
cris-linux-user \
749
m68k-linux-user \
750
microblaze-linux-user \
751
mips-linux-user \
752
mipsel-linux-user \
753
ppc-linux-user \
754
ppc64-linux-user \
755
ppc64abi32-linux-user \
756
sh4-linux-user \
757
sh4eb-linux-user \
758
sparc-linux-user \
759
sparc64-linux-user \
760
sparc32plus-linux-user \
761
"
762
    fi
763
# the following are Darwin specific
764
    if [ "$darwin_user" = "yes" ] ; then
765
        target_list="$target_list i386-darwin-user ppc-darwin-user "
766
    fi
767
# the following are BSD specific
768
    if [ "$bsd_user" = "yes" ] ; then
769
        target_list="${target_list}\
770
i386-bsd-user \
771
x86_64-bsd-user \
772
sparc-bsd-user \
773
sparc64-bsd-user \
774
"
775
    fi
776
else
777
    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
778
fi
779
if test -z "$target_list" ; then
780
    echo "No targets enabled"
781
    exit 1
782
fi
783

    
784
if test -z "$cross_prefix" ; then
785

    
786
# ---
787
# big/little endian test
788
cat > $TMPC << EOF
789
#include <inttypes.h>
790
int main(int argc, char ** argv){
791
        volatile uint32_t i=0x01234567;
792
        return (*((uint8_t*)(&i))) == 0x67;
793
}
794
EOF
795

    
796
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
797
$TMPE && bigendian="yes"
798
else
799
echo big/little test failed
800
fi
801

    
802
else
803

    
804
# if cross compiling, cannot launch a program, so make a static guess
805
if test "$cpu" = "armv4b" \
806
     -o "$cpu" = "hppa" \
807
     -o "$cpu" = "m68k" \
808
     -o "$cpu" = "mips" \
809
     -o "$cpu" = "mips64" \
810
     -o "$cpu" = "ppc" \
811
     -o "$cpu" = "ppc64" \
812
     -o "$cpu" = "s390" \
813
     -o "$cpu" = "sparc" \
814
     -o "$cpu" = "sparc64"; then
815
    bigendian="yes"
816
fi
817

    
818
fi
819

    
820
# host long bits test
821
hostlongbits="32"
822
if test "$cpu" = "x86_64" \
823
     -o "$cpu" = "alpha" \
824
     -o "$cpu" = "ia64" \
825
     -o "$cpu" = "sparc64" \
826
     -o "$cpu" = "ppc64"; then
827
    hostlongbits="64"
828
fi
829

    
830
# Check host NPTL support
831
cat > $TMPC <<EOF
832
#include <sched.h>
833
#include <linux/futex.h>
834
void foo()
835
{
836
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
837
#error bork
838
#endif
839
}
840
EOF
841

    
842
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
843
  :
844
else
845
   nptl="no"
846
fi
847

    
848
##########################################
849
# zlib check
850

    
851
cat > $TMPC << EOF
852
#include <zlib.h>
853
int main(void) { zlibVersion(); return 0; }
854
EOF
855
if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
856
    :
857
else
858
    echo
859
    echo "Error: zlib check failed"
860
    echo "Make sure to have the zlib libs and headers installed."
861
    echo
862
    exit 1
863
fi
864

    
865
##########################################
866
# xen probe
867

    
868
if test "$xen" = "yes" ; then
869
cat > $TMPC <<EOF
870
#include <xenctrl.h>
871
#include <xs.h>
872
int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
873
EOF
874
   if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then
875
      :
876
   else
877
      xen="no"
878
   fi
879
fi
880

    
881
##########################################
882
# SDL probe
883

    
884
sdl_too_old=no
885

    
886
if test "$sdl" = "yes" ; then
887
    sdl_config="sdl-config"
888
    sdl=no
889
    sdl_static=no
890

    
891
cat > $TMPC << EOF
892
#include <SDL.h>
893
#undef main /* We don't want SDL to override our main() */
894
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
895
EOF
896
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
897
        _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
898
        if test "$_sdlversion" -lt 121 ; then
899
            sdl_too_old=yes
900
        else
901
            if test "$cocoa" = "no" ; then
902
                sdl=yes
903
            fi
904
        fi
905

    
906
        # static link with sdl ?
907
        if test "$sdl" = "yes" ; then
908
            aa="no"
909
            `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
910
            sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
911
            if [ "$aa" = "yes" ] ; then
912
                sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
913
            fi
914

    
915
            if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
916
                sdl_static=yes
917
            fi
918
        fi # static link
919
    fi # sdl compile test
920
else
921
    # Make sure to disable cocoa if sdl was set
922
    if test "$sdl" = "yes" ; then
923
       cocoa="no"
924
       audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
925
    fi
926
fi # -z $sdl
927

    
928
if test "$sdl" = "yes" ; then
929
cat > $TMPC <<EOF
930
#include <SDL.h>
931
#if defined(SDL_VIDEO_DRIVER_X11)
932
#include <X11/XKBlib.h>
933
#else
934
#error No x11 support
935
#endif
936
int main(void) { return 0; }
937
EOF
938
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then
939
	sdl_x11="yes"
940
    fi
941
fi
942

    
943
##########################################
944
# VNC TLS detection
945
if test "$vnc_tls" = "yes" ; then
946
cat > $TMPC <<EOF
947
#include <gnutls/gnutls.h>
948
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
949
EOF
950
    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
951
    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
952
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
953
           $vnc_tls_libs > /dev/null 2> /dev/null ; then
954
	:
955
    else
956
	vnc_tls="no"
957
    fi
958
fi
959

    
960
##########################################
961
# VNC SASL detection
962
if test "$vnc_sasl" = "yes" ; then
963
cat > $TMPC <<EOF
964
#include <sasl/sasl.h>
965
#include <stdio.h>
966
int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
967
EOF
968
    # Assuming Cyrus-SASL installed in /usr prefix
969
    vnc_sasl_cflags=""
970
    vnc_sasl_libs="-lsasl2"
971
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
972
           $vnc_sasl_libs 2> /dev/null > /dev/null ; then
973
	:
974
    else
975
	vnc_sasl="no"
976
    fi
977
fi
978

    
979
##########################################
980
# fnmatch() probe, used for ACL routines
981
fnmatch="no"
982
cat > $TMPC << EOF
983
#include <fnmatch.h>
984
int main(void)
985
{
986
    fnmatch("foo", "foo", 0);
987
    return 0;
988
}
989
EOF
990
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
991
   fnmatch="yes"
992
fi
993

    
994
##########################################
995
# vde libraries probe
996
if test "$vde" = "yes" ; then
997
  cat > $TMPC << EOF
998
#include <libvdeplug.h>
999
int main(void)
1000
{
1001
    struct vde_open_args a = {0, 0, 0};
1002
    vde_open("", "", &a);
1003
    return 0;
1004
}
1005
EOF
1006
    if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
1007
        :
1008
    else
1009
        vde="no"
1010
    fi
1011
fi
1012

    
1013
##########################################
1014
# Sound support libraries probe
1015

    
1016
audio_drv_probe()
1017
{
1018
    drv=$1
1019
    hdr=$2
1020
    lib=$3
1021
    exp=$4
1022
    cfl=$5
1023
        cat > $TMPC << EOF
1024
#include <$hdr>
1025
int main(void) { $exp }
1026
EOF
1027
    if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
1028
        :
1029
    else
1030
        echo
1031
        echo "Error: $drv check failed"
1032
        echo "Make sure to have the $drv libs and headers installed."
1033
        echo
1034
        exit 1
1035
    fi
1036
}
1037

    
1038
audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1039
for drv in $audio_drv_list; do
1040
    case $drv in
1041
    alsa)
1042
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1043
        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1044
    ;;
1045

    
1046
    fmod)
1047
    if test -z $fmod_lib || test -z $fmod_inc; then
1048
        echo
1049
        echo "Error: You must specify path to FMOD library and headers"
1050
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1051
        echo
1052
        exit 1
1053
    fi
1054
    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1055
    ;;
1056

    
1057
    esd)
1058
    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1059
    ;;
1060

    
1061
    pa)
1062
    audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1063
        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1064
    ;;
1065

    
1066
    oss|sdl|core|wav|dsound)
1067
    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1068
    ;;
1069

    
1070
    *)
1071
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1072
        echo
1073
        echo "Error: Unknown driver '$drv' selected"
1074
        echo "Possible drivers are: $audio_possible_drivers"
1075
        echo
1076
        exit 1
1077
    }
1078
    ;;
1079
    esac
1080
done
1081

    
1082
##########################################
1083
# BrlAPI probe
1084

    
1085
if test -z "$brlapi" ; then
1086
    brlapi=no
1087
cat > $TMPC << EOF
1088
#include <brlapi.h>
1089
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1090
EOF
1091
    if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
1092
	    brlapi=yes
1093
    fi # brlapi compile test
1094
fi # -z $brlapi
1095

    
1096
##########################################
1097
# curses probe
1098

    
1099
if test "$curses" = "yes" ; then
1100
  curses=no
1101
  ncurses=no
1102
  cat > $TMPC << EOF
1103
#include <curses.h>
1104
#ifdef __OpenBSD__
1105
#define resize_term resizeterm
1106
#endif
1107
int main(void) { resize_term(0, 0); return curses_version(); }
1108
EOF
1109
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev/null 2> /dev/null ; then
1110
    curses=yes
1111
    ncurses=yes
1112
  elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
1113
    curses=yes
1114
  fi
1115
fi # test "$curses"
1116

    
1117
##########################################
1118
# curl probe
1119

    
1120
if test "$curl" = "yes" ; then
1121
  curl=no
1122
  cat > $TMPC << EOF
1123
#include <curl/curl.h>
1124
int main(void) { return curl_easy_init(); }
1125
EOF
1126
  curl_libs=`curl-config --libs 2>/dev/null`
1127
 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1128
    curl=yes
1129
  fi
1130
fi # test "$curl"
1131

    
1132
##########################################
1133
# bluez support probe
1134
if test "$bluez" = "yes" ; then
1135
  `pkg-config bluez 2> /dev/null` || bluez="no"
1136
fi
1137
if test "$bluez" = "yes" ; then
1138
  cat > $TMPC << EOF
1139
#include <bluetooth/bluetooth.h>
1140
int main(void) { return bt_error(0); }
1141
EOF
1142
  bluez_cflags=`pkg-config --cflags bluez 2> /dev/null`
1143
  bluez_libs=`pkg-config --libs bluez 2> /dev/null`
1144
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1145
      $bluez_libs > /dev/null 2> /dev/null ; then
1146
    :
1147
  else
1148
    bluez="no"
1149
  fi
1150
fi
1151

    
1152
##########################################
1153
# kvm probe
1154
if test "$kvm" = "yes" ; then
1155
    cat > $TMPC <<EOF
1156
#include <linux/kvm.h>
1157
#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1158
#error Invalid KVM version
1159
#endif
1160
#if !defined(KVM_CAP_USER_MEMORY)
1161
#error Missing KVM capability KVM_CAP_USER_MEMORY
1162
#endif
1163
#if !defined(KVM_CAP_SET_TSS_ADDR)
1164
#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1165
#endif
1166
#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1167
#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1168
#endif
1169
int main(void) { return 0; }
1170
EOF
1171
  if test "$kerneldir" != "" ; then
1172
      kvm_cflags=-I"$kerneldir"/include
1173
      if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1174
         -a -d "$kerneldir/arch/x86/include" ; then
1175
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1176
	elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1177
	    kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1178
        elif test -d "$kerneldir/arch/$cpu/include" ; then
1179
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1180
      fi
1181
  else
1182
      kvm_cflags=""
1183
  fi
1184
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1185
      > /dev/null 2>/dev/null ; then
1186
    :
1187
  else
1188
    kvm="no";
1189
    if [ -x "`which awk 2>/dev/null`" ] && \
1190
       [ -x "`which grep 2>/dev/null`" ]; then
1191
      kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1192
	| grep "error: " \
1193
	| awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1194
      if test "$kvmerr" != "" ; then
1195
        kvm="no - (${kvmerr})\n\
1196
    NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1197
recent kvm-kmod from http://sourceforge.net/projects/kvm."
1198
      fi
1199
    fi
1200
  fi
1201
fi
1202

    
1203
##########################################
1204
# pthread probe
1205
PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
1206
PTHREADLIBS=""
1207

    
1208
if test "$pthread" = yes; then
1209
  pthread=no
1210
cat > $TMPC << EOF
1211
#include <pthread.h>
1212
int main(void) { pthread_create(0,0,0,0); return 0; }
1213
EOF
1214
  for pthread_lib in $PTHREADLIBS_LIST; do
1215
    if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev/null > /dev/null ; then
1216
      pthread=yes
1217
      PTHREADLIBS="$pthread_lib"
1218
      break
1219
    fi
1220
  done
1221
fi
1222

    
1223
if test "$pthread" = no; then
1224
   aio=no
1225
   io_thread=no
1226
fi
1227

    
1228
##########################################
1229
# iovec probe
1230
cat > $TMPC <<EOF
1231
#include <sys/types.h>
1232
#include <sys/uio.h>
1233
#include <unistd.h>
1234
int main(void) { struct iovec iov; return 0; }
1235
EOF
1236
iovec=no
1237
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1238
  iovec=yes
1239
fi
1240

    
1241
##########################################
1242
# preadv probe
1243
cat > $TMPC <<EOF
1244
#include <sys/types.h>
1245
#include <sys/uio.h>
1246
#include <unistd.h>
1247
int main(void) { preadv; }
1248
EOF
1249
preadv=no
1250
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1251
  preadv=yes
1252
fi
1253

    
1254
##########################################
1255
# fdt probe
1256
if test "$fdt" = "yes" ; then
1257
    fdt=no
1258
    cat > $TMPC << EOF
1259
int main(void) { return 0; }
1260
EOF
1261
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then
1262
    fdt=yes
1263
  fi
1264
fi
1265

    
1266
#
1267
# Check for xxxat() functions when we are building linux-user
1268
# emulator.  This is done because older glibc versions don't
1269
# have syscall stubs for these implemented.
1270
#
1271
atfile=no
1272
cat > $TMPC << EOF
1273
#define _ATFILE_SOURCE
1274
#include <sys/types.h>
1275
#include <fcntl.h>
1276
#include <unistd.h>
1277

    
1278
int
1279
main(void)
1280
{
1281
	/* try to unlink nonexisting file */
1282
	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1283
}
1284
EOF
1285
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1286
  atfile=yes
1287
fi
1288

    
1289
# Check for inotify functions when we are building linux-user
1290
# emulator.  This is done because older glibc versions don't
1291
# have syscall stubs for these implemented.  In that case we
1292
# don't provide them even if kernel supports them.
1293
#
1294
inotify=no
1295
cat > $TMPC << EOF
1296
#include <sys/inotify.h>
1297

    
1298
int
1299
main(void)
1300
{
1301
	/* try to start inotify */
1302
	return inotify_init();
1303
}
1304
EOF
1305
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1306
  inotify=yes
1307
fi
1308

    
1309
# check if utimensat and futimens are supported
1310
utimens=no
1311
cat > $TMPC << EOF
1312
#define _ATFILE_SOURCE
1313
#define _GNU_SOURCE
1314
#include <stddef.h>
1315
#include <fcntl.h>
1316

    
1317
int main(void)
1318
{
1319
    utimensat(AT_FDCWD, "foo", NULL, 0);
1320
    futimens(0, NULL);
1321
    return 0;
1322
}
1323
EOF
1324
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1325
  utimens=yes
1326
fi
1327

    
1328
# check if pipe2 is there
1329
pipe2=no
1330
cat > $TMPC << EOF
1331
#define _GNU_SOURCE
1332
#include <unistd.h>
1333
#include <fcntl.h>
1334

    
1335
int main(void)
1336
{
1337
    int pipefd[2];
1338
    pipe2(pipefd, O_CLOEXEC);
1339
    return 0;
1340
}
1341
EOF
1342
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1343
  pipe2=yes
1344
fi
1345

    
1346
# check if tee/splice is there. vmsplice was added same time.
1347
splice=no
1348
cat > $TMPC << EOF
1349
#define _GNU_SOURCE
1350
#include <unistd.h>
1351
#include <fcntl.h>
1352
#include <limits.h>
1353

    
1354
int main(void)
1355
{
1356
    int len, fd;
1357
    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1358
    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1359
    return 0;
1360
}
1361
EOF
1362
if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1363
  splice=yes
1364
fi
1365

    
1366
# Check if tools are available to build documentation.
1367
if test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then
1368
  build_docs="no"
1369
fi
1370

    
1371
##########################################
1372
# Do we need librt
1373
CLOCKLIBS=""
1374
cat > $TMPC <<EOF
1375
#include <signal.h>
1376
#include <time.h>
1377
int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1378
EOF
1379

    
1380
rt=no
1381
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1382
  :
1383
elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1384
  rt=yes
1385
fi
1386

    
1387
if test "$rt" = "yes" ; then
1388
  CLOCKLIBS="-lrt"
1389
fi
1390

    
1391
if test "$mingw32" = "yes" ; then
1392
  if test -z "$prefix" ; then
1393
      prefix="c:\\\\Program Files\\\\Qemu"
1394
  fi
1395
  mansuffix=""
1396
  datasuffix=""
1397
  docsuffix=""
1398
  binsuffix=""
1399
else
1400
  if test -z "$prefix" ; then
1401
      prefix="/usr/local"
1402
  fi
1403
  mansuffix="/share/man"
1404
  datasuffix="/share/qemu"
1405
  docsuffix="/share/doc/qemu"
1406
  binsuffix="/bin"
1407
fi
1408

    
1409
echo "Install prefix    $prefix"
1410
echo "BIOS directory    $prefix$datasuffix"
1411
echo "binary directory  $prefix$binsuffix"
1412
if test "$mingw32" = "no" ; then
1413
echo "Manual directory  $prefix$mansuffix"
1414
echo "ELF interp prefix $interp_prefix"
1415
fi
1416
echo "Source path       $source_path"
1417
echo "C compiler        $cc"
1418
echo "Host C compiler   $host_cc"
1419
echo "ARCH_CFLAGS       $ARCH_CFLAGS"
1420
echo "make              $make"
1421
echo "install           $install"
1422
echo "host CPU          $cpu"
1423
echo "host big endian   $bigendian"
1424
echo "target list       $target_list"
1425
echo "tcg debug enabled $debug_tcg"
1426
echo "gprof enabled     $gprof"
1427
echo "sparse enabled    $sparse"
1428
echo "strip binaries    $strip_opt"
1429
echo "profiler          $profiler"
1430
echo "static build      $static"
1431
echo "-Werror enabled   $werror"
1432
if test "$darwin" = "yes" ; then
1433
    echo "Cocoa support     $cocoa"
1434
fi
1435
echo "SDL support       $sdl"
1436
if test "$sdl" != "no" ; then
1437
    echo "SDL static link   $sdl_static"
1438
fi
1439
echo "curses support    $curses"
1440
echo "curl support      $curl"
1441
echo "mingw32 support   $mingw32"
1442
echo "Audio drivers     $audio_drv_list"
1443
echo "Extra audio cards $audio_card_list"
1444
echo "Mixer emulation   $mixemu"
1445
echo "VNC TLS support   $vnc_tls"
1446
if test "$vnc_tls" = "yes" ; then
1447
    echo "    TLS CFLAGS    $vnc_tls_cflags"
1448
    echo "    TLS LIBS      $vnc_tls_libs"
1449
fi
1450
echo "VNC SASL support  $vnc_sasl"
1451
if test "$vnc_sasl" = "yes" ; then
1452
    echo "    SASL CFLAGS    $vnc_sasl_cflags"
1453
    echo "    SASL LIBS      $vnc_sasl_libs"
1454
fi
1455
if test -n "$sparc_cpu"; then
1456
    echo "Target Sparc Arch $sparc_cpu"
1457
fi
1458
echo "kqemu support     $kqemu"
1459
echo "xen support       $xen"
1460
echo "brlapi support    $brlapi"
1461
echo "Documentation     $build_docs"
1462
[ ! -z "$uname_release" ] && \
1463
echo "uname -r          $uname_release"
1464
echo "NPTL support      $nptl"
1465
echo "GUEST_BASE        $guest_base"
1466
echo "vde support       $vde"
1467
echo "AIO support       $aio"
1468
echo "IO thread         $io_thread"
1469
echo "Install blobs     $blobs"
1470
echo -e "KVM support       $kvm"
1471
echo "fdt support       $fdt"
1472
echo "preadv support    $preadv"
1473

    
1474
if test $sdl_too_old = "yes"; then
1475
echo "-> Your SDL version is too old - please upgrade to have SDL support"
1476
fi
1477
#if test "$sdl_static" = "no"; then
1478
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1479
#fi
1480

    
1481
config_host_mak="config-host.mak"
1482
config_host_h="config-host.h"
1483

    
1484
#echo "Creating $config_host_mak and $config_host_h"
1485

    
1486
test -f $config_host_h && mv $config_host_h ${config_host_h}~
1487

    
1488
echo "# Automatically generated by configure - do not modify" > $config_host_mak
1489
printf "# Configured with:" >> $config_host_mak
1490
printf " '%s'" "$0" "$@" >> $config_host_mak
1491
echo >> $config_host_mak
1492
echo "/* Automatically generated by configure - do not modify */" > $config_host_h
1493

    
1494
echo "prefix=$prefix" >> $config_host_mak
1495
echo "bindir=\${prefix}$binsuffix" >> $config_host_mak
1496
echo "mandir=\${prefix}$mansuffix" >> $config_host_mak
1497
echo "datadir=\${prefix}$datasuffix" >> $config_host_mak
1498
echo "docdir=\${prefix}$docsuffix" >> $config_host_mak
1499
echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_host_h
1500
echo "MAKE=$make" >> $config_host_mak
1501
echo "INSTALL=$install" >> $config_host_mak
1502
echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
1503
echo "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
1504
echo "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
1505
echo "CC=$cc" >> $config_host_mak
1506
echo "HOST_CC=$host_cc" >> $config_host_mak
1507
echo "AR=$ar" >> $config_host_mak
1508
echo "OBJCOPY=$objcopy" >> $config_host_mak
1509
echo "LD=$ld" >> $config_host_mak
1510
echo "CFLAGS=$CFLAGS $OS_CFLAGS $ARCH_CFLAGS $EXTRA_CFLAGS" >> $config_host_mak
1511
echo "LDFLAGS=$LDFLAGS $OS_LDFLAGS $ARCH_LDFLAGS $EXTRA_LDFLAGS" >> $config_host_mak
1512
echo "EXESUF=$EXESUF" >> $config_host_mak
1513
echo "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak
1514
echo "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak
1515
case "$cpu" in
1516
  i386|x86_64|alpha|cris|hppa|ia64|m68k|microbaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64)
1517
    ARCH=$cpu
1518
  ;;
1519
  armv4b|arm4l)
1520
    ARCH=arm
1521
  ;;
1522
  *)
1523
    echo "Unsupported CPU = $cpu"
1524
    exit 1
1525
  ;;
1526
esac
1527
echo "ARCH=$ARCH" >> $config_host_mak
1528
arch_name=`echo $ARCH | tr '[:lower:]' '[:upper:]'`
1529
echo "#define HOST_$arch_name 1" >> $config_host_h
1530

    
1531
if test "$debug_tcg" = "yes" ; then
1532
  echo "#define DEBUG_TCG 1" >> $config_host_h
1533
fi
1534
if test "$debug" = "yes" ; then
1535
  echo "#define DEBUG_EXEC 1" >> $config_host_h
1536
fi
1537
if test "$sparse" = "yes" ; then
1538
  echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
1539
  echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
1540
  echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
1541
fi
1542
if test "$strip_opt" = "yes" ; then
1543
  echo "STRIP_OPT=-s" >> $config_host_mak
1544
fi
1545
if test "$bigendian" = "yes" ; then
1546
  echo "WORDS_BIGENDIAN=yes" >> $config_host_mak
1547
  echo "#define WORDS_BIGENDIAN 1" >> $config_host_h
1548
fi
1549
echo "#define HOST_LONG_BITS $hostlongbits" >> $config_host_h
1550
if test "$mingw32" = "yes" ; then
1551
  echo "CONFIG_WIN32=y" >> $config_host_mak
1552
  echo "#define CONFIG_WIN32 1" >> $config_host_h
1553
else
1554
  cat > $TMPC << EOF
1555
#include <byteswap.h>
1556
int main(void) { return bswap_32(0); }
1557
EOF
1558
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1559
    echo "#define HAVE_BYTESWAP_H 1" >> $config_host_h
1560
  fi
1561
  cat > $TMPC << EOF
1562
#include <sys/endian.h>
1563
#include <sys/types.h>
1564
#include <machine/bswap.h>
1565
int main(void) { return bswap32(0); }
1566
EOF
1567
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1568
    echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_host_h
1569
  fi
1570
fi
1571

    
1572
if [ "$openbsd" = "yes" ] ; then
1573
  echo "#define ENOTSUP 4096" >> $config_host_h
1574
fi
1575

    
1576
if test "$darwin" = "yes" ; then
1577
  echo "CONFIG_DARWIN=y" >> $config_host_mak
1578
  echo "#define CONFIG_DARWIN 1" >> $config_host_h
1579
fi
1580

    
1581
if test "$aix" = "yes" ; then
1582
  echo "CONFIG_AIX=y" >> $config_host_mak
1583
  echo "#define CONFIG_AIX 1" >> $config_host_h
1584
fi
1585

    
1586
if test "$solaris" = "yes" ; then
1587
  echo "CONFIG_SOLARIS=y" >> $config_host_mak
1588
  echo "#define HOST_SOLARIS $solarisrev" >> $config_host_h
1589
  if test "$needs_libsunmath" = "yes" ; then
1590
    echo "NEEDS_LIBSUNMATH=yes" >> $config_host_mak
1591
    echo "#define NEEDS_LIBSUNMATH 1" >> $config_host_h
1592
  fi
1593
fi
1594
if test -n "$sparc_cpu"; then
1595
  echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_host_mak
1596
  echo "#define __sparc_${sparc_cpu}__ 1" >> $config_host_h
1597
fi
1598
if test "$gprof" = "yes" ; then
1599
  echo "TARGET_GPROF=yes" >> $config_host_mak
1600
  echo "#define HAVE_GPROF 1" >> $config_host_h
1601
fi
1602
if test "$static" = "yes" ; then
1603
  echo "CONFIG_STATIC=y" >> $config_host_mak
1604
  echo "#define CONFIG_STATIC 1" >> $config_host_h
1605
fi
1606
if test $profiler = "yes" ; then
1607
  echo "#define CONFIG_PROFILER 1" >> $config_host_h
1608
fi
1609
if test "$slirp" = "yes" ; then
1610
  echo "CONFIG_SLIRP=y" >> $config_host_mak
1611
  echo "#define CONFIG_SLIRP 1" >> $config_host_h
1612
fi
1613
if test "$vde" = "yes" ; then
1614
  echo "CONFIG_VDE=y" >> $config_host_mak
1615
  echo "#define CONFIG_VDE 1" >> $config_host_h
1616
  echo "VDE_LIBS=-lvdeplug" >> $config_host_mak
1617
fi
1618
for card in $audio_card_list; do
1619
    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1620
    echo "$def=y" >> $config_host_mak
1621
    echo "#define $def 1" >> $config_host_h
1622
done
1623
echo "#define AUDIO_DRIVERS \\" >> $config_host_h
1624
for drv in $audio_drv_list; do
1625
    echo "    &${drv}_audio_driver, \\" >>$config_host_h
1626
    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1627
    echo "$def=y" >> $config_host_mak
1628
    if test "$drv" = "fmod"; then
1629
        echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_host_mak
1630
        echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_host_mak
1631
    elif test "$drv" = "oss"; then
1632
        echo "CONFIG_OSS_LIB=$oss_lib" >> $config_host_mak
1633
    fi
1634
done
1635
echo "" >>$config_host_h
1636
if test "$mixemu" = "yes" ; then
1637
  echo "CONFIG_MIXEMU=y" >> $config_host_mak
1638
  echo "#define CONFIG_MIXEMU 1" >> $config_host_h
1639
fi
1640
if test "$vnc_tls" = "yes" ; then
1641
  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
1642
  echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
1643
  echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_host_mak
1644
  echo "#define CONFIG_VNC_TLS 1" >> $config_host_h
1645
fi
1646
if test "$vnc_sasl" = "yes" ; then
1647
  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
1648
  echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
1649
  echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak
1650
  echo "#define CONFIG_VNC_SASL 1" >> $config_host_h
1651
fi
1652
if test "$fnmatch" = "yes" ; then
1653
  echo "#define HAVE_FNMATCH_H 1" >> $config_host_h
1654
fi
1655
qemu_version=`head $source_path/VERSION`
1656
echo "VERSION=$qemu_version" >>$config_host_mak
1657
echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_host_h
1658

    
1659
echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_host_h
1660

    
1661
echo "SRC_PATH=$source_path" >> $config_host_mak
1662
if [ "$source_path_used" = "yes" ]; then
1663
  echo "VPATH=$source_path" >> $config_host_mak
1664
fi
1665
echo "TARGET_DIRS=$target_list" >> $config_host_mak
1666
if [ "$build_docs" = "yes" ] ; then
1667
  echo "BUILD_DOCS=yes" >> $config_host_mak
1668
fi
1669
if test "$static" = "yes"; then
1670
  sdl1=$sdl_static
1671
else
1672
  sdl1=$sdl
1673
fi
1674
if test "$sdl1" = "yes" ; then
1675
  echo "#define CONFIG_SDL 1" >> $config_host_h
1676
  echo "CONFIG_SDL=y" >> $config_host_mak
1677
  if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1678
    echo "SDL_LIBS=$sdl_static_libs" >> $config_host_mak
1679
  elif test "$sdl_x11" = "yes" ; then
1680
    echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_host_mak
1681
  else
1682
    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_host_mak
1683
  fi
1684
  if [ "${aa}" = "yes" ] ; then
1685
    echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_host_mak
1686
  else
1687
    echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_host_mak
1688
  fi
1689
fi
1690
if test "$cocoa" = "yes" ; then
1691
  echo "#define CONFIG_COCOA 1" >> $config_host_h
1692
  echo "CONFIG_COCOA=y" >> $config_host_mak
1693
fi
1694
if test "$curses" = "yes" ; then
1695
  echo "#define CONFIG_CURSES 1" >> $config_host_h
1696
  echo "CONFIG_CURSES=y" >> $config_host_mak
1697
  if test "$ncurses" = "yes" ; then
1698
    echo "CURSES_LIBS=-lncurses" >> $config_host_mak
1699
  else
1700
    echo "CURSES_LIBS=-lcurses" >> $config_host_mak
1701
  fi
1702
fi
1703
if test "$atfile" = "yes" ; then
1704
  echo "#define CONFIG_ATFILE 1" >> $config_host_h
1705
fi
1706
if test "$utimens" = "yes" ; then
1707
  echo "#define CONFIG_UTIMENSAT 1" >> $config_host_h
1708
fi
1709
if test "$pipe2" = "yes" ; then
1710
  echo "#define CONFIG_PIPE2 1" >> $config_host_h
1711
fi
1712
if test "$splice" = "yes" ; then
1713
  echo "#define CONFIG_SPLICE 1" >> $config_host_h
1714
fi
1715
if test "$inotify" = "yes" ; then
1716
  echo "#define CONFIG_INOTIFY 1" >> $config_host_h
1717
fi
1718
if test "$curl" = "yes" ; then
1719
  echo "CONFIG_CURL=y" >> $config_host_mak
1720
  echo "CURL_LIBS=$curl_libs" >> $config_host_mak
1721
  echo "#define CONFIG_CURL 1" >> $config_host_h
1722
fi
1723
if test "$brlapi" = "yes" ; then
1724
  echo "CONFIG_BRLAPI=y" >> $config_host_mak
1725
  echo "#define CONFIG_BRLAPI 1" >> $config_host_h
1726
  echo "BRLAPI_LIBS=-lbrlapi" >> $config_host_mak
1727
fi
1728
if test "$bluez" = "yes" ; then
1729
  echo "CONFIG_BLUEZ=y" >> $config_host_mak
1730
  echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
1731
  echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_host_mak
1732
  echo "#define CONFIG_BLUEZ 1" >> $config_host_h
1733
fi
1734
if test "$xen" = "yes" ; then
1735
  echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_host_mak
1736
fi
1737
if test "$aio" = "yes" ; then
1738
  echo "#define CONFIG_AIO 1" >> $config_host_h
1739
  echo "CONFIG_AIO=y" >> $config_host_mak
1740
fi
1741
if test "$io_thread" = "yes" ; then
1742
  echo "CONFIG_IOTHREAD=y" >> $config_host_mak
1743
  echo "#define CONFIG_IOTHREAD 1" >> $config_host_h
1744
fi
1745
if test "$blobs" = "yes" ; then
1746
  echo "INSTALL_BLOBS=yes" >> $config_host_mak
1747
fi
1748
if test "$iovec" = "yes" ; then
1749
  echo "#define HAVE_IOVEC 1" >> $config_host_h
1750
fi
1751
if test "$preadv" = "yes" ; then
1752
  echo "#define HAVE_PREADV 1" >> $config_host_h
1753
fi
1754
if test "$fdt" = "yes" ; then
1755
  echo "#define HAVE_FDT 1" >> $config_host_h
1756
  echo "FDT_LIBS=-lfdt" >> $config_host_mak
1757
fi
1758

    
1759
# XXX: suppress that
1760
if [ "$bsd" = "yes" ] ; then
1761
  echo "#define O_LARGEFILE 0" >> $config_host_h
1762
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_host_h
1763
  echo "#define HOST_BSD 1" >> $config_host_h
1764
fi
1765

    
1766
echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_host_h
1767

    
1768
# USB host support
1769
case "$usb" in
1770
linux)
1771
  echo "HOST_USB=linux" >> $config_host_mak
1772
;;
1773
bsd)
1774
  echo "HOST_USB=bsd" >> $config_host_mak
1775
;;
1776
*)
1777
  echo "HOST_USB=stub" >> $config_host_mak
1778
;;
1779
esac
1780

    
1781
# Determine what linker flags to use to force archive inclusion
1782
check_linker_flags()
1783
{
1784
    w2=
1785
    if test "$2" ; then
1786
	w2=-Wl,$2
1787
    fi
1788
    $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev/null 2>/dev/null
1789
}
1790

    
1791
cat > $TMPC << EOF
1792
int main(void) { }
1793
EOF
1794
if check_linker_flags --whole-archive --no-whole-archive ; then
1795
    # GNU ld
1796
    echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_host_mak
1797
    echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_host_mak
1798
elif check_linker_flags -z,allextract -z,defaultextract ; then
1799
    # Solaris ld
1800
    echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_host_mak
1801
    echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_host_mak
1802
elif check_linker_flags -all_load ; then
1803
    # Mac OS X
1804
    echo "ARLIBS_BEGIN=-all_load" >> $config_host_mak
1805
    echo "ARLIBS_END=" >> $config_host_mak
1806
else
1807
    echo "Error: your linker does not support --whole-archive or -z."
1808
    echo "Please report to qemu-devel@nongnu.org"
1809
    exit 1
1810
fi
1811

    
1812
if test "$xen" = "yes" ;
1813
    then
1814
    echo "CONFIG_XEN=y" >> $config_host_mak
1815
fi
1816

    
1817
tools=
1818
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1819
  tools="qemu-img\$(EXESUF) $tools"
1820
  if [ "$linux" = "yes" ] ; then
1821
      tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1822
  fi
1823
fi
1824
echo "TOOLS=$tools" >> $config_host_mak
1825

    
1826
roms=
1827
if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then
1828
  roms="pc-bios/optionrom"
1829
fi
1830
echo "ROMS=$roms" >> $config_host_mak
1831

    
1832
if test -f ${config_host_h}~ ; then
1833
  if cmp -s $config_host_h ${config_host_h}~ ; then
1834
    mv ${config_host_h}~ $config_host_h
1835
  else
1836
    rm ${config_host_h}~
1837
  fi
1838
fi
1839

    
1840
for target in $target_list; do
1841
target_dir="$target"
1842
config_mak=$target_dir/config.mak
1843
config_h=$target_dir/config.h
1844
target_arch2=`echo $target | cut -d '-' -f 1`
1845
target_bigendian="no"
1846
case "$target_arch2" in
1847
  armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus)
1848
  target_bigendian=yes
1849
  ;;
1850
esac
1851
target_softmmu="no"
1852
target_user_only="no"
1853
target_linux_user="no"
1854
target_darwin_user="no"
1855
target_bsd_user="no"
1856
case "$target" in
1857
  ${target_arch2}-softmmu)
1858
    target_softmmu="yes"
1859
    ;;
1860
  ${target_arch2}-linux-user)
1861
    target_user_only="yes"
1862
    target_linux_user="yes"
1863
    ;;
1864
  ${target_arch2}-darwin-user)
1865
    target_user_only="yes"
1866
    target_darwin_user="yes"
1867
    ;;
1868
  ${target_arch2}-bsd-user)
1869
    target_user_only="yes"
1870
    target_bsd_user="yes"
1871
    ;;
1872
  *)
1873
    echo "ERROR: Target '$target' not recognised"
1874
    exit 1
1875
    ;;
1876
esac
1877

    
1878
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1879

    
1880
test -f $config_h && mv $config_h ${config_h}~
1881

    
1882
mkdir -p $target_dir
1883
mkdir -p $target_dir/fpu
1884
mkdir -p $target_dir/tcg
1885
if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1886
  mkdir -p $target_dir/nwfpe
1887
fi
1888

    
1889
#
1890
# don't use ln -sf as not all "ln -sf" over write the file/link
1891
#
1892
rm -f $target_dir/Makefile
1893
ln -s $source_path/Makefile.target $target_dir/Makefile
1894

    
1895

    
1896
echo "# Automatically generated by configure - do not modify" > $config_mak
1897

    
1898
echo "include ../config-host.mak" >> $config_mak
1899

    
1900
bflt="no"
1901
elfload32="no"
1902
target_nptl="no"
1903
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
1904
echo "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak
1905
gdb_xml_files=""
1906

    
1907
TARGET_ARCH="$target_arch2"
1908
TARGET_BASE_ARCH=""
1909
TARGET_ABI_DIR=""
1910

    
1911
case "$target_arch2" in
1912
  i386)
1913
    target_phys_bits=32
1914
  ;;
1915
  x86_64)
1916
    TARGET_BASE_ARCH=i386
1917
    target_phys_bits=64
1918
  ;;
1919
  alpha)
1920
    target_phys_bits=64
1921
  ;;
1922
  arm|armeb)
1923
    TARGET_ARCH=arm
1924
    bflt="yes"
1925
    target_nptl="yes"
1926
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1927
    target_phys_bits=32
1928
  ;;
1929
  cris)
1930
    target_nptl="yes"
1931
    target_phys_bits=32
1932
  ;;
1933
  m68k)
1934
    bflt="yes"
1935
    gdb_xml_files="cf-core.xml cf-fp.xml"
1936
    target_phys_bits=32
1937
  ;;
1938
  microblaze)
1939
    bflt="yes"
1940
    target_nptl="yes"
1941
    target_phys_bits=32
1942
  ;;
1943
  mips|mipsel)
1944
    TARGET_ARCH=mips
1945
    echo "TARGET_ABI_MIPSO32=y" >> $config_mak
1946
    target_nptl="yes"
1947
    target_phys_bits=64
1948
  ;;
1949
  mipsn32|mipsn32el)
1950
    TARGET_ARCH=mipsn32
1951
    TARGET_BASE_ARCH=mips
1952
    echo "TARGET_ABI_MIPSN32=y" >> $config_mak
1953
    target_phys_bits=64
1954
  ;;
1955
  mips64|mips64el)
1956
    TARGET_ARCH=mips64
1957
    TARGET_BASE_ARCH=mips
1958
    echo "TARGET_ABI_MIPSN64=y" >> $config_mak
1959
    target_phys_bits=64
1960
  ;;
1961
  ppc)
1962
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1963
    target_phys_bits=32
1964
  ;;
1965
  ppcemb)
1966
    TARGET_BASE_ARCH=ppc
1967
    TARGET_ABI_DIR=ppc
1968
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1969
    target_phys_bits=64
1970
  ;;
1971
  ppc64)
1972
    TARGET_BASE_ARCH=ppc
1973
    TARGET_ABI_DIR=ppc
1974
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1975
    target_phys_bits=64
1976
  ;;
1977
  ppc64abi32)
1978
    TARGET_ARCH=ppc64
1979
    TARGET_BASE_ARCH=ppc
1980
    TARGET_ABI_DIR=ppc
1981
    echo "TARGET_ABI32=y" >> $config_mak
1982
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1983
    target_phys_bits=64
1984
  ;;
1985
  sh4|sh4eb)
1986
    TARGET_ARCH=sh4
1987
    bflt="yes"
1988
    target_nptl="yes"
1989
    target_phys_bits=32
1990
  ;;
1991
  sparc)
1992
    target_phys_bits=64
1993
  ;;
1994
  sparc64)
1995
    TARGET_BASE_ARCH=sparc
1996
    elfload32="yes"
1997
    target_phys_bits=64
1998
  ;;
1999
  sparc32plus)
2000
    TARGET_ARCH=sparc64
2001
    TARGET_BASE_ARCH=sparc
2002
    TARGET_ABI_DIR=sparc
2003
    echo "TARGET_ABI32=y" >> $config_mak
2004
    target_phys_bits=64
2005
  ;;
2006
  *)
2007
    echo "Unsupported target CPU"
2008
    exit 1
2009
  ;;
2010
esac
2011
echo "TARGET_ARCH=$TARGET_ARCH" >> $config_mak
2012
echo "TARGET_ARCH2=$target_arch2" >> $config_mak
2013
# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
2014
if [ "$TARGET_BASE_ARCH" = "" ]; then
2015
  TARGET_BASE_ARCH=$TARGET_ARCH
2016
fi
2017
echo "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak
2018
if [ "$TARGET_ABI_DIR" = "" ]; then
2019
  TARGET_ABI_DIR=$TARGET_ARCH
2020
fi
2021
echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak
2022
if [ $target_phys_bits -lt $hostlongbits ] ; then
2023
  target_phys_bits=$hostlongbits
2024
fi
2025
case "$target_arch2" in
2026
  i386|x86_64)
2027
    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
2028
      echo "CONFIG_XEN=y" >> $config_mak
2029
    fi
2030
    if test $kqemu = "yes" -a "$target_softmmu" = "yes"
2031
    then
2032
      echo "CONFIG_KQEMU=y" >> $config_mak
2033
    fi
2034
esac
2035
case "$target_arch2" in
2036
  i386|x86_64|ppcemb)
2037
    # Make sure the target and host cpus are compatible
2038
    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
2039
      \( "$target_arch2" = "$cpu" -o \
2040
      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
2041
      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
2042
      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
2043
      echo "CONFIG_KVM=y" >> $config_mak
2044
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2045
    fi
2046
esac
2047
echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2048
echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak
2049
echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
2050
if test "$target_bigendian" = "yes" ; then
2051
  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak
2052
fi
2053
if test "$target_softmmu" = "yes" ; then
2054
  echo "CONFIG_SOFTMMU=y" >> $config_mak
2055
fi
2056
if test "$target_user_only" = "yes" ; then
2057
  echo "CONFIG_USER_ONLY=y" >> $config_mak
2058
fi
2059
if test "$target_linux_user" = "yes" ; then
2060
  echo "CONFIG_LINUX_USER=y" >> $config_mak
2061
fi
2062
if test "$target_darwin_user" = "yes" ; then
2063
  echo "CONFIG_DARWIN_USER=y" >> $config_mak
2064
fi
2065
list=""
2066
if test ! -z "$gdb_xml_files" ; then
2067
  for x in $gdb_xml_files; do
2068
    list="$list $source_path/gdb-xml/$x"
2069
  done
2070
fi
2071
echo "TARGET_XML_FILES=$list" >> $config_mak
2072

    
2073
case "$target_arch2" in
2074
  arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus)
2075
    echo "CONFIG_SOFTFLOAT=y" >> $config_mak
2076
    ;;
2077
esac
2078

    
2079
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
2080
  echo "TARGET_HAS_BFLT=y" >> $config_mak
2081
fi
2082
if test "$target_user_only" = "yes" \
2083
        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2084
  echo "USE_NPTL=y" >> $config_mak
2085
fi
2086
# 32 bit ELF loader in addition to native 64 bit loader?
2087
if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
2088
  echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
2089
fi
2090
if test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
2091
  echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak
2092
fi
2093
if test "$target_bsd_user" = "yes" ; then
2094
  echo "CONFIG_BSD_USER=y" >> $config_mak
2095
fi
2096

    
2097
$source_path/create_config < $config_mak > $config_h
2098

    
2099
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
2100

    
2101
done # for target in $targets
2102

    
2103
# build tree in object directory if source path is different from current one
2104
if test "$source_path_used" = "yes" ; then
2105
    DIRS="tests tests/cris slirp audio block pc-bios/optionrom"
2106
    FILES="Makefile tests/Makefile"
2107
    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
2108
    FILES="$FILES tests/test-mmap.c"
2109
    FILES="$FILES pc-bios/optionrom/Makefile"
2110
    for dir in $DIRS ; do
2111
            mkdir -p $dir
2112
    done
2113
    # remove the link and recreate it, as not all "ln -sf" overwrite the link
2114
    for f in $FILES ; do
2115
        rm -f $f
2116
        ln -s $source_path/$f $f
2117
    done
2118
fi
2119

    
2120
for hwlib in 32 64; do
2121
  d=libhw$hwlib
2122
  mkdir -p $d
2123
  rm -f $d/Makefile
2124
  ln -s $source_path/Makefile.hw $d/Makefile
2125
  echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2126
  echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
2127
done