Statistics
| Branch: | Revision:

root / configure @ 1d14ffa9

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

    
19
# default parameters
20
prefix=""
21
interp_prefix="/usr/gnemul/qemu-%M"
22
static="no"
23
cross_prefix=""
24
cc="gcc"
25
host_cc="gcc"
26
ar="ar"
27
make="make"
28
strip="strip"
29
cpu=`uname -m`
30
target_list=""
31
case "$cpu" in
32
  i386|i486|i586|i686|i86pc|BePC)
33
    cpu="i386"
34
  ;;
35
  armv*b)
36
    cpu="armv4b"
37
  ;;
38
  armv*l)
39
    cpu="armv4l"
40
  ;;
41
  alpha)
42
    cpu="alpha"
43
  ;;
44
  "Power Macintosh"|ppc|ppc64)
45
    cpu="powerpc"
46
  ;;
47
  mips)
48
    cpu="mips"
49
  ;;
50
  s390)
51
    cpu="s390"
52
  ;;
53
  sparc)
54
    cpu="sparc"
55
  ;;
56
  sparc64)
57
    cpu="sparc64"
58
  ;;
59
  ia64)
60
    cpu="ia64"
61
  ;;
62
  m68k)
63
    cpu="m68k"
64
  ;;
65
  x86_64|amd64)
66
    cpu="x86_64"
67
  ;;
68
  *)
69
    cpu="unknown"
70
  ;;
71
esac
72
gprof="no"
73
bigendian="no"
74
mingw32="no"
75
EXESUF=""
76
gdbstub="yes"
77
slirp="yes"
78
adlib="no"
79
oss="no"
80
dsound="no"
81
coreaudio="no"
82
alsa="no"
83
fmod="no"
84
fmod_lib=""
85
fmod_inc=""
86
linux="no"
87
kqemu="no"
88
kernel_path=""
89
cocoa="no"
90
check_gfx="yes"
91

    
92
# OS specific
93
targetos=`uname -s`
94
case $targetos in
95
CYGWIN*)
96
mingw32="yes"
97
CFLAGS="-O2 -mno-cygwin"
98
;;
99
MINGW32*)
100
mingw32="yes"
101
;;
102
FreeBSD)
103
bsd="yes"
104
oss="yes"
105
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
106
    kqemu="yes"
107
fi
108
;;
109
NetBSD)
110
bsd="yes"
111
oss="yes"
112
;;
113
OpenBSD)
114
bsd="yes"
115
oss="yes"
116
;;
117
Darwin)
118
bsd="yes"
119
darwin="yes"
120
;;
121
*)
122
oss="yes"
123
linux="yes"
124
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
125
    kqemu="yes"
126
fi
127
;;
128
esac
129

    
130
if [ "$bsd" = "yes" ] ; then
131
  if [ ! "$darwin" = "yes" ] ; then
132
    make="gmake"
133
  fi
134
fi
135

    
136
# find source path
137
# XXX: we assume an absolute path is given when launching configure,
138
# except in './configure' case.
139
source_path=${0%configure}
140
source_path=${source_path%/}
141
source_path_used="yes"
142
if test -z "$source_path" -o "$source_path" = "." ; then
143
    source_path=`pwd`
144
    source_path_used="no"
145
fi
146

    
147
for opt do
148
  case "$opt" in
149
  --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
150
  ;;
151
  --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
152
  ;;
153
  --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
154
  ;;
155
  --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
156
  ;;
157
  --cc=*) cc=`echo $opt | cut -d '=' -f 2`
158
  ;;
159
  --host-cc=*) host_cc=`echo $opt | cut -d '=' -f 2`
160
  ;;
161
  --make=*) make=`echo $opt | cut -d '=' -f 2`
162
  ;;
163
  --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
164
  ;;
165
  --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
166
  ;;
167
  --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
168
  ;;
169
  --target-list=*) target_list=${opt#--target-list=}
170
  ;;
171
  --enable-gprof) gprof="yes"
172
  ;;
173
  --static) static="yes"
174
  ;;
175
  --disable-sdl) sdl="no"
176
  ;;
177
  --enable-coreaudio) coreaudio="yes"
178
  ;;
179
  --enable-alsa) alsa="yes"
180
  ;;
181
  --enable-dsound) dsound="yes"
182
  ;;
183
  --enable-fmod) fmod="yes"
184
  ;;
185
  --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
186
  ;;
187
  --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
188
  ;;
189
  --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
190
  ;;
