Statistics
| Branch: | Revision:

root / configure @ 6e20a45f

History | View | Annotate | Download (18.7 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
fmod="no"
81
fmod_lib=""
82
fmod_inc=""
83
linux="no"
84
kqemu="no"
85
kernel_path=""
86
cocoa="no"
87

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

    
126
if [ "$bsd" = "yes" ] ; then
127
  if [ ! "$darwin" = "yes" ] ; then
128
    make="gmake"
129
  fi
130
fi
131

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

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

    
192
# Checking for CFLAGS
193
if test -z "$CFLAGS"; then
194
    CFLAGS="-O2"
195
fi
196

    
197
cc="${cross_prefix}${cc}"
198
ar="${cross_prefix}${ar}"
199
strip="${cross_prefix}${strip}"
200

    
201
if test "$mingw32" = "yes" ; then
202
    linux="no"
203
    EXESUF=".exe"
204
    gdbstub="no"
205
    oss="no"
206
    if [ "$cpu" = "i386" ] ; then
207
        kqemu="yes"
208
    fi
209
fi
210

    
211
if test -z "$target_list" ; then
212
# these targets are portable
213
    target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
214
# the following are Linux specific
215
    if [ "$linux" = "yes" ] ; then
216
        target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
217
    fi
218
else
219
    target_list=$(echo "$target_list" | sed -e 's/,/ /g')
220
fi
221

    
222
if test -z "$cross_prefix" ; then
223

    
224
# ---
225
# big/little endian test
226
cat > $TMPC << EOF
227
#include <inttypes.h>
228
int main(int argc, char ** argv){
229
	volatile uint32_t i=0x01234567;
230
	return (*((uint8_t*)(&i))) == 0x67;
231
}
232
EOF
233

    
234
if $cc -o $TMPE $TMPC 2>/dev/null ; then
235
$TMPE && bigendian="yes"
236
else
237
echo big/little test failed
238
fi
239

    
240
else
241

    
242
# if cross compiling, cannot launch a program, so make a static guess
243
if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
244
    bigendian="yes"
245
fi
246

    
247
fi
248

    
249
# check gcc options support
250
cat > $TMPC <<EOF
251
int main(void) {
252
}
253
EOF
254

    
255
have_gcc3_options="no"
256
if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
257
   have_gcc3_options="yes"
258
fi
259

    
260
##########################################
261
# SDL probe
262

    
263
sdl_too_old=no
264

    
265
if test -z "$sdl" ; then
266

    
267
sdl_config="sdl-config"
268
sdl=no
269
sdl_static=no
270

    
271
if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
272
# win32 cross compilation case
273
    sdl_config="i386-mingw32msvc-sdl-config"
274
    sdl=yes
275
else
276
# normal SDL probe
277
cat > $TMPC << EOF
278
#include <SDL.h>
279
#undef main /* We don't want SDL to override our main() */
280
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
281
EOF
282

    
283
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
284
_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
285
if test "$_sdlversion" -lt 121 ; then
286
sdl_too_old=yes
287
else
288
sdl=yes
289
fi
290

    
291
# static link with sdl ?
292
if test "$sdl" = "yes" ; then
293
aa="no"
294
`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
295
sdl_static_libs=`$sdl_config --static-libs`
296
if [ "$aa" = "yes" ] ; then
297
  sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
298
fi
299

    
300
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
301
  sdl_static=yes
302
fi
303

    
304
fi # static link
305

    
306
fi # sdl compile test
307

    
308
fi # cross compilation
309
fi # -z $sdl
310

    
311
if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
312
cat << EOF
313

    
314
Usage: configure [options]
315
Options: [defaults in brackets after descriptions]
316

    
317
EOF
318
echo "Standard options:"
319
echo "  --help                   print this message"
320
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
321
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
322
echo "                           use %M for cpu name [$interp_prefix]"
323
echo "  --target-list=LIST       set target list [$target_list]"
324
echo ""
325
echo "kqemu kernel acceleration support:"
326
echo "  --disable-kqemu          disable kqemu build"
327
echo "  --kernel-path=PATH       set the kernel path (configure probes it)"
328
echo ""
329
echo "Advanced options (experts only):"
330
echo "  --source-path=PATH       path of source code [$source_path]"
331
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
332
echo "  --cc=CC                  use C compiler CC [$cc]"
333
echo "  --make=MAKE              use specified make [$make]"
334
echo "  --static                 enable static build [$static]"
335
echo "  --enable-mingw32         enable Win32 cross compilation with mingw32"
336
echo "  --enable-adlib           enable Adlib emulation"
337
echo "  --enable-fmod            enable FMOD audio output driver"
338
echo "  --fmod-lib               path to FMOD library"
339
echo "  --fmod-inc               path to FMOD includes"
340
echo ""
341
echo "NOTE: The object files are build at the place where configure is launched"
342
exit 1
343
fi
344

    
345
if test "$mingw32" = "yes" ; then
346
if test -z "$prefix" ; then
347
    prefix="/c/Program Files/Qemu"
348
fi
349
mandir="$prefix"
350
datadir="$prefix"
351
docdir="$prefix"
352
bindir="$prefix"
353
else
354
if test -z "$prefix" ; then
355
    prefix="/usr/local"
356
fi
357
mandir="$prefix/share/man"
358
datadir="$prefix/share/qemu"
359
docdir="$prefix/share/doc/qemu"
360
bindir="$prefix/bin"
361
fi
362

    
363
# kqemu support
364
if test $kqemu = "yes" ; then
365
    # test if the source code is installed
366
    if test '!' -f "kqemu/Makefile" ; then 
367
        kqemu="no"
368
    fi
369
fi
370
  
371
# Linux specific kqemu configuration
372
if test $kqemu = "yes" -a $linux = "yes" ; then
373
# find the kernel path
374
if test -z "$kernel_path" ; then
375
kernel_version=`uname -r`
376
kernel_path="/lib/modules/$kernel_version/build"
377
if test '!' -d "$kernel_path/include" ; then 
378
    kernel_path="/usr/src/linux"
379
    if test '!' -d "$kernel_path/include" ; then 
380
        echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
381
        kqemu="no"
382
    fi
383
fi
384
fi
385

    
386
if test $kqemu = "yes" ; then
387

    
388
# test that the kernel config is present
389
if test '!' -f "$kernel_path/Makefile" ; then
390
    echo "No Makefile file present in $kernel_path - kqemu cannot be built"
391
    kqemu="no"
392
fi    
393

    
394
# find build system (2.6 or legacy)
395
kbuild26="yes"
396
if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
397
kbuild26="no"
398
fi
399

    
400
fi # kqemu
401

    
402
fi # kqemu and linux
403

    
404

    
405
echo "Install prefix    $prefix"
406
echo "BIOS directory    $datadir"
407
echo "binary directory  $bindir"
408
if test "$mingw32" = "no" ; then
409
echo "Manual directory  $mandir"
410
echo "ELF interp prefix $interp_prefix"
411
fi
412
echo "Source path       $source_path"
413
echo "C compiler        $cc"
414
echo "make              $make"
415
echo "host CPU          $cpu"
416
echo "host big endian   $bigendian"
417
echo "target list       $target_list"
418
echo "gprof enabled     $gprof"
419
echo "static build      $static"
420
if test "$darwin" = "yes" ; then
421
    echo "Cocoa support     $cocoa"
422
fi
423
echo "SDL support       $sdl"
424
if test "$sdl" != "no" ; then
425
    echo "SDL static link   $sdl_static"
426
fi
427
echo "mingw32 support   $mingw32"
428
echo "Adlib support     $adlib"
429
echo -n "FMOD support      $fmod"
430
if test $fmod = "yes"; then
431
    echo -n " (lib='$fmod_lib' include='$fmod_inc')"
432
fi
433
echo ""
434
echo "kqemu support     $kqemu"
435
if test $kqemu = "yes" -a $linux = "yes" ; then
436
echo ""
437
echo "KQEMU Linux module configuration:"
438
echo "kernel sources    $kernel_path"
439
echo -n "kbuild type       "
440
if test $kbuild26 = "yes"; then
441
echo "2.6"
442
else
443
echo "2.4"
444
fi
445
fi
446

    
447
if test $sdl_too_old = "yes"; then
448
echo "-> Your SDL version is too old - please upgrade to have SDL support"
449
fi
450
#if test "$sdl_static" = "no"; then
451
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
452
#fi
453

    
454
config_mak="config-host.mak"
455
config_h="config-host.h"
456

    
457
#echo "Creating $config_mak and $config_h"
458

    
459
echo "# Automatically generated by configure - do not modify" > $config_mak
460
echo "/* Automatically generated by configure - do not modify */" > $config_h
461

    
462
echo "prefix=$prefix" >> $config_mak
463
echo "bindir=$bindir" >> $config_mak
464
echo "mandir=$mandir" >> $config_mak
465
echo "datadir=$datadir" >> $config_mak
466
echo "docdir=$docdir" >> $config_mak
467
echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
468
echo "MAKE=$make" >> $config_mak
469
echo "CC=$cc" >> $config_mak
470
if test "$have_gcc3_options" = "yes" ; then
471
  echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
472
fi
473
echo "HOST_CC=$host_cc" >> $config_mak
474
echo "AR=$ar" >> $config_mak
475
echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
476
echo "CFLAGS=$CFLAGS" >> $config_mak
477
echo "LDFLAGS=$LDFLAGS" >> $config_mak
478
echo "EXESUF=$EXESUF" >> $config_mak
479
if test "$cpu" = "i386" ; then
480
  echo "ARCH=i386" >> $config_mak
481
  echo "#define HOST_I386 1" >> $config_h
482
elif test "$cpu" = "x86_64" ; then
483
  echo "ARCH=x86_64" >> $config_mak
484
  echo "#define HOST_X86_64 1" >> $config_h
485
elif test "$cpu" = "armv4b" ; then
486
  echo "ARCH=arm" >> $config_mak
487
  echo "#define HOST_ARM 1" >> $config_h
488
elif test "$cpu" = "armv4l" ; then
489
  echo "ARCH=arm" >> $config_mak
490
  echo "#define HOST_ARM 1" >> $config_h
491
elif test "$cpu" = "powerpc" ; then
492
  echo "ARCH=ppc" >> $config_mak
493
  echo "#define HOST_PPC 1" >> $config_h
494
elif test "$cpu" = "mips" ; then
495
  echo "ARCH=mips" >> $config_mak
496
  echo "#define HOST_MIPS 1" >> $config_h
497
elif test "$cpu" = "s390" ; then
498
  echo "ARCH=s390" >> $config_mak
499
  echo "#define HOST_S390 1" >> $config_h
500
elif test "$cpu" = "alpha" ; then
501
  echo "ARCH=alpha" >> $config_mak
502
  echo "#define HOST_ALPHA 1" >> $config_h
503
elif test "$cpu" = "sparc" ; then
504
  echo "ARCH=sparc" >> $config_mak
505
  echo "#define HOST_SPARC 1" >> $config_h
506
elif test "$cpu" = "sparc64" ; then
507
  echo "ARCH=sparc64" >> $config_mak
508
  echo "#define HOST_SPARC64 1" >> $config_h
509
elif test "$cpu" = "ia64" ; then
510
  echo "ARCH=ia64" >> $config_mak
511
  echo "#define HOST_IA64 1" >> $config_h
512
elif test "$cpu" = "m68k" ; then
513
  echo "ARCH=m68k" >> $config_mak
514
  echo "#define HOST_M68K 1" >> $config_h
515
else
516
  echo "Unsupported CPU"
517
  exit 1
518
fi
519
if test "$bigendian" = "yes" ; then
520
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
521
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
522
fi
523
if test "$mingw32" = "yes" ; then
524
  echo "CONFIG_WIN32=yes" >> $config_mak
525
  echo "#define CONFIG_WIN32 1" >> $config_h
526
elif test -f "/usr/include/byteswap.h" ; then
527
  echo "#define HAVE_BYTESWAP_H 1" >> $config_h
528
fi
529
if test "$darwin" = "yes" ; then
530
  echo "CONFIG_DARWIN=yes" >> $config_mak
531
  echo "#define CONFIG_DARWIN 1" >> $config_h
532
fi
533
if test "$gdbstub" = "yes" ; then
534
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
535
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
536
fi
537
if test "$gprof" = "yes" ; then
538
  echo "TARGET_GPROF=yes" >> $config_mak
539
  echo "#define HAVE_GPROF 1" >> $config_h
540
fi
541
if test "$static" = "yes" ; then
542
  echo "CONFIG_STATIC=yes" >> $config_mak
543
  echo "#define CONFIG_STATIC 1" >> $config_h
544
fi
545
if test "$slirp" = "yes" ; then
546
  echo "CONFIG_SLIRP=yes" >> $config_mak
547
  echo "#define CONFIG_SLIRP 1" >> $config_h
548
fi
549
if test "$adlib" = "yes" ; then
550
  echo "CONFIG_ADLIB=yes" >> $config_mak
551
  echo "#define CONFIG_ADLIB 1" >> $config_h
552
fi
553
if test "$oss" = "yes" ; then
554
  echo "CONFIG_OSS=yes" >> $config_mak
555
  echo "#define CONFIG_OSS 1" >> $config_h
556
fi
557
if test "$fmod" = "yes" ; then
558
  echo "CONFIG_FMOD=yes" >> $config_mak
559
  echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
560
  echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
561
  echo "#define CONFIG_FMOD 1" >> $config_h
562
fi
563
echo -n "VERSION=" >>$config_mak
564
head $source_path/VERSION >>$config_mak
565
echo "" >>$config_mak
566
echo -n "#define QEMU_VERSION \"" >> $config_h
567
head $source_path/VERSION >> $config_h
568
echo "\"" >> $config_h
569

    
570
if test $kqemu = "yes" ; then
571
  echo "CONFIG_KQEMU=yes" >> $config_mak
572
  if test $linux = "yes" ; then
573
    echo "KERNEL_PATH=$kernel_path" >> $config_mak
574
    if test $kbuild26 = "yes" ; then
575
      echo "CONFIG_KBUILD26=yes" >> $config_mak
576
    fi
577
  fi
578
fi
579
echo "SRC_PATH=$source_path" >> $config_mak
580
echo "TARGET_DIRS=$target_list" >> $config_mak
581

    
582
# XXX: suppress that
583
if [ "$bsd" = "yes" ] ; then
584
  echo "#define O_LARGEFILE 0" >> $config_h
585
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
586
  echo "#define _BSD 1" >> $config_h
587
fi
588

    
589
for target in $target_list; do 
590

    
591
target_dir="$target"
592
config_mak=$target_dir/config.mak
593
config_h=$target_dir/config.h
594
target_cpu=`echo $target | cut -d '-' -f 1`
595
target_bigendian="no"
596
[ "$target_cpu" = "armeb" ] && target_bigendian=yes
597
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
598
[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
599
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
600
target_softmmu="no"
601
if expr $target : '.*-softmmu' > /dev/null ; then
602
  target_softmmu="yes"
603
fi
604
target_user_only="no"
605
if expr $target : '.*-user' > /dev/null ; then
606
  target_user_only="yes"
607
fi
608

    
609
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
610

    
611
mkdir -p $target_dir
612
mkdir -p $target_dir/fpu
613
if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
614
  mkdir -p $target_dir/nwfpe
615
fi
616
if test "$target_user_only" = "no" ; then
617
  mkdir -p $target_dir/slirp
618
fi
619

    
620
ln -sf $source_path/Makefile.target $target_dir/Makefile
621

    
622
echo "# Automatically generated by configure - do not modify" > $config_mak
623
echo "/* Automatically generated by configure - do not modify */" > $config_h
624

    
625

    
626
echo "include ../config-host.mak" >> $config_mak
627
echo "#include \"../config-host.h\"" >> $config_h
628

    
629
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
630
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
631

    
632
if test "$target_cpu" = "i386" ; then
633
  echo "TARGET_ARCH=i386" >> $config_mak
634
  echo "#define TARGET_ARCH \"i386\"" >> $config_h
635
  echo "#define TARGET_I386 1" >> $config_h
636
  if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
637
    echo "#define USE_KQEMU 1" >> $config_h
638
  fi
639
elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
640
  echo "TARGET_ARCH=arm" >> $config_mak
641
  echo "#define TARGET_ARCH \"arm\"" >> $config_h
642
  echo "#define TARGET_ARM 1" >> $config_h
643
elif test "$target_cpu" = "sparc" ; then
644
  echo "TARGET_ARCH=sparc" >> $config_mak
645
  echo "#define TARGET_ARCH \"sparc\"" >> $config_h
646
  echo "#define TARGET_SPARC 1" >> $config_h
647
elif test "$target_cpu" = "sparc64" ; then
648
  echo "TARGET_ARCH=sparc64" >> $config_mak
649
  echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
650
  echo "#define TARGET_SPARC 1" >> $config_h
651
  echo "#define TARGET_SPARC64 1" >> $config_h
652
elif test "$target_cpu" = "ppc" ; then
653
  echo "TARGET_ARCH=ppc" >> $config_mak
654
  echo "#define TARGET_ARCH \"ppc\"" >> $config_h
655
  echo "#define TARGET_PPC 1" >> $config_h
656
elif test "$target_cpu" = "x86_64" ; then
657
  echo "TARGET_ARCH=x86_64" >> $config_mak
658
  echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
659
  echo "#define TARGET_I386 1" >> $config_h
660
  echo "#define TARGET_X86_64 1" >> $config_h
661
  if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"  ; then
662
    echo "#define USE_KQEMU 1" >> $config_h
663
  fi
664
else
665
  echo "Unsupported target CPU"
666
  exit 1
667
fi
668
if test "$target_bigendian" = "yes" ; then
669
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
670
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
671
fi
672
if test "$target_softmmu" = "yes" ; then
673
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
674
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
675
fi
676
if test "$target_user_only" = "yes" ; then
677
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
678
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
679
fi
680

    
681
if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
682
  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
683
  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
684
fi
685
# sdl defines
686

    
687
if test "$target_user_only" = "no"; then
688
    if test "$target_softmmu" = "no" -o "$static" = "yes"; then
689
        sdl1=$sdl_static
690
    else
691
        sdl1=$sdl
692
    fi
693
    if test "$sdl1" = "yes" ; then
694
        echo "#define CONFIG_SDL 1" >> $config_h
695
        echo "CONFIG_SDL=yes" >> $config_mak
696
        if test "$target_softmmu" = "no" -o "$static" = "yes"; then
697
            echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
698
        else
699
            echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
700
        fi
701
        echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
702
        if [ "${aa}" = "yes" ] ; then
703
            echo -n " `aalib-config --cflags`" >> $config_mak ;
704
        fi
705
        echo "" >> $config_mak
706
    fi
707
fi
708

    
709
if test "$cocoa" = "yes" ; then
710
    echo "#define CONFIG_COCOA 1" >> $config_h
711
    echo "CONFIG_COCOA=yes" >> $config_mak
712
fi
713

    
714
done # for target in $targets
715

    
716
# build tree in object directory if source path is different from current one
717
if test "$source_path_used" = "yes" ; then
718
    DIRS="tests"
719
    FILES="Makefile tests/Makefile"
720
    for dir in $DIRS ; do
721
            mkdir -p $dir
722
    done
723
    for f in $FILES ; do
724
        ln -sf $source_path/$f $f
725
    done
726
fi
727

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