blob: 6b83e38fbde49b7aaf5359627149c51f68661b42 [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"
bellardc9ec1fe2005-02-10 21:55:30 +000084kqemu="no"
85kernel_path=""
bellard7d132992003-03-06 23:23:54 +000086
87# OS specific
88targetos=`uname -s`
89case $targetos in
bellard67b915a2004-03-31 23:37:16 +000090MINGW32*)
91mingw32="yes"
92;;
bellard7d3505c2004-05-12 19:32:15 +000093FreeBSD)
94bsd="yes"
bellardfb065182004-11-09 23:09:44 +000095oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000096;;
97NetBSD)
98bsd="yes"
bellardfb065182004-11-09 23:09:44 +000099oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000100;;
101OpenBSD)
102bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000103oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000104;;
bellard83fb7ad2004-07-05 21:25:26 +0000105Darwin)
106bsd="yes"
107darwin="yes"
108;;
bellardfb065182004-11-09 23:09:44 +0000109*)
110oss="yes"
bellard5327cf42005-01-10 23:18:50 +0000111linux="yes"
bellardc9ec1fe2005-02-10 21:55:30 +0000112if [ "$cpu" = "i386" ] ; then
113 kqemu="yes"
114fi
bellardfb065182004-11-09 23:09:44 +0000115;;
bellard7d132992003-03-06 23:23:54 +0000116esac
117
bellard7d3505c2004-05-12 19:32:15 +0000118if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000119 if [ ! "$darwin" = "yes" ] ; then
120 make="gmake"
121 fi
bellard7d3505c2004-05-12 19:32:15 +0000122fi
123
bellard7d132992003-03-06 23:23:54 +0000124# find source path
125# XXX: we assume an absolute path is given when launching configure,
126# except in './configure' case.
127source_path=${0%configure}
128source_path=${source_path%/}
129source_path_used="yes"
130if test -z "$source_path" -o "$source_path" = "." ; then
131 source_path=`pwd`
132 source_path_used="no"
133fi
134
135for opt do
136 case "$opt" in
137 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
138 ;;
bellard32ce6332003-04-11 00:16:16 +0000139 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
140 ;;
bellard7d132992003-03-06 23:23:54 +0000141 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
142 ;;
143 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
144 ;;
145 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
146 ;;
147 --make=*) make=`echo $opt | cut -d '=' -f 2`
148 ;;
149 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
150 ;;
151 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
152 ;;
153 --extra-libs=*) extralibs=${opt#--extra-libs=}
154 ;;
155 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
156 ;;
bellard97a847b2003-08-10 21:36:04 +0000157 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000158 ;;
bellard7d132992003-03-06 23:23:54 +0000159 --enable-gprof) gprof="yes"
160 ;;
bellard43ce4df2003-06-09 19:53:12 +0000161 --static) static="yes"
162 ;;
bellard97a847b2003-08-10 21:36:04 +0000163 --disable-sdl) sdl="no"
164 ;;
bellard102a52e2004-11-14 19:57:29 +0000165 --enable-fmod) fmod="yes"
166 ;;
167 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
168 ;;
169 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
170 ;;
bellard67b915a2004-03-31 23:37:16 +0000171 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
172 ;;
bellard443f1372004-06-04 11:13:20 +0000173 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000174 ;;
bellardfb065182004-11-09 23:09:44 +0000175 --enable-adlib) adlib="yes"
176 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000177 --disable-kqemu) kqemu="no"
178 ;;
179 --kernel-path=*) kernel_path=${opt#--kernel-path=}
180 ;;
bellard7d132992003-03-06 23:23:54 +0000181 esac
182done
183
184# Checking for CFLAGS
185if test -z "$CFLAGS"; then
186 CFLAGS="-O2"
187fi
188
189cc="${cross_prefix}${cc}"
190ar="${cross_prefix}${ar}"
191strip="${cross_prefix}${strip}"
192
bellard67b915a2004-03-31 23:37:16 +0000193if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000194 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000195 EXESUF=".exe"
196 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000197 oss="no"
bellard824d5602005-02-12 18:58:00 +0000198 kqemu="no"
bellard67b915a2004-03-31 23:37:16 +0000199fi
200
bellard5327cf42005-01-10 23:18:50 +0000201if test -z "$target_list" ; then
202# these targets are portable
bellarda20b5522005-02-19 17:24:28 +0000203 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
bellard5327cf42005-01-10 23:18:50 +0000204# the following are Linux specific
205 if [ "$linux" = "yes" ] ; then
bellarda20b5522005-02-19 17:24:28 +0000206 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
bellard5327cf42005-01-10 23:18:50 +0000207 fi
208fi
209
bellard7d132992003-03-06 23:23:54 +0000210if test -z "$cross_prefix" ; then
211
212# ---
213# big/little endian test
214cat > $TMPC << EOF
215#include <inttypes.h>
216int main(int argc, char ** argv){
217 volatile uint32_t i=0x01234567;
218 return (*((uint8_t*)(&i))) == 0x67;
219}
220EOF
221
222if $cc -o $TMPE $TMPC 2>/dev/null ; then
223$TMPE && bigendian="yes"
224else
225echo big/little test failed
226fi
227
228else
229
230# if cross compiling, cannot launch a program, so make a static guess
bellard808c4952004-12-19 23:33:47 +0000231if 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 +0000232 bigendian="yes"
233fi
234
235fi
236
bellarde8cd23d2003-06-25 16:08:13 +0000237# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000238cat > $TMPC <<EOF
239int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000240}
241EOF
242
bellarde8cd23d2003-06-25 16:08:13 +0000243have_gcc3_options="no"
244if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
245 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000246fi
bellardca735202003-03-18 20:41:34 +0000247
bellard11d9f692004-04-02 20:55:59 +0000248##########################################
249# SDL probe
250
251sdl_too_old=no
252
253if test -z "$sdl" ; then
254
bellarda6e022a2004-04-02 21:55:47 +0000255sdl_config="sdl-config"
256sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000257sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000258
259if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
260# win32 cross compilation case
261 sdl_config="i386-mingw32msvc-sdl-config"
262 sdl=yes
263else
264# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000265cat > $TMPC << EOF
266#include <SDL.h>
267#undef main /* We don't want SDL to override our main() */
268int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
269EOF
270
bellarda6e022a2004-04-02 21:55:47 +0000271if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
272_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000273if test "$_sdlversion" -lt 121 ; then
274sdl_too_old=yes
275else
276sdl=yes
277fi
bellard7c1f25b2004-04-22 00:02:08 +0000278
279# static link with sdl ?
280if test "$sdl" = "yes" ; then
281aa="no"
282`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
283sdl_static_libs=`$sdl_config --static-libs`
284if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000285 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000286fi
287
bellard7c1f25b2004-04-22 00:02:08 +0000288if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
289 sdl_static=yes
290fi
291
292fi # static link
293
294fi # sdl compile test
295
bellarda6e022a2004-04-02 21:55:47 +0000296fi # cross compilation
297fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000298
bellard7d132992003-03-06 23:23:54 +0000299if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
300cat << EOF
301
302Usage: configure [options]
303Options: [defaults in brackets after descriptions]
304
305EOF
306echo "Standard options:"
307echo " --help print this message"
308echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000309echo " --interp-prefix=PREFIX where to find shared libraries, etc."
310echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000311echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000312echo ""
bellardc9ec1fe2005-02-10 21:55:30 +0000313echo "kqemu kernel acceleration support:"
314echo " --disable-kqemu disable kqemu build"
315echo " --kernel-path=PATH set the kernel path (configure probes it)"
316echo ""
bellard7d132992003-03-06 23:23:54 +0000317echo "Advanced options (experts only):"
318echo " --source-path=PATH path of source code [$source_path]"
319echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
320echo " --cc=CC use C compiler CC [$cc]"
321echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000322echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000323echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard102a52e2004-11-14 19:57:29 +0000324echo " --enable-fmod enable FMOD audio output driver"
325echo " --fmod-lib path to FMOD library"
326echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000327echo ""
328echo "NOTE: The object files are build at the place where configure is launched"
329exit 1
330fi
331
bellard11d9f692004-04-02 20:55:59 +0000332if test "$mingw32" = "yes" ; then
333if test -z "$prefix" ; then
334 prefix="/c/Program Files/Qemu"
335fi
336mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000337datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000338docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000339bindir="$prefix"
340else
341if test -z "$prefix" ; then
342 prefix="/usr/local"
343fi
bellard5a671352003-10-01 00:13:48 +0000344mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000345datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000346docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000347bindir="$prefix/bin"
348fi
bellard5a671352003-10-01 00:13:48 +0000349
bellardc9ec1fe2005-02-10 21:55:30 +0000350# kernel module support
351if test $kqemu = "yes" ; then
bellard441c72b2005-02-12 14:45:23 +0000352 # test if the source code is installed
353 if test '!' -f "kqemu/Makefile" ; then
354 kqemu="no"
355 fi
356fi
357
358if test $kqemu = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000359# find the kernel path
360if test -z "$kernel_path" ; then
361kernel_version=`uname -r`
362kernel_path="/lib/modules/$kernel_version/build"
363if test '!' -d "$kernel_path/include" ; then
364 kernel_path="/usr/src/linux"
365 if test '!' -d "$kernel_path/include" ; then
366 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
367 kqemu="no"
368 fi
369fi
370fi
371
372if test $kqemu = "yes" ; then
373
374# test that the kernel config is present
375if test '!' -f "$kernel_path/Makefile" ; then
bellardf94daed2005-03-01 21:28:22 +0000376 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
bellardc9ec1fe2005-02-10 21:55:30 +0000377 kqemu="no"
378fi
379
380# find build system (2.6 or legacy)
381kbuild26="yes"
382if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
383kbuild26="no"
384fi
385
386fi # kqemu
387
388fi # kqemu
389
390
bellard43ce4df2003-06-09 19:53:12 +0000391echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000392echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000393echo "binary directory $bindir"
394if test "$mingw32" = "no" ; then
395echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000396echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000397fi
bellard5a671352003-10-01 00:13:48 +0000398echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000399echo "C compiler $cc"
400echo "make $make"
401echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000402echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000403echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000404echo "gprof enabled $gprof"
405echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000406echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000407echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000408echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000409echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000410echo -n "FMOD support $fmod"
411if test $fmod = "yes"; then
412 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
413fi
414echo ""
bellardc9ec1fe2005-02-10 21:55:30 +0000415if test $kqemu = "yes" ; then
416echo ""
417echo "KQEMU module configuration:"
418echo "kernel sources $kernel_path"
419echo -n "kbuild type "
420if test $kbuild26 = "yes"; then
421echo "2.6"
422else
423echo "2.4"
424fi
425fi
bellard67b915a2004-03-31 23:37:16 +0000426
bellard97a847b2003-08-10 21:36:04 +0000427if test $sdl_too_old = "yes"; then
428echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000429fi
bellard7c1f25b2004-04-22 00:02:08 +0000430if test "$sdl_static" = "no"; then
431 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
432fi
bellard97a847b2003-08-10 21:36:04 +0000433
434config_mak="config-host.mak"
435config_h="config-host.h"
436
bellard7c1f25b2004-04-22 00:02:08 +0000437#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000438
439echo "# Automatically generated by configure - do not modify" > $config_mak
440echo "/* Automatically generated by configure - do not modify */" > $config_h
441
442echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000443echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000444echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000445echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000446echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000447echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000448echo "MAKE=$make" >> $config_mak
449echo "CC=$cc" >> $config_mak
450if test "$have_gcc3_options" = "yes" ; then
451 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
452fi
453echo "HOST_CC=$host_cc" >> $config_mak
454echo "AR=$ar" >> $config_mak
455echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
456echo "CFLAGS=$CFLAGS" >> $config_mak
457echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000458echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000459if test "$cpu" = "i386" ; then
460 echo "ARCH=i386" >> $config_mak
461 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000462elif test "$cpu" = "x86_64" ; then
463 echo "ARCH=x86_64" >> $config_mak
464 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000465elif test "$cpu" = "armv4b" ; then
466 echo "ARCH=arm" >> $config_mak
467 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000468elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000469 echo "ARCH=arm" >> $config_mak
470 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000471elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000472 echo "ARCH=ppc" >> $config_mak
473 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000474elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000475 echo "ARCH=mips" >> $config_mak
476 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000477elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000478 echo "ARCH=s390" >> $config_mak
479 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000480elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000481 echo "ARCH=alpha" >> $config_mak
482 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000483elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000484 echo "ARCH=sparc" >> $config_mak
485 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000486elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000487 echo "ARCH=sparc64" >> $config_mak
488 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000489elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000490 echo "ARCH=ia64" >> $config_mak
491 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000492elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000493 echo "ARCH=m68k" >> $config_mak
494 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000495else
496 echo "Unsupported CPU"
497 exit 1
498fi
499if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000500 echo "WORDS_BIGENDIAN=yes" >> $config_mak
501 echo "#define WORDS_BIGENDIAN 1" >> $config_h
502fi
bellard67b915a2004-03-31 23:37:16 +0000503if test "$mingw32" = "yes" ; then
504 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000505 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000506elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000507 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
508fi
bellard83fb7ad2004-07-05 21:25:26 +0000509if test "$darwin" = "yes" ; then
510 echo "CONFIG_DARWIN=yes" >> $config_mak
511 echo "#define CONFIG_DARWIN 1" >> $config_h
512fi
bellard67b915a2004-03-31 23:37:16 +0000513if test "$gdbstub" = "yes" ; then
514 echo "CONFIG_GDBSTUB=yes" >> $config_mak
515 echo "#define CONFIG_GDBSTUB 1" >> $config_h
516fi
bellard97a847b2003-08-10 21:36:04 +0000517if test "$gprof" = "yes" ; then
518 echo "TARGET_GPROF=yes" >> $config_mak
519 echo "#define HAVE_GPROF 1" >> $config_h
520fi
521if test "$static" = "yes" ; then
522 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000523 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000524fi
bellardc20709a2004-04-21 23:27:19 +0000525if test "$slirp" = "yes" ; then
526 echo "CONFIG_SLIRP=yes" >> $config_mak
527 echo "#define CONFIG_SLIRP 1" >> $config_h
528fi
bellardfb065182004-11-09 23:09:44 +0000529if test "$adlib" = "yes" ; then
530 echo "CONFIG_ADLIB=yes" >> $config_mak
531 echo "#define CONFIG_ADLIB 1" >> $config_h
532fi
533if test "$oss" = "yes" ; then
534 echo "CONFIG_OSS=yes" >> $config_mak
535 echo "#define CONFIG_OSS 1" >> $config_h
536fi
bellard102a52e2004-11-14 19:57:29 +0000537if test "$fmod" = "yes" ; then
538 echo "CONFIG_FMOD=yes" >> $config_mak
539 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
540 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
541 echo "#define CONFIG_FMOD 1" >> $config_h
542fi
bellard97a847b2003-08-10 21:36:04 +0000543echo -n "VERSION=" >>$config_mak
544head $source_path/VERSION >>$config_mak
545echo "" >>$config_mak
546echo -n "#define QEMU_VERSION \"" >> $config_h
547head $source_path/VERSION >> $config_h
548echo "\"" >> $config_h
549
bellardc9ec1fe2005-02-10 21:55:30 +0000550if test $kqemu = "yes" ; then
551 echo "CONFIG_KQEMU=yes" >> $config_mak
552 echo "KERNEL_PATH=$kernel_path" >> $config_mak
553 if test $kbuild26 = "yes" ; then
554 echo "CONFIG_KBUILD26=yes" >> $config_mak
555 fi
556fi
bellard97a847b2003-08-10 21:36:04 +0000557echo "SRC_PATH=$source_path" >> $config_mak
558echo "TARGET_DIRS=$target_list" >> $config_mak
559
bellard83fb7ad2004-07-05 21:25:26 +0000560# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000561if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000562 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000563 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000564 echo "#define _BSD 1" >> $config_h
565fi
566
bellard97a847b2003-08-10 21:36:04 +0000567for target in $target_list; do
568
569target_dir="$target"
570config_mak=$target_dir/config.mak
571config_h=$target_dir/config.h
572target_cpu=`echo $target | cut -d '-' -f 1`
573target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000574[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000575[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard64b3ab22005-01-30 22:43:42 +0000576[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000577[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000578target_softmmu="no"
579if expr $target : '.*-softmmu' > /dev/null ; then
580 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000581fi
bellard997344f2003-10-27 21:10:39 +0000582target_user_only="no"
583if expr $target : '.*-user' > /dev/null ; then
584 target_user_only="yes"
585fi
bellardde83cd02003-06-15 20:25:43 +0000586
bellard7c1f25b2004-04-22 00:02:08 +0000587#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000588
589mkdir -p $target_dir
bellard808c4952004-12-19 23:33:47 +0000590if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000591 mkdir -p $target_dir/nwfpe
592fi
bellarda7e61ed2004-04-22 21:46:47 +0000593if test "$target_user_only" = "no" ; then
594 mkdir -p $target_dir/slirp
595fi
bellard69de9272004-02-16 21:40:43 +0000596
bellard97a847b2003-08-10 21:36:04 +0000597ln -sf $source_path/Makefile.target $target_dir/Makefile
598
599echo "# Automatically generated by configure - do not modify" > $config_mak
600echo "/* Automatically generated by configure - do not modify */" > $config_h
601
602
603echo "include ../config-host.mak" >> $config_mak
604echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000605
606interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
607echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000608
609if test "$target_cpu" = "i386" ; then
610 echo "TARGET_ARCH=i386" >> $config_mak
611 echo "#define TARGET_ARCH \"i386\"" >> $config_h
612 echo "#define TARGET_I386 1" >> $config_h
bellard824d5602005-02-12 18:58:00 +0000613 if test $kqemu = "yes" -a "$target_softmmu" = "yes" ; then
614 echo "#define USE_KQEMU 1" >> $config_h
615 fi
bellard808c4952004-12-19 23:33:47 +0000616elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000617 echo "TARGET_ARCH=arm" >> $config_mak
618 echo "#define TARGET_ARCH \"arm\"" >> $config_h
619 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000620elif test "$target_cpu" = "sparc" ; then
621 echo "TARGET_ARCH=sparc" >> $config_mak
622 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
623 echo "#define TARGET_SPARC 1" >> $config_h
bellard64b3ab22005-01-30 22:43:42 +0000624elif test "$target_cpu" = "sparc64" ; then
625 echo "TARGET_ARCH=sparc64" >> $config_mak
626 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
627 echo "#define TARGET_SPARC 1" >> $config_h
628 echo "#define TARGET_SPARC64 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000629elif test "$target_cpu" = "ppc" ; then
630 echo "TARGET_ARCH=ppc" >> $config_mak
631 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
632 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000633elif test "$target_cpu" = "x86_64" ; then
634 echo "TARGET_ARCH=x86_64" >> $config_mak
635 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
636 echo "#define TARGET_I386 1" >> $config_h
637 echo "#define TARGET_X86_64 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000638else
639 echo "Unsupported target CPU"
640 exit 1
641fi
642if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000643 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
644 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
645fi
646if test "$target_softmmu" = "yes" ; then
647 echo "CONFIG_SOFTMMU=yes" >> $config_mak
648 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000649fi
bellard997344f2003-10-27 21:10:39 +0000650if test "$target_user_only" = "yes" ; then
651 echo "CONFIG_USER_ONLY=yes" >> $config_mak
652 echo "#define CONFIG_USER_ONLY 1" >> $config_h
653fi
bellardde83cd02003-06-15 20:25:43 +0000654
bellard7c1f25b2004-04-22 00:02:08 +0000655# sdl defines
656
657if test "$target_user_only" = "no"; then
658 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000659 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000660 else
bellarddbb2c922004-10-24 22:17:47 +0000661 sdl1=$sdl
662 fi
663 if test "$sdl1" = "yes" ; then
664 echo "#define CONFIG_SDL 1" >> $config_h
665 echo "CONFIG_SDL=yes" >> $config_mak
666 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
667 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
668 else
bellard7c1f25b2004-04-22 00:02:08 +0000669 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
670 fi
bellarddbb2c922004-10-24 22:17:47 +0000671 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
672 if [ "${aa}" = "yes" ] ; then
673 echo -n " `aalib-config --cflags`" >> $config_mak ;
674 fi
675 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000676 fi
bellard7c1f25b2004-04-22 00:02:08 +0000677fi
678
bellard97a847b2003-08-10 21:36:04 +0000679done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000680
681# build tree in object directory if source path is different from current one
682if test "$source_path_used" = "yes" ; then
683 DIRS="tests"
684 FILES="Makefile tests/Makefile"
685 for dir in $DIRS ; do
686 mkdir -p $dir
687 done
688 for f in $FILES ; do
689 ln -sf $source_path/$f $f
690 done
691fi
bellard7d132992003-03-06 23:23:54 +0000692
bellard97a847b2003-08-10 21:36:04 +0000693rm -f $TMPO $TMPC $TMPE $TMPS