191
  --disable-slirp) slirp="no"
192
  ;;
193
  --enable-adlib) adlib="yes"
194
  ;;
195
  --disable-kqemu) kqemu="no"
196
  ;;
197
  --kernel-path=*) kernel_path=${opt#--kernel-path=}
198
  ;;
199
  --enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no"
200
  ;;
201
  --disable-gfx-check) check_gfx="no"
202
  ;;
203
  esac
204
done
205

    
206
# Checking for CFLAGS
207
if test -z "$CFLAGS"; then
208
    CFLAGS="-O2"
209
fi
210

    
211
cc="${cross_prefix}${cc}"
212
ar="${cross_prefix}${ar}"
213
strip="${cross_prefix}${strip}"
214

    
215
if test "$mingw32" = "yes" ; then
216
    linux="no"
217
    EXESUF=".exe"
218
    gdbstub="no"
219
    oss="no"
220
    if [ "$cpu" = "i386" ] ; then
221
        kqemu="yes"
222
    fi
223
fi
224

    
225
if test -z "$target_list" ; then
226
# these targets are portable
227
    target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu"
228
# the following are Linux specific
229
    if [ "$linux" = "yes" ] ; then
230
        target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
231
    fi
232
else
233
    target_list=$(echo "$target_list" | sed -e 's/,/ /g')
234
fi
235

    
236
if test -z "$cross_prefix" ; then
237

    
238
# ---
239
# big/little endian test
240
cat > $TMPC << EOF
241
#include <inttypes.h>
242
int main(int argc, char ** argv){
243
        volatile uint32_t i=0x01234567;
244
        return (*((uint8_t*)(&i))) == 0x67;
245
}
246
EOF
247

    
248
if $cc -o $TMPE $TMPC 2>/dev/null ; then
249
$TMPE && bigendian="yes"
250
else
251
echo big/little test failed
252
fi
253

    
254
else
255

    
256
# if cross compiling, cannot launch a program, so make a static guess
257
if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
258
    bigendian="yes"
259
fi
260

    
261
fi
262

    
263
# host long bits test
264
hostlongbits="32"
265
if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
266
    hostlongbits="64"
267
fi
268

    
269
# check gcc options support
270
cat > $TMPC <<EOF
271
int main(void) {
272
}
273
EOF
274

    
275
have_gcc3_options="no"
276
if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
277
   have_gcc3_options="yes"
278
fi
279

    
280
##########################################
281
# SDL probe
282

    
283
sdl_too_old=no
284

    
285
if test -z "$sdl" ; then
286

    
287
sdl_config="sdl-config"
288
sdl=no
289
sdl_static=no
290

    
291
if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
292
# win32 cross compilation case
293
    sdl_config="i386-mingw32msvc-sdl-config"
294
    sdl=yes
