blob: 9f7ba2b51d4ee81ce1f1404a7e989c6066b7474d [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`
bellard0b0babc2005-01-03 23:38:40 +000030target_list="i386-user i386 i386-softmmu arm-user armeb-user sparc-user ppc-user ppc-softmmu sparc-softmmu x86_64-softmmu"
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=""
bellard7d132992003-03-06 23:23:54 +000083
84# OS specific
85targetos=`uname -s`
86case $targetos in
bellard67b915a2004-03-31 23:37:16 +000087MINGW32*)
88mingw32="yes"
89;;
bellard7d3505c2004-05-12 19:32:15 +000090FreeBSD)
91bsd="yes"
bellardfb065182004-11-09 23:09:44 +000092oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000093;;
94NetBSD)
95bsd="yes"
bellardfb065182004-11-09 23:09:44 +000096oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000097;;
98OpenBSD)
99bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000100oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000101;;
bellard83fb7ad2004-07-05 21:25:26 +0000102Darwin)
103bsd="yes"
104darwin="yes"
105;;
bellardfb065182004-11-09 23:09:44 +0000106*)
107oss="yes"
108;;
bellard7d132992003-03-06 23:23:54 +0000109esac
110
bellard7d3505c2004-05-12 19:32:15 +0000111if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000112 if [ ! "$darwin" = "yes" ] ; then
113 make="gmake"
114 fi
bellarde95c8d52004-09-30 22:22:08 +0000115 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard7d3505c2004-05-12 19:32:15 +0000116fi
117
bellard7d132992003-03-06 23:23:54 +0000118# find source path
119# XXX: we assume an absolute path is given when launching configure,
120# except in './configure' case.
121source_path=${0%configure}
122source_path=${source_path%/}
123source_path_used="yes"
124if test -z "$source_path" -o "$source_path" = "." ; then
125 source_path=`pwd`
126 source_path_used="no"
127fi
128
129for opt do
130 case "$opt" in
131 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
132 ;;
bellard32ce6332003-04-11 00:16:16 +0000133 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
134 ;;
bellard7d132992003-03-06 23:23:54 +0000135 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
136 ;;
137 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
138 ;;
139 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
140 ;;
141 --make=*) make=`echo $opt | cut -d '=' -f 2`
142 ;;
143 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
144 ;;
145 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
146 ;;
147 --extra-libs=*) extralibs=${opt#--extra-libs=}
148 ;;
149 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
150 ;;
bellard97a847b2003-08-10 21:36:04 +0000151 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000152 ;;
bellard7d132992003-03-06 23:23:54 +0000153 --enable-gprof) gprof="yes"
154 ;;
bellard43ce4df2003-06-09 19:53:12 +0000155 --static) static="yes"
156 ;;
bellard97a847b2003-08-10 21:36:04 +0000157 --disable-sdl) sdl="no"
158 ;;
bellard102a52e2004-11-14 19:57:29 +0000159 --enable-fmod) fmod="yes"
160 ;;
161 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
162 ;;
163 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
164 ;;
bellard67b915a2004-03-31 23:37:16 +0000165 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
166 ;;
bellard443f1372004-06-04 11:13:20 +0000167 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000168 ;;
bellardfb065182004-11-09 23:09:44 +0000169 --enable-adlib) adlib="yes"
170 ;;
bellard7d132992003-03-06 23:23:54 +0000171 esac
172done
173
174# Checking for CFLAGS
175if test -z "$CFLAGS"; then
176 CFLAGS="-O2"
177fi
178
179cc="${cross_prefix}${cc}"
180ar="${cross_prefix}${ar}"
181strip="${cross_prefix}${strip}"
182
bellard67b915a2004-03-31 23:37:16 +0000183if test "$mingw32" = "yes" ; then
bellarde95c8d52004-09-30 22:22:08 +0000184 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard67b915a2004-03-31 23:37:16 +0000185 EXESUF=".exe"
186 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000187 oss="no"
bellard67b915a2004-03-31 23:37:16 +0000188fi
189
bellard7d132992003-03-06 23:23:54 +0000190if test -z "$cross_prefix" ; then
191
192# ---
193# big/little endian test
194cat > $TMPC << EOF
195#include <inttypes.h>
196int main(int argc, char ** argv){
197 volatile uint32_t i=0x01234567;
198 return (*((uint8_t*)(&i))) == 0x67;
199}
200EOF
201
202if $cc -o $TMPE $TMPC 2>/dev/null ; then
203$TMPE && bigendian="yes"
204else
205echo big/little test failed
206fi
207
208else
209
210# if cross compiling, cannot launch a program, so make a static guess
bellard808c4952004-12-19 23:33:47 +0000211if 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 +0000212 bigendian="yes"
213fi
214
215fi
216
bellarde8cd23d2003-06-25 16:08:13 +0000217# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000218cat > $TMPC <<EOF
219int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000220}
221EOF
222
bellarde8cd23d2003-06-25 16:08:13 +0000223have_gcc3_options="no"
224if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
225 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000226fi
bellardca735202003-03-18 20:41:34 +0000227
bellard11d9f692004-04-02 20:55:59 +0000228##########################################
229# SDL probe
230
231sdl_too_old=no
232
233if test -z "$sdl" ; then
234
bellarda6e022a2004-04-02 21:55:47 +0000235sdl_config="sdl-config"
236sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000237sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000238
239if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
240# win32 cross compilation case
241 sdl_config="i386-mingw32msvc-sdl-config"
242 sdl=yes
243else
244# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000245cat > $TMPC << EOF
246#include <SDL.h>
247#undef main /* We don't want SDL to override our main() */
248int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
249EOF
250
bellarda6e022a2004-04-02 21:55:47 +0000251if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
252_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000253if test "$_sdlversion" -lt 121 ; then
254sdl_too_old=yes
255else
256sdl=yes
257fi
bellard7c1f25b2004-04-22 00:02:08 +0000258
259# static link with sdl ?
260if test "$sdl" = "yes" ; then
261aa="no"
262`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
263sdl_static_libs=`$sdl_config --static-libs`
264if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000265 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000266fi
267
bellard7c1f25b2004-04-22 00:02:08 +0000268if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
269 sdl_static=yes
270fi
271
272fi # static link
273
274fi # sdl compile test
275
bellarda6e022a2004-04-02 21:55:47 +0000276fi # cross compilation
277fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000278
bellard7d132992003-03-06 23:23:54 +0000279if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
280cat << EOF
281
282Usage: configure [options]
283Options: [defaults in brackets after descriptions]
284
285EOF
286echo "Standard options:"
287echo " --help print this message"
288echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000289echo " --interp-prefix=PREFIX where to find shared libraries, etc."
290echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000291echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000292echo ""
293echo "Advanced options (experts only):"
294echo " --source-path=PATH path of source code [$source_path]"
295echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
296echo " --cc=CC use C compiler CC [$cc]"
297echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000298echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000299echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard102a52e2004-11-14 19:57:29 +0000300echo " --enable-fmod enable FMOD audio output driver"
301echo " --fmod-lib path to FMOD library"
302echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000303echo ""
304echo "NOTE: The object files are build at the place where configure is launched"
305exit 1
306fi
307
bellard11d9f692004-04-02 20:55:59 +0000308if test "$mingw32" = "yes" ; then
309if test -z "$prefix" ; then
310 prefix="/c/Program Files/Qemu"
311fi
312mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000313datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000314docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000315bindir="$prefix"
316else
317if test -z "$prefix" ; then
318 prefix="/usr/local"
319fi
bellard5a671352003-10-01 00:13:48 +0000320mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000321datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000322docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000323bindir="$prefix/bin"
324fi
bellard5a671352003-10-01 00:13:48 +0000325
bellard43ce4df2003-06-09 19:53:12 +0000326echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000327echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000328echo "binary directory $bindir"
329if test "$mingw32" = "no" ; then
330echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000331echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000332fi
bellard5a671352003-10-01 00:13:48 +0000333echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000334echo "C compiler $cc"
335echo "make $make"
336echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000337echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000338echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000339echo "gprof enabled $gprof"
340echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000341echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000342echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000343echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000344echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000345echo -n "FMOD support $fmod"
346if test $fmod = "yes"; then
347 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
348fi
349echo ""
bellard67b915a2004-03-31 23:37:16 +0000350
bellard97a847b2003-08-10 21:36:04 +0000351if test $sdl_too_old = "yes"; then
352echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000353fi
bellard7c1f25b2004-04-22 00:02:08 +0000354if test "$sdl_static" = "no"; then
355 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
356fi
bellard97a847b2003-08-10 21:36:04 +0000357
358config_mak="config-host.mak"
359config_h="config-host.h"
360
bellard7c1f25b2004-04-22 00:02:08 +0000361#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000362
363echo "# Automatically generated by configure - do not modify" > $config_mak
364echo "/* Automatically generated by configure - do not modify */" > $config_h
365
366echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000367echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000368echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000369echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000370echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000371echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000372echo "MAKE=$make" >> $config_mak
373echo "CC=$cc" >> $config_mak
374if test "$have_gcc3_options" = "yes" ; then
375 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
376fi
377echo "HOST_CC=$host_cc" >> $config_mak
378echo "AR=$ar" >> $config_mak
379echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
380echo "CFLAGS=$CFLAGS" >> $config_mak
381echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000382echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000383if test "$cpu" = "i386" ; then
384 echo "ARCH=i386" >> $config_mak
385 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000386elif test "$cpu" = "x86_64" ; then
387 echo "ARCH=x86_64" >> $config_mak
388 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000389elif test "$cpu" = "armv4b" ; then
390 echo "ARCH=arm" >> $config_mak
391 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000392elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000393 echo "ARCH=arm" >> $config_mak
394 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000395elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000396 echo "ARCH=ppc" >> $config_mak
397 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000398elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000399 echo "ARCH=mips" >> $config_mak
400 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000401elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000402 echo "ARCH=s390" >> $config_mak
403 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000404elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000405 echo "ARCH=alpha" >> $config_mak
406 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000407elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000408 echo "ARCH=sparc" >> $config_mak
409 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000410elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000411 echo "ARCH=sparc64" >> $config_mak
412 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000413elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000414 echo "ARCH=ia64" >> $config_mak
415 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000416elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000417 echo "ARCH=m68k" >> $config_mak
418 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000419else
420 echo "Unsupported CPU"
421 exit 1
422fi
423if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000424 echo "WORDS_BIGENDIAN=yes" >> $config_mak
425 echo "#define WORDS_BIGENDIAN 1" >> $config_h
426fi
bellard67b915a2004-03-31 23:37:16 +0000427if test "$mingw32" = "yes" ; then
428 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000429 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000430elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000431 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
432fi
bellard83fb7ad2004-07-05 21:25:26 +0000433if test "$darwin" = "yes" ; then
434 echo "CONFIG_DARWIN=yes" >> $config_mak
435 echo "#define CONFIG_DARWIN 1" >> $config_h
436fi
bellard67b915a2004-03-31 23:37:16 +0000437if test "$gdbstub" = "yes" ; then
438 echo "CONFIG_GDBSTUB=yes" >> $config_mak
439 echo "#define CONFIG_GDBSTUB 1" >> $config_h
440fi
bellard97a847b2003-08-10 21:36:04 +0000441if test "$gprof" = "yes" ; then
442 echo "TARGET_GPROF=yes" >> $config_mak
443 echo "#define HAVE_GPROF 1" >> $config_h
444fi
445if test "$static" = "yes" ; then
446 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000447 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000448fi
bellardc20709a2004-04-21 23:27:19 +0000449if test "$slirp" = "yes" ; then
450 echo "CONFIG_SLIRP=yes" >> $config_mak
451 echo "#define CONFIG_SLIRP 1" >> $config_h
452fi
bellardfb065182004-11-09 23:09:44 +0000453if test "$adlib" = "yes" ; then
454 echo "CONFIG_ADLIB=yes" >> $config_mak
455 echo "#define CONFIG_ADLIB 1" >> $config_h
456fi
457if test "$oss" = "yes" ; then
458 echo "CONFIG_OSS=yes" >> $config_mak
459 echo "#define CONFIG_OSS 1" >> $config_h
460fi
bellard102a52e2004-11-14 19:57:29 +0000461if test "$fmod" = "yes" ; then
462 echo "CONFIG_FMOD=yes" >> $config_mak
463 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
464 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
465 echo "#define CONFIG_FMOD 1" >> $config_h
466fi
bellard97a847b2003-08-10 21:36:04 +0000467echo -n "VERSION=" >>$config_mak
468head $source_path/VERSION >>$config_mak
469echo "" >>$config_mak
470echo -n "#define QEMU_VERSION \"" >> $config_h
471head $source_path/VERSION >> $config_h
472echo "\"" >> $config_h
473
474echo "SRC_PATH=$source_path" >> $config_mak
475echo "TARGET_DIRS=$target_list" >> $config_mak
476
bellard83fb7ad2004-07-05 21:25:26 +0000477# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000478if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000479 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000480 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000481 echo "#define _BSD 1" >> $config_h
482fi
483
bellard97a847b2003-08-10 21:36:04 +0000484for target in $target_list; do
485
486target_dir="$target"
487config_mak=$target_dir/config.mak
488config_h=$target_dir/config.h
489target_cpu=`echo $target | cut -d '-' -f 1`
490target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000491[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000492[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000493[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000494target_softmmu="no"
495if expr $target : '.*-softmmu' > /dev/null ; then
496 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000497fi
bellard997344f2003-10-27 21:10:39 +0000498target_user_only="no"
499if expr $target : '.*-user' > /dev/null ; then
500 target_user_only="yes"
501fi
bellardde83cd02003-06-15 20:25:43 +0000502
bellard7c1f25b2004-04-22 00:02:08 +0000503#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000504
505mkdir -p $target_dir
bellard808c4952004-12-19 23:33:47 +0000506if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000507 mkdir -p $target_dir/nwfpe
508fi
bellarda7e61ed2004-04-22 21:46:47 +0000509if test "$target_user_only" = "no" ; then
510 mkdir -p $target_dir/slirp
511fi
bellard69de9272004-02-16 21:40:43 +0000512
bellard97a847b2003-08-10 21:36:04 +0000513ln -sf $source_path/Makefile.target $target_dir/Makefile
514
515echo "# Automatically generated by configure - do not modify" > $config_mak
516echo "/* Automatically generated by configure - do not modify */" > $config_h
517
518
519echo "include ../config-host.mak" >> $config_mak
520echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000521
522interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
523echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000524
525if test "$target_cpu" = "i386" ; then
526 echo "TARGET_ARCH=i386" >> $config_mak
527 echo "#define TARGET_ARCH \"i386\"" >> $config_h
528 echo "#define TARGET_I386 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000529elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000530 echo "TARGET_ARCH=arm" >> $config_mak
531 echo "#define TARGET_ARCH \"arm\"" >> $config_h
532 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000533elif test "$target_cpu" = "sparc" ; then
534 echo "TARGET_ARCH=sparc" >> $config_mak
535 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
536 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000537elif test "$target_cpu" = "ppc" ; then
538 echo "TARGET_ARCH=ppc" >> $config_mak
539 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
540 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000541elif test "$target_cpu" = "x86_64" ; then
542 echo "TARGET_ARCH=x86_64" >> $config_mak
543 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
544 echo "#define TARGET_I386 1" >> $config_h
545 echo "#define TARGET_X86_64 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000546else
547 echo "Unsupported target CPU"
548 exit 1
549fi
550if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000551 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
552 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
553fi
554if test "$target_softmmu" = "yes" ; then
555 echo "CONFIG_SOFTMMU=yes" >> $config_mak
556 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000557fi
bellard997344f2003-10-27 21:10:39 +0000558if test "$target_user_only" = "yes" ; then
559 echo "CONFIG_USER_ONLY=yes" >> $config_mak
560 echo "#define CONFIG_USER_ONLY 1" >> $config_h
561fi
bellardde83cd02003-06-15 20:25:43 +0000562
bellard7c1f25b2004-04-22 00:02:08 +0000563# sdl defines
564
565if test "$target_user_only" = "no"; then
566 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000567 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000568 else
bellarddbb2c922004-10-24 22:17:47 +0000569 sdl1=$sdl
570 fi
571 if test "$sdl1" = "yes" ; then
572 echo "#define CONFIG_SDL 1" >> $config_h
573 echo "CONFIG_SDL=yes" >> $config_mak
574 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
575 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
576 else
bellard7c1f25b2004-04-22 00:02:08 +0000577 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
578 fi
bellarddbb2c922004-10-24 22:17:47 +0000579 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
580 if [ "${aa}" = "yes" ] ; then
581 echo -n " `aalib-config --cflags`" >> $config_mak ;
582 fi
583 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000584 fi
bellard7c1f25b2004-04-22 00:02:08 +0000585fi
586
bellard97a847b2003-08-10 21:36:04 +0000587done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000588
589# build tree in object directory if source path is different from current one
590if test "$source_path_used" = "yes" ; then
591 DIRS="tests"
592 FILES="Makefile tests/Makefile"
593 for dir in $DIRS ; do
594 mkdir -p $dir
595 done
596 for f in $FILES ; do
597 ln -sf $source_path/$f $f
598 done
599fi
bellard7d132992003-03-06 23:23:54 +0000600
bellard97a847b2003-08-10 21:36:04 +0000601rm -f $TMPO $TMPC $TMPE $TMPS