Statistics
| Branch: | Revision:

root / configure @ ceb42de8

History | View | Annotate | Download (51.4 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

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

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

    
53
cc="${cross_prefix}${cc}"
54
ar="${cross_prefix}${ar}"
55
strip="${cross_prefix}${strip}"
56

    
57
# check that the C compiler works.
58
cat > $TMPC <<EOF
59
int main(void) {}
60
EOF
61

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

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

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

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

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

    
325
if [ "$bsd" = "yes" ] ; then
326
  if [ "$darwin" != "yes" ] ; then
327
    make="gmake"
328
    usb="bsd"
329
  fi
330
  bsd_user="yes"
331
fi
332

    
333
# find source path
334
source_path=`dirname "$0"`
335
source_path_used="no"
336
workdir=`pwd`
337
if [ -z "$source_path" ]; then
338
    source_path=$workdir
339
else
340
    source_path=`cd "$source_path"; pwd`
341
fi
342
[ -f "$workdir/vl.c" ] || source_path_used="yes"
343

    
344
werror="no"
345
# generate compile errors on warnings for development builds
346
#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
347
#werror="yes";
348
#fi
349

    
350
for opt do
351
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
352
  case "$opt" in
353
  --help|-h) show_help=yes
354
  ;;
355
  --prefix=*) prefix="$optarg"
356
  ;;
357
  --interp-prefix=*) interp_prefix="$optarg"
358
  ;;
359
  --source-path=*) source_path="$optarg"
360
  source_path_used="yes"
361
  ;;
362
  --cross-prefix=*)
363
  ;;
364
  --cc=*)
365
  ;;
366
  --host-cc=*) host_cc="$optarg"
367
  ;;
368
  --make=*) make="$optarg"
369
  ;;
370
  --install=*) install="$optarg"
371
  ;;
372
  --extra-cflags=*) CFLAGS="$optarg"
373
  ;;
374
  --extra-ldflags=*) LDFLAGS="$optarg"
375
  ;;
376
  --cpu=*) cpu="$optarg"
377
  ;;
378
  --target-list=*) target_list="$optarg"
379
  ;;
380
  --enable-gprof) gprof="yes"
381
  ;;
382
  --static) static="yes"
383
  ;;
384
  --disable-sdl) sdl="no"
385
  ;;
386
  --fmod-lib=*) fmod_lib="$optarg"
387
  ;;
388
  --fmod-inc=*) fmod_inc="$optarg"
389
  ;;
390
  --oss-lib=*) oss_lib="$optarg"
391
  ;;
392
  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
393
  ;;
394
  --audio-drv-list=*) audio_drv_list="$optarg"
395
  ;;
396
  --enable-sparse) sparse="yes"
397
  ;;
398
  --disable-sparse) sparse="no"
399
  ;;
400
  --disable-strip) strip_opt="no"
401
  ;;
402
  --disable-vnc-tls) vnc_tls="no"
403
  ;;
404
  --disable-vnc-sasl) vnc_sasl="no"
405
  ;;
406
  --disable-slirp) slirp="no"
407
  ;;
408
  --disable-vde) vde="no"
409
  ;;
410
  --disable-kqemu) kqemu="no"
411
  ;;
412
  --disable-brlapi) brlapi="no"
413
  ;;
414
  --disable-bluez) bluez="no"
415
  ;;
416
  --disable-kvm) kvm="no"
417
  ;;
418
  --enable-profiler) profiler="yes"
419
  ;;
420
  --enable-cocoa)
421
      cocoa="yes" ;
422
      sdl="no" ;
423
      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
424
  ;;
425
  --disable-gfx-check) check_gfx="no"
426
  ;;
427
  --disable-system) softmmu="no"
428
  ;;
429
  --enable-system) softmmu="yes"
430
  ;;
431
  --disable-linux-user) linux_user="no"
432
  ;;
433
  --enable-linux-user) linux_user="yes"
434
  ;;
435
  --disable-darwin-user) darwin_user="no"
436
  ;;
437
  --enable-darwin-user) darwin_user="yes"
438
  ;;
439
  --disable-bsd-user) bsd_user="no"
440
  ;;
441
  --enable-bsd-user) bsd_user="yes"
442
  ;;
443
  --enable-uname-release=*) uname_release="$optarg"
444
  ;;
445
  --sparc_cpu=*)
446
      sparc_cpu="$optarg"
447
      case $sparc_cpu in
448
        v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
449
                 target_cpu="sparc"; cpu="sparc" ;;
450
        v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
451
                 target_cpu="sparc"; cpu="sparc" ;;
452
        v9)    SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
453
                 target_cpu="sparc64"; cpu="sparc64" ;;
454
        *)     echo "undefined SPARC architecture. Exiting";exit 1;;
455
      esac
456
  ;;
457
  --enable-werror) werror="yes"
458
  ;;
459
  --disable-werror) werror="no"
460
  ;;
461
  --disable-curses) curses="no"
462
  ;;
463
  --disable-nptl) nptl="no"
464
  ;;
465
  --enable-mixemu) mixemu="yes"
466
  ;;
467
  --disable-aio) aio="no"
468
  ;;
469
  --disable-blobs) blobs="no"
470
  ;;
471
  --kerneldir=*) kerneldir="$optarg"
472
  ;;
473
  *) echo "ERROR: unknown option $opt"; show_help="yes"
474
  ;;
475
  esac
476
done
477

    
478
# default flags for all hosts
479
CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
480
CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
481
LDFLAGS="$LDFLAGS -g"
482
if test "$werror" = "yes" ; then
483
CFLAGS="$CFLAGS -Werror"
484
fi
485

    
486
if test "$solaris" = "no" ; then
487
    if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
488
        LDFLAGS="$LDFLAGS -Wl,--warn-common"
489
    fi
490
fi
491

    
492
#
493
# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
494
# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
495
#
496
case "$cpu" in
497
    sparc) if test -z "$sparc_cpu" ; then
498
               ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
499
               ARCH_LDFLAGS="-m32"
500
           else
501
               ARCH_CFLAGS="${SP_CFLAGS}"
502
               ARCH_LDFLAGS="${SP_LDFLAGS}"
503
           fi
504
           ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
505
           if test "$solaris" = "no" ; then
506
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
507
           fi
508
           ;;
509
    sparc64) if test -z "$sparc_cpu" ; then
510
               ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
511
               ARCH_LDFLAGS="-m64"
512
           else
513
               ARCH_CFLAGS="${SP_CFLAGS}"
514
               ARCH_LDFLAGS="${SP_LDFLAGS}"
515
           fi
516
           if test "$solaris" = "no" ; then
517
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
518
           else
519
               ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
520
           fi
521
           ;;
522
    s390)
523
           ARCH_CFLAGS="-march=z900"
524
           ;;
525
    i386)
526
           ARCH_CFLAGS="-m32"
