]> git.proxmox.com Git - mirror_qemu.git/blame - configure
IER behavior change - better IRQ handling
[mirror_qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d
FB
4#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
3ef693a0
FB
14TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
7d13299d
FB
18
19# default parameters
11d9f695 20prefix=""
1e43adfc 21interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 22static="no"
7d13299d
FB
23cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
5327cf48 30target_list=""
7d13299d
FB
31case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
97a847bc 33 cpu="i386"
7d13299d 34 ;;
ba68055e 35 armv*b)
808c4954
FB
36 cpu="armv4b"
37 ;;
ba68055e 38 armv*l)
7d13299d
FB
39 cpu="armv4l"
40 ;;
41 alpha)
42 cpu="alpha"
43 ;;
295defa5 44 "Power Macintosh"|ppc|ppc64)
7d13299d
FB
45 cpu="powerpc"
46 ;;
47 mips)
48 cpu="mips"
49 ;;
fb3e5849
FB
50 s390)
51 cpu="s390"
52 ;;
ae228531
FB
53 sparc)
54 cpu="sparc"
55 ;;
56 sparc64)
57 cpu="sparc64"
58 ;;
a8baa8c5
FB
59 ia64)
60 cpu="ia64"
61 ;;
38e584a0
FB
62 m68k)
63 cpu="m68k"
64 ;;
bc51c5c9 65 x86_64|amd64)
0b0babc6 66 cpu="x86_64"
bc51c5c9 67 ;;
7d13299d
FB
68 *)
69 cpu="unknown"
70 ;;
71esac
72gprof="no"
73bigendian="no"
67b915a5
FB
74mingw32="no"
75EXESUF=""
76gdbstub="yes"
443f1376 77slirp="yes"
fb065187
FB
78adlib="no"
79oss="no"
102a52e4
FB
80fmod="no"
81fmod_lib=""
82fmod_inc=""
5327cf48 83linux="no"
c9ec1fe4
FB
84kqemu="no"
85kernel_path=""
5b0753e0 86cocoa="no"
7d13299d
FB
87
88# OS specific
89targetos=`uname -s`
90case $targetos in
c326e0af
FB
91CYGWIN*)
92mingw32="yes"
93CFLAGS="-O2 -mno-cygwin"
94;;
67b915a5
FB
95MINGW32*)
96mingw32="yes"
97;;
7d3505c5
FB
98FreeBSD)
99bsd="yes"
fb065187 100oss="yes"
07f4ddbf
FB
101if [ "$cpu" = "i386" ] ; then
102 kqemu="yes"
103fi
7d3505c5
FB
104;;
105NetBSD)
106bsd="yes"
fb065187 107oss="yes"
7d3505c5
FB
108;;
109OpenBSD)
110bsd="yes"
fb065187 111oss="yes"
7d3505c5 112;;
83fb7adf
FB
113Darwin)
114bsd="yes"
115darwin="yes"
116;;
fb065187
FB
117*)
118oss="yes"
5327cf48 119linux="yes"
07f4ddbf 120if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c9ec1fe4
FB
121 kqemu="yes"
122fi
fb065187 123;;
7d13299d
FB
124esac
125
7d3505c5 126if [ "$bsd" = "yes" ] ; then
83fb7adf
FB
127 if [ ! "$darwin" = "yes" ] ; then
128 make="gmake"
129 fi
7d3505c5
FB
130fi
131
7d13299d
FB
132# find source path
133# XXX: we assume an absolute path is given when launching configure,
134# except in './configure' case.
135source_path=${0%configure}
136source_path=${source_path%/}
137source_path_used="yes"
138if test -z "$source_path" -o "$source_path" = "." ; then
139 source_path=`pwd`
140 source_path_used="no"
141fi
142
143for opt do
144 case "$opt" in
145 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
146 ;;
32ce6337
FB
147 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
148 ;;
7d13299d
FB
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 ;;
7d13299d
FB
161 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
162 ;;
97a847bc 163 --target-list=*) target_list=${opt#--target-list=}
de83cd02 164 ;;
7d13299d
FB
165 --enable-gprof) gprof="yes"
166 ;;
43ce4dfe
FB
167 --static) static="yes"
168 ;;
97a847bc
FB
169 --disable-sdl) sdl="no"
170 ;;
102a52e4
FB
171 --enable-fmod) fmod="yes"
172 ;;
173 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
174 ;;
175 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
176 ;;
67b915a5
FB
177 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
178 ;;
443f1376 179 --disable-slirp) slirp="no"
c20709aa 180 ;;
fb065187
FB
181 --enable-adlib) adlib="yes"
182 ;;
c9ec1fe4
FB
183 --disable-kqemu) kqemu="no"
184 ;;
185 --kernel-path=*) kernel_path=${opt#--kernel-path=}
186 ;;
5b0753e0
FB
187 --enable-cocoa) cocoa="yes" ; sdl="no"
188 ;;
7d13299d
FB
189 esac
190done
191
192# Checking for CFLAGS
193if test -z "$CFLAGS"; then
194 CFLAGS="-O2"
195fi
196
197cc="${cross_prefix}${cc}"
198ar="${cross_prefix}${ar}"
199strip="${cross_prefix}${strip}"
200
67b915a5 201if test "$mingw32" = "yes" ; then
5327cf48 202 linux="no"
67b915a5
FB
203 EXESUF=".exe"
204 gdbstub="no"
9f059eca 205 oss="no"
07f4ddbf
FB
206 if [ "$cpu" = "i386" ] ; then
207 kqemu="yes"
208 fi
67b915a5
FB
209fi
210
5327cf48
FB
211if test -z "$target_list" ; then
212# these targets are portable
a20b5524 213 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
5327cf48
FB
214# the following are Linux specific
215 if [ "$linux" = "yes" ] ; then
a20b5524 216 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
5327cf48
FB
217 fi
218fi
219
7d13299d
FB
220if test -z "$cross_prefix" ; then
221
222# ---
223# big/little endian test
224cat > $TMPC << EOF
225#include <inttypes.h>
226int main(int argc, char ** argv){
227 volatile uint32_t i=0x01234567;
228 return (*((uint8_t*)(&i))) == 0x67;
229}
230EOF
231
232if $cc -o $TMPE $TMPC 2>/dev/null ; then
233$TMPE && bigendian="yes"
234else
235echo big/little test failed
236fi
237
238else
239
240# if cross compiling, cannot launch a program, so make a static guess
808c4954 241if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
7d13299d
FB
242 bigendian="yes"
243fi
244
245fi
246
e8cd23de 247# check gcc options support
04369ff2
FB
248cat > $TMPC <<EOF
249int main(void) {
04369ff2
FB
250}
251EOF
252
e8cd23de
FB
253have_gcc3_options="no"
254if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
255 have_gcc3_options="yes"
04369ff2 256fi
ca735206 257
11d9f695
FB
258##########################################
259# SDL probe
260
261sdl_too_old=no
262
263if test -z "$sdl" ; then
264
a6e022ad
FB
265sdl_config="sdl-config"
266sdl=no
7c1f25b4 267sdl_static=no
a6e022ad
FB
268
269if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
270# win32 cross compilation case
271 sdl_config="i386-mingw32msvc-sdl-config"
272 sdl=yes
273else
274# normal SDL probe
11d9f695
FB
275cat > $TMPC << EOF
276#include <SDL.h>
277#undef main /* We don't want SDL to override our main() */
278int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
279EOF
280
a6e022ad
FB
281if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
282_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
11d9f695
FB
283if test "$_sdlversion" -lt 121 ; then
284sdl_too_old=yes
285else
286sdl=yes
287fi
7c1f25b4
FB
288
289# static link with sdl ?
290if test "$sdl" = "yes" ; then
291aa="no"
292`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
293sdl_static_libs=`$sdl_config --static-libs`
294if [ "$aa" = "yes" ] ; then
d8d8aa4e 295 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
7c1f25b4
FB
296fi
297
298if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
299 sdl_static=yes
11d9f695
FB
300fi
301
7c1f25b4
FB
302fi # static link
303
304fi # sdl compile test
305
a6e022ad
FB
306fi # cross compilation
307fi # -z $sdl
11d9f695 308
7d13299d
FB
309if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
310cat << EOF
311
312Usage: configure [options]
313Options: [defaults in brackets after descriptions]
314
315EOF
316echo "Standard options:"
317echo " --help print this message"
318echo " --prefix=PREFIX install in PREFIX [$prefix]"
1e43adfc
FB
319echo " --interp-prefix=PREFIX where to find shared libraries, etc."
320echo " use %M for cpu name [$interp_prefix]"
97a847bc 321echo " --target-list=LIST set target list [$target_list]"
7d13299d 322echo ""
c9ec1fe4
FB
323echo "kqemu kernel acceleration support:"
324echo " --disable-kqemu disable kqemu build"
325echo " --kernel-path=PATH set the kernel path (configure probes it)"
326echo ""
7d13299d
FB
327echo "Advanced options (experts only):"
328echo " --source-path=PATH path of source code [$source_path]"
329echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
330echo " --cc=CC use C compiler CC [$cc]"
331echo " --make=MAKE use specified make [$make]"
43ce4dfe 332echo " --static enable static build [$static]"
67b915a5 333echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
d37282ad 334echo " --enable-adlib enable Adlib emulation"
102a52e4
FB
335echo " --enable-fmod enable FMOD audio output driver"
336echo " --fmod-lib path to FMOD library"
337echo " --fmod-inc path to FMOD includes"
7d13299d
FB
338echo ""
339echo "NOTE: The object files are build at the place where configure is launched"
340exit 1
341fi
342
11d9f695
FB
343if test "$mingw32" = "yes" ; then
344if test -z "$prefix" ; then
345 prefix="/c/Program Files/Qemu"
346fi
347mandir="$prefix"
7efa4387 348datadir="$prefix"
1f50f8d1 349docdir="$prefix"
11d9f695
FB
350bindir="$prefix"
351else
352if test -z "$prefix" ; then
353 prefix="/usr/local"
354fi
5a67135a 355mandir="$prefix/share/man"
7efa4387 356datadir="$prefix/share/qemu"
1f50f8d1 357docdir="$prefix/share/doc/qemu"
11d9f695
FB
358bindir="$prefix/bin"
359fi
5a67135a 360
07f4ddbf 361# kqemu support
441c72ba
FB
362if test $kqemu = "yes" ; then
363 # test if the source code is installed
364 if test '!' -f "kqemu/Makefile" ; then
365 kqemu="no"
366 fi
367fi
368
07f4ddbf
FB
369# Linux specific kqemu configuration
370if test $kqemu = "yes" -a $linux = "yes" ; then
c9ec1fe4
FB
371# find the kernel path
372if test -z "$kernel_path" ; then
373kernel_version=`uname -r`
374kernel_path="/lib/modules/$kernel_version/build"
375if test '!' -d "$kernel_path/include" ; then
376 kernel_path="/usr/src/linux"
377 if test '!' -d "$kernel_path/include" ; then
378 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
379 kqemu="no"
380 fi
381fi
382fi
383
384if test $kqemu = "yes" ; then
385
386# test that the kernel config is present
387if test '!' -f "$kernel_path/Makefile" ; then
f94daedd 388 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
c9ec1fe4
FB
389 kqemu="no"
390fi
391
392# find build system (2.6 or legacy)
393kbuild26="yes"
394if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
395kbuild26="no"
396fi
397
398fi # kqemu
399
07f4ddbf 400fi # kqemu and linux
c9ec1fe4
FB
401
402
43ce4dfe 403echo "Install prefix $prefix"
7efa4387 404echo "BIOS directory $datadir"
11d9f695
FB
405echo "binary directory $bindir"
406if test "$mingw32" = "no" ; then
407echo "Manual directory $mandir"
43ce4dfe 408echo "ELF interp prefix $interp_prefix"
11d9f695 409fi
5a67135a 410echo "Source path $source_path"
43ce4dfe
FB
411echo "C compiler $cc"
412echo "make $make"
413echo "host CPU $cpu"
de83cd02 414echo "host big endian $bigendian"
97a847bc 415echo "target list $target_list"
43ce4dfe
FB
416echo "gprof enabled $gprof"
417echo "static build $static"
5b0753e0
FB
418if test "$darwin" = "yes" ; then
419 echo "Cocoa support $cocoa"
420fi
97a847bc 421echo "SDL support $sdl"
e4afee97
FB
422if test "$sdl" != "no" ; then
423 echo "SDL static link $sdl_static"
424fi
67b915a5 425echo "mingw32 support $mingw32"
fb065187 426echo "Adlib support $adlib"
102a52e4
FB
427echo -n "FMOD support $fmod"
428if test $fmod = "yes"; then
429 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
430fi
431echo ""
07f4ddbf
FB
432echo "kqemu support $kqemu"
433if test $kqemu = "yes" -a $linux = "yes" ; then
c9ec1fe4 434echo ""
07f4ddbf 435echo "KQEMU Linux module configuration:"
c9ec1fe4
FB
436echo "kernel sources $kernel_path"
437echo -n "kbuild type "
438if test $kbuild26 = "yes"; then
439echo "2.6"
440else
441echo "2.4"
442fi
443fi
67b915a5 444
97a847bc 445if test $sdl_too_old = "yes"; then
24b55b96 446echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 447fi
24b55b96
FB
448#if test "$sdl_static" = "no"; then
449# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
450#fi
97a847bc
FB
451
452config_mak="config-host.mak"
453config_h="config-host.h"
7d13299d 454
7c1f25b4 455#echo "Creating $config_mak and $config_h"
7d13299d 456
97a847bc
FB
457echo "# Automatically generated by configure - do not modify" > $config_mak
458echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 459
97a847bc 460echo "prefix=$prefix" >> $config_mak
11d9f695 461echo "bindir=$bindir" >> $config_mak
5a67135a 462echo "mandir=$mandir" >> $config_mak
7efa4387 463echo "datadir=$datadir" >> $config_mak
1f50f8d1 464echo "docdir=$docdir" >> $config_mak
7efa4387 465echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
97a847bc
FB
466echo "MAKE=$make" >> $config_mak
467echo "CC=$cc" >> $config_mak
e8cd23de 468if test "$have_gcc3_options" = "yes" ; then
97a847bc 469 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
e8cd23de 470fi
97a847bc
FB
471echo "HOST_CC=$host_cc" >> $config_mak
472echo "AR=$ar" >> $config_mak
473echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
474echo "CFLAGS=$CFLAGS" >> $config_mak
475echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 476echo "EXESUF=$EXESUF" >> $config_mak
97a847bc
FB
477if test "$cpu" = "i386" ; then
478 echo "ARCH=i386" >> $config_mak
479 echo "#define HOST_I386 1" >> $config_h
0b0babc6
FB
480elif test "$cpu" = "x86_64" ; then
481 echo "ARCH=x86_64" >> $config_mak
482 echo "#define HOST_X86_64 1" >> $config_h
808c4954
FB
483elif test "$cpu" = "armv4b" ; then
484 echo "ARCH=arm" >> $config_mak
485 echo "#define HOST_ARM 1" >> $config_h
7d13299d 486elif test "$cpu" = "armv4l" ; then
97a847bc
FB
487 echo "ARCH=arm" >> $config_mak
488 echo "#define HOST_ARM 1" >> $config_h
7d13299d 489elif test "$cpu" = "powerpc" ; then
97a847bc
FB
490 echo "ARCH=ppc" >> $config_mak
491 echo "#define HOST_PPC 1" >> $config_h
7d13299d 492elif test "$cpu" = "mips" ; then
97a847bc
FB
493 echo "ARCH=mips" >> $config_mak
494 echo "#define HOST_MIPS 1" >> $config_h
fb3e5849 495elif test "$cpu" = "s390" ; then
97a847bc
FB
496 echo "ARCH=s390" >> $config_mak
497 echo "#define HOST_S390 1" >> $config_h
295defa5 498elif test "$cpu" = "alpha" ; then
97a847bc
FB
499 echo "ARCH=alpha" >> $config_mak
500 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 501elif test "$cpu" = "sparc" ; then
97a847bc
FB
502 echo "ARCH=sparc" >> $config_mak
503 echo "#define HOST_SPARC 1" >> $config_h
ae228531 504elif test "$cpu" = "sparc64" ; then
97a847bc
FB
505 echo "ARCH=sparc64" >> $config_mak
506 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 507elif test "$cpu" = "ia64" ; then
97a847bc
FB
508 echo "ARCH=ia64" >> $config_mak
509 echo "#define HOST_IA64 1" >> $config_h
38e584a0 510elif test "$cpu" = "m68k" ; then
38ca2abc
FB
511 echo "ARCH=m68k" >> $config_mak
512 echo "#define HOST_M68K 1" >> $config_h
7d13299d
FB
513else
514 echo "Unsupported CPU"
515 exit 1
516fi
517if test "$bigendian" = "yes" ; then
97a847bc
FB
518 echo "WORDS_BIGENDIAN=yes" >> $config_mak
519 echo "#define WORDS_BIGENDIAN 1" >> $config_h
520fi
67b915a5
FB
521if test "$mingw32" = "yes" ; then
522 echo "CONFIG_WIN32=yes" >> $config_mak
11d9f695 523 echo "#define CONFIG_WIN32 1" >> $config_h
7d3505c5 524elif test -f "/usr/include/byteswap.h" ; then
67b915a5
FB
525 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
526fi
83fb7adf
FB
527if test "$darwin" = "yes" ; then
528 echo "CONFIG_DARWIN=yes" >> $config_mak
529 echo "#define CONFIG_DARWIN 1" >> $config_h
530fi
67b915a5
FB
531if test "$gdbstub" = "yes" ; then
532 echo "CONFIG_GDBSTUB=yes" >> $config_mak
533 echo "#define CONFIG_GDBSTUB 1" >> $config_h
534fi
97a847bc
FB
535if test "$gprof" = "yes" ; then
536 echo "TARGET_GPROF=yes" >> $config_mak
537 echo "#define HAVE_GPROF 1" >> $config_h
538fi
539if test "$static" = "yes" ; then
540 echo "CONFIG_STATIC=yes" >> $config_mak
50863472 541 echo "#define CONFIG_STATIC 1" >> $config_h
7d13299d 542fi
c20709aa
FB
543if test "$slirp" = "yes" ; then
544 echo "CONFIG_SLIRP=yes" >> $config_mak
545 echo "#define CONFIG_SLIRP 1" >> $config_h
546fi
fb065187
FB
547if test "$adlib" = "yes" ; then
548 echo "CONFIG_ADLIB=yes" >> $config_mak
549 echo "#define CONFIG_ADLIB 1" >> $config_h
550fi
551if test "$oss" = "yes" ; then
552 echo "CONFIG_OSS=yes" >> $config_mak
553 echo "#define CONFIG_OSS 1" >> $config_h
554fi
102a52e4
FB
555if test "$fmod" = "yes" ; then
556 echo "CONFIG_FMOD=yes" >> $config_mak
557 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
558 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
559 echo "#define CONFIG_FMOD 1" >> $config_h
560fi
97a847bc
FB
561echo -n "VERSION=" >>$config_mak
562head $source_path/VERSION >>$config_mak
563echo "" >>$config_mak
564echo -n "#define QEMU_VERSION \"" >> $config_h
565head $source_path/VERSION >> $config_h
566echo "\"" >> $config_h
567
c9ec1fe4
FB
568if test $kqemu = "yes" ; then
569 echo "CONFIG_KQEMU=yes" >> $config_mak
1026f133
FB
570 if test $linux = "yes" ; then
571 echo "KERNEL_PATH=$kernel_path" >> $config_mak
572 if test $kbuild26 = "yes" ; then
573 echo "CONFIG_KBUILD26=yes" >> $config_mak
574 fi
c9ec1fe4
FB
575 fi
576fi
97a847bc
FB
577echo "SRC_PATH=$source_path" >> $config_mak
578echo "TARGET_DIRS=$target_list" >> $config_mak
579
83fb7adf 580# XXX: suppress that
7d3505c5 581if [ "$bsd" = "yes" ] ; then
43003046 582 echo "#define O_LARGEFILE 0" >> $config_h
43003046 583 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
7d3505c5
FB
584 echo "#define _BSD 1" >> $config_h
585fi
586
97a847bc
FB
587for target in $target_list; do
588
589target_dir="$target"
590config_mak=$target_dir/config.mak
591config_h=$target_dir/config.h
592target_cpu=`echo $target | cut -d '-' -f 1`
593target_bigendian="no"
808c4954 594[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1e43adfc 595[ "$target_cpu" = "sparc" ] && target_bigendian=yes
64b3ab24 596[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
67867308 597[ "$target_cpu" = "ppc" ] && target_bigendian=yes
97a847bc
FB
598target_softmmu="no"
599if expr $target : '.*-softmmu' > /dev/null ; then
600 target_softmmu="yes"
601fi
997344f3
FB
602target_user_only="no"
603if expr $target : '.*-user' > /dev/null ; then
604 target_user_only="yes"
605fi
97a847bc 606
7c1f25b4 607#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc
FB
608
609mkdir -p $target_dir
158142c2 610mkdir -p $target_dir/fpu
808c4954 611if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
69de927c
FB
612 mkdir -p $target_dir/nwfpe
613fi
a7e61ed4
FB
614if test "$target_user_only" = "no" ; then
615 mkdir -p $target_dir/slirp
616fi
69de927c 617
97a847bc
FB
618ln -sf $source_path/Makefile.target $target_dir/Makefile
619
620echo "# Automatically generated by configure - do not modify" > $config_mak
621echo "/* Automatically generated by configure - do not modify */" > $config_h
622
de83cd02 623
97a847bc
FB
624echo "include ../config-host.mak" >> $config_mak
625echo "#include \"../config-host.h\"" >> $config_h
1e43adfc
FB
626
627interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
628echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
97a847bc
FB
629
630if test "$target_cpu" = "i386" ; then
631 echo "TARGET_ARCH=i386" >> $config_mak
632 echo "#define TARGET_ARCH \"i386\"" >> $config_h
633 echo "#define TARGET_I386 1" >> $config_h
07f4ddbf 634 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
824d560f
FB
635 echo "#define USE_KQEMU 1" >> $config_h
636 fi
808c4954 637elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
97a847bc
FB
638 echo "TARGET_ARCH=arm" >> $config_mak
639 echo "#define TARGET_ARCH \"arm\"" >> $config_h
640 echo "#define TARGET_ARM 1" >> $config_h
1e43adfc
FB
641elif test "$target_cpu" = "sparc" ; then
642 echo "TARGET_ARCH=sparc" >> $config_mak
643 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
644 echo "#define TARGET_SPARC 1" >> $config_h
64b3ab24
FB
645elif test "$target_cpu" = "sparc64" ; then
646 echo "TARGET_ARCH=sparc64" >> $config_mak
647 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
648 echo "#define TARGET_SPARC 1" >> $config_h
649 echo "#define TARGET_SPARC64 1" >> $config_h
67867308
FB
650elif test "$target_cpu" = "ppc" ; then
651 echo "TARGET_ARCH=ppc" >> $config_mak
652 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
653 echo "#define TARGET_PPC 1" >> $config_h
0b0babc6
FB
654elif test "$target_cpu" = "x86_64" ; then
655 echo "TARGET_ARCH=x86_64" >> $config_mak
656 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
657 echo "#define TARGET_I386 1" >> $config_h
658 echo "#define TARGET_X86_64 1" >> $config_h
07f4ddbf
FB
659 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
660 echo "#define USE_KQEMU 1" >> $config_h
661 fi
de83cd02
FB
662else
663 echo "Unsupported target CPU"
664 exit 1
665fi
666if test "$target_bigendian" = "yes" ; then
97a847bc
FB
667 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
668 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 669fi
97a847bc
FB
670if test "$target_softmmu" = "yes" ; then
671 echo "CONFIG_SOFTMMU=yes" >> $config_mak
672 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 673fi
997344f3
FB
674if test "$target_user_only" = "yes" ; then
675 echo "CONFIG_USER_ONLY=yes" >> $config_mak
676 echo "#define CONFIG_USER_ONLY 1" >> $config_h
677fi
97a847bc 678
158142c2
FB
679if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
680 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
681 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
682fi
7c1f25b4
FB
683# sdl defines
684
685if test "$target_user_only" = "no"; then
686 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
dbb2c921 687 sdl1=$sdl_static
7c1f25b4 688 else
dbb2c921
FB
689 sdl1=$sdl
690 fi
691 if test "$sdl1" = "yes" ; then
692 echo "#define CONFIG_SDL 1" >> $config_h
693 echo "CONFIG_SDL=yes" >> $config_mak
694 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
695 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
696 else
7c1f25b4
FB
697 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
698 fi
dbb2c921
FB
699 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
700 if [ "${aa}" = "yes" ] ; then
701 echo -n " `aalib-config --cflags`" >> $config_mak ;
702 fi
703 echo "" >> $config_mak
7c1f25b4 704 fi
7c1f25b4
FB
705fi
706
5b0753e0
FB
707if test "$cocoa" = "yes" ; then
708 echo "#define CONFIG_COCOA 1" >> $config_h
709 echo "CONFIG_COCOA=yes" >> $config_mak
710fi
711
97a847bc 712done # for target in $targets
7d13299d
FB
713
714# build tree in object directory if source path is different from current one
715if test "$source_path_used" = "yes" ; then
716 DIRS="tests"
717 FILES="Makefile tests/Makefile"
718 for dir in $DIRS ; do
719 mkdir -p $dir
720 done
721 for f in $FILES ; do
722 ln -sf $source_path/$f $f
723 done
724fi
7d13299d 725
97a847bc 726rm -f $TMPO $TMPC $TMPE $TMPS