blob: fa64f6d48bc6cbaefa19b3eddb53ce7d88efba16 [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001#!/bin/sh
2#
bellard3ef693a2003-03-23 20:17:16 +00003# qemu configure script (c) 2003 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00004#
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
bellard3ef693a2003-03-23 20:17:16 +000014TMPC="${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"
bellard7d132992003-03-06 23:23:54 +000018
19# default parameters
bellard11d9f692004-04-02 20:55:59 +000020prefix=""
bellard1e43adf2003-09-30 20:54:24 +000021interp_prefix="/usr/gnemul/qemu-%M"
bellard43ce4df2003-06-09 19:53:12 +000022static="no"
bellard7d132992003-03-06 23:23:54 +000023cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
bellard5327cf42005-01-10 23:18:50 +000030target_list=""
bellard7d132992003-03-06 23:23:54 +000031case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +000033 cpu="i386"
bellard7d132992003-03-06 23:23:54 +000034 ;;
bellard808c4952004-12-19 23:33:47 +000035 armv4b)
36 cpu="armv4b"
37 ;;
bellard7d132992003-03-06 23:23:54 +000038 armv4l)
39 cpu="armv4l"
40 ;;
41 alpha)
42 cpu="alpha"
43 ;;
bellard295defa2003-04-07 21:31:29 +000044 "Power Macintosh"|ppc|ppc64)
bellard7d132992003-03-06 23:23:54 +000045 cpu="powerpc"
46 ;;
47 mips)
48 cpu="mips"
49 ;;
bellardfb3e5842003-03-29 17:32:36 +000050 s390)
51 cpu="s390"
52 ;;
bellardae228532003-05-13 18:59:59 +000053 sparc)
54 cpu="sparc"
55 ;;
56 sparc64)
57 cpu="sparc64"
58 ;;
bellarda8baa8c2003-04-29 20:53:31 +000059 ia64)
60 cpu="ia64"
61 ;;
bellard38e584a2003-08-10 22:14:22 +000062 m68k)
63 cpu="m68k"
64 ;;
bellardbc51c5c2004-03-17 23:46:04 +000065 x86_64|amd64)
bellard0b0babc2005-01-03 23:38:40 +000066 cpu="x86_64"
bellardbc51c5c2004-03-17 23:46:04 +000067 ;;
bellard7d132992003-03-06 23:23:54 +000068 *)
69 cpu="unknown"
70 ;;
71esac
72gprof="no"
73bigendian="no"
bellard67b915a2004-03-31 23:37:16 +000074mingw32="no"
75EXESUF=""
76gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +000077slirp="yes"
bellardfb065182004-11-09 23:09:44 +000078adlib="no"
79oss="no"
bellard102a52e2004-11-14 19:57:29 +000080fmod="no"
81fmod_lib=""
82fmod_inc=""
bellard5327cf42005-01-10 23:18:50 +000083linux="no"
bellard7d132992003-03-06 23:23:54 +000084
85# OS specific
86targetos=`uname -s`
87case $targetos in
bellard67b915a2004-03-31 23:37:16 +000088MINGW32*)
89mingw32="yes"
90;;
bellard7d3505c2004-05-12 19:32:15 +000091FreeBSD)
92bsd="yes"
bellardfb065182004-11-09 23:09:44 +000093oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000094;;
95NetBSD)
96bsd="yes"
bellardfb065182004-11-09 23:09:44 +000097oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000098;;
99OpenBSD)
100bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000101oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000102;;
bellard83fb7ad2004-07-05 21:25:26 +0000103Darwin)
104bsd="yes"
105darwin="yes"
106;;
bellardfb065182004-11-09 23:09:44 +0000107*)
108oss="yes"
bellard5327cf42005-01-10 23:18:50 +0000109linux="yes"
bellardfb065182004-11-09 23:09:44 +0000110;;
bellard7d132992003-03-06 23:23:54 +0000111esac
112
bellard7d3505c2004-05-12 19:32:15 +0000113if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000114 if [ ! "$darwin" = "yes" ] ; then
115 make="gmake"
116 fi
bellard7d3505c2004-05-12 19:32:15 +0000117fi
118
bellard7d132992003-03-06 23:23:54 +0000119# find source path
120# XXX: we assume an absolute path is given when launching configure,
121# except in './configure' case.
122source_path=${0%configure}
123source_path=${source_path%/}
124source_path_used="yes"
125if test -z "$source_path" -o "$source_path" = "." ; then
126 source_path=`pwd`
127 source_path_used="no"
128fi
129
130for opt do
131 case "$opt" in
132 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
133 ;;
bellard32ce6332003-04-11 00:16:16 +0000134 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
135 ;;
bellard7d132992003-03-06 23:23:54 +0000136 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
137 ;;
138 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
139 ;;
140 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
141 ;;
142 --make=*) make=`echo $opt | cut -d '=' -f 2`
143 ;;
144 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
145 ;;
146 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
147 ;;
148 --extra-libs=*) extralibs=${opt#--extra-libs=}
149 ;;
150 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
151 ;;
bellard97a847b2003-08-10 21:36:04 +0000152 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000153 ;;
bellard7d132992003-03-06 23:23:54 +0000154 --enable-gprof) gprof="yes"
155 ;;
bellard43ce4df2003-06-09 19:53:12 +0000156 --static) static="yes"
157 ;;
bellard97a847b2003-08-10 21:36:04 +0000158 --disable-sdl) sdl="no"
159 ;;
bellard102a52e2004-11-14 19:57:29 +0000160 --enable-fmod) fmod="yes"
161 ;;
162 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
163 ;;
164 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
165 ;;
bellard67b915a2004-03-31 23:37:16 +0000166 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
167 ;;
bellard443f1372004-06-04 11:13:20 +0000168 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000169 ;;
bellardfb065182004-11-09 23:09:44 +0000170 --enable-adlib) adlib="yes"
171 ;;
bellard7d132992003-03-06 23:23:54 +0000172 esac
173done
174
175# Checking for CFLAGS
176if test -z "$CFLAGS"; then
177 CFLAGS="-O2"
178fi
179
180cc="${cross_prefix}${cc}"
181ar="${cross_prefix}${ar}"
182strip="${cross_prefix}${strip}"
183
bellard67b915a2004-03-31 23:37:16 +0000184if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000185 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000186 EXESUF=".exe"
187 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000188 oss="no"
bellard67b915a2004-03-31 23:37:16 +0000189fi
190
bellard5327cf42005-01-10 23:18:50 +0000191if test -z "$target_list" ; then
192# these targets are portable
193 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
194# the following are Linux specific
195 if [ "$linux" = "yes" ] ; then
196 target_list="i386-user i386 arm-user armeb-user sparc-user ppc-user $target_list"
197 fi
198fi
199
bellard7d132992003-03-06 23:23:54 +0000200if test -z "$cross_prefix" ; then
201
202# ---
203# big/little endian test
204cat > $TMPC << EOF
205#include <inttypes.h>
206int main(int argc, char ** argv){
207 volatile uint32_t i=0x01234567;
208 return (*((uint8_t*)(&i))) == 0x67;
209}
210EOF
211
212if $cc -o $TMPE $TMPC 2>/dev/null ; then
213$TMPE && bigendian="yes"
214else
215echo big/little test failed
216fi
217
218else
219
220# if cross compiling, cannot launch a program, so make a static guess
bellard808c4952004-12-19 23:33:47 +0000221if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
bellard7d132992003-03-06 23:23:54 +0000222 bigendian="yes"
223fi
224
225fi
226
bellarde8cd23d2003-06-25 16:08:13 +0000227# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000228cat > $TMPC <<EOF
229int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000230}
231EOF
232
bellarde8cd23d2003-06-25 16:08:13 +0000233have_gcc3_options="no"
234if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
235 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000236fi
bellardca735202003-03-18 20:41:34 +0000237
bellard11d9f692004-04-02 20:55:59 +0000238##########################################
239# SDL probe
240
241sdl_too_old=no
242
243if test -z "$sdl" ; then
244
bellarda6e022a2004-04-02 21:55:47 +0000245sdl_config="sdl-config"
246sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000247sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000248
249if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
250# win32 cross compilation case
251 sdl_config="i386-mingw32msvc-sdl-config"
252 sdl=yes
253else
254# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000255cat > $TMPC << EOF
256#include <SDL.h>
257#undef main /* We don't want SDL to override our main() */
258int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
259EOF
260
bellarda6e022a2004-04-02 21:55:47 +0000261if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
262_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000263if test "$_sdlversion" -lt 121 ; then
264sdl_too_old=yes
265else
266sdl=yes
267fi
bellard7c1f25b2004-04-22 00:02:08 +0000268
269# static link with sdl ?
270if test "$sdl" = "yes" ; then
271aa="no"
272`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
273sdl_static_libs=`$sdl_config --static-libs`
274if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000275 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000276fi
277
bellard7c1f25b2004-04-22 00:02:08 +0000278if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
279 sdl_static=yes
280fi
281
282fi # static link
283
284fi # sdl compile test
285
bellarda6e022a2004-04-02 21:55:47 +0000286fi # cross compilation
287fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000288
bellard7d132992003-03-06 23:23:54 +0000289if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
290cat << EOF
291
292Usage: configure [options]
293Options: [defaults in brackets after descriptions]
294
295EOF
296echo "Standard options:"
297echo " --help print this message"
298echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000299echo " --interp-prefix=PREFIX where to find shared libraries, etc."
300echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000301echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000302echo ""
303echo "Advanced options (experts only):"
304echo " --source-path=PATH path of source code [$source_path]"
305echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
306echo " --cc=CC use C compiler CC [$cc]"
307echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000308echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000309echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard102a52e2004-11-14 19:57:29 +0000310echo " --enable-fmod enable FMOD audio output driver"
311echo " --fmod-lib path to FMOD library"
312echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000313echo ""
314echo "NOTE: The object files are build at the place where configure is launched"
315exit 1
316fi
317
bellard11d9f692004-04-02 20:55:59 +0000318if test "$mingw32" = "yes" ; then
319if test -z "$prefix" ; then
320 prefix="/c/Program Files/Qemu"
321fi
322mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000323datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000324docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000325bindir="$prefix"
326else
327if test -z "$prefix" ; then
328 prefix="/usr/local"
329fi
bellard5a671352003-10-01 00:13:48 +0000330mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000331datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000332docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000333bindir="$prefix/bin"
334fi
bellard5a671352003-10-01 00:13:48 +0000335
bellard43ce4df2003-06-09 19:53:12 +0000336echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000337echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000338echo "binary directory $bindir"
339if test "$mingw32" = "no" ; then
340echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000341echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000342fi
bellard5a671352003-10-01 00:13:48 +0000343echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000344echo "C compiler $cc"
345echo "make $make"
346echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000347echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000348echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000349echo "gprof enabled $gprof"
350echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000351echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000352echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000353echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000354echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000355echo -n "FMOD support $fmod"
356if test $fmod = "yes"; then
357 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
358fi
359echo ""
bellard67b915a2004-03-31 23:37:16 +0000360
bellard97a847b2003-08-10 21:36:04 +0000361if test $sdl_too_old = "yes"; then
362echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000363fi
bellard7c1f25b2004-04-22 00:02:08 +0000364if test "$sdl_static" = "no"; then
365 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
366fi
bellard97a847b2003-08-10 21:36:04 +0000367
368config_mak="config-host.mak"
369config_h="config-host.h"
370
bellard7c1f25b2004-04-22 00:02:08 +0000371#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000372
373echo "# Automatically generated by configure - do not modify" > $config_mak
374echo "/* Automatically generated by configure - do not modify */" > $config_h
375
376echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000377echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000378echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000379echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000380echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000381echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000382echo "MAKE=$make" >> $config_mak
383echo "CC=$cc" >> $config_mak
384if test "$have_gcc3_options" = "yes" ; then
385 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
386fi
387echo "HOST_CC=$host_cc" >> $config_mak
388echo "AR=$ar" >> $config_mak
389echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
390echo "CFLAGS=$CFLAGS" >> $config_mak
391echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000392echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000393if test "$cpu" = "i386" ; then
394 echo "ARCH=i386" >> $config_mak
395 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000396elif test "$cpu" = "x86_64" ; then
397 echo "ARCH=x86_64" >> $config_mak
398 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000399elif test "$cpu" = "armv4b" ; then
400 echo "ARCH=arm" >> $config_mak
401 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000402elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000403 echo "ARCH=arm" >> $config_mak
404 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000405elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000406 echo "ARCH=ppc" >> $config_mak
407 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000408elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000409 echo "ARCH=mips" >> $config_mak
410 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000411elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000412 echo "ARCH=s390" >> $config_mak
413 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000414elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000415 echo "ARCH=alpha" >> $config_mak
416 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000417elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000418 echo "ARCH=sparc" >> $config_mak
419 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000420elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000421 echo "ARCH=sparc64" >> $config_mak
422 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000423elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000424 echo "ARCH=ia64" >> $config_mak
425 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000426elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000427 echo "ARCH=m68k" >> $config_mak
428 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000429else
430 echo "Unsupported CPU"
431 exit 1
432fi
433if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000434 echo "WORDS_BIGENDIAN=yes" >> $config_mak
435 echo "#define WORDS_BIGENDIAN 1" >> $config_h
436fi
bellard67b915a2004-03-31 23:37:16 +0000437if test "$mingw32" = "yes" ; then
438 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000439 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000440elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000441 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
442fi
bellard83fb7ad2004-07-05 21:25:26 +0000443if test "$darwin" = "yes" ; then
444 echo "CONFIG_DARWIN=yes" >> $config_mak
445 echo "#define CONFIG_DARWIN 1" >> $config_h
446fi
bellard67b915a2004-03-31 23:37:16 +0000447if test "$gdbstub" = "yes" ; then
448 echo "CONFIG_GDBSTUB=yes" >> $config_mak
449 echo "#define CONFIG_GDBSTUB 1" >> $config_h
450fi
bellard97a847b2003-08-10 21:36:04 +0000451if test "$gprof" = "yes" ; then
452 echo "TARGET_GPROF=yes" >> $config_mak
453 echo "#define HAVE_GPROF 1" >> $config_h
454fi
455if test "$static" = "yes" ; then
456 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000457 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000458fi
bellardc20709a2004-04-21 23:27:19 +0000459if test "$slirp" = "yes" ; then
460 echo "CONFIG_SLIRP=yes" >> $config_mak
461 echo "#define CONFIG_SLIRP 1" >> $config_h
462fi
bellardfb065182004-11-09 23:09:44 +0000463if test "$adlib" = "yes" ; then
464 echo "CONFIG_ADLIB=yes" >> $config_mak
465 echo "#define CONFIG_ADLIB 1" >> $config_h
466fi
467if test "$oss" = "yes" ; then
468 echo "CONFIG_OSS=yes" >> $config_mak
469 echo "#define CONFIG_OSS 1" >> $config_h
470fi
bellard102a52e2004-11-14 19:57:29 +0000471if test "$fmod" = "yes" ; then
472 echo "CONFIG_FMOD=yes" >> $config_mak
473 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
474 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
475 echo "#define CONFIG_FMOD 1" >> $config_h
476fi
bellard97a847b2003-08-10 21:36:04 +0000477echo -n "VERSION=" >>$config_mak
478head $source_path/VERSION >>$config_mak
479echo "" >>$config_mak
480echo -n "#define QEMU_VERSION \"" >> $config_h
481head $source_path/VERSION >> $config_h
482echo "\"" >> $config_h
483
484echo "SRC_PATH=$source_path" >> $config_mak
485echo "TARGET_DIRS=$target_list" >> $config_mak
486
bellard83fb7ad2004-07-05 21:25:26 +0000487# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000488if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000489 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000490 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000491 echo "#define _BSD 1" >> $config_h
492fi
493
bellard97a847b2003-08-10 21:36:04 +0000494for target in $target_list; do
495
496target_dir="$target"
497config_mak=$target_dir/config.mak
498config_h=$target_dir/config.h
499target_cpu=`echo $target | cut -d '-' -f 1`
500target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000501[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000502[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000503[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000504target_softmmu="no"
505if expr $target : '.*-softmmu' > /dev/null ; then
506 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000507fi
bellard997344f2003-10-27 21:10:39 +0000508target_user_only="no"
509if expr $target : '.*-user' > /dev/null ; then
510 target_user_only="yes"
511fi
bellardde83cd02003-06-15 20:25:43 +0000512
bellard7c1f25b2004-04-22 00:02:08 +0000513#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000514
515mkdir -p $target_dir
bellard808c4952004-12-19 23:33:47 +0000516if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000517 mkdir -p $target_dir/nwfpe
518fi
bellarda7e61ed2004-04-22 21:46:47 +0000519if test "$target_user_only" = "no" ; then
520 mkdir -p $target_dir/slirp
521fi
bellard69de9272004-02-16 21:40:43 +0000522
bellard97a847b2003-08-10 21:36:04 +0000523ln -sf $source_path/Makefile.target $target_dir/Makefile
524
525echo "# Automatically generated by configure - do not modify" > $config_mak
526echo "/* Automatically generated by configure - do not modify */" > $config_h
527
528
529echo "include ../config-host.mak" >> $config_mak
530echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000531
532interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
533echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000534
535if test "$target_cpu" = "i386" ; then
536 echo "TARGET_ARCH=i386" >> $config_mak
537 echo "#define TARGET_ARCH \"i386\"" >> $config_h
538 echo "#define TARGET_I386 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000539elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000540 echo "TARGET_ARCH=arm" >> $config_mak
541 echo "#define TARGET_ARCH \"arm\"" >> $config_h
542 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000543elif test "$target_cpu" = "sparc" ; then
544 echo "TARGET_ARCH=sparc" >> $config_mak
545 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
546 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000547elif test "$target_cpu" = "ppc" ; then
548 echo "TARGET_ARCH=ppc" >> $config_mak
549 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
550 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000551elif test "$target_cpu" = "x86_64" ; then
552 echo "TARGET_ARCH=x86_64" >> $config_mak
553 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
554 echo "#define TARGET_I386 1" >> $config_h
555 echo "#define TARGET_X86_64 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000556else
557 echo "Unsupported target CPU"
558 exit 1
559fi
560if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000561 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
562 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
563fi
564if test "$target_softmmu" = "yes" ; then
565 echo "CONFIG_SOFTMMU=yes" >> $config_mak
566 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000567fi
bellard997344f2003-10-27 21:10:39 +0000568if test "$target_user_only" = "yes" ; then
569 echo "CONFIG_USER_ONLY=yes" >> $config_mak
570 echo "#define CONFIG_USER_ONLY 1" >> $config_h
571fi
bellardde83cd02003-06-15 20:25:43 +0000572
bellard7c1f25b2004-04-22 00:02:08 +0000573# sdl defines
574
575if test "$target_user_only" = "no"; then
576 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000577 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000578 else
bellarddbb2c922004-10-24 22:17:47 +0000579 sdl1=$sdl
580 fi
581 if test "$sdl1" = "yes" ; then
582 echo "#define CONFIG_SDL 1" >> $config_h
583 echo "CONFIG_SDL=yes" >> $config_mak
584 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
585 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
586 else
bellard7c1f25b2004-04-22 00:02:08 +0000587 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
588 fi
bellarddbb2c922004-10-24 22:17:47 +0000589 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
590 if [ "${aa}" = "yes" ] ; then
591 echo -n " `aalib-config --cflags`" >> $config_mak ;
592 fi
593 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000594 fi
bellard7c1f25b2004-04-22 00:02:08 +0000595fi
596
bellard97a847b2003-08-10 21:36:04 +0000597done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000598
599# build tree in object directory if source path is different from current one
600if test "$source_path_used" = "yes" ; then
601 DIRS="tests"
602 FILES="Makefile tests/Makefile"
603 for dir in $DIRS ; do
604 mkdir -p $dir
605 done
606 for f in $FILES ; do
607 ln -sf $source_path/$f $f
608 done
609fi
bellard7d132992003-03-06 23:23:54 +0000610
bellard97a847b2003-08-10 21:36:04 +0000611rm -f $TMPO $TMPC $TMPE $TMPS