295
else
296
# normal SDL probe
297
cat > $TMPC << EOF
298
#include <SDL.h>
299
#undef main /* We don't want SDL to override our main() */
300
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
301
EOF
302

    
303
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
304
_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
305
if test "$_sdlversion" -lt 121 ; then
306
sdl_too_old=yes
307
else
308
sdl=yes
309
fi
310

    
311
# static link with sdl ?
312
if test "$sdl" = "yes" ; then
313
aa="no"
314
`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
315
sdl_static_libs=`$sdl_config --static-libs`
316
if [ "$aa" = "yes" ] ; then
317
  sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
318
fi
319

    
320
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
321
  sdl_static=yes
322
fi
323

    
324
fi # static link
325

    
326
fi # sdl compile test
327

    
328
fi # cross compilation
329
fi # -z $sdl
330

    
331
if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
332
cat << EOF
333

    
334
Usage: configure [options]
335
Options: [defaults in brackets after descriptions]
336

    
337
EOF
338
echo "Standard options:"
339
echo "  --help                   print this message"
340
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
341
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
342
echo "                           use %M for cpu name [$interp_prefix]"
343
echo "  --target-list=LIST       set target list [$target_list]"
344
echo ""
345
echo "kqemu kernel acceleration support:"
346
echo "  --disable-kqemu          disable kqemu build"
347
echo "  --kernel-path=PATH       set the kernel path (configure probes it)"
348
echo ""
349
echo "Advanced options (experts only):"
350
echo "  --source-path=PATH       path of source code [$source_path]"
351
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
352
echo "  --cc=CC                  use C compiler CC [$cc]"
353
echo "  --host-cc=CC             use C compiler CC [$cc] for dyngen etc."
354
echo "  --make=MAKE              use specified make [$make]"
355
echo "  --static                 enable static build [$static]"
356
echo "  --enable-mingw32         enable Win32 cross compilation with mingw32"
357
echo "  --enable-adlib           enable Adlib emulation"
358
echo "  --enable-coreaudio       enable Coreaudio audio driver"
359
echo "  --enable-alsa            enable ALSA audio driver"
360
echo "  --enable-fmod            enable FMOD audio driver"
361
echo "  --enabled-dsound         enable DirectSound audio driver"
362
echo "  --fmod-lib               path to FMOD library"
363
echo "  --fmod-inc               path to FMOD includes"
364
echo ""
365
echo "NOTE: The object files are build at the place where configure is launched"
366
exit 1
367
fi
368

    
369
if test "$mingw32" = "yes" ; then
370
if test -z "$prefix" ; then
371
    prefix="/c/Program Files/Qemu"
372
fi
373
mandir="$prefix"
374
datadir="$prefix"
375
docdir="$prefix"
376
bindir="$prefix"
377
else
378
if test -z "$prefix" ; then
379
    prefix="/usr/local"
380
fi
381
mandir="$prefix/share/man"
382
datadir="$prefix/share/qemu"
383
docdir="$prefix/share/doc/qemu"
384
bindir="$prefix/bin"
385
fi
386

    
387
# kqemu support
388
if test $kqemu = "yes" ; then
389
    # test if the source code is installed
390
    if test '!' -f "kqemu/Makefile" ; then
391
        kqemu="no"
392
    fi
393
fi
394

    
395
# Linux specific kqemu configuration
396
if test $kqemu = "yes" -a $linux = "yes" ; then
397
# find the kernel path
398
if test -z "$kernel_path" ; then
399
kernel_version=`uname -r`
400
kernel_path="/lib/modules/$kernel_version/build"
401
if test '!' -d "$kernel_path/include" ; then
402
    kernel_path="/usr/src/linux"
403
    if test '!' -d "$kernel_path/include" ; then
404
        echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
405
        kqemu="no"
406
    fi
407
fi
408
fi
409

    
410
if test $kqemu = "yes" ; then
411

    
412
# test that the kernel config is present
413
if test '!' -f "$kernel_path/Makefile" ; then
414
    echo "No Makefile file present in $kernel_path - kqemu cannot be built"
415
    kqemu="no"
416
fi
417

    
418
# find build system (2.6 or legacy)
419
kbuild26="yes"
420
if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
421
kbuild26="no"
422
fi
423

    
424
fi # kqemu
425

    
426
fi # kqemu and linux
427

    
428

    
429
echo "Install prefix    $prefix"
430
echo "BIOS directory    $datadir"
431
echo "binary directory  $bindir"
432
if test "$mingw32" = "no" ; then
433
echo "Manual directory  $mandir"
434
echo "ELF interp prefix $interp_prefix"
435
fi
436
echo "Source path       $source_path"
437
echo "C compiler        $cc"
438
echo "Host C compiler   $host_cc"
439
echo "make              $make"
440
echo "host CPU          $cpu"
441
echo "host big endian   $bigendian"
442
echo "target list       $target_list"
443
echo "gprof enabled     $gprof"
444
echo "static build      $static"
445
if test "$darwin" = "yes" ; then
446
    echo "Cocoa support     $cocoa"
447
fi
448
echo "SDL support       $sdl"
449
if test "$sdl" != "no" ; then
450
    echo "SDL static link   $sdl_static"
451
fi
452
echo "mingw32 support   $mingw32"
453
echo "Adlib support     $adlib"
454
echo "CoreAudio support $coreaudio"
455
echo "ALSA support      $alsa"
456
echo "DSound support    $dsound"
457
echo -n "FMOD support      $fmod"
458
if test "$fmod" = "yes"; then
459
    if test -z $fmod_lib || test -z $fmod_inc; then
460
        echo
461
        echo "Error: You must specify path to FMOD library and headers"
462
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
463
        echo
464
        exit 1
465
    fi
466
    echo -n " (lib='$fmod_lib' include='$fmod_inc')"
467
fi
468
echo ""
469
echo "kqemu support     $kqemu"
470
if test $kqemu = "yes" -a $linux = "yes" ; then
471
echo ""
472
echo "KQEMU Linux module configuration:"
473
echo "kernel sources    $kernel_path"
474
echo -n "kbuild type       "
475
if test $kbuild26 = "yes"; then
476
echo "2.6"
477
else
478
echo "2.4"
479
fi
480
fi
481

    
482
if test $sdl_too_old = "yes"; then
483
echo "-> Your SDL version is too old - please upgrade to have SDL support"
484
fi
485
#if test "$sdl_static" = "no"; then
486
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
487
#fi
488

    
489
config_mak="config-host.mak"
490
config_h="config-host.h"
491

    
492
#echo "Creating $config_mak and $config_h"
493

    
494
echo "# Automatically generated by configure - do not modify" > $config_mak
495
echo "/* Automatically generated by configure - do not modify */" > $config_h
496

    
497
echo "prefix=$prefix" >> $config_mak
498
echo "bindir=$bindir" >> $config_mak
499
echo "mandir=$mandir" >> $config_mak
500
echo "datadir=$datadir" >> $config_mak
501
echo "docdir=$docdir" >> $config_mak
502
echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
503
echo "MAKE=$make" >> $config_mak
504
echo "CC=$cc" >> $config_mak
505
if test "$have_gcc3_options" = "yes" ; then
506
  echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
507
fi
508
echo "HOST_CC=$host_cc" >> $config_mak
509
echo "AR=$ar" >> $config_mak
510
echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
511
echo "CFLAGS=$CFLAGS" >> $config_mak
512
echo "LDFLAGS=$LDFLAGS" >> $config_mak
513
echo "EXESUF=$EXESUF" >> $config_mak
514
if test "$cpu" = "i386" ; then
515
  echo "ARCH=i386" >> $config_mak
516
  echo "#define HOST_I386 1" >> $config_h
517
elif test "$cpu" = "x86_64" ; then
518
  echo "ARCH=x86_64" >> $config_mak
519
  echo "#define HOST_X86_64 1" >> $config_h
520
elif test "$cpu" = "armv4b" ; then
521
  echo "ARCH=arm" >> $config_mak
522
  echo "#define HOST_ARM 1" >> $config_h
523
elif test "$cpu" = "armv4l" ; then
524
  echo "ARCH=arm" >> $config_mak
525
  echo "#define HOST_ARM 1" >> $config_h
526
elif test "$cpu" = "powerpc" ; then
527
  echo "ARCH=ppc" >> $config_mak
528
  echo "#define HOST_PPC 1" >> $config_h
529
elif test "$cpu" = "mips" ; then
530
  echo "ARCH=mips" >> $config_mak
531
  echo "#define HOST_MIPS 1" >> $config_h
532
elif test "$cpu" = "s390" ; then
533
  echo "ARCH=s390" >> $config_mak
534
  echo "#define HOST_S390 1" >> $config_h
535
elif test "$cpu" = "alpha" ; then
536
  echo "ARCH=alpha" >> $config_mak
537
  echo "#define HOST_ALPHA 1" >> $config_h
538
elif test "$cpu" = "sparc" ; then
539
  echo "ARCH=sparc" >> $config_mak
540
  echo "#define HOST_SPARC 1" >> $config_h
541
elif test "$cpu" = "sparc64" ; then
542
  echo "ARCH=sparc64" >> $config_mak
543
  echo "#define HOST_SPARC64 1" >> $config_h
544
elif test "$cpu" = "ia64" ; then
545
  echo "ARCH=ia64" >> $config_mak
546
  echo "#define HOST_IA64 1" >> $config_h
547
elif test "$cpu" = "m68k" ; then
548
  echo "ARCH=m68k" >> $config_mak
549
  echo "#define HOST_M68K 1" >> $config_h
550
else
551
  echo "Unsupported CPU"
552
  exit 1
553
fi
554
if test "$bigendian" = "yes" ; then
555
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
556
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
557
fi
558
echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
559
if test "$mingw32" = "yes" ; then
560
  echo "CONFIG_WIN32=yes" >> $config_mak
561
  echo "#define CONFIG_WIN32 1" >> $config_h
562
elif test -f "/usr/include/byteswap.h" ; then
563
  echo "#define HAVE_BYTESWAP_H 1" >> $config_h
564
fi
565
if test "$darwin" = "yes" ; then
566
  echo "CONFIG_DARWIN=yes" >> $config_mak
567
  echo "#define CONFIG_DARWIN 1" >> $config_h
568
fi
569
if test "$gdbstub" = "yes" ; then
570
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
571
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
572
fi
573
if test "$gprof" = "yes" ; then
574
  echo "TARGET_GPROF=yes" >> $config_mak
575
  echo "#define HAVE_GPROF 1" >> $config_h
576
fi
577
if test "$static" = "yes" ; then
578
  echo "CONFIG_STATIC=yes" >> $config_mak
579
  echo "#define CONFIG_STATIC 1" >> $config_h
580
fi
581
if test "$slirp" = "yes" ; then
582
  echo "CONFIG_SLIRP=yes" >> $config_mak
583
  echo "#define CONFIG_SLIRP 1" >> $config_h
584
fi
585
if test "$adlib" = "yes" ; then
586
  echo "CONFIG_ADLIB=yes" >> $config_mak
587
  echo "#define CONFIG_ADLIB 1" >> $config_h
588
fi
589
if test "$oss" = "yes" ; then
590
  echo "CONFIG_OSS=yes" >> $config_mak
591
  echo "#define CONFIG_OSS 1" >> $config_h
592
fi
593
if test "$coreaudio" = "yes" ; then
594
  echo "CONFIG_COREAUDIO=yes" >> $config_mak
595
  echo "#define CONFIG_COREAUDIO 1" >> $config_h
596
fi
597
if test "$alsa" = "yes" ; then
598
  echo "CONFIG_ALSA=yes" >> $config_mak
599
  echo "#define CONFIG_ALSA 1" >> $config_h
600
fi
601
if test "$dsound" = "yes" ; then
602
  echo "CONFIG_DSOUND=yes" >> $config_mak
603
  echo "#define CONFIG_DSOUND 1" >> $config_h
604
fi
605
if test "$fmod" = "yes" ; then
606
  echo "CONFIG_FMOD=yes" >> $config_mak
607
  echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
608
  echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
609
  echo "#define CONFIG_FMOD 1" >> $config_h
610
fi
611
echo -n "VERSION=" >>$config_mak
612
head $source_path/VERSION >>$config_mak
613
echo "" >>$config_mak
614
echo -n "#define QEMU_VERSION \"" >> $config_h
615
head $source_path/VERSION >> $config_h
616
echo "\"" >> $config_h
617

    
618
if test $kqemu = "yes" ; then
619
  echo "CONFIG_KQEMU=yes" >> $config_mak
620
  if test $linux = "yes" ; then
621
    echo "KERNEL_PATH=$kernel_path" >> $config_mak
622
    if test $kbuild26 = "yes" ; then
623
      echo "CONFIG_KBUILD26=yes" >> $config_mak
624
    fi
625
  fi
626
fi
627
echo "SRC_PATH=$source_path" >> $config_mak
628
echo "TARGET_DIRS=$target_list" >> $config_mak
629

    
630
# XXX: suppress that
631
if [ "$bsd" = "yes" ] ; then
632
  echo "#define O_LARGEFILE 0" >> $config_h
633
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
634
  echo "#define _BSD 1" >> $config_h
635
fi
636

    
637
for target in $target_list; do
638

    
639
target_dir="$target"
640
config_mak=$target_dir/config.mak
641
config_h=$target_dir/config.h
642
target_cpu=`echo $target | cut -d '-' -f 1`
643
target_bigendian="no"
644
[ "$target_cpu" = "armeb" ] && target_bigendian=yes
645
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
646
[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
647
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
648
[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
649
[ "$target_cpu" = "mips" ] && target_bigendian=yes
650
target_softmmu="no"
651
if expr $target : '.*-softmmu' > /dev/null ; then
652
  target_softmmu="yes"
653
fi
654
target_user_only="no"
655
if expr $target : '.*-user' > /dev/null ; then
656
  target_user_only="yes"
657
fi
658

    
659
if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
660
        -a "$sdl" = "no" -a "$cocoa" = "no" ; then
661
    echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
662
    echo "To build QEMU with graphical output configure with --disable-gfx-check"
663
    echo "Note that this will disable all output from the virtual graphics card."
664
    exit 1;
665
fi
666

    
667
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
668

    
669
mkdir -p $target_dir
670
mkdir -p $target_dir/fpu
671
if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
672
  mkdir -p $target_dir/nwfpe
673
fi
674
if test "$target_user_only" = "no" ; then
675
  mkdir -p $target_dir/slirp
676
fi
677

    
678
ln -sf $source_path/Makefile.target $target_dir/Makefile
679

    
680
echo "# Automatically generated by configure - do not modify" > $config_mak
681
echo "/* Automatically generated by configure - do not modify */" > $config_h
682

    
683

    
684
echo "include ../config-host.mak" >> $config_mak
685
echo "#include \"../config-host.h\"" >> $config_h
686

    
687
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
688
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
689

    
690
if test "$target_cpu" = "i386" ; then
691
  echo "TARGET_ARCH=i386" >> $config_mak
692
  echo "#define TARGET_ARCH \"i386\"" >> $config_h
693
  echo "#define TARGET_I386 1" >> $config_h
694
  if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
695
    echo "#define USE_KQEMU 1" >> $config_h
696
  fi
697
elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
698
  echo "TARGET_ARCH=arm" >> $config_mak
699
  echo "#define TARGET_ARCH \"arm\"" >> $config_h
700
  echo "#define TARGET_ARM 1" >> $config_h
701
elif test "$target_cpu" = "sparc" ; then
702
  echo "TARGET_ARCH=sparc" >> $config_mak
703
  echo "#define TARGET_ARCH \"sparc\"" >> $config_h
704
  echo "#define TARGET_SPARC 1" >> $config_h
705
elif test "$target_cpu" = "sparc64" ; then
706
  echo "TARGET_ARCH=sparc64" >> $config_mak
707
  echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
708
  echo "#define TARGET_SPARC 1" >> $config_h
709
  echo "#define TARGET_SPARC64 1" >> $config_h
710
elif test "$target_cpu" = "ppc" ; then
711
  echo "TARGET_ARCH=ppc" >> $config_mak
712
  echo "#define TARGET_ARCH \"ppc\"" >> $config_h
713
  echo "#define TARGET_PPC 1" >> $config_h
714
elif test "$target_cpu" = "ppc64" ; then
715
  echo "TARGET_ARCH=ppc64" >> $config_mak
716
  echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
717
  echo "#define TARGET_PPC 1" >> $config_h
718
  echo "#define TARGET_PPC64 1" >> $config_h
719
elif test "$target_cpu" = "x86_64" ; then
720
  echo "TARGET_ARCH=x86_64" >> $config_mak
721
  echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
722
  echo "#define TARGET_I386 1" >> $config_h
723
  echo "#define TARGET_X86_64 1" >> $config_h
724
  if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"  ; then
725
    echo "#define USE_KQEMU 1" >> $config_h
726
  fi
727
elif test "$target_cpu" = "mips" ; then
728
  echo "TARGET_ARCH=mips" >> $config_mak
729
  echo "#define TARGET_ARCH \"mips\"" >> $config_h
730
  echo "#define TARGET_MIPS 1" >> $config_h
731
else
732
  echo "Unsupported target CPU"
733
  exit 1
734
fi
735
if test "$target_bigendian" = "yes" ; then
736
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
737
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
738
fi
739
if test "$target_softmmu" = "yes" ; then
740
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
741
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
742
fi
743
if test "$target_user_only" = "yes" ; then
744
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
745
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
746
fi
747

    
748
if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
749
  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
750
  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
751
fi
752
# sdl defines
753

    
754
if test "$target_user_only" = "no"; then
755
    if test "$target_softmmu" = "no" -o "$static" = "yes"; then
756
        sdl1=$sdl_static
757
    else
758
        sdl1=$sdl
759
    fi
760
    if test "$sdl1" = "yes" ; then
761
        echo "#define CONFIG_SDL 1" >> $config_h
762
        echo "CONFIG_SDL=yes" >> $config_mak
763
        if test "$target_softmmu" = "no" -o "$static" = "yes"; then
764
            echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
765
        else
766
            echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
767
        fi
768
        echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
769
        if [ "${aa}" = "yes" ] ; then
770
            echo -n " `aalib-config --cflags`" >> $config_mak ;
771
        fi
772
        echo "" >> $config_mak
773
    fi
774
fi
775

    
776
if test "$cocoa" = "yes" ; then
777
    echo "#define CONFIG_COCOA 1" >> $config_h
778
    echo "CONFIG_COCOA=yes" >> $config_mak
779
fi
780

    
781
done # for target in $targets
782

    
783
# build tree in object directory if source path is different from current one
784
if test "$source_path_used" = "yes" ; then
785
    DIRS="tests"
786
    FILES="Makefile tests/Makefile"
787
    for dir in $DIRS ; do
788
            mkdir -p $dir
789
    done
790
    for f in $FILES ; do
791
        ln -sf $source_path/$f $f
792
    done
793
fi
794

    
795
rm -f $TMPO $TMPC $TMPE $TMPS