blob: c18a9d115ec16261a377f3e5d5b38bceb70e4561 [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"
bellard97ccc682005-07-02 13:32:17 +000087check_gfx="yes"
bellard7d132992003-03-06 23:23:54 +000088
89# OS specific
90targetos=`uname -s`
91case $targetos in
bellardc326e0a2005-04-23 18:30:28 +000092CYGWIN*)
93mingw32="yes"
94CFLAGS="-O2 -mno-cygwin"
95;;
bellard67b915a2004-03-31 23:37:16 +000096MINGW32*)
97mingw32="yes"
98;;
bellard7d3505c2004-05-12 19:32:15 +000099FreeBSD)
100bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000101oss="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000102if [ "$cpu" = "i386" ] ; then
103 kqemu="yes"
104fi
bellard7d3505c2004-05-12 19:32:15 +0000105;;
106NetBSD)
107bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000108oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000109;;
110OpenBSD)
111bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000112oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000113;;
bellard83fb7ad2004-07-05 21:25:26 +0000114Darwin)
115bsd="yes"
116darwin="yes"
117;;
bellardfb065182004-11-09 23:09:44 +0000118*)
119oss="yes"
bellard5327cf42005-01-10 23:18:50 +0000120linux="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000121if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000122 kqemu="yes"
123fi
bellardfb065182004-11-09 23:09:44 +0000124;;
bellard7d132992003-03-06 23:23:54 +0000125esac
126
bellard7d3505c2004-05-12 19:32:15 +0000127if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000128 if [ ! "$darwin" = "yes" ] ; then
129 make="gmake"
130 fi
bellard7d3505c2004-05-12 19:32:15 +0000131fi
132
bellard7d132992003-03-06 23:23:54 +0000133# find source path
134# XXX: we assume an absolute path is given when launching configure,
135# except in './configure' case.
136source_path=${0%configure}
137source_path=${source_path%/}
138source_path_used="yes"
139if test -z "$source_path" -o "$source_path" = "." ; then
140 source_path=`pwd`
141 source_path_used="no"
142fi
143
144for opt do
145 case "$opt" in
146 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
147 ;;
bellard32ce6332003-04-11 00:16:16 +0000148 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
149 ;;
bellard7d132992003-03-06 23:23:54 +0000150 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
151 ;;
152 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
153 ;;
154 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
155 ;;
bellard83469012005-07-23 14:27:54 +0000156 --host-cc=*) host_cc=`echo $opt | cut -d '=' -f 2`
157 ;;
bellard7d132992003-03-06 23:23:54 +0000158 --make=*) make=`echo $opt | cut -d '=' -f 2`
159 ;;
160 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
161 ;;
162 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
163 ;;
bellard7d132992003-03-06 23:23:54 +0000164 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
165 ;;
bellard97a847b2003-08-10 21:36:04 +0000166 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000167 ;;
bellard7d132992003-03-06 23:23:54 +0000168 --enable-gprof) gprof="yes"
169 ;;
bellard43ce4df2003-06-09 19:53:12 +0000170 --static) static="yes"
171 ;;
bellard97a847b2003-08-10 21:36:04 +0000172 --disable-sdl) sdl="no"
173 ;;
bellard102a52e2004-11-14 19:57:29 +0000174 --enable-fmod) fmod="yes"
175 ;;
176 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
177 ;;
178 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
179 ;;
bellard67b915a2004-03-31 23:37:16 +0000180 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
181 ;;
bellard443f1372004-06-04 11:13:20 +0000182 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000183 ;;
bellardfb065182004-11-09 23:09:44 +0000184 --enable-adlib) adlib="yes"
185 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000186 --disable-kqemu) kqemu="no"
187 ;;
188 --kernel-path=*) kernel_path=${opt#--kernel-path=}
189 ;;
bellard5b0753e2005-03-01 21:37:28 +0000190 --enable-cocoa) cocoa="yes" ; sdl="no"
191 ;;
bellard97ccc682005-07-02 13:32:17 +0000192 --disable-gfx-check) check_gfx="no"
193 ;;
bellard7d132992003-03-06 23:23:54 +0000194 esac
195done
196
197# Checking for CFLAGS
198if test -z "$CFLAGS"; then
199 CFLAGS="-O2"
200fi
201
202cc="${cross_prefix}${cc}"
203ar="${cross_prefix}${ar}"
204strip="${cross_prefix}${strip}"
205
bellard67b915a2004-03-31 23:37:16 +0000206if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000207 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000208 EXESUF=".exe"
209 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000210 oss="no"
bellard07f4ddb2005-04-23 17:44:28 +0000211 if [ "$cpu" = "i386" ] ; then
212 kqemu="yes"
213 fi
bellard67b915a2004-03-31 23:37:16 +0000214fi
215
bellard5327cf42005-01-10 23:18:50 +0000216if test -z "$target_list" ; then
217# these targets are portable
bellardd3258562005-07-02 15:37:12 +0000218 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu"
bellard5327cf42005-01-10 23:18:50 +0000219# the following are Linux specific
220 if [ "$linux" = "yes" ] ; then
bellarda20b5522005-02-19 17:24:28 +0000221 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
bellard5327cf42005-01-10 23:18:50 +0000222 fi
bellard6e20a452005-06-05 15:56:02 +0000223else
224 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
bellard5327cf42005-01-10 23:18:50 +0000225fi
226
bellard7d132992003-03-06 23:23:54 +0000227if test -z "$cross_prefix" ; then
228
229# ---
230# big/little endian test
231cat > $TMPC << EOF
232#include <inttypes.h>
233int main(int argc, char ** argv){
234 volatile uint32_t i=0x01234567;
235 return (*((uint8_t*)(&i))) == 0x67;
236}
237EOF
238
239if $cc -o $TMPE $TMPC 2>/dev/null ; then
240$TMPE && bigendian="yes"
241else
242echo big/little test failed
243fi
244
245else
246
247# if cross compiling, cannot launch a program, so make a static guess
bellard808c4952004-12-19 23:33:47 +0000248if 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 +0000249 bigendian="yes"
250fi
251
252fi
253
bellardb6853692005-06-05 17:10:39 +0000254# host long bits test
255hostlongbits="32"
256if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
257 hostlongbits="64"
258fi
259
bellarde8cd23d2003-06-25 16:08:13 +0000260# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000261cat > $TMPC <<EOF
262int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000263}
264EOF
265
bellarde8cd23d2003-06-25 16:08:13 +0000266have_gcc3_options="no"
267if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
268 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000269fi
bellardca735202003-03-18 20:41:34 +0000270
bellard11d9f692004-04-02 20:55:59 +0000271##########################################
272# SDL probe
273
274sdl_too_old=no
275
276if test -z "$sdl" ; then
277
bellarda6e022a2004-04-02 21:55:47 +0000278sdl_config="sdl-config"
279sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000280sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000281
282if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
283# win32 cross compilation case
284 sdl_config="i386-mingw32msvc-sdl-config"
285 sdl=yes
286else
287# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000288cat > $TMPC << EOF
289#include <SDL.h>
290#undef main /* We don't want SDL to override our main() */
291int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
292EOF
293
bellarda6e022a2004-04-02 21:55:47 +0000294if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
295_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000296if test "$_sdlversion" -lt 121 ; then
297sdl_too_old=yes
298else
299sdl=yes
300fi
bellard7c1f25b2004-04-22 00:02:08 +0000301
302# static link with sdl ?
303if test "$sdl" = "yes" ; then
304aa="no"
305`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
306sdl_static_libs=`$sdl_config --static-libs`
307if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000308 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000309fi
310
bellard7c1f25b2004-04-22 00:02:08 +0000311if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
312 sdl_static=yes
313fi
314
315fi # static link
316
317fi # sdl compile test
318
bellarda6e022a2004-04-02 21:55:47 +0000319fi # cross compilation
320fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000321
bellard7d132992003-03-06 23:23:54 +0000322if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
323cat << EOF
324
325Usage: configure [options]
326Options: [defaults in brackets after descriptions]
327
328EOF
329echo "Standard options:"
330echo " --help print this message"
331echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000332echo " --interp-prefix=PREFIX where to find shared libraries, etc."
333echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000334echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000335echo ""
bellardc9ec1fe2005-02-10 21:55:30 +0000336echo "kqemu kernel acceleration support:"
337echo " --disable-kqemu disable kqemu build"
338echo " --kernel-path=PATH set the kernel path (configure probes it)"
339echo ""
bellard7d132992003-03-06 23:23:54 +0000340echo "Advanced options (experts only):"
341echo " --source-path=PATH path of source code [$source_path]"
342echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
343echo " --cc=CC use C compiler CC [$cc]"
bellard83469012005-07-23 14:27:54 +0000344echo " --host-cc=CC use C compiler CC [$cc] for dyngen etc."
bellard7d132992003-03-06 23:23:54 +0000345echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000346echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000347echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellardd37282a2005-04-28 20:41:53 +0000348echo " --enable-adlib enable Adlib emulation"
bellard102a52e2004-11-14 19:57:29 +0000349echo " --enable-fmod enable FMOD audio output driver"
350echo " --fmod-lib path to FMOD library"
351echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000352echo ""
353echo "NOTE: The object files are build at the place where configure is launched"
354exit 1
355fi
356
bellard11d9f692004-04-02 20:55:59 +0000357if test "$mingw32" = "yes" ; then
358if test -z "$prefix" ; then
359 prefix="/c/Program Files/Qemu"
360fi
361mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000362datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000363docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000364bindir="$prefix"
365else
366if test -z "$prefix" ; then
367 prefix="/usr/local"
368fi
bellard5a671352003-10-01 00:13:48 +0000369mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000370datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000371docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000372bindir="$prefix/bin"
373fi
bellard5a671352003-10-01 00:13:48 +0000374
bellard07f4ddb2005-04-23 17:44:28 +0000375# kqemu support
bellardc9ec1fe2005-02-10 21:55:30 +0000376if test $kqemu = "yes" ; then
bellard441c72b2005-02-12 14:45:23 +0000377 # test if the source code is installed
378 if test '!' -f "kqemu/Makefile" ; then
379 kqemu="no"
380 fi
381fi
382
bellard07f4ddb2005-04-23 17:44:28 +0000383# Linux specific kqemu configuration
384if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000385# find the kernel path
386if test -z "$kernel_path" ; then
387kernel_version=`uname -r`
388kernel_path="/lib/modules/$kernel_version/build"
389if test '!' -d "$kernel_path/include" ; then
390 kernel_path="/usr/src/linux"
391 if test '!' -d "$kernel_path/include" ; then
392 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
393 kqemu="no"
394 fi
395fi
396fi
397
398if test $kqemu = "yes" ; then
399
400# test that the kernel config is present
401if test '!' -f "$kernel_path/Makefile" ; then
bellardf94daed2005-03-01 21:28:22 +0000402 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
bellardc9ec1fe2005-02-10 21:55:30 +0000403 kqemu="no"
404fi
405
406# find build system (2.6 or legacy)
407kbuild26="yes"
408if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
409kbuild26="no"
410fi
411
412fi # kqemu
413
bellard07f4ddb2005-04-23 17:44:28 +0000414fi # kqemu and linux
bellardc9ec1fe2005-02-10 21:55:30 +0000415
416
bellard43ce4df2003-06-09 19:53:12 +0000417echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000418echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000419echo "binary directory $bindir"
420if test "$mingw32" = "no" ; then
421echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000422echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000423fi
bellard5a671352003-10-01 00:13:48 +0000424echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000425echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +0000426echo "Host C compiler $host_cc"
bellard43ce4df2003-06-09 19:53:12 +0000427echo "make $make"
428echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000429echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000430echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000431echo "gprof enabled $gprof"
432echo "static build $static"
bellard5b0753e2005-03-01 21:37:28 +0000433if test "$darwin" = "yes" ; then
434 echo "Cocoa support $cocoa"
435fi
bellard97a847b2003-08-10 21:36:04 +0000436echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +0000437if test "$sdl" != "no" ; then
438 echo "SDL static link $sdl_static"
439fi
bellard67b915a2004-03-31 23:37:16 +0000440echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000441echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000442echo -n "FMOD support $fmod"
443if test $fmod = "yes"; then
444 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
445fi
446echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000447echo "kqemu support $kqemu"
448if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000449echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000450echo "KQEMU Linux module configuration:"
bellardc9ec1fe2005-02-10 21:55:30 +0000451echo "kernel sources $kernel_path"
452echo -n "kbuild type "
453if test $kbuild26 = "yes"; then
454echo "2.6"
455else
456echo "2.4"
457fi
458fi
bellard67b915a2004-03-31 23:37:16 +0000459
bellard97a847b2003-08-10 21:36:04 +0000460if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +0000461echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000462fi
bellard24b55b92005-03-01 22:30:41 +0000463#if test "$sdl_static" = "no"; then
464# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
465#fi
bellard97a847b2003-08-10 21:36:04 +0000466
467config_mak="config-host.mak"
468config_h="config-host.h"
469
bellard7c1f25b2004-04-22 00:02:08 +0000470#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000471
472echo "# Automatically generated by configure - do not modify" > $config_mak
473echo "/* Automatically generated by configure - do not modify */" > $config_h
474
475echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000476echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000477echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000478echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000479echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000480echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000481echo "MAKE=$make" >> $config_mak
482echo "CC=$cc" >> $config_mak
483if test "$have_gcc3_options" = "yes" ; then
484 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
485fi
486echo "HOST_CC=$host_cc" >> $config_mak
487echo "AR=$ar" >> $config_mak
488echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
489echo "CFLAGS=$CFLAGS" >> $config_mak
490echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000491echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000492if test "$cpu" = "i386" ; then
493 echo "ARCH=i386" >> $config_mak
494 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000495elif test "$cpu" = "x86_64" ; then
496 echo "ARCH=x86_64" >> $config_mak
497 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000498elif test "$cpu" = "armv4b" ; then
499 echo "ARCH=arm" >> $config_mak
500 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000501elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000502 echo "ARCH=arm" >> $config_mak
503 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000504elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000505 echo "ARCH=ppc" >> $config_mak
506 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000507elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000508 echo "ARCH=mips" >> $config_mak
509 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000510elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000511 echo "ARCH=s390" >> $config_mak
512 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000513elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000514 echo "ARCH=alpha" >> $config_mak
515 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000516elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000517 echo "ARCH=sparc" >> $config_mak
518 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000519elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000520 echo "ARCH=sparc64" >> $config_mak
521 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000522elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000523 echo "ARCH=ia64" >> $config_mak
524 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000525elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000526 echo "ARCH=m68k" >> $config_mak
527 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000528else
529 echo "Unsupported CPU"
530 exit 1
531fi
532if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000533 echo "WORDS_BIGENDIAN=yes" >> $config_mak
534 echo "#define WORDS_BIGENDIAN 1" >> $config_h
535fi
bellardb6853692005-06-05 17:10:39 +0000536echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +0000537if test "$mingw32" = "yes" ; then
538 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000539 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000540elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000541 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
542fi
bellard83fb7ad2004-07-05 21:25:26 +0000543if test "$darwin" = "yes" ; then
544 echo "CONFIG_DARWIN=yes" >> $config_mak
545 echo "#define CONFIG_DARWIN 1" >> $config_h
546fi
bellard67b915a2004-03-31 23:37:16 +0000547if test "$gdbstub" = "yes" ; then
548 echo "CONFIG_GDBSTUB=yes" >> $config_mak
549 echo "#define CONFIG_GDBSTUB 1" >> $config_h
550fi
bellard97a847b2003-08-10 21:36:04 +0000551if test "$gprof" = "yes" ; then
552 echo "TARGET_GPROF=yes" >> $config_mak
553 echo "#define HAVE_GPROF 1" >> $config_h
554fi
555if test "$static" = "yes" ; then
556 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000557 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000558fi
bellardc20709a2004-04-21 23:27:19 +0000559if test "$slirp" = "yes" ; then
560 echo "CONFIG_SLIRP=yes" >> $config_mak
561 echo "#define CONFIG_SLIRP 1" >> $config_h
562fi
bellardfb065182004-11-09 23:09:44 +0000563if test "$adlib" = "yes" ; then
564 echo "CONFIG_ADLIB=yes" >> $config_mak
565 echo "#define CONFIG_ADLIB 1" >> $config_h
566fi
567if test "$oss" = "yes" ; then
568 echo "CONFIG_OSS=yes" >> $config_mak
569 echo "#define CONFIG_OSS 1" >> $config_h
570fi
bellard102a52e2004-11-14 19:57:29 +0000571if test "$fmod" = "yes" ; then
572 echo "CONFIG_FMOD=yes" >> $config_mak
573 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
574 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
575 echo "#define CONFIG_FMOD 1" >> $config_h
576fi
bellard97a847b2003-08-10 21:36:04 +0000577echo -n "VERSION=" >>$config_mak
578head $source_path/VERSION >>$config_mak
579echo "" >>$config_mak
580echo -n "#define QEMU_VERSION \"" >> $config_h
581head $source_path/VERSION >> $config_h
582echo "\"" >> $config_h
583
bellardc9ec1fe2005-02-10 21:55:30 +0000584if test $kqemu = "yes" ; then
585 echo "CONFIG_KQEMU=yes" >> $config_mak
bellard1026f132005-04-26 20:34:45 +0000586 if test $linux = "yes" ; then
587 echo "KERNEL_PATH=$kernel_path" >> $config_mak
588 if test $kbuild26 = "yes" ; then
589 echo "CONFIG_KBUILD26=yes" >> $config_mak
590 fi
bellardc9ec1fe2005-02-10 21:55:30 +0000591 fi
592fi
bellard97a847b2003-08-10 21:36:04 +0000593echo "SRC_PATH=$source_path" >> $config_mak
594echo "TARGET_DIRS=$target_list" >> $config_mak
595
bellard83fb7ad2004-07-05 21:25:26 +0000596# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000597if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000598 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000599 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000600 echo "#define _BSD 1" >> $config_h
601fi
602
bellard97a847b2003-08-10 21:36:04 +0000603for target in $target_list; do
604
605target_dir="$target"
606config_mak=$target_dir/config.mak
607config_h=$target_dir/config.h
608target_cpu=`echo $target | cut -d '-' -f 1`
609target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000610[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000611[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard64b3ab22005-01-30 22:43:42 +0000612[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000613[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellardd3258562005-07-02 15:37:12 +0000614[ "$target_cpu" = "mips" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000615target_softmmu="no"
616if expr $target : '.*-softmmu' > /dev/null ; then
617 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000618fi
bellard997344f2003-10-27 21:10:39 +0000619target_user_only="no"
620if expr $target : '.*-user' > /dev/null ; then
621 target_user_only="yes"
622fi
bellardde83cd02003-06-15 20:25:43 +0000623
bellard97ccc682005-07-02 13:32:17 +0000624if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
625 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
626 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
627 echo "To build QEMU with graphical output configure with --disable-gfx-check"
628 echo "Note that this will disable all output from the virtual graphics card."
629 exit 1;
630fi
631
bellard7c1f25b2004-04-22 00:02:08 +0000632#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000633
634mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +0000635mkdir -p $target_dir/fpu
bellard808c4952004-12-19 23:33:47 +0000636if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000637 mkdir -p $target_dir/nwfpe
638fi
bellarda7e61ed2004-04-22 21:46:47 +0000639if test "$target_user_only" = "no" ; then
640 mkdir -p $target_dir/slirp
641fi
bellard69de9272004-02-16 21:40:43 +0000642
bellard97a847b2003-08-10 21:36:04 +0000643ln -sf $source_path/Makefile.target $target_dir/Makefile
644
645echo "# Automatically generated by configure - do not modify" > $config_mak
646echo "/* Automatically generated by configure - do not modify */" > $config_h
647
648
649echo "include ../config-host.mak" >> $config_mak
650echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000651
652interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
653echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000654
655if test "$target_cpu" = "i386" ; then
656 echo "TARGET_ARCH=i386" >> $config_mak
657 echo "#define TARGET_ARCH \"i386\"" >> $config_h
658 echo "#define TARGET_I386 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000659 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
bellard824d5602005-02-12 18:58:00 +0000660 echo "#define USE_KQEMU 1" >> $config_h
661 fi
bellard808c4952004-12-19 23:33:47 +0000662elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000663 echo "TARGET_ARCH=arm" >> $config_mak
664 echo "#define TARGET_ARCH \"arm\"" >> $config_h
665 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000666elif test "$target_cpu" = "sparc" ; then
667 echo "TARGET_ARCH=sparc" >> $config_mak
668 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
669 echo "#define TARGET_SPARC 1" >> $config_h
bellard64b3ab22005-01-30 22:43:42 +0000670elif test "$target_cpu" = "sparc64" ; then
671 echo "TARGET_ARCH=sparc64" >> $config_mak
672 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
673 echo "#define TARGET_SPARC 1" >> $config_h
674 echo "#define TARGET_SPARC64 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000675elif test "$target_cpu" = "ppc" ; then
676 echo "TARGET_ARCH=ppc" >> $config_mak
677 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
678 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000679elif test "$target_cpu" = "x86_64" ; then
680 echo "TARGET_ARCH=x86_64" >> $config_mak
681 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
682 echo "#define TARGET_I386 1" >> $config_h
683 echo "#define TARGET_X86_64 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000684 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
685 echo "#define USE_KQEMU 1" >> $config_h
686 fi
bellardd3258562005-07-02 15:37:12 +0000687elif test "$target_cpu" = "mips" ; then
688 echo "TARGET_ARCH=mips" >> $config_mak
689 echo "#define TARGET_ARCH \"mips\"" >> $config_h
690 echo "#define TARGET_MIPS 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000691else
692 echo "Unsupported target CPU"
693 exit 1
694fi
695if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000696 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
697 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
698fi
699if test "$target_softmmu" = "yes" ; then
700 echo "CONFIG_SOFTMMU=yes" >> $config_mak
701 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000702fi
bellard997344f2003-10-27 21:10:39 +0000703if test "$target_user_only" = "yes" ; then
704 echo "CONFIG_USER_ONLY=yes" >> $config_mak
705 echo "#define CONFIG_USER_ONLY 1" >> $config_h
706fi
bellardde83cd02003-06-15 20:25:43 +0000707
bellard158142c2005-03-13 16:54:06 +0000708if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
709 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
710 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
711fi
bellard7c1f25b2004-04-22 00:02:08 +0000712# sdl defines
713
714if test "$target_user_only" = "no"; then
715 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000716 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000717 else
bellarddbb2c922004-10-24 22:17:47 +0000718 sdl1=$sdl
719 fi
720 if test "$sdl1" = "yes" ; then
721 echo "#define CONFIG_SDL 1" >> $config_h
722 echo "CONFIG_SDL=yes" >> $config_mak
723 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
724 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
725 else
bellard7c1f25b2004-04-22 00:02:08 +0000726 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
727 fi
bellarddbb2c922004-10-24 22:17:47 +0000728 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
729 if [ "${aa}" = "yes" ] ; then
730 echo -n " `aalib-config --cflags`" >> $config_mak ;
731 fi
732 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000733 fi
bellard7c1f25b2004-04-22 00:02:08 +0000734fi
735
bellard5b0753e2005-03-01 21:37:28 +0000736if test "$cocoa" = "yes" ; then
737 echo "#define CONFIG_COCOA 1" >> $config_h
738 echo "CONFIG_COCOA=yes" >> $config_mak
739fi
740
bellard97a847b2003-08-10 21:36:04 +0000741done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000742
743# build tree in object directory if source path is different from current one
744if test "$source_path_used" = "yes" ; then
745 DIRS="tests"
746 FILES="Makefile tests/Makefile"
747 for dir in $DIRS ; do
748 mkdir -p $dir
749 done
750 for f in $FILES ; do
751 ln -sf $source_path/$f $f
752 done
753fi
bellard7d132992003-03-06 23:23:54 +0000754
bellard97a847b2003-08-10 21:36:04 +0000755rm -f $TMPO $TMPC $TMPE $TMPS