527
           ARCH_LDFLAGS="-m32"
528
           ;;
529
    x86_64)
530
           ARCH_CFLAGS="-m64"
531
           ARCH_LDFLAGS="-m64"
532
           ;;
533
esac
534

    
535
if test x"$show_help" = x"yes" ; then
536
cat << EOF
537

    
538
Usage: configure [options]
539
Options: [defaults in brackets after descriptions]
540

    
541
EOF
542
echo "Standard options:"
543
echo "  --help                   print this message"
544
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
545
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
546
echo "                           use %M for cpu name [$interp_prefix]"
547
echo "  --target-list=LIST       set target list [$target_list]"
548
echo ""
549
echo "kqemu kernel acceleration support:"
550
echo "  --disable-kqemu          disable kqemu support"
551
echo ""
552
echo "Advanced options (experts only):"
553
echo "  --source-path=PATH       path of source code [$source_path]"
554
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
555
echo "  --cc=CC                  use C compiler CC [$cc]"
556
echo "  --host-cc=CC             use C compiler CC [$host_cc] for dyngen etc."
557
echo "  --make=MAKE              use specified make [$make]"
558
echo "  --install=INSTALL        use specified install [$install]"
559
echo "  --static                 enable static build [$static]"
560
echo "  --enable-sparse          enable sparse checker"
561
echo "  --disable-sparse         disable sparse checker (default)"
562
echo "  --disable-strip          disable stripping binaries"
563
echo "  --disable-werror         disable compilation abort on warning"
564
echo "  --disable-sdl            disable SDL"
565
echo "  --enable-cocoa           enable COCOA (Mac OS X only)"
566
echo "  --audio-drv-list=LIST    set audio drivers list:"
567
echo "                           Available drivers: $audio_possible_drivers"
568
echo "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
569
echo "                           Available cards: $audio_possible_cards"
570
echo "  --enable-mixemu          enable mixer emulation"
571
echo "  --disable-brlapi         disable BrlAPI"
572
echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
573
echo "  --disable-vnc-sasl       disable SASL encryption for VNC server"
574
echo "  --disable-curses         disable curses output"
575
echo "  --disable-bluez          disable bluez stack connectivity"
576
echo "  --disable-kvm            disable KVM acceleration support"
577
echo "  --disable-nptl           disable usermode NPTL support"
578
echo "  --enable-system          enable all system emulation targets"
579
echo "  --disable-system         disable all system emulation targets"
580
echo "  --enable-linux-user      enable all linux usermode emulation targets"
581
echo "  --disable-linux-user     disable all linux usermode emulation targets"
582
echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
583
echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
584
echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
585
echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
586
echo "  --fmod-lib               path to FMOD library"
587
echo "  --fmod-inc               path to FMOD includes"
588
echo "  --oss-lib                path to OSS library"
589
echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
590
echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
591
echo "  --disable-vde            disable support for vde network"
592
echo "  --disable-aio            disable AIO support"
593
echo "  --disable-blobs          disable installing provided firmware blobs"
594
echo "  --kerneldir=PATH         look for kernel includes in PATH"
595
echo ""
596
echo "NOTE: The object files are built at the place where configure is launched"
597
exit 1
598
fi
599

    
600
if test "$mingw32" = "yes" ; then
601
    linux="no"
602
    EXESUF=".exe"
603
    oss="no"
604
    linux_user="no"
605
    bsd_user="no"
606
    OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
607
fi
608

    
609
if test ! -x "$(which cgcc 2>/dev/null)"; then
610
    sparse="no"
611
fi
612

    
613
#
614
# Solaris specific configure tool chain decisions
615
#
616
if test "$solaris" = "yes" ; then
617
  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
618
  if test -z "$solinst" ; then
619
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
620
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
621
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
622
    exit 1
623
  fi
624
  if test "$solinst" = "/usr/sbin/install" ; then
625
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
626
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
627
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
628
    exit 1
629
  fi
630
  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
631
  if test -z "$sol_ar" ; then
632
    echo "Error: No path includes ar"
633
    if test -f /usr/ccs/bin/ar ; then
634
      echo "Add /usr/ccs/bin to your path and rerun configure"
635
    fi
636
    exit 1
637
  fi
638
fi
639

    
640

    
641
if test -z "$target_list" ; then
642
# these targets are portable
643
    if [ "$softmmu" = "yes" ] ; then
644
        target_list="\
645
i386-softmmu \
646
x86_64-softmmu \
647
arm-softmmu \
648
cris-softmmu \
649
m68k-softmmu \
650
mips-softmmu \
651
mipsel-softmmu \
652
mips64-softmmu \
653
mips64el-softmmu \
654
ppc-softmmu \
655
ppcemb-softmmu \
656
ppc64-softmmu \
657
sh4-softmmu \
658
sh4eb-softmmu \
659
sparc-softmmu \
660
"
661
    fi
662
# the following are Linux specific
663
    if [ "$linux_user" = "yes" ] ; then
664
        target_list="${target_list}\
665
i386-linux-user \
666
x86_64-linux-user \
667
alpha-linux-user \
668
arm-linux-user \
669
armeb-linux-user \
670
cris-linux-user \
671
m68k-linux-user \
672
mips-linux-user \
673
mipsel-linux-user \
674
ppc-linux-user \
675
ppc64-linux-user \
676
ppc64abi32-linux-user \
677
sh4-linux-user \
678
sh4eb-linux-user \
679
sparc-linux-user \
680
sparc64-linux-user \
681
sparc32plus-linux-user \
682
"
683
    fi
684
# the following are Darwin specific
685
    if [ "$darwin_user" = "yes" ] ; then
686
        target_list="$target_list i386-darwin-user ppc-darwin-user "
687
    fi
688
# the following are BSD specific
689
    if [ "$bsd_user" = "yes" ] ; then
690
        target_list="${target_list}\
691
sparc64-bsd-user \
692
"
693
    fi
694
else
695
    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
696
fi
697
if test -z "$target_list" ; then
698
    echo "No targets enabled"
699
    exit 1
700
fi
701

    
702
if test -z "$cross_prefix" ; then
703

    
704
# ---
705
# big/little endian test
706
cat > $TMPC << EOF
707
#include <inttypes.h>
708
int main(int argc, char ** argv){
709
        volatile uint32_t i=0x01234567;
710
        return (*((uint8_t*)(&i))) == 0x67;
711
}
712
EOF
713

    
714
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
715
$TMPE && bigendian="yes"
716
else
717
echo big/little test failed
718
fi
719

    
720
else
721

    
722
# if cross compiling, cannot launch a program, so make a static guess
723
if test "$cpu" = "armv4b" \
724
     -o "$cpu" = "hppa" \
725
     -o "$cpu" = "m68k" \
726
     -o "$cpu" = "mips" \
727
     -o "$cpu" = "mips64" \
728
     -o "$cpu" = "ppc" \
729
     -o "$cpu" = "ppc64" \
730
     -o "$cpu" = "s390" \
731
     -o "$cpu" = "sparc" \
732
     -o "$cpu" = "sparc64"; then
733
    bigendian="yes"
734
fi
735

    
736
fi
737

    
738
# host long bits test
739
hostlongbits="32"
740
if test "$cpu" = "x86_64" \
741
     -o "$cpu" = "alpha" \
742
     -o "$cpu" = "ia64" \
743
     -o "$cpu" = "sparc64" \
744
     -o "$cpu" = "ppc64"; then
745
    hostlongbits="64"
746
fi
747

    
748
# Check host NPTL support
749
cat > $TMPC <<EOF
750
#include <sched.h>
751
#include <linux/futex.h>
752
void foo()
753
{
754
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
755
#error bork
756
#endif
757
}
758
EOF
759

    
760
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
761
  :
762
else
763
   nptl="no"
764
fi
765

    
766
##########################################
767
# zlib check
768

    
769
cat > $TMPC << EOF
770
#include <zlib.h>
771
int main(void) { zlibVersion(); return 0; }
772
EOF
773
if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
774
    :
775
else
776
    echo
777
    echo "Error: zlib check failed"
778
    echo "Make sure to have the zlib libs and headers installed."
779
    echo
780
    exit 1
781
fi
782

    
783
##########################################
784
# SDL probe
785

    
786
sdl_too_old=no
787

    
788
if test -z "$sdl" ; then
789
    sdl_config="sdl-config"
790
    sdl=no
791
    sdl_static=no
792

    
793
cat > $TMPC << EOF
794
#include <SDL.h>
795
#undef main /* We don't want SDL to override our main() */
796
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
797
EOF
798
    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
799
        _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
800
        if test "$_sdlversion" -lt 121 ; then
801
            sdl_too_old=yes
802
        else
803
            if test "$cocoa" = "no" ; then
804
                sdl=yes
805
            fi
806
        fi
807

    
808
        # static link with sdl ?
809
        if test "$sdl" = "yes" ; then
810
            aa="no"
811
            `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
812
            sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
813
            if [ "$aa" = "yes" ] ; then
814
                sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
815
            fi
816

    
817
            if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
818
                sdl_static=yes
819
            fi
820
        fi # static link
821
    fi # sdl compile test
822
else
823
    # Make sure to disable cocoa if sdl was set
824
    if test "$sdl" = "yes" ; then
825
       cocoa="no"
826
       audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
827
    fi
828
fi # -z $sdl
829

    
830
if test "$sdl" = "yes" ; then
831
cat > $TMPC <<EOF
832
#include <SDL.h>
833
#if defined(SDL_VIDEO_DRIVER_X11)
834
#include <X11/XKBlib.h>
835
#else
836
#error No x11 support
837
#endif
838
int main(void) { return 0; }
839
EOF
840
    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
841
	sdl_x11="yes"
842
    fi
843
fi
844

    
845
##########################################
846
# VNC TLS detection
847
if test "$vnc_tls" = "yes" ; then
848
cat > $TMPC <<EOF
849
#include <gnutls/gnutls.h>
850
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
851
EOF
852
    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
853
    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
854
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
855
           $vnc_tls_libs > /dev/null 2> /dev/null ; then
856
	:
857
    else
858
	vnc_tls="no"
859
    fi
860
fi
861

    
862
##########################################
863
# VNC SASL detection
864
if test "$vnc_sasl" = "yes" ; then
865
cat > $TMPC <<EOF
866
#include <sasl/sasl.h>
867
#include <stdio.h>
868
int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
869
EOF
870
    # Assuming Cyrus-SASL installed in /usr prefix
871
    vnc_sasl_cflags=""
872
    vnc_sasl_libs="-lsasl2"
873
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
874
           $vnc_sasl_libs 2> /dev/null ; then
875
	:
876
    else
877
	vnc_sasl="no"
878
    fi
879
fi
880

    
881
##########################################
882
# fnmatch() probe, used for ACL routines
883
fnmatch="no"
884
cat > $TMPC << EOF
885
#include <fnmatch.h>
886
int main(void)
887
{
888
    fnmatch("foo", "foo", 0);
889
    return 0;
890
}
891
EOF
892
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
893
   fnmatch="yes"
894
fi
895

    
896
##########################################
897
# vde libraries probe
898
if test "$vde" = "yes" ; then
899
  cat > $TMPC << EOF
900
#include <libvdeplug.h>
901
int main(void)
902
{
903
    struct vde_open_args a = {0, 0, 0};
904
    vde_open("", "", &a);
905
    return 0;
906
}
907
EOF
908
    if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
909
        :
910
    else
911
        vde="no"
912
    fi
913
fi
914

    
915
##########################################
916
# Sound support libraries probe
917

    
918
audio_drv_probe()
919
{
920
    drv=$1
921
    hdr=$2
922
    lib=$3
923
    exp=$4
924
    cfl=$5
925
        cat > $TMPC << EOF
926
#include <$hdr>
927
int main(void) { $exp }
928
EOF
929
    if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
930
        :
931
    else
932
        echo
933
        echo "Error: $drv check failed"
934
        echo "Make sure to have the $drv libs and headers installed."
935
        echo
936
        exit 1
937
    fi
938
}
939

    
940
audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
941
for drv in $audio_drv_list; do
942
    case $drv in
943
    alsa)
944
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
945
        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
946
    ;;
947

    
948
    fmod)
949
    if test -z $fmod_lib || test -z $fmod_inc; then
950
        echo
951
        echo "Error: You must specify path to FMOD library and headers"
952
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
953
        echo
954
        exit 1
955
    fi
956
    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
957
    ;;
958

    
959
    esd)
960
    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
961
    ;;
962

    
963
    pa)
964
    audio_drv_probe $drv pulse/simple.h -lpulse-simple \
965
        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
966
    ;;
967

    
968
    oss|sdl|core|wav|dsound)
969
    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
970
    ;;
971

    
972
    *)
973
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
974
        echo
975
        echo "Error: Unknown driver '$drv' selected"
976
        echo "Possible drivers are: $audio_possible_drivers"
977
        echo
978
        exit 1
979
    }
980
    ;;
981
    esac
982
done
983

    
984
##########################################
985
# BrlAPI probe
986

    
987
if test -z "$brlapi" ; then
988
    brlapi=no
989
cat > $TMPC << EOF
990
#include <brlapi.h>
991
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
992
EOF
993
    if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
994
	    brlapi=yes
995
    fi # brlapi compile test
996
fi # -z $brlapi
997

    
998
##########################################
999
# curses probe
1000

    
1001
if test "$curses" = "yes" ; then
1002
  curses=no
1003
  cat > $TMPC << EOF
1004
#include <curses.h>
1005
int main(void) { return curses_version(); }
1006
EOF
1007
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
1008
    curses=yes
1009
  fi
1010
fi # test "$curses"
1011

    
1012
##########################################
1013
# bluez support probe
1014
if test "$bluez" = "yes" ; then
1015
  `pkg-config bluez` || bluez="no"
1016
fi
1017
if test "$bluez" = "yes" ; then
1018
  cat > $TMPC << EOF
1019
#include <bluetooth/bluetooth.h>
1020
int main(void) { return bt_error(0); }
1021
EOF
1022
  bluez_cflags=`pkg-config --cflags bluez`
1023
  bluez_libs=`pkg-config --libs bluez`
1024
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1025
      $bluez_libs > /dev/null 2> /dev/null ; then
1026
    :
1027
  else
1028
    bluez="no"
1029
  fi
1030
fi
1031

    
1032
##########################################
1033
# kvm probe
1034
if test "$kvm" = "yes" ; then
1035
    cat > $TMPC <<EOF
1036
#include <linux/kvm.h>
1037
#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
1038
#error Invalid KVM version
1039
#endif
1040
#if !defined(KVM_CAP_USER_MEMORY)
1041
#error Missing KVM capability KVM_CAP_USER_MEMORY
1042
#endif
1043
#if !defined(KVM_CAP_SET_TSS_ADDR)
1044
#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1045
#endif
1046
#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1047
#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1048
#endif
1049
int main(void) { return 0; }
1050
EOF
1051
  if test "$kerneldir" != "" ; then
1052
      kvm_cflags=-I"$kerneldir"/include
1053
      if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1054
         -a -d "$kerneldir/arch/x86/include" ; then
1055
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
1056
	elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1057
	    kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
1058
        elif test -d "$kerneldir/arch/$cpu/include" ; then
1059
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1060
      fi
1061
  else
1062
      kvm_cflags=""
1063
  fi
1064
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
1065
      > /dev/null 2>/dev/null ; then
1066
    :
1067
  else
1068
    kvm="no";
1069
    if [ -x "`which awk 2>/dev/null`" ] && \
1070
       [ -x "`which grep 2>/dev/null`" ]; then
1071
      kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1072
	| grep "error: " \
1073
	| awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1074
      if test "$kvmerr" != "" ; then
1075
        kvm="no - (${kvmerr})"
1076
      fi
1077
    fi
1078
  fi
1079
fi
1080

    
1081
##########################################
1082
# AIO probe
1083
AIOLIBS=""
1084

    
1085
if test "$aio" = "yes" ; then
1086
  aio=no
1087
  cat > $TMPC << EOF
1088
#include <pthread.h>
1089
int main(void) { pthread_mutex_t lock;  return 0; }
1090
EOF
1091
  if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1092
    aio=yes
1093
    AIOLIBS="-lpthread"
1094
  fi
1095
fi
1096

    
1097
##########################################
1098
# iovec probe
1099
cat > $TMPC <<EOF
1100
#include <sys/types.h>
1101
#include <sys/uio.h>
1102
#include <unistd.h>
1103
int main(void) { struct iovec iov; return 0; }
1104
EOF
1105
iovec=no
1106
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1107
  iovec=yes
1108
fi
1109

    
1110
##########################################
1111
# preadv probe
1112
cat > $TMPC <<EOF
1113
#include <sys/types.h>
1114
#include <sys/uio.h>
1115
#include <unistd.h>
1116
int main(void) { preadv; }
1117
EOF
1118
preadv=no
1119
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1120
  preadv=yes
1121
fi
1122

    
1123
##########################################
1124
# fdt probe
1125
if test "$fdt" = "yes" ; then
1126
    fdt=no
1127
    cat > $TMPC << EOF
1128
int main(void) { return 0; }
1129
EOF
1130
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1131
    fdt=yes
1132
  fi
1133
fi
1134

    
1135
# Check if tools are available to build documentation.
1136
if [ -x "`which texi2html 2>/dev/null`" ] && \
1137
   [ -x "`which pod2man 2>/dev/null`" ]; then
1138
  build_docs="yes"
1139
fi
1140

    
1141
##########################################
1142
# Do we need librt
1143
cat > $TMPC <<EOF
1144
#include <signal.h>
1145
#include <time.h>
1146
int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1147
EOF
1148

    
1149
rt=no
1150
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1151
  :
1152
elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1153
  rt=yes
1154
fi
1155

    
1156
if test "$rt" = "yes" ; then
1157
  # Hack, we should have a general purpose LIBS for this sort of thing
1158
  AIOLIBS="$AIOLIBS -lrt"
1159
fi
1160

    
1161
if test "$mingw32" = "yes" ; then
1162
  if test -z "$prefix" ; then
1163
      prefix="c:\\\\Program Files\\\\Qemu"
1164
  fi
1165
  mansuffix=""
1166
  datasuffix=""
1167
  docsuffix=""
1168
  binsuffix=""
1169
else
1170
  if test -z "$prefix" ; then
1171
      prefix="/usr/local"
1172
  fi
1173
  mansuffix="/share/man"
1174
  datasuffix="/share/qemu"
1175
  docsuffix="/share/doc/qemu"
1176
  binsuffix="/bin"
1177
fi
1178

    
1179
echo "Install prefix    $prefix"
1180
echo "BIOS directory    $prefix$datasuffix"
1181
echo "binary directory  $prefix$binsuffix"
1182
if test "$mingw32" = "no" ; then
1183
echo "Manual directory  $prefix$mansuffix"
1184
echo "ELF interp prefix $interp_prefix"
1185
fi
1186
echo "Source path       $source_path"
1187
echo "C compiler        $cc"
1188
echo "Host C compiler   $host_cc"
1189
echo "ARCH_CFLAGS       $ARCH_CFLAGS"
1190
echo "make              $make"
1191
echo "install           $install"
1192
echo "host CPU          $cpu"
1193
echo "host big endian   $bigendian"
1194
echo "target list       $target_list"
1195
echo "gprof enabled     $gprof"
1196
echo "sparse enabled    $sparse"
1197
echo "strip binaries    $strip_opt"
1198
echo "profiler          $profiler"
1199
echo "static build      $static"
1200
echo "-Werror enabled   $werror"
1201
if test "$darwin" = "yes" ; then
1202
    echo "Cocoa support     $cocoa"
1203
fi
1204
echo "SDL support       $sdl"
1205
if test "$sdl" != "no" ; then
1206
    echo "SDL static link   $sdl_static"
1207
fi
1208
echo "curses support    $curses"
1209
echo "mingw32 support   $mingw32"
1210
echo "Audio drivers     $audio_drv_list"
1211
echo "Extra audio cards $audio_card_list"
1212
echo "Mixer emulation   $mixemu"
1213
echo "VNC TLS support   $vnc_tls"
1214
if test "$vnc_tls" = "yes" ; then
1215
    echo "    TLS CFLAGS    $vnc_tls_cflags"
1216
    echo "    TLS LIBS      $vnc_tls_libs"
1217
fi
1218
echo "VNC SASL support  $vnc_sasl"
1219
if test "$vnc_sasl" = "yes" ; then
1220
    echo "    SASL CFLAGS    $vnc_sasl_cflags"
1221
    echo "    SASL LIBS      $vnc_sasl_libs"
1222
fi
1223
if test -n "$sparc_cpu"; then
1224
    echo "Target Sparc Arch $sparc_cpu"
1225
fi
1226
echo "kqemu support     $kqemu"
1227
echo "brlapi support    $brlapi"
1228
echo "Documentation     $build_docs"
1229
[ ! -z "$uname_release" ] && \
1230
echo "uname -r          $uname_release"
1231
echo "NPTL support      $nptl"
1232
echo "vde support       $vde"
1233
echo "AIO support       $aio"
1234
echo "Install blobs     $blobs"
1235
echo "KVM support       $kvm"
1236
echo "fdt support       $fdt"
1237
echo "preadv support    $preadv"
1238

    
1239
if test $sdl_too_old = "yes"; then
1240
echo "-> Your SDL version is too old - please upgrade to have SDL support"
1241
fi
1242
if [ -s $TMPSDLLOG ]; then
1243
  echo "The error log from compiling the libSDL test is: "
1244
  cat $TMPSDLLOG
1245
fi
1246
#if test "$sdl_static" = "no"; then
1247
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1248
#fi
1249
config_mak="config-host.mak"
1250
config_h="config-host.h"
1251

    
1252
#echo "Creating $config_mak and $config_h"
1253

    
1254
test -f $config_h && mv $config_h ${config_h}~
1255

    
1256
echo "# Automatically generated by configure - do not modify" > $config_mak
1257
printf "# Configured with:" >> $config_mak
1258
printf " '%s'" "$0" "$@" >> $config_mak
1259
echo >> $config_mak
1260
echo "/* Automatically generated by configure - do not modify */" > $config_h
1261

    
1262
echo "prefix=$prefix" >> $config_mak
1263
echo "bindir=\${prefix}$binsuffix" >> $config_mak
1264
echo "mandir=\${prefix}$mansuffix" >> $config_mak
1265
echo "datadir=\${prefix}$datasuffix" >> $config_mak
1266
echo "docdir=\${prefix}$docsuffix" >> $config_mak
1267
echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1268
echo "MAKE=$make" >> $config_mak
1269
echo "INSTALL=$install" >> $config_mak
1270
echo "CC=$cc" >> $config_mak
1271
echo "HOST_CC=$host_cc" >> $config_mak
1272
echo "AR=$ar" >> $config_mak
1273
# XXX: only use CFLAGS and LDFLAGS ?  
1274
# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1275
# compilation of dyngen tool (useful for win32 build on Linux host)
1276
echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1277
echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1278
echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1279
echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1280
echo "CFLAGS=$CFLAGS" >> $config_mak
1281
echo "LDFLAGS=$LDFLAGS" >> $config_mak
1282
echo "EXESUF=$EXESUF" >> $config_mak
1283
echo "AIOLIBS=$AIOLIBS" >> $config_mak
1284
case "$cpu" in
1285
  i386)
1286
    echo "ARCH=i386" >> $config_mak
1287
    echo "#define HOST_I386 1" >> $config_h
1288
  ;;
1289
  x86_64)
1290
    echo "ARCH=x86_64" >> $config_mak
1291
    echo "#define HOST_X86_64 1" >> $config_h
1292
  ;;
1293
  alpha)
1294
    echo "ARCH=alpha" >> $config_mak
1295
    echo "#define HOST_ALPHA 1" >> $config_h
1296
  ;;
1297
  armv4b)
1298
    echo "ARCH=arm" >> $config_mak
1299
    echo "#define HOST_ARM 1" >> $config_h
1300
  ;;
1301
  armv4l)
1302
    echo "ARCH=arm" >> $config_mak
1303
    echo "#define HOST_ARM 1" >> $config_h
1304
  ;;
1305
  cris)
1306
    echo "ARCH=cris" >> $config_mak
1307
    echo "#define HOST_CRIS 1" >> $config_h
1308
  ;;
1309
  hppa)
1310
    echo "ARCH=hppa" >> $config_mak
1311
    echo "#define HOST_HPPA 1" >> $config_h
1312
  ;;
1313
  ia64)
1314
    echo "ARCH=ia64" >> $config_mak
1315
    echo "#define HOST_IA64 1" >> $config_h
1316
  ;;
1317
  m68k)
1318
    echo "ARCH=m68k" >> $config_mak
1319
    echo "#define HOST_M68K 1" >> $config_h
1320
  ;;
1321
  mips)
1322
    echo "ARCH=mips" >> $config_mak
1323
    echo "#define HOST_MIPS 1" >> $config_h
1324
  ;;
1325
  mips64)
1326
    echo "ARCH=mips64" >> $config_mak
1327
    echo "#define HOST_MIPS64 1" >> $config_h
1328
  ;;
1329
  ppc)
1330
    echo "ARCH=ppc" >> $config_mak
1331
    echo "#define HOST_PPC 1" >> $config_h
1332
  ;;
1333
  ppc64)
1334
    echo "ARCH=ppc64" >> $config_mak
1335
    echo "#define HOST_PPC64 1" >> $config_h
1336
  ;;
1337
  s390)
1338
    echo "ARCH=s390" >> $config_mak
1339
    echo "#define HOST_S390 1" >> $config_h
1340
  ;;
1341
  sparc)
1342
    echo "ARCH=sparc" >> $config_mak
1343
    echo "#define HOST_SPARC 1" >> $config_h
1344
  ;;
1345
  sparc64)
1346
    echo "ARCH=sparc64" >> $config_mak
1347
    echo "#define HOST_SPARC64 1" >> $config_h
1348
  ;;
1349
  *)
1350
    echo "Unsupported CPU = $cpu"
1351
    exit 1
1352
  ;;
1353
esac
1354
if test "$sparse" = "yes" ; then
1355
  echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_mak
1356
  echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_mak
1357
  echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1358
fi
1359
if test "$strip_opt" = "yes" ; then
1360
  echo "STRIP_OPT=-s" >> $config_mak
1361
fi
1362
if test "$bigendian" = "yes" ; then
1363
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
1364
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
1365
fi
1366
echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1367
if test "$mingw32" = "yes" ; then
1368
  echo "CONFIG_WIN32=yes" >> $config_mak
1369
  echo "#define CONFIG_WIN32 1" >> $config_h
1370
else
1371
  cat > $TMPC << EOF
1372
#include <byteswap.h>
1373
int main(void) { return bswap_32(0); }
1374
EOF
1375
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1376
    echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1377
  fi
1378
  cat > $TMPC << EOF
1379
#include <sys/endian.h>
1380
#include <sys/types.h>
1381
#include <machine/bswap.h>
1382
int main(void) { return bswap32(0); }
1383
EOF
1384
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1385
    echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1386
  fi
1387
fi
1388

    
1389
if [ "$openbsd" = "yes" ] ; then
1390
  echo "#define ENOTSUP 4096" >> $config_h
1391
fi
1392

    
1393
if test "$darwin" = "yes" ; then
1394
  echo "CONFIG_DARWIN=yes" >> $config_mak
1395
  echo "#define CONFIG_DARWIN 1" >> $config_h
1396
fi
1397

    
1398
if test "$aix" = "yes" ; then
1399
  echo "CONFIG_AIX=yes" >> $config_mak
1400
  echo "#define CONFIG_AIX 1" >> $config_h
1401
fi
1402

    
1403
if test "$solaris" = "yes" ; then
1404
  echo "CONFIG_SOLARIS=yes" >> $config_mak
1405
  echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1406
  if test "$needs_libsunmath" = "yes" ; then
1407
    echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1408
    echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1409
  fi
1410
fi
1411
if test -n "$sparc_cpu"; then
1412
  echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1413
  echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1414
fi
1415
if test "$gdbstub" = "yes" ; then
1416
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
1417
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
1418
fi
1419
if test "$gprof" = "yes" ; then
1420
  echo "TARGET_GPROF=yes" >> $config_mak
1421
  echo "#define HAVE_GPROF 1" >> $config_h
1422
fi
1423
if test "$static" = "yes" ; then
1424
  echo "CONFIG_STATIC=yes" >> $config_mak
1425
  echo "#define CONFIG_STATIC 1" >> $config_h
1426
fi
1427
if test $profiler = "yes" ; then
1428
  echo "#define CONFIG_PROFILER 1" >> $config_h
1429
fi
1430
if test "$slirp" = "yes" ; then
1431
  echo "CONFIG_SLIRP=yes" >> $config_mak
1432
  echo "#define CONFIG_SLIRP 1" >> $config_h
1433
fi
1434
if test "$vde" = "yes" ; then
1435
  echo "CONFIG_VDE=yes" >> $config_mak
1436
  echo "#define CONFIG_VDE 1" >> $config_h
1437
  echo "VDE_LIBS=-lvdeplug" >> $config_mak
1438
fi
1439
for card in $audio_card_list; do
1440
    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1441
    echo "$def=yes" >> $config_mak
1442
    echo "#define $def 1" >> $config_h
1443
done
1444
echo "#define AUDIO_DRIVERS \\" >> $config_h
1445
for drv in $audio_drv_list; do
1446
    echo "    &${drv}_audio_driver, \\" >>$config_h
1447
    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1448
    echo "$def=yes" >> $config_mak
1449
    if test "$drv" = "fmod"; then
1450
        echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1451
        echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1452
    elif test "$drv" = "oss"; then
1453
        echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1454
    fi
1455
done
1456
echo "" >>$config_h
1457
if test "$mixemu" = "yes" ; then
1458
  echo "CONFIG_MIXEMU=yes" >> $config_mak
1459
  echo "#define CONFIG_MIXEMU 1" >> $config_h
1460
fi
1461
if test "$vnc_tls" = "yes" ; then
1462
  echo "CONFIG_VNC_TLS=yes" >> $config_mak
1463
  echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1464
  echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1465
  echo "#define CONFIG_VNC_TLS 1" >> $config_h
1466
fi
1467
if test "$vnc_sasl" = "yes" ; then
1468
  echo "CONFIG_VNC_SASL=yes" >> $config_mak
1469
  echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1470
  echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1471
  echo "#define CONFIG_VNC_SASL 1" >> $config_h
1472
fi
1473
if test "$fnmatch" = "yes" ; then
1474
  echo "#define HAVE_FNMATCH_H 1" >> $config_h
1475
fi
1476
qemu_version=`head $source_path/VERSION`
1477
echo "VERSION=$qemu_version" >>$config_mak
1478
echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1479

    
1480
echo "SRC_PATH=$source_path" >> $config_mak
1481
if [ "$source_path_used" = "yes" ]; then
1482
  echo "VPATH=$source_path" >> $config_mak
1483
fi
1484
echo "TARGET_DIRS=$target_list" >> $config_mak
1485
if [ "$build_docs" = "yes" ] ; then
1486
  echo "BUILD_DOCS=yes" >> $config_mak
1487
fi
1488
if test "$static" = "yes"; then
1489
  sdl1=$sdl_static
1490
else
1491
  sdl1=$sdl
1492
fi
1493
if test "$sdl1" = "yes" ; then
1494
  echo "#define CONFIG_SDL 1" >> $config_h
1495
  echo "CONFIG_SDL=yes" >> $config_mak
1496
  if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1497
    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1498
  elif test "$sdl_x11" = "yes" ; then
1499
    echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1500
  else
1501
    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1502
  fi
1503
  if [ "${aa}" = "yes" ] ; then
1504
    echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1505
  else
1506
    echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1507
  fi
1508
fi
1509
if test "$cocoa" = "yes" ; then
1510
  echo "#define CONFIG_COCOA 1" >> $config_h
1511
  echo "CONFIG_COCOA=yes" >> $config_mak
1512
fi
1513
if test "$curses" = "yes" ; then
1514
  echo "#define CONFIG_CURSES 1" >> $config_h
1515
  echo "CONFIG_CURSES=yes" >> $config_mak
1516
  echo "CURSES_LIBS=-lcurses" >> $config_mak
1517
fi
1518
if test "$brlapi" = "yes" ; then
1519
  echo "CONFIG_BRLAPI=yes" >> $config_mak
1520
  echo "#define CONFIG_BRLAPI 1" >> $config_h
1521
  echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1522
fi
1523
if test "$bluez" = "yes" ; then
1524
  echo "CONFIG_BLUEZ=yes" >> $config_mak
1525
  echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1526
  echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1527
  echo "#define CONFIG_BLUEZ 1" >> $config_h
1528
fi
1529
if test "$aio" = "yes" ; then
1530
  echo "#define CONFIG_AIO 1" >> $config_h
1531
  echo "CONFIG_AIO=yes" >> $config_mak
1532
fi
1533
if test "$blobs" = "yes" ; then
1534
  echo "INSTALL_BLOBS=yes" >> $config_mak
1535
fi
1536
if test "$iovec" = "yes" ; then
1537
  echo "#define HAVE_IOVEC 1" >> $config_h
1538
fi
1539
if test "$preadv" = "yes" ; then
1540
  echo "#define HAVE_PREADV 1" >> $config_h
1541
fi
1542
if test "$fdt" = "yes" ; then
1543
  echo "#define HAVE_FDT 1" >> $config_h
1544
  echo "FDT_LIBS=-lfdt" >> $config_mak
1545
fi
1546

    
1547
# XXX: suppress that
1548
if [ "$bsd" = "yes" ] ; then
1549
  echo "#define O_LARGEFILE 0" >> $config_h
1550
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1551
  echo "#define HOST_BSD 1" >> $config_h
1552
fi
1553

    
1554
echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1555

    
1556
# USB host support
1557
case "$usb" in
1558
linux)
1559
  echo "HOST_USB=linux" >> $config_mak
1560
;;
1561
bsd)
1562
  echo "HOST_USB=bsd" >> $config_mak
1563
;;
1564
*)
1565
  echo "HOST_USB=stub" >> $config_mak
1566
;;
1567
esac
1568

    
1569
tools=
1570
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1571
  tools="qemu-img\$(EXESUF) $tools"
1572
  if [ "$linux" = "yes" ] ; then
1573
      tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
1574
  fi
1575
fi
1576
echo "TOOLS=$tools" >> $config_mak
1577

    
1578
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1579

    
1580
for target in $target_list; do
1581
target_dir="$target"
1582
config_mak=$target_dir/config.mak
1583
config_h=$target_dir/config.h
1584
target_cpu=`echo $target | cut -d '-' -f 1`
1585
target_bigendian="no"
1586
[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1587
[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1588
[ "$target_cpu" = "mips" ] && target_bigendian=yes
1589
[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1590
[ "$target_cpu" = "mips64" ] && target_bigendian=yes
1591
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
1592
[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1593
[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1594
[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1595
[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1596
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1597
[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1598
[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1599
target_softmmu="no"
1600
target_user_only="no"
1601
target_linux_user="no"
1602
target_darwin_user="no"
1603
target_bsd_user="no"
1604
case "$target" in
1605
  ${target_cpu}-softmmu)
1606
    target_softmmu="yes"
1607
    ;;
1608
  ${target_cpu}-linux-user)
1609
    target_user_only="yes"
1610
    target_linux_user="yes"
1611
    ;;
1612
  ${target_cpu}-darwin-user)
1613
    target_user_only="yes"
1614
    target_darwin_user="yes"
1615
    ;;
1616
  ${target_cpu}-bsd-user)
1617
    target_user_only="yes"
1618
    target_bsd_user="yes"
1619
    ;;
1620
  *)
1621
    echo "ERROR: Target '$target' not recognised"
1622
    exit 1
1623
    ;;
1624
esac
1625

    
1626
if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1627
        -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1628
    echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1629
    echo "To build QEMU without graphical output configure with --disable-gfx-check"
1630
    echo "Note that this will disable all output from the virtual graphics card"
1631
    echo "except through VNC or curses."
1632
    exit 1;
1633
fi
1634

    
1635
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1636

    
1637
test -f $config_h && mv $config_h ${config_h}~
1638

    
1639
mkdir -p $target_dir
1640
mkdir -p $target_dir/fpu
1641
mkdir -p $target_dir/tcg
1642
if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1643
  mkdir -p $target_dir/nwfpe
1644
fi
1645

    
1646
#
1647
# don't use ln -sf as not all "ln -sf" over write the file/link
1648
#
1649
rm -f $target_dir/Makefile
1650
ln -s $source_path/Makefile.target $target_dir/Makefile
1651

    
1652

    
1653
echo "# Automatically generated by configure - do not modify" > $config_mak
1654
echo "/* Automatically generated by configure - do not modify */" > $config_h
1655

    
1656

    
1657
echo "include ../config-host.mak" >> $config_mak
1658
echo "#include \"../config-host.h\"" >> $config_h
1659

    
1660
bflt="no"
1661
elfload32="no"
1662
target_nptl="no"
1663
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1664
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1665
gdb_xml_files=""
1666

    
1667
# Make sure the target and host cpus are compatible
1668
if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1669
  \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1670
  \( "$target_cpu" = "x86_64" -a "$cpu" = "i386"   \) -o \
1671
  \( "$target_cpu" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
1672
  kvm="no"
1673
fi
1674
# Disable KVM for linux-user
1675
if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1676
  kvm="no"
1677
fi
1678

    
1679
case "$target_cpu" in
1680
  i386)
1681
    echo "TARGET_ARCH=i386" >> $config_mak
1682
    echo "#define TARGET_ARCH \"i386\"" >> $config_h
1683
    echo "#define TARGET_I386 1" >> $config_h
1684
    if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1685
    then
1686
      echo "#define USE_KQEMU 1" >> $config_h
1687
    fi
1688
    if test "$kvm" = "yes" ; then
1689
      echo "CONFIG_KVM=yes" >> $config_mak
1690
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1691
      echo "#define CONFIG_KVM 1" >> $config_h
1692
    fi
1693
  ;;
1694
  x86_64)
1695
    echo "TARGET_ARCH=x86_64" >> $config_mak
1696
    echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1697
    echo "#define TARGET_I386 1" >> $config_h
1698
    echo "#define TARGET_X86_64 1" >> $config_h
1699
    if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1700
    then
1701
      echo "#define USE_KQEMU 1" >> $config_h
1702
    fi
1703
    if test "$kvm" = "yes" ; then
1704
      echo "CONFIG_KVM=yes" >> $config_mak
1705
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1706
      echo "#define CONFIG_KVM 1" >> $config_h
1707
    fi
1708
  ;;
1709
  alpha)
1710
    echo "TARGET_ARCH=alpha" >> $config_mak
1711
    echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1712
    echo "#define TARGET_ALPHA 1" >> $config_h
1713
  ;;
1714
  arm|armeb)
1715
    echo "TARGET_ARCH=arm" >> $config_mak
1716
    echo "#define TARGET_ARCH \"arm\"" >> $config_h
1717
    echo "#define TARGET_ARM 1" >> $config_h
1718
    bflt="yes"
1719
    target_nptl="yes"
1720
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1721
  ;;
1722
  cris)
1723
    echo "TARGET_ARCH=cris" >> $config_mak
1724
    echo "#define TARGET_ARCH \"cris\"" >> $config_h
1725
    echo "#define TARGET_CRIS 1" >> $config_h
1726
    target_nptl="yes"
1727
  ;;
1728
  m68k)
1729
    echo "TARGET_ARCH=m68k" >> $config_mak
1730
    echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1731
    echo "#define TARGET_M68K 1" >> $config_h
1732
    bflt="yes"
1733
    gdb_xml_files="cf-core.xml cf-fp.xml"
1734
  ;;
1735
  mips|mipsel)
1736
    echo "TARGET_ARCH=mips" >> $config_mak
1737
    echo "#define TARGET_ARCH \"mips\"" >> $config_h
1738
    echo "#define TARGET_MIPS 1" >> $config_h
1739
    echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1740
  ;;
1741
  mipsn32|mipsn32el)
1742
    echo "TARGET_ARCH=mipsn32" >> $config_mak
1743
    echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1744
    echo "#define TARGET_MIPS 1" >> $config_h
1745
    echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1746
  ;;
1747
  mips64|mips64el)
1748
    echo "TARGET_ARCH=mips64" >> $config_mak
1749
    echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1750
    echo "#define TARGET_MIPS 1" >> $config_h
1751
    echo "#define TARGET_MIPS64 1" >> $config_h
1752
    echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1753
  ;;
1754
  ppc)
1755
    echo "TARGET_ARCH=ppc" >> $config_mak
1756
    echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1757
    echo "#define TARGET_PPC 1" >> $config_h
1758
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1759
  ;;
1760
  ppcemb)
1761
    echo "TARGET_ARCH=ppcemb" >> $config_mak
1762
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1763
    echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1764
    echo "#define TARGET_PPC 1" >> $config_h
1765
    echo "#define TARGET_PPCEMB 1" >> $config_h
1766
    if test "$kvm" = "yes" ; then
1767
      echo "CONFIG_KVM=yes" >> $config_mak
1768
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1769
      echo "#define CONFIG_KVM 1" >> $config_h
1770
    fi
1771
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1772
  ;;
1773
  ppc64)
1774
    echo "TARGET_ARCH=ppc64" >> $config_mak
1775
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1776
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1777
    echo "#define TARGET_PPC 1" >> $config_h
1778
    echo "#define TARGET_PPC64 1" >> $config_h
1779
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1780
  ;;
1781
  ppc64abi32)
1782
    echo "TARGET_ARCH=ppc64" >> $config_mak
1783
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1784
    echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1785
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1786
    echo "#define TARGET_PPC 1" >> $config_h
1787
    echo "#define TARGET_PPC64 1" >> $config_h
1788
    echo "#define TARGET_ABI32 1" >> $config_h
1789
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1790
  ;;
1791
  sh4|sh4eb)
1792
    echo "TARGET_ARCH=sh4" >> $config_mak
1793
    echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1794
    echo "#define TARGET_SH4 1" >> $config_h
1795
    bflt="yes"
1796
    target_nptl="yes"
1797
  ;;
1798
  sparc)
1799
    echo "TARGET_ARCH=sparc" >> $config_mak
1800
    echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1801
    echo "#define TARGET_SPARC 1" >> $config_h
1802
  ;;
1803
  sparc64)
1804
    echo "TARGET_ARCH=sparc64" >> $config_mak
1805
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1806
    echo "#define TARGET_SPARC 1" >> $config_h
1807
    echo "#define TARGET_SPARC64 1" >> $config_h
1808
    elfload32="yes"
1809
  ;;
1810
  sparc32plus)
1811
    echo "TARGET_ARCH=sparc64" >> $config_mak
1812
    echo "TARGET_ABI_DIR=sparc" >> $config_mak
1813
    echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1814
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1815
    echo "#define TARGET_SPARC 1" >> $config_h
1816
    echo "#define TARGET_SPARC64 1" >> $config_h
1817
    echo "#define TARGET_ABI32 1" >> $config_h
1818
  ;;
1819
  *)
1820
    echo "Unsupported target CPU"
1821
    exit 1
1822
  ;;
1823
esac
1824
if test "$target_bigendian" = "yes" ; then
1825
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1826
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1827
fi
1828
if test "$target_softmmu" = "yes" ; then
1829
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
1830
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
1831
fi
1832
if test "$target_user_only" = "yes" ; then
1833
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
1834
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
1835
fi
1836
if test "$target_linux_user" = "yes" ; then
1837
  echo "CONFIG_LINUX_USER=yes" >> $config_mak
1838
  echo "#define CONFIG_LINUX_USER 1" >> $config_h
1839
fi
1840
if test "$target_darwin_user" = "yes" ; then
1841
  echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1842
  echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1843
fi
1844
list=""
1845
if test ! -z "$gdb_xml_files" ; then
1846
  for x in $gdb_xml_files; do
1847
    list="$list $source_path/gdb-xml/$x"
1848
  done
1849
fi
1850
echo "TARGET_XML_FILES=$list" >> $config_mak
1851

    
1852
if test "$target_cpu" = "arm" \
1853
     -o "$target_cpu" = "armeb" \
1854
     -o "$target_cpu" = "m68k" \
1855
     -o "$target_cpu" = "mips" \
1856
     -o "$target_cpu" = "mipsel" \
1857
     -o "$target_cpu" = "mipsn32" \
1858
     -o "$target_cpu" = "mipsn32el" \
1859
     -o "$target_cpu" = "mips64" \
1860
     -o "$target_cpu" = "mips64el" \
1861
     -o "$target_cpu" = "ppc" \
1862
     -o "$target_cpu" = "ppc64" \
1863
     -o "$target_cpu" = "ppc64abi32" \
1864
     -o "$target_cpu" = "ppcemb" \
1865
     -o "$target_cpu" = "sparc" \
1866
     -o "$target_cpu" = "sparc64" \
1867
     -o "$target_cpu" = "sparc32plus"; then
1868
  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1869
  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1870
fi
1871
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1872
  echo "TARGET_HAS_BFLT=yes" >> $config_mak
1873
  echo "#define TARGET_HAS_BFLT 1" >> $config_h
1874
fi
1875
if test "$target_user_only" = "yes" \
1876
        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1877
  echo "#define USE_NPTL 1" >> $config_h
1878
fi
1879
# 32 bit ELF loader in addition to native 64 bit loader?
1880
if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1881
  echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1882
  echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1883
fi
1884
if test "$target_bsd_user" = "yes" ; then
1885
  echo "CONFIG_BSD_USER=yes" >> $config_mak
1886
  echo "#define CONFIG_BSD_USER 1" >> $config_h
1887
fi
1888

    
1889
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1890

    
1891
done # for target in $targets
1892

    
1893
# build tree in object directory if source path is different from current one
1894
if test "$source_path_used" = "yes" ; then
1895
    DIRS="tests tests/cris slirp audio"
1896
    FILES="Makefile tests/Makefile"
1897
    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1898
    FILES="$FILES tests/test-mmap.c"
1899
    for dir in $DIRS ; do
1900
            mkdir -p $dir
1901
    done
1902
    # remove the link and recreate it, as not all "ln -sf" overwrite the link
1903
    for f in $FILES ; do
1904
        rm -f $f
1905
        ln -s $source_path/$f $f
1906
    done
1907
fi