Statistics
| Branch: | Revision:

root / configure @ 41db4607

History | View | Annotate | Download (50.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
bigendian="no"
158
mingw32="no"
159
EXESUF=""
160
gdbstub="yes"
161
slirp="yes"
162
vde="yes"
163
fmod_lib=""
164
fmod_inc=""
165
oss_lib=""
166
vnc_tls="yes"
167
vnc_sasl="yes"
168
bsd="no"
169
linux="no"
170
solaris="no"
171
kqemu="no"
172
profiler="no"
173
cocoa="no"
174
check_gfx="yes"
175
softmmu="yes"
176
linux_user="no"
177
darwin_user="no"
178
bsd_user="no"
179
build_docs="no"
180
uname_release=""
181
curses="yes"
182
aio="yes"
183
nptl="yes"
184
mixemu="no"
185
bluez="yes"
186
kvm="yes"
187
kerneldir=""
188
aix="no"
189
blobs="yes"
190
fdt="yes"
191
sdl_x11="no"
192

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

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

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

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

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

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

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

    
489
#
490
# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
491
# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
492
#
493
case "$cpu" in
494
    sparc) if test -z "$sparc_cpu" ; then
495
               ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
496
               ARCH_LDFLAGS="-m32"
497
           else
498
               ARCH_CFLAGS="${SP_CFLAGS}"
499
               ARCH_LDFLAGS="${SP_LDFLAGS}"
500
           fi
501
           ;;
502
    sparc64) if test -z "$sparc_cpu" ; then
503
               ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
504
               ARCH_LDFLAGS="-m64"
505
           else
506
               ARCH_CFLAGS="${SP_CFLAGS}"
507
               ARCH_LDFLAGS="${SP_LDFLAGS}"
508
           fi
509
           ;;
510
    s390)
511
           ARCH_CFLAGS="-march=z900"
512
           ;;
513
    i386)
514
           ARCH_CFLAGS="-m32"
515
           ARCH_LDFLAGS="-m32"
516
           ;;
517
    x86_64)
518
           ARCH_CFLAGS="-m64"
519
           ARCH_LDFLAGS="-m64"
520
           ;;
521
esac
522

    
523
if test x"$show_help" = x"yes" ; then
524
cat << EOF
525

    
526
Usage: configure [options]
527
Options: [defaults in brackets after descriptions]
528

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

    
587
if test "$mingw32" = "yes" ; then
588
    linux="no"
589
    EXESUF=".exe"
590
    oss="no"
591
    linux_user="no"
592
    bsd_user="no"
593
    OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
594
fi
595

    
596
if test ! -x "$(which cgcc 2>/dev/null)"; then
597
    sparse="no"
598
fi
599

    
600
#
601
# Solaris specific configure tool chain decisions
602
#
603
if test "$solaris" = "yes" ; then
604
  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
605
  if test -z "$solinst" ; then
606
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
607
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
608
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
609
    exit 1
610
  fi
611
  if test "$solinst" = "/usr/sbin/install" ; then
612
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
613
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
614
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
615
    exit 1
616
  fi
617
  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
618
  if test -z "$sol_ar" ; then
619
    echo "Error: No path includes ar"
620
    if test -f /usr/ccs/bin/ar ; then
621
      echo "Add /usr/ccs/bin to your path and rerun configure"
622
    fi
623
    exit 1
624
  fi
625
fi
626

    
627

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

    
689
if test -z "$cross_prefix" ; then
690

    
691
# ---
692
# big/little endian test
693
cat > $TMPC << EOF
694
#include <inttypes.h>
695
int main(int argc, char ** argv){
696
        volatile uint32_t i=0x01234567;
697
        return (*((uint8_t*)(&i))) == 0x67;
698
}
699
EOF
700

    
701
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
702
$TMPE && bigendian="yes"
703
else
704
echo big/little test failed
705
fi
706

    
707
else
708

    
709
# if cross compiling, cannot launch a program, so make a static guess
710
if test "$cpu" = "armv4b" \
711
     -o "$cpu" = "hppa" \
712
     -o "$cpu" = "m68k" \
713
     -o "$cpu" = "mips" \
714
     -o "$cpu" = "mips64" \
715
     -o "$cpu" = "ppc" \
716
     -o "$cpu" = "ppc64" \
717
     -o "$cpu" = "s390" \
718
     -o "$cpu" = "sparc" \
719
     -o "$cpu" = "sparc64"; then
720
    bigendian="yes"
721
fi
722

    
723
fi
724

    
725
# host long bits test
726
hostlongbits="32"
727
if test "$cpu" = "x86_64" \
728
     -o "$cpu" = "alpha" \
729
     -o "$cpu" = "ia64" \
730
     -o "$cpu" = "sparc64" \
731
     -o "$cpu" = "ppc64"; then
732
    hostlongbits="64"
733
fi
734

    
735
# Check host NPTL support
736
cat > $TMPC <<EOF
737
#include <sched.h>
738
#include <linux/futex.h>
739
void foo()
740
{
741
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
742
#error bork
743
#endif
744
}
745
EOF
746

    
747
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
748
  :
749
else
750
   nptl="no"
751
fi
752

    
753
##########################################
754
# zlib check
755

    
756
cat > $TMPC << EOF
757
#include <zlib.h>
758
int main(void) { zlibVersion(); return 0; }
759
EOF
760
if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
761
    :
