blob: 05e8a5999eef2247c3481e44ab8f044e2f4171ba [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 ;;
bellardba680552005-03-13 09:49:52 +000035 armv*b)
bellard808c4952004-12-19 23:33:47 +000036 cpu="armv4b"
37 ;;
bellardba680552005-03-13 09:49:52 +000038 armv*l)
bellard7d132992003-03-06 23:23:54 +000039 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=""
bellard5b0753e2005-03-01 21:37:28 +000086cocoa="no"
bellard7d132992003-03-06 23:23:54 +000087
88# OS specific
89targetos=`uname -s`
90case $targetos in
bellardc326e0a2005-04-23 18:30:28 +000091CYGWIN*)
92mingw32="yes"
93CFLAGS="-O2 -mno-cygwin"
94;;
bellard67b915a2004-03-31 23:37:16 +000095MINGW32*)
96mingw32="yes"
97;;
bellard7d3505c2004-05-12 19:32:15 +000098FreeBSD)
99bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000100oss="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000101if [ "$cpu" = "i386" ] ; then
102 kqemu="yes"
103fi
bellard7d3505c2004-05-12 19:32:15 +0000104;;
105NetBSD)
106bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000107oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000108;;
109OpenBSD)
110bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000111oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000112;;
bellard83fb7ad2004-07-05 21:25:26 +0000113Darwin)
114bsd="yes"
115darwin="yes"
116;;
bellardfb065182004-11-09 23:09:44 +0000117*)
118oss="yes"
bellard5327cf42005-01-10 23:18:50 +0000119linux="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000120if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000121 kqemu="yes"
122fi
bellardfb065182004-11-09 23:09:44 +0000123;;
bellard7d132992003-03-06 23:23:54 +0000124esac
125
bellard7d3505c2004-05-12 19:32:15 +0000126if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000127 if [ ! "$darwin" = "yes" ] ; then
128 make="gmake"
129 fi
bellard7d3505c2004-05-12 19:32:15 +0000130fi
131
bellard7d132992003-03-06 23:23:54 +0000132# 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 ;;
bellard32ce6332003-04-11 00:16:16 +0000147 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
148 ;;
bellard7d132992003-03-06 23:23:54 +0000149 --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 ;;
bellard7d132992003-03-06 23:23:54 +0000161 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
162 ;;
bellard97a847b2003-08-10 21:36:04 +0000163 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000164 ;;
bellard7d132992003-03-06 23:23:54 +0000165 --enable-gprof) gprof="yes"
166 ;;
bellard43ce4df2003-06-09 19:53:12 +0000167 --static) static="yes"
168 ;;
bellard97a847b2003-08-10 21:36:04 +0000169 --disable-sdl) sdl="no"
170 ;;
bellard102a52e2004-11-14 19:57:29 +0000171 --enable-fmod) fmod="yes"
172 ;;
173 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
174 ;;
175 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
176 ;;
bellard67b915a2004-03-31 23:37:16 +0000177 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
178 ;;
bellard443f1372004-06-04 11:13:20 +0000179 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000180 ;;
bellardfb065182004-11-09 23:09:44 +0000181 --enable-adlib) adlib="yes"
182 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000183 --disable-kqemu) kqemu="no"
184 ;;
185 --kernel-path=*) kernel_path=${opt#--kernel-path=}
186 ;;
bellard5b0753e2005-03-01 21:37:28 +0000187 --enable-cocoa) cocoa="yes" ; sdl="no"
188 ;;
bellard7d132992003-03-06 23:23:54 +0000189 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
bellard67b915a2004-03-31 23:37:16 +0000201if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000202 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000203 EXESUF=".exe"
204 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000205 oss="no"
bellard07f4ddb2005-04-23 17:44:28 +0000206 if [ "$cpu" = "i386" ] ; then
207 kqemu="yes"
208 fi
bellard67b915a2004-03-31 23:37:16 +0000209fi
210
bellard5327cf42005-01-10 23:18:50 +0000211if test -z "$target_list" ; then
212# these targets are portable
bellarda20b5522005-02-19 17:24:28 +0000213 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
bellard5327cf42005-01-10 23:18:50 +0000214# the following are Linux specific
215 if [ "$linux" = "yes" ] ; then
bellarda20b5522005-02-19 17:24:28 +0000216 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
bellard5327cf42005-01-10 23:18:50 +0000217 fi
218fi
219
bellard7d132992003-03-06 23:23:54 +0000220if 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
bellard808c4952004-12-19 23:33:47 +0000241if 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 +0000242 bigendian="yes"
243fi
244
245fi
246
bellarde8cd23d2003-06-25 16:08:13 +0000247# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000248cat > $TMPC <<EOF
249int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000250}
251EOF
252
bellarde8cd23d2003-06-25 16:08:13 +0000253have_gcc3_options="no"
254if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
255 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000256fi
bellardca735202003-03-18 20:41:34 +0000257
bellard11d9f692004-04-02 20:55:59 +0000258##########################################
259# SDL probe
260
261sdl_too_old=no
262
263if test -z "$sdl" ; then
264
bellarda6e022a2004-04-02 21:55:47 +0000265sdl_config="sdl-config"
266sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000267sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000268
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
bellard11d9f692004-04-02 20:55:59 +0000275cat > $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
bellarda6e022a2004-04-02 21:55:47 +0000281if $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'`
bellard11d9f692004-04-02 20:55:59 +0000283if test "$_sdlversion" -lt 121 ; then
284sdl_too_old=yes
285else
286sdl=yes
287fi
bellard7c1f25b2004-04-22 00:02:08 +0000288
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
bellardd8d8aa42004-04-29 20:14:07 +0000295 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000296fi
297
bellard7c1f25b2004-04-22 00:02:08 +0000298if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
299 sdl_static=yes
300fi
301
302fi # static link
303
304fi # sdl compile test
305
bellarda6e022a2004-04-02 21:55:47 +0000306fi # cross compilation
307fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000308
bellard7d132992003-03-06 23:23:54 +0000309if 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]"
bellard1e43adf2003-09-30 20:54:24 +0000319echo " --interp-prefix=PREFIX where to find shared libraries, etc."
320echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000321echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000322echo ""
bellardc9ec1fe2005-02-10 21:55:30 +0000323echo "kqemu kernel acceleration support:"
324echo " --disable-kqemu disable kqemu build"
325echo " --kernel-path=PATH set the kernel path (configure probes it)"
326echo ""
bellard7d132992003-03-06 23:23:54 +0000327echo "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]"
bellard43ce4df2003-06-09 19:53:12 +0000332echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000333echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard102a52e2004-11-14 19:57:29 +0000334echo " --enable-fmod enable FMOD audio output driver"
335echo " --fmod-lib path to FMOD library"
336echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000337echo ""
338echo "NOTE: The object files are build at the place where configure is launched"
339exit 1
340fi
341
bellard11d9f692004-04-02 20:55:59 +0000342if test "$mingw32" = "yes" ; then
343if test -z "$prefix" ; then
344 prefix="/c/Program Files/Qemu"
345fi
346mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000347datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000348docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000349bindir="$prefix"
350else
351if test -z "$prefix" ; then
352 prefix="/usr/local"
353fi
bellard5a671352003-10-01 00:13:48 +0000354mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000355datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000356docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000357bindir="$prefix/bin"
358fi
bellard5a671352003-10-01 00:13:48 +0000359
bellard07f4ddb2005-04-23 17:44:28 +0000360# kqemu support
bellardc9ec1fe2005-02-10 21:55:30 +0000361if test $kqemu = "yes" ; then
bellard441c72b2005-02-12 14:45:23 +0000362 # test if the source code is installed
363 if test '!' -f "kqemu/Makefile" ; then
364 kqemu="no"
365 fi
366fi
367
bellard07f4ddb2005-04-23 17:44:28 +0000368# Linux specific kqemu configuration
369if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000370# find the kernel path
371if test -z "$kernel_path" ; then
372kernel_version=`uname -r`
373kernel_path="/lib/modules/$kernel_version/build"
374if test '!' -d "$kernel_path/include" ; then
375 kernel_path="/usr/src/linux"
376 if test '!' -d "$kernel_path/include" ; then
377 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
378 kqemu="no"
379 fi
380fi
381fi
382
383if test $kqemu = "yes" ; then
384
385# test that the kernel config is present
386if test '!' -f "$kernel_path/Makefile" ; then
bellardf94daed2005-03-01 21:28:22 +0000387 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
bellardc9ec1fe2005-02-10 21:55:30 +0000388 kqemu="no"
389fi
390
391# find build system (2.6 or legacy)
392kbuild26="yes"
393if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
394kbuild26="no"
395fi
396
397fi # kqemu
398
bellard07f4ddb2005-04-23 17:44:28 +0000399fi # kqemu and linux
bellardc9ec1fe2005-02-10 21:55:30 +0000400
401
bellard43ce4df2003-06-09 19:53:12 +0000402echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000403echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000404echo "binary directory $bindir"
405if test "$mingw32" = "no" ; then
406echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000407echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000408fi
bellard5a671352003-10-01 00:13:48 +0000409echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000410echo "C compiler $cc"
411echo "make $make"
412echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000413echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000414echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000415echo "gprof enabled $gprof"
416echo "static build $static"
bellard5b0753e2005-03-01 21:37:28 +0000417if test "$darwin" = "yes" ; then
418 echo "Cocoa support $cocoa"
419fi
bellard97a847b2003-08-10 21:36:04 +0000420echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +0000421if test "$sdl" != "no" ; then
422 echo "SDL static link $sdl_static"
423fi
bellard67b915a2004-03-31 23:37:16 +0000424echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000425echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000426echo -n "FMOD support $fmod"
427if test $fmod = "yes"; then
428 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
429fi
430echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000431echo "kqemu support $kqemu"
432if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000433echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000434echo "KQEMU Linux module configuration:"
bellardc9ec1fe2005-02-10 21:55:30 +0000435echo "kernel sources $kernel_path"
436echo -n "kbuild type "
437if test $kbuild26 = "yes"; then
438echo "2.6"
439else
440echo "2.4"
441fi
442fi
bellard67b915a2004-03-31 23:37:16 +0000443
bellard97a847b2003-08-10 21:36:04 +0000444if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +0000445echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000446fi
bellard24b55b92005-03-01 22:30:41 +0000447#if test "$sdl_static" = "no"; then
448# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
449#fi
bellard97a847b2003-08-10 21:36:04 +0000450
451config_mak="config-host.mak"
452config_h="config-host.h"
453
bellard7c1f25b2004-04-22 00:02:08 +0000454#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000455
456echo "# Automatically generated by configure - do not modify" > $config_mak
457echo "/* Automatically generated by configure - do not modify */" > $config_h
458
459echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000460echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000461echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000462echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000463echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000464echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000465echo "MAKE=$make" >> $config_mak
466echo "CC=$cc" >> $config_mak
467if test "$have_gcc3_options" = "yes" ; then
468 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
469fi
470echo "HOST_CC=$host_cc" >> $config_mak
471echo "AR=$ar" >> $config_mak
472echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
473echo "CFLAGS=$CFLAGS" >> $config_mak
474echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000475echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000476if test "$cpu" = "i386" ; then
477 echo "ARCH=i386" >> $config_mak
478 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000479elif test "$cpu" = "x86_64" ; then
480 echo "ARCH=x86_64" >> $config_mak
481 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000482elif test "$cpu" = "armv4b" ; then
483 echo "ARCH=arm" >> $config_mak
484 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000485elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000486 echo "ARCH=arm" >> $config_mak
487 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000488elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000489 echo "ARCH=ppc" >> $config_mak
490 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000491elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000492 echo "ARCH=mips" >> $config_mak
493 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000494elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000495 echo "ARCH=s390" >> $config_mak
496 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000497elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000498 echo "ARCH=alpha" >> $config_mak
499 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000500elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000501 echo "ARCH=sparc" >> $config_mak
502 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000503elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000504 echo "ARCH=sparc64" >> $config_mak
505 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000506elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000507 echo "ARCH=ia64" >> $config_mak
508 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000509elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000510 echo "ARCH=m68k" >> $config_mak
511 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000512else
513 echo "Unsupported CPU"
514 exit 1
515fi
516if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000517 echo "WORDS_BIGENDIAN=yes" >> $config_mak
518 echo "#define WORDS_BIGENDIAN 1" >> $config_h
519fi
bellard67b915a2004-03-31 23:37:16 +0000520if test "$mingw32" = "yes" ; then
521 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000522 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000523elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000524 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
525fi
bellard83fb7ad2004-07-05 21:25:26 +0000526if test "$darwin" = "yes" ; then
527 echo "CONFIG_DARWIN=yes" >> $config_mak
528 echo "#define CONFIG_DARWIN 1" >> $config_h
529fi
bellard67b915a2004-03-31 23:37:16 +0000530if test "$gdbstub" = "yes" ; then
531 echo "CONFIG_GDBSTUB=yes" >> $config_mak
532 echo "#define CONFIG_GDBSTUB 1" >> $config_h
533fi
bellard97a847b2003-08-10 21:36:04 +0000534if test "$gprof" = "yes" ; then
535 echo "TARGET_GPROF=yes" >> $config_mak
536 echo "#define HAVE_GPROF 1" >> $config_h
537fi
538if test "$static" = "yes" ; then
539 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000540 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000541fi
bellardc20709a2004-04-21 23:27:19 +0000542if test "$slirp" = "yes" ; then
543 echo "CONFIG_SLIRP=yes" >> $config_mak
544 echo "#define CONFIG_SLIRP 1" >> $config_h
545fi
bellardfb065182004-11-09 23:09:44 +0000546if test "$adlib" = "yes" ; then
547 echo "CONFIG_ADLIB=yes" >> $config_mak
548 echo "#define CONFIG_ADLIB 1" >> $config_h
549fi
550if test "$oss" = "yes" ; then
551 echo "CONFIG_OSS=yes" >> $config_mak
552 echo "#define CONFIG_OSS 1" >> $config_h
553fi
bellard102a52e2004-11-14 19:57:29 +0000554if test "$fmod" = "yes" ; then
555 echo "CONFIG_FMOD=yes" >> $config_mak
556 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
557 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
558 echo "#define CONFIG_FMOD 1" >> $config_h
559fi
bellard97a847b2003-08-10 21:36:04 +0000560echo -n "VERSION=" >>$config_mak
561head $source_path/VERSION >>$config_mak
562echo "" >>$config_mak
563echo -n "#define QEMU_VERSION \"" >> $config_h
564head $source_path/VERSION >> $config_h
565echo "\"" >> $config_h
566
bellardc9ec1fe2005-02-10 21:55:30 +0000567if test $kqemu = "yes" ; then
568 echo "CONFIG_KQEMU=yes" >> $config_mak
bellard1026f132005-04-26 20:34:45 +0000569 if test $linux = "yes" ; then
570 echo "KERNEL_PATH=$kernel_path" >> $config_mak
571 if test $kbuild26 = "yes" ; then
572 echo "CONFIG_KBUILD26=yes" >> $config_mak
573 fi
bellardc9ec1fe2005-02-10 21:55:30 +0000574 fi
575fi
bellard97a847b2003-08-10 21:36:04 +0000576echo "SRC_PATH=$source_path" >> $config_mak
577echo "TARGET_DIRS=$target_list" >> $config_mak
578
bellard83fb7ad2004-07-05 21:25:26 +0000579# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000580if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000581 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000582 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000583 echo "#define _BSD 1" >> $config_h
584fi
585
bellard97a847b2003-08-10 21:36:04 +0000586for target in $target_list; do
587
588target_dir="$target"
589config_mak=$target_dir/config.mak
590config_h=$target_dir/config.h
591target_cpu=`echo $target | cut -d '-' -f 1`
592target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000593[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000594[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard64b3ab22005-01-30 22:43:42 +0000595[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000596[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000597target_softmmu="no"
598if expr $target : '.*-softmmu' > /dev/null ; then
599 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000600fi
bellard997344f2003-10-27 21:10:39 +0000601target_user_only="no"
602if expr $target : '.*-user' > /dev/null ; then
603 target_user_only="yes"
604fi
bellardde83cd02003-06-15 20:25:43 +0000605
bellard7c1f25b2004-04-22 00:02:08 +0000606#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000607
608mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +0000609mkdir -p $target_dir/fpu
bellard808c4952004-12-19 23:33:47 +0000610if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000611 mkdir -p $target_dir/nwfpe
612fi
bellarda7e61ed2004-04-22 21:46:47 +0000613if test "$target_user_only" = "no" ; then
614 mkdir -p $target_dir/slirp
615fi
bellard69de9272004-02-16 21:40:43 +0000616
bellard97a847b2003-08-10 21:36:04 +0000617ln -sf $source_path/Makefile.target $target_dir/Makefile
618
619echo "# Automatically generated by configure - do not modify" > $config_mak
620echo "/* Automatically generated by configure - do not modify */" > $config_h
621
622
623echo "include ../config-host.mak" >> $config_mak
624echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000625
626interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
627echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000628
629if test "$target_cpu" = "i386" ; then
630 echo "TARGET_ARCH=i386" >> $config_mak
631 echo "#define TARGET_ARCH \"i386\"" >> $config_h
632 echo "#define TARGET_I386 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000633 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
bellard824d5602005-02-12 18:58:00 +0000634 echo "#define USE_KQEMU 1" >> $config_h
635 fi
bellard808c4952004-12-19 23:33:47 +0000636elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000637 echo "TARGET_ARCH=arm" >> $config_mak
638 echo "#define TARGET_ARCH \"arm\"" >> $config_h
639 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000640elif test "$target_cpu" = "sparc" ; then
641 echo "TARGET_ARCH=sparc" >> $config_mak
642 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
643 echo "#define TARGET_SPARC 1" >> $config_h
bellard64b3ab22005-01-30 22:43:42 +0000644elif test "$target_cpu" = "sparc64" ; then
645 echo "TARGET_ARCH=sparc64" >> $config_mak
646 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
647 echo "#define TARGET_SPARC 1" >> $config_h
648 echo "#define TARGET_SPARC64 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000649elif test "$target_cpu" = "ppc" ; then
650 echo "TARGET_ARCH=ppc" >> $config_mak
651 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
652 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000653elif test "$target_cpu" = "x86_64" ; then
654 echo "TARGET_ARCH=x86_64" >> $config_mak
655 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
656 echo "#define TARGET_I386 1" >> $config_h
657 echo "#define TARGET_X86_64 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000658 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
659 echo "#define USE_KQEMU 1" >> $config_h
660 fi
bellardde83cd02003-06-15 20:25:43 +0000661else
662 echo "Unsupported target CPU"
663 exit 1
664fi
665if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000666 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
667 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
668fi
669if test "$target_softmmu" = "yes" ; then
670 echo "CONFIG_SOFTMMU=yes" >> $config_mak
671 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000672fi
bellard997344f2003-10-27 21:10:39 +0000673if test "$target_user_only" = "yes" ; then
674 echo "CONFIG_USER_ONLY=yes" >> $config_mak
675 echo "#define CONFIG_USER_ONLY 1" >> $config_h
676fi
bellardde83cd02003-06-15 20:25:43 +0000677
bellard158142c2005-03-13 16:54:06 +0000678if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
679 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
680 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
681fi
bellard7c1f25b2004-04-22 00:02:08 +0000682# sdl defines
683
684if test "$target_user_only" = "no"; then
685 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000686 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000687 else
bellarddbb2c922004-10-24 22:17:47 +0000688 sdl1=$sdl
689 fi
690 if test "$sdl1" = "yes" ; then
691 echo "#define CONFIG_SDL 1" >> $config_h
692 echo "CONFIG_SDL=yes" >> $config_mak
693 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
694 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
695 else
bellard7c1f25b2004-04-22 00:02:08 +0000696 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
697 fi
bellarddbb2c922004-10-24 22:17:47 +0000698 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
699 if [ "${aa}" = "yes" ] ; then
700 echo -n " `aalib-config --cflags`" >> $config_mak ;
701 fi
702 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000703 fi
bellard7c1f25b2004-04-22 00:02:08 +0000704fi
705
bellard5b0753e2005-03-01 21:37:28 +0000706if test "$cocoa" = "yes" ; then
707 echo "#define CONFIG_COCOA 1" >> $config_h
708 echo "CONFIG_COCOA=yes" >> $config_mak
709fi
710
bellard97a847b2003-08-10 21:36:04 +0000711done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000712
713# build tree in object directory if source path is different from current one
714if test "$source_path_used" = "yes" ; then
715 DIRS="tests"
716 FILES="Makefile tests/Makefile"
717 for dir in $DIRS ; do
718 mkdir -p $dir
719 done
720 for f in $FILES ; do
721 ln -sf $source_path/$f $f
722 done
723fi
bellard7d132992003-03-06 23:23:54 +0000724
bellard97a847b2003-08-10 21:36:04 +0000725rm -f $TMPO $TMPC $TMPE $TMPS