762
else
763
    echo
764
    echo "Error: zlib check failed"
765
    echo "Make sure to have the zlib libs and headers installed."
766
    echo
767
    exit 1
768
fi
769

    
770
##########################################
771
# SDL probe
772

    
773
sdl_too_old=no
774

    
775
if test -z "$sdl" ; then
776
    sdl_config="sdl-config"
777
    sdl=no
778
    sdl_static=no
779

    
780
cat > $TMPC << EOF
781
#include <SDL.h>
782
#undef main /* We don't want SDL to override our main() */
783
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
784
EOF
785
    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
786
        _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
787
        if test "$_sdlversion" -lt 121 ; then
788
            sdl_too_old=yes
789
        else
790
            if test "$cocoa" = "no" ; then
791
                sdl=yes
792
            fi
793
        fi
794

    
795
        # static link with sdl ?
796
        if test "$sdl" = "yes" ; then
797
            aa="no"
798
            `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
799
            sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
800
            if [ "$aa" = "yes" ] ; then
801
                sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
802
            fi
803

    
804
            if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
805
                sdl_static=yes
806
            fi
807
        fi # static link
808
    fi # sdl compile test
809
else
810
    # Make sure to disable cocoa if sdl was set
811
    if test "$sdl" = "yes" ; then
812
       cocoa="no"
813
       audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
814
    fi
815
fi # -z $sdl
816

    
817
if test "$sdl" = "yes" ; then
818
cat > $TMPC <<EOF
819
#include <SDL.h>
820
#if defined(SDL_VIDEO_DRIVER_X11)
821
#include <X11/XKBlib.h>
822
#else
823
#error No x11 support
824
#endif
825
int main(void) { return 0; }
826
EOF
827
    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
828
	sdl_x11="yes"
829
    fi
830
fi
831

    
832
##########################################
833
# VNC TLS detection
834
if test "$vnc_tls" = "yes" ; then
835
cat > $TMPC <<EOF
836
#include <gnutls/gnutls.h>
837
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
838
EOF
839
    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
840
    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
841
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
842
           $vnc_tls_libs > /dev/null 2> /dev/null ; then
843
	:
844
    else
845
	vnc_tls="no"
846
    fi
847
fi
848

    
849
##########################################
850
# VNC SASL detection
851
if test "$vnc_sasl" = "yes" ; then
852
cat > $TMPC <<EOF
853
#include <sasl/sasl.h>
854
#include <stdio.h>
855
int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
856
EOF
857
    # Assuming Cyrus-SASL installed in /usr prefix
858
    vnc_sasl_cflags=""
859
    vnc_sasl_libs="-lsasl2"
860
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
861
           $vnc_sasl_libs 2> /dev/null ; then
862
	:
863
    else
864
	vnc_sasl="no"
865
    fi
866
fi
867

    
868
##########################################
869
# fnmatch() probe, used for ACL routines
870
fnmatch="no"
871
cat > $TMPC << EOF
872
#include <fnmatch.h>
873
int main(void)
874
{
875
    fnmatch("foo", "foo", 0);
876
    return 0;
877
}
878
EOF
879
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
880
   fnmatch="yes"
881
fi
882

    
883
##########################################
884
# vde libraries probe
885
if test "$vde" = "yes" ; then
886
  cat > $TMPC << EOF
887
#include <libvdeplug.h>
888
int main(void)
889
{
890
    struct vde_open_args a = {0, 0, 0};
891
    vde_open("", "", &a);
892
    return 0;
893
}
894
EOF
895
    if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
896
        :
897
    else
898
        vde="no"
899
    fi
900
fi
901

    
902
##########################################
903
# Sound support libraries probe
904

    
905
audio_drv_probe()
906
{
907
    drv=$1
908
    hdr=$2
909
    lib=$3
910
    exp=$4
911
    cfl=$5
912
        cat > $TMPC << EOF
913
#include <$hdr>
914
int main(void) { $exp }
915
EOF
916
    if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
917
        :
918
    else
919
        echo
920
        echo "Error: $drv check failed"
921
        echo "Make sure to have the $drv libs and headers installed."
922
        echo
923
        exit 1
924
    fi
925
}
926

    
927
audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
928
for drv in $audio_drv_list; do
929
    case $drv in
930
    alsa)
931
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
932
        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
933
    ;;
934

    
935
    fmod)
936
    if test -z $fmod_lib || test -z $fmod_inc; then
937
        echo
938
        echo "Error: You must specify path to FMOD library and headers"
939
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
940
        echo
941
        exit 1
942
    fi
943
    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
944
    ;;
945

    
946
    esd)
947
    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
948
    ;;
949

    
950
    pa)
951
    audio_drv_probe $drv pulse/simple.h -lpulse-simple \
952
        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
953
    ;;
954

    
955
    oss|sdl|core|wav|dsound)
956
    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
957
    ;;
958

    
959
    *)
960
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
961
        echo
962
        echo "Error: Unknown driver '$drv' selected"
963
        echo "Possible drivers are: $audio_possible_drivers"
964
        echo
965
        exit 1
966
    }
967
    ;;
968
    esac
969
done
970

    
971
##########################################
972
# BrlAPI probe
973

    
974
if test -z "$brlapi" ; then
975
    brlapi=no
976
cat > $TMPC << EOF
977
#include <brlapi.h>
978
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
979
EOF
980
    if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
981
	    brlapi=yes
982
    fi # brlapi compile test
983
fi # -z $brlapi
984

    
985
##########################################
986
# curses probe
987

    
988
if test "$curses" = "yes" ; then
989
  curses=no
990
  cat > $TMPC << EOF
991
#include <curses.h>
992
int main(void) { return curses_version(); }
993
EOF
994
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
995
    curses=yes
996
  fi
997
fi # test "$curses"
998

    
999
##########################################
1000
# bluez support probe
1001
if test "$bluez" = "yes" ; then
1002
  `pkg-config bluez` || bluez="no"
1003
fi
1004
if test "$bluez" = "yes" ; then
1005
  cat > $TMPC << EOF
1006
#include <bluetooth/bluetooth.h>
1007
int main(void) { return bt_error(0); }
1008
EOF
1009
  bluez_cflags=`pkg-config --cflags bluez`
1010
  bluez_libs=`pkg-config --libs bluez`
1011
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
1012
      $bluez_libs > /dev/null 2> /dev/null ; then
1013
    :
1014
  else
1015
    bluez="no"
1016
  fi
1017
fi
1018

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

    
1068
##########################################
1069
# AIO probe
1070
AIOLIBS=""
1071

    
1072
if test "$aio" = "yes" ; then
1073
  aio=no
1074
  cat > $TMPC << EOF
1075
#include <pthread.h>
1076
int main(void) { pthread_mutex_t lock;  return 0; }
1077
EOF
1078
  if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1079
    aio=yes
1080
    AIOLIBS="-lpthread"
1081
  fi
1082
fi
1083

    
1084
##########################################
1085
# iovec probe
1086
cat > $TMPC <<EOF
1087
#include <sys/types.h>
1088
#include <sys/uio.h>
1089
#include <unistd.h>
1090
int main(void) { struct iovec iov; return 0; }
1091
EOF
1092
iovec=no
1093
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1094
  iovec=yes
1095
fi
1096

    
1097
##########################################
1098
# fdt probe
1099
if test "$fdt" = "yes" ; then
1100
    fdt=no
1101
    cat > $TMPC << EOF
1102
int main(void) { return 0; }
1103
EOF
1104
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1105
    fdt=yes
1106
  fi
1107
fi
1108

    
1109
# Check if tools are available to build documentation.
1110
if [ -x "`which texi2html 2>/dev/null`" ] && \
1111
   [ -x "`which pod2man 2>/dev/null`" ]; then
1112
  build_docs="yes"
1113
fi
1114

    
1115
##########################################
1116
# Do we need librt
1117
cat > $TMPC <<EOF
1118
#include <signal.h>
1119
#include <time.h>
1120
int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1121
EOF
1122

    
1123
rt=no
1124
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1125
  :
1126
elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1127
  rt=yes
1128
fi
1129

    
1130
if test "$rt" = "yes" ; then
1131
  # Hack, we should have a general purpose LIBS for this sort of thing
1132
  AIOLIBS="$AIOLIBS -lrt"
1133
fi
1134

    
1135
if test "$mingw32" = "yes" ; then
1136
  if test -z "$prefix" ; then
1137
      prefix="c:\\\\Program Files\\\\Qemu"
1138
  fi
1139
  mansuffix=""
1140
  datasuffix=""
1141
  docsuffix=""
1142
  binsuffix=""
1143
else
1144
  if test -z "$prefix" ; then
1145
      prefix="/usr/local"
1146
  fi
1147
  mansuffix="/share/man"
1148
  datasuffix="/share/qemu"
1149
  docsuffix="/share/doc/qemu"
1150
  binsuffix="/bin"
1151
fi
1152

    
1153
echo "Install prefix    $prefix"
1154
echo "BIOS directory    $prefix$datasuffix"
1155
echo "binary directory  $prefix$binsuffix"
1156
if test "$mingw32" = "no" ; then
1157
echo "Manual directory  $prefix$mansuffix"
1158
echo "ELF interp prefix $interp_prefix"
1159
fi
1160
echo "Source path       $source_path"
1161
echo "C compiler        $cc"
1162
echo "Host C compiler   $host_cc"
1163
echo "ARCH_CFLAGS       $ARCH_CFLAGS"
1164
echo "make              $make"
1165
echo "install           $install"
1166
echo "host CPU          $cpu"
1167
echo "host big endian   $bigendian"
1168
echo "target list       $target_list"
1169
echo "gprof enabled     $gprof"
1170
echo "sparse enabled    $sparse"
1171
echo "profiler          $profiler"
1172
echo "static build      $static"
1173
echo "-Werror enabled   $werror"
1174
if test "$darwin" = "yes" ; then
1175
    echo "Cocoa support     $cocoa"
1176
fi
1177
echo "SDL support       $sdl"
1178
if test "$sdl" != "no" ; then
1179
    echo "SDL static link   $sdl_static"
1180
fi
1181
echo "curses support    $curses"
1182
echo "mingw32 support   $mingw32"
1183
echo "Audio drivers     $audio_drv_list"
1184
echo "Extra audio cards $audio_card_list"
1185
echo "Mixer emulation   $mixemu"
1186
echo "VNC TLS support   $vnc_tls"
1187
if test "$vnc_tls" = "yes" ; then
1188
    echo "    TLS CFLAGS    $vnc_tls_cflags"
1189
    echo "    TLS LIBS      $vnc_tls_libs"
1190
fi
1191
echo "VNC SASL support  $vnc_sasl"
1192
if test "$vnc_sasl" = "yes" ; then
1193
    echo "    SASL CFLAGS    $vnc_sasl_cflags"
1194
    echo "    SASL LIBS      $vnc_sasl_libs"
1195
fi
1196
if test -n "$sparc_cpu"; then
1197
    echo "Target Sparc Arch $sparc_cpu"
1198
fi
1199
echo "kqemu support     $kqemu"
1200
echo "brlapi support    $brlapi"
1201
echo "Documentation     $build_docs"
1202
[ ! -z "$uname_release" ] && \
1203
echo "uname -r          $uname_release"
1204
echo "NPTL support      $nptl"
1205
echo "vde support       $vde"
1206
echo "AIO support       $aio"
1207
echo "Install blobs     $blobs"
1208
echo "KVM support       $kvm"
1209
echo "fdt support       $fdt"
1210

    
1211
if test $sdl_too_old = "yes"; then
1212
echo "-> Your SDL version is too old - please upgrade to have SDL support"
1213
fi
1214
if [ -s $TMPSDLLOG ]; then
1215
  echo "The error log from compiling the libSDL test is: "
1216
  cat $TMPSDLLOG
1217
fi
1218
#if test "$sdl_static" = "no"; then
1219
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1220
#fi
1221
config_mak="config-host.mak"
1222
config_h="config-host.h"
1223

    
1224
#echo "Creating $config_mak and $config_h"
1225

    
1226
test -f $config_h && mv $config_h ${config_h}~
1227

    
1228
echo "# Automatically generated by configure - do not modify" > $config_mak
1229
printf "# Configured with:" >> $config_mak
1230
printf " '%s'" "$0" "$@" >> $config_mak
1231
echo >> $config_mak
1232
echo "/* Automatically generated by configure - do not modify */" > $config_h
1233

    
1234
echo "prefix=$prefix" >> $config_mak
1235
echo "bindir=\${prefix}$binsuffix" >> $config_mak
1236
echo "mandir=\${prefix}$mansuffix" >> $config_mak
1237
echo "datadir=\${prefix}$datasuffix" >> $config_mak
1238
echo "docdir=\${prefix}$docsuffix" >> $config_mak
1239
echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1240
echo "MAKE=$make" >> $config_mak
1241
echo "INSTALL=$install" >> $config_mak
1242
echo "CC=$cc" >> $config_mak
1243
echo "HOST_CC=$host_cc" >> $config_mak
1244
echo "AR=$ar" >> $config_mak
1245
echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1246
# XXX: only use CFLAGS and LDFLAGS ?  
1247
# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1248
# compilation of dyngen tool (useful for win32 build on Linux host)
1249
echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1250
echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1251
echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1252
echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1253
echo "CFLAGS=$CFLAGS" >> $config_mak
1254
echo "LDFLAGS=$LDFLAGS" >> $config_mak
1255
echo "EXESUF=$EXESUF" >> $config_mak
1256
echo "AIOLIBS=$AIOLIBS" >> $config_mak
1257
case "$cpu" in
1258
  i386)
1259
    echo "ARCH=i386" >> $config_mak
1260
    echo "#define HOST_I386 1" >> $config_h
1261
  ;;
1262
  x86_64)
1263
    echo "ARCH=x86_64" >> $config_mak
1264
    echo "#define HOST_X86_64 1" >> $config_h
1265
  ;;
1266
  alpha)
1267
    echo "ARCH=alpha" >> $config_mak
1268
    echo "#define HOST_ALPHA 1" >> $config_h
1269
  ;;
1270
  armv4b)
1271
    echo "ARCH=arm" >> $config_mak
1272
    echo "#define HOST_ARM 1" >> $config_h
1273
  ;;
1274
  armv4l)
1275
    echo "ARCH=arm" >> $config_mak
1276
    echo "#define HOST_ARM 1" >> $config_h
1277
  ;;
1278
  cris)
1279
    echo "ARCH=cris" >> $config_mak
1280
    echo "#define HOST_CRIS 1" >> $config_h
1281
  ;;
1282
  hppa)
1283
    echo "ARCH=hppa" >> $config_mak
1284
    echo "#define HOST_HPPA 1" >> $config_h
1285
  ;;
1286
  ia64)
1287
    echo "ARCH=ia64" >> $config_mak
1288
    echo "#define HOST_IA64 1" >> $config_h
1289
  ;;
1290
  m68k)
1291
    echo "ARCH=m68k" >> $config_mak
1292
    echo "#define HOST_M68K 1" >> $config_h
1293
  ;;
1294
  mips)
1295
    echo "ARCH=mips" >> $config_mak
1296
    echo "#define HOST_MIPS 1" >> $config_h
1297
  ;;
1298
  mips64)
1299
    echo "ARCH=mips64" >> $config_mak
1300
    echo "#define HOST_MIPS64 1" >> $config_h
1301
  ;;
1302
  ppc)
1303
    echo "ARCH=ppc" >> $config_mak
1304
    echo "#define HOST_PPC 1" >> $config_h
1305
  ;;
1306
  ppc64)
1307
    echo "ARCH=ppc64" >> $config_mak
1308
    echo "#define HOST_PPC64 1" >> $config_h
1309
  ;;
1310
  s390)
1311
    echo "ARCH=s390" >> $config_mak
1312
    echo "#define HOST_S390 1" >> $config_h
1313
  ;;
1314
  sparc)
1315
    echo "ARCH=sparc" >> $config_mak
1316
    echo "#define HOST_SPARC 1" >> $config_h
1317
  ;;
1318
  sparc64)
1319
    echo "ARCH=sparc64" >> $config_mak
1320
    echo "#define HOST_SPARC64 1" >> $config_h
1321
  ;;
1322
  *)
1323
    echo "Unsupported CPU = $cpu"
1324
    exit 1
1325
  ;;
1326
esac
1327
if test "$sparse" = "yes" ; then
1328
  echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_mak
1329
  echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_mak
1330
  echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1331
fi
1332
if test "$bigendian" = "yes" ; then
1333
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
1334
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
1335
fi
1336
echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1337
if test "$mingw32" = "yes" ; then
1338
  echo "CONFIG_WIN32=yes" >> $config_mak
1339
  echo "#define CONFIG_WIN32 1" >> $config_h
1340
else
1341
  cat > $TMPC << EOF
1342
#include <byteswap.h>
1343
int main(void) { return bswap_32(0); }
1344
EOF
1345
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1346
    echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1347
  fi
1348
  cat > $TMPC << EOF
1349
#include <sys/endian.h>
1350
#include <sys/types.h>
1351
#include <machine/bswap.h>
1352
int main(void) { return bswap32(0); }
1353
EOF
1354
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1355
    echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1356
  fi
1357
fi
1358

    
1359
if [ "$openbsd" = "yes" ] ; then
1360
  echo "#define ENOTSUP 4096" >> $config_h
1361
fi
1362

    
1363
if test "$darwin" = "yes" ; then
1364
  echo "CONFIG_DARWIN=yes" >> $config_mak
1365
  echo "#define CONFIG_DARWIN 1" >> $config_h
1366
fi
1367

    
1368
if test "$aix" = "yes" ; then
1369
  echo "CONFIG_AIX=yes" >> $config_mak
1370
  echo "#define CONFIG_AIX 1" >> $config_h
1371
fi
1372

    
1373
if test "$solaris" = "yes" ; then
1374
  echo "CONFIG_SOLARIS=yes" >> $config_mak
1375
  echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1376
  if test "$needs_libsunmath" = "yes" ; then
1377
    echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1378
    echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1379
  fi
1380
fi
1381
if test -n "$sparc_cpu"; then
1382
  echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1383
  echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1384
fi
1385
if test "$gdbstub" = "yes" ; then
1386
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
1387
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
1388
fi
1389
if test "$gprof" = "yes" ; then
1390
  echo "TARGET_GPROF=yes" >> $config_mak
1391
  echo "#define HAVE_GPROF 1" >> $config_h
1392
fi
1393
if test "$static" = "yes" ; then
1394
  echo "CONFIG_STATIC=yes" >> $config_mak
1395
  echo "#define CONFIG_STATIC 1" >> $config_h
1396
fi
1397
if test $profiler = "yes" ; then
1398
  echo "#define CONFIG_PROFILER 1" >> $config_h
1399
fi
1400
if test "$slirp" = "yes" ; then
1401
  echo "CONFIG_SLIRP=yes" >> $config_mak
1402
  echo "#define CONFIG_SLIRP 1" >> $config_h
1403
fi
1404
if test "$vde" = "yes" ; then
1405
  echo "CONFIG_VDE=yes" >> $config_mak
1406
  echo "#define CONFIG_VDE 1" >> $config_h
1407
  echo "VDE_LIBS=-lvdeplug" >> $config_mak
1408
fi
1409
for card in $audio_card_list; do
1410
    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1411
    echo "$def=yes" >> $config_mak
1412
    echo "#define $def 1" >> $config_h
1413
done
1414
echo "#define AUDIO_DRIVERS \\" >> $config_h
1415
for drv in $audio_drv_list; do
1416
    echo "    &${drv}_audio_driver, \\" >>$config_h
1417
    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1418
    echo "$def=yes" >> $config_mak
1419
    if test "$drv" = "fmod"; then
1420
        echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1421
        echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1422
    elif test "$drv" = "oss"; then
1423
        echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1424
    fi
1425
done
1426
echo "" >>$config_h
1427
if test "$mixemu" = "yes" ; then
1428
  echo "CONFIG_MIXEMU=yes" >> $config_mak
1429
  echo "#define CONFIG_MIXEMU 1" >> $config_h
1430
fi
1431
if test "$vnc_tls" = "yes" ; then
1432
  echo "CONFIG_VNC_TLS=yes" >> $config_mak
1433
  echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1434
  echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1435
  echo "#define CONFIG_VNC_TLS 1" >> $config_h
1436
fi
1437
if test "$vnc_sasl" = "yes" ; then
1438
  echo "CONFIG_VNC_SASL=yes" >> $config_mak
1439
  echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1440
  echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1441
  echo "#define CONFIG_VNC_SASL 1" >> $config_h
1442
fi
1443
if test "$fnmatch" = "yes" ; then
1444
  echo "#define HAVE_FNMATCH_H 1" >> $config_h
1445
fi
1446
qemu_version=`head $source_path/VERSION`
1447
echo "VERSION=$qemu_version" >>$config_mak
1448
echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1449

    
1450
echo "SRC_PATH=$source_path" >> $config_mak
1451
if [ "$source_path_used" = "yes" ]; then
1452
  echo "VPATH=$source_path" >> $config_mak
1453
fi
1454
echo "TARGET_DIRS=$target_list" >> $config_mak
1455
if [ "$build_docs" = "yes" ] ; then
1456
  echo "BUILD_DOCS=yes" >> $config_mak
1457
fi
1458
if test "$static" = "yes"; then
1459
  sdl1=$sdl_static
1460
else
1461
  sdl1=$sdl
1462
fi
1463
if test "$sdl1" = "yes" ; then
1464
  echo "#define CONFIG_SDL 1" >> $config_h
1465
  echo "CONFIG_SDL=yes" >> $config_mak
1466
  if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1467
    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1468
  elif test "$sdl_x11" = "yes" ; then
1469
    echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
1470
  else
1471
    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1472
  fi
1473
  if [ "${aa}" = "yes" ] ; then
1474
    echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1475
  else
1476
    echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1477
  fi
1478
fi
1479
if test "$cocoa" = "yes" ; then
1480
  echo "#define CONFIG_COCOA 1" >> $config_h
1481
  echo "CONFIG_COCOA=yes" >> $config_mak
1482
fi
1483
if test "$curses" = "yes" ; then
1484
  echo "#define CONFIG_CURSES 1" >> $config_h
1485
  echo "CONFIG_CURSES=yes" >> $config_mak
1486
  echo "CURSES_LIBS=-lcurses" >> $config_mak
1487
fi
1488
if test "$brlapi" = "yes" ; then
1489
  echo "CONFIG_BRLAPI=yes" >> $config_mak
1490
  echo "#define CONFIG_BRLAPI 1" >> $config_h
1491
  echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1492
fi
1493
if test "$bluez" = "yes" ; then
1494
  echo "CONFIG_BLUEZ=yes" >> $config_mak
1495
  echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1496
  echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1497
  echo "#define CONFIG_BLUEZ 1" >> $config_h
1498
fi
1499
if test "$aio" = "yes" ; then
1500
  echo "#define CONFIG_AIO 1" >> $config_h
1501
  echo "CONFIG_AIO=yes" >> $config_mak
1502
fi
1503
if test "$blobs" = "yes" ; then
1504
  echo "INSTALL_BLOBS=yes" >> $config_mak
1505
fi
1506
if test "$iovec" = "yes" ; then
1507
  echo "#define HAVE_IOVEC 1" >> $config_h
1508
fi
1509
if test "$fdt" = "yes" ; then
1510
  echo "#define HAVE_FDT 1" >> $config_h
1511
  echo "FDT_LIBS=-lfdt" >> $config_mak
1512
fi
1513

    
1514
# XXX: suppress that
1515
if [ "$bsd" = "yes" ] ; then
1516
  echo "#define O_LARGEFILE 0" >> $config_h
1517
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1518
  echo "#define HOST_BSD 1" >> $config_h
1519
fi
1520

    
1521
echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1522

    
1523
# USB host support
1524
case "$usb" in
1525
linux)
1526
  echo "HOST_USB=linux" >> $config_mak
1527
;;
1528
bsd)
1529
  echo "HOST_USB=bsd" >> $config_mak
1530
;;
1531
*)
1532
  echo "HOST_USB=stub" >> $config_mak
1533
;;
1534
esac
1535

    
1536
tools=
1537
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1538
  tools="qemu-img\$(EXESUF) $tools"
1539
  if [ "$linux" = "yes" ] ; then
1540
      tools="qemu-nbd\$(EXESUF) $tools"
1541
  fi
1542
fi
1543
echo "TOOLS=$tools" >> $config_mak
1544

    
1545
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1546

    
1547
for target in $target_list; do
1548
target_dir="$target"
1549
config_mak=$target_dir/config.mak
1550
config_h=$target_dir/config.h
1551
target_cpu=`echo $target | cut -d '-' -f 1`
1552
target_bigendian="no"
1553
[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1554
[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1555
[ "$target_cpu" = "mips" ] && target_bigendian=yes
1556
[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1557
[ "$target_cpu" = "mips64" ] && target_bigendian=yes
1558
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
1559
[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1560
[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1561
[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1562
[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1563
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1564
[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1565
[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1566
target_softmmu="no"
1567
target_user_only="no"
1568
target_linux_user="no"
1569
target_darwin_user="no"
1570
target_bsd_user="no"
1571
case "$target" in
1572
  ${target_cpu}-softmmu)
1573
    target_softmmu="yes"
1574
    ;;
1575
  ${target_cpu}-linux-user)
1576
    target_user_only="yes"
1577
    target_linux_user="yes"
1578
    ;;
1579
  ${target_cpu}-darwin-user)
1580
    target_user_only="yes"
1581
    target_darwin_user="yes"
1582
    ;;
1583
  ${target_cpu}-bsd-user)
1584
    target_user_only="yes"
1585
    target_bsd_user="yes"
1586
    ;;
1587
  *)
1588
    echo "ERROR: Target '$target' not recognised"
1589
    exit 1
1590
    ;;
1591
esac
1592

    
1593
if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1594
        -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1595
    echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1596
    echo "To build QEMU without graphical output configure with --disable-gfx-check"
1597
    echo "Note that this will disable all output from the virtual graphics card"
1598
    echo "except through VNC or curses."
1599
    exit 1;
1600
fi
1601

    
1602
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1603

    
1604
test -f $config_h && mv $config_h ${config_h}~
1605

    
1606
mkdir -p $target_dir
1607
mkdir -p $target_dir/fpu
1608
mkdir -p $target_dir/tcg
1609
if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1610
  mkdir -p $target_dir/nwfpe
1611
fi
1612

    
1613
#
1614
# don't use ln -sf as not all "ln -sf" over write the file/link
1615
#
1616
rm -f $target_dir/Makefile
1617
ln -s $source_path/Makefile.target $target_dir/Makefile
1618

    
1619

    
1620
echo "# Automatically generated by configure - do not modify" > $config_mak
1621
echo "/* Automatically generated by configure - do not modify */" > $config_h
1622

    
1623

    
1624
echo "include ../config-host.mak" >> $config_mak
1625
echo "#include \"../config-host.h\"" >> $config_h
1626

    
1627
bflt="no"
1628
elfload32="no"
1629
target_nptl="no"
1630
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1631
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1632
gdb_xml_files=""
1633

    
1634
# Make sure the target and host cpus are compatible
1635
if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1636
  \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1637
  \( "$target_cpu" = "x86_64" -a "$cpu" = "i386"   \) -o \
1638
  \( "$target_cpu" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
1639
  kvm="no"
1640
fi
1641
# Disable KVM for linux-user
1642
if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1643
  kvm="no"
1644
fi
1645

    
1646
case "$target_cpu" in
1647
  i386)
1648
    echo "TARGET_ARCH=i386" >> $config_mak
1649
    echo "#define TARGET_ARCH \"i386\"" >> $config_h
1650
    echo "#define TARGET_I386 1" >> $config_h
1651
    if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1652
    then
1653
      echo "#define USE_KQEMU 1" >> $config_h
1654
    fi
1655
    if test "$kvm" = "yes" ; then
1656
      echo "CONFIG_KVM=yes" >> $config_mak
1657
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1658
      echo "#define CONFIG_KVM 1" >> $config_h
1659
    fi
1660
  ;;
1661
  x86_64)
1662
    echo "TARGET_ARCH=x86_64" >> $config_mak
1663
    echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1664
    echo "#define TARGET_I386 1" >> $config_h
1665
    echo "#define TARGET_X86_64 1" >> $config_h
1666
    if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1667
    then
1668
      echo "#define USE_KQEMU 1" >> $config_h
1669
    fi
1670
    if test "$kvm" = "yes" ; then
1671
      echo "CONFIG_KVM=yes" >> $config_mak
1672
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1673
      echo "#define CONFIG_KVM 1" >> $config_h
1674
    fi
1675
  ;;
1676
  alpha)
1677
    echo "TARGET_ARCH=alpha" >> $config_mak
1678
    echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1679
    echo "#define TARGET_ALPHA 1" >> $config_h
1680
  ;;
1681
  arm|armeb)
1682
    echo "TARGET_ARCH=arm" >> $config_mak
1683
    echo "#define TARGET_ARCH \"arm\"" >> $config_h
1684
    echo "#define TARGET_ARM 1" >> $config_h
1685
    bflt="yes"
1686
    target_nptl="yes"
1687
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1688
  ;;
1689
  cris)
1690
    echo "TARGET_ARCH=cris" >> $config_mak
1691
    echo "#define TARGET_ARCH \"cris\"" >> $config_h
1692
    echo "#define TARGET_CRIS 1" >> $config_h
1693
    target_nptl="yes"
1694
  ;;
1695
  m68k)
1696
    echo "TARGET_ARCH=m68k" >> $config_mak
1697
    echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1698
    echo "#define TARGET_M68K 1" >> $config_h
1699
    bflt="yes"
1700
    gdb_xml_files="cf-core.xml cf-fp.xml"
1701
  ;;
1702
  mips|mipsel)
1703
    echo "TARGET_ARCH=mips" >> $config_mak
1704
    echo "#define TARGET_ARCH \"mips\"" >> $config_h
1705
    echo "#define TARGET_MIPS 1" >> $config_h
1706
    echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1707
  ;;
1708
  mipsn32|mipsn32el)
1709
    echo "TARGET_ARCH=mipsn32" >> $config_mak
1710
    echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1711
    echo "#define TARGET_MIPS 1" >> $config_h
1712
    echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1713
  ;;
1714
  mips64|mips64el)
1715
    echo "TARGET_ARCH=mips64" >> $config_mak
1716
    echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1717
    echo "#define TARGET_MIPS 1" >> $config_h
1718
    echo "#define TARGET_MIPS64 1" >> $config_h
1719
    echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1720
  ;;
1721
  ppc)
1722
    echo "TARGET_ARCH=ppc" >> $config_mak
1723
    echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1724
    echo "#define TARGET_PPC 1" >> $config_h
1725
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1726
  ;;
1727
  ppcemb)
1728
    echo "TARGET_ARCH=ppcemb" >> $config_mak
1729
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1730
    echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1731
    echo "#define TARGET_PPC 1" >> $config_h
1732
    echo "#define TARGET_PPCEMB 1" >> $config_h
1733
    if test "$kvm" = "yes" ; then
1734
      echo "CONFIG_KVM=yes" >> $config_mak
1735
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1736
      echo "#define CONFIG_KVM 1" >> $config_h
1737
    fi
1738
    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1739
  ;;
1740
  ppc64)
1741
    echo "TARGET_ARCH=ppc64" >> $config_mak
1742
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1743
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1744
    echo "#define TARGET_PPC 1" >> $config_h
1745
    echo "#define TARGET_PPC64 1" >> $config_h
1746
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1747
  ;;
1748
  ppc64abi32)
1749
    echo "TARGET_ARCH=ppc64" >> $config_mak
1750
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1751
    echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1752
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1753
    echo "#define TARGET_PPC 1" >> $config_h
1754
    echo "#define TARGET_PPC64 1" >> $config_h
1755
    echo "#define TARGET_ABI32 1" >> $config_h
1756
    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
1757
  ;;
1758
  sh4|sh4eb)
1759
    echo "TARGET_ARCH=sh4" >> $config_mak
1760
    echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1761
    echo "#define TARGET_SH4 1" >> $config_h
1762
    bflt="yes"
1763
    target_nptl="yes"
1764
  ;;
1765
  sparc)
1766
    echo "TARGET_ARCH=sparc" >> $config_mak
1767
    echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1768
    echo "#define TARGET_SPARC 1" >> $config_h
1769
  ;;
1770
  sparc64)
1771
    echo "TARGET_ARCH=sparc64" >> $config_mak
1772
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1773
    echo "#define TARGET_SPARC 1" >> $config_h
1774
    echo "#define TARGET_SPARC64 1" >> $config_h
1775
    elfload32="yes"
1776
  ;;
1777
  sparc32plus)
1778
    echo "TARGET_ARCH=sparc64" >> $config_mak
1779
    echo "TARGET_ABI_DIR=sparc" >> $config_mak
1780
    echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1781
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1782
    echo "#define TARGET_SPARC 1" >> $config_h
1783
    echo "#define TARGET_SPARC64 1" >> $config_h
1784
    echo "#define TARGET_ABI32 1" >> $config_h
1785
  ;;
1786
  *)
1787
    echo "Unsupported target CPU"
1788
    exit 1
1789
  ;;
1790
esac
1791
if test "$target_bigendian" = "yes" ; then
1792
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1793
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1794
fi
1795
if test "$target_softmmu" = "yes" ; then
1796
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
1797
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
1798
fi
1799
if test "$target_user_only" = "yes" ; then
1800
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
1801
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
1802
fi
1803
if test "$target_linux_user" = "yes" ; then
1804
  echo "CONFIG_LINUX_USER=yes" >> $config_mak
1805
  echo "#define CONFIG_LINUX_USER 1" >> $config_h
1806
fi
1807
if test "$target_darwin_user" = "yes" ; then
1808
  echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1809
  echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1810
fi
1811
list=""
1812
if test ! -z "$gdb_xml_files" ; then
1813
  for x in $gdb_xml_files; do
1814
    list="$list $source_path/gdb-xml/$x"
1815
  done
1816
fi
1817
echo "TARGET_XML_FILES=$list" >> $config_mak
1818

    
1819
if test "$target_cpu" = "arm" \
1820
     -o "$target_cpu" = "armeb" \
1821
     -o "$target_cpu" = "m68k" \
1822
     -o "$target_cpu" = "mips" \
1823
     -o "$target_cpu" = "mipsel" \
1824
     -o "$target_cpu" = "mipsn32" \
1825
     -o "$target_cpu" = "mipsn32el" \
1826
     -o "$target_cpu" = "mips64" \
1827
     -o "$target_cpu" = "mips64el" \
1828
     -o "$target_cpu" = "ppc" \
1829
     -o "$target_cpu" = "ppc64" \
1830
     -o "$target_cpu" = "ppc64abi32" \
1831
     -o "$target_cpu" = "ppcemb" \
1832
     -o "$target_cpu" = "sparc" \
1833
     -o "$target_cpu" = "sparc64" \
1834
     -o "$target_cpu" = "sparc32plus"; then
1835
  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1836
  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1837
fi
1838
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1839
  echo "TARGET_HAS_BFLT=yes" >> $config_mak
1840
  echo "#define TARGET_HAS_BFLT 1" >> $config_h
1841
fi
1842
if test "$target_user_only" = "yes" \
1843
        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1844
  echo "#define USE_NPTL 1" >> $config_h
1845
fi
1846
# 32 bit ELF loader in addition to native 64 bit loader?
1847
if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1848
  echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1849
  echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1850
fi
1851
if test "$target_bsd_user" = "yes" ; then
1852
  echo "CONFIG_BSD_USER=yes" >> $config_mak
1853
  echo "#define CONFIG_BSD_USER 1" >> $config_h
1854
fi
1855

    
1856
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1857

    
1858
done # for target in $targets
1859

    
1860
# build tree in object directory if source path is different from current one
1861
if test "$source_path_used" = "yes" ; then
1862
    DIRS="tests tests/cris slirp audio"
1863
    FILES="Makefile tests/Makefile"
1864
    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1865
    FILES="$FILES tests/test-mmap.c"
1866
    for dir in $DIRS ; do
1867
            mkdir -p $dir
1868
    done
1869
    # remove the link and recreate it, as not all "ln -sf" overwrite the link
1870
    for f in $FILES ; do
1871
        rm -f $f
1872
        ln -s $source_path/$f $f
1873
    done
1874
fi