blob: 7ef930067f4c606ef3ff9aefc6b5ff4a8f7398fc [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
bellard67b915a2004-03-31 23:37:16 +000091MINGW32*)
92mingw32="yes"
93;;
bellard7d3505c2004-05-12 19:32:15 +000094FreeBSD)
95bsd="yes"
bellardfb065182004-11-09 23:09:44 +000096oss="yes"
bellard07f4ddb2005-04-23 17:44:28 +000097if [ "$cpu" = "i386" ] ; then
98 kqemu="yes"
99fi
bellard7d3505c2004-05-12 19:32:15 +0000100;;
101NetBSD)
102bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000103oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000104;;
105OpenBSD)
106bsd="yes"
bellardfb065182004-11-09 23:09:44 +0000107oss="yes"
bellard7d3505c2004-05-12 19:32:15 +0000108;;
bellard83fb7ad2004-07-05 21:25:26 +0000109Darwin)
110bsd="yes"
111darwin="yes"
112;;
bellardfb065182004-11-09 23:09:44 +0000113*)
114oss="yes"
bellard5327cf42005-01-10 23:18:50 +0000115linux="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000116if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000117 kqemu="yes"
118fi
bellardfb065182004-11-09 23:09:44 +0000119;;
bellard7d132992003-03-06 23:23:54 +0000120esac
121
bellard7d3505c2004-05-12 19:32:15 +0000122if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000123 if [ ! "$darwin" = "yes" ] ; then
124 make="gmake"
125 fi
bellard7d3505c2004-05-12 19:32:15 +0000126fi
127
bellard7d132992003-03-06 23:23:54 +0000128# find source path
129# XXX: we assume an absolute path is given when launching configure,
130# except in './configure' case.
131source_path=${0%configure}
132source_path=${source_path%/}
133source_path_used="yes"
134if test -z "$source_path" -o "$source_path" = "." ; then
135 source_path=`pwd`
136 source_path_used="no"
137fi
138
139for opt do
140 case "$opt" in
141 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
142 ;;
bellard32ce6332003-04-11 00:16:16 +0000143 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
144 ;;
bellard7d132992003-03-06 23:23:54 +0000145 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
146 ;;
147 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
148 ;;
149 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
150 ;;
151 --make=*) make=`echo $opt | cut -d '=' -f 2`
152 ;;
153 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
154 ;;
155 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
156 ;;
157 --extra-libs=*) extralibs=${opt#--extra-libs=}
158 ;;
159 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
160 ;;
bellard97a847b2003-08-10 21:36:04 +0000161 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000162 ;;
bellard7d132992003-03-06 23:23:54 +0000163 --enable-gprof) gprof="yes"
164 ;;
bellard43ce4df2003-06-09 19:53:12 +0000165 --static) static="yes"
166 ;;
bellard97a847b2003-08-10 21:36:04 +0000167 --disable-sdl) sdl="no"
168 ;;
bellard102a52e2004-11-14 19:57:29 +0000169 --enable-fmod) fmod="yes"
170 ;;
171 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
172 ;;
173 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
174 ;;
bellard67b915a2004-03-31 23:37:16 +0000175 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
176 ;;
bellard443f1372004-06-04 11:13:20 +0000177 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000178 ;;
bellardfb065182004-11-09 23:09:44 +0000179 --enable-adlib) adlib="yes"
180 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000181 --disable-kqemu) kqemu="no"
182 ;;
183 --kernel-path=*) kernel_path=${opt#--kernel-path=}
184 ;;
bellard5b0753e2005-03-01 21:37:28 +0000185 --enable-cocoa) cocoa="yes" ; sdl="no"
186 ;;
bellard7d132992003-03-06 23:23:54 +0000187 esac
188done
189
190# Checking for CFLAGS
191if test -z "$CFLAGS"; then
192 CFLAGS="-O2"
193fi
194
195cc="${cross_prefix}${cc}"
196ar="${cross_prefix}${ar}"
197strip="${cross_prefix}${strip}"
198
bellard67b915a2004-03-31 23:37:16 +0000199if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000200 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000201 EXESUF=".exe"
202 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000203 oss="no"
bellard07f4ddb2005-04-23 17:44:28 +0000204 if [ "$cpu" = "i386" ] ; then
205 kqemu="yes"
206 fi
bellard67b915a2004-03-31 23:37:16 +0000207fi
208
bellard5327cf42005-01-10 23:18:50 +0000209if test -z "$target_list" ; then
210# these targets are portable
bellarda20b5522005-02-19 17:24:28 +0000211 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu"
bellard5327cf42005-01-10 23:18:50 +0000212# the following are Linux specific
213 if [ "$linux" = "yes" ] ; then
bellarda20b5522005-02-19 17:24:28 +0000214 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
bellard5327cf42005-01-10 23:18:50 +0000215 fi
216fi
217
bellard7d132992003-03-06 23:23:54 +0000218if test -z "$cross_prefix" ; then
219
220# ---
221# big/little endian test
222cat > $TMPC << EOF
223#include <inttypes.h>
224int main(int argc, char ** argv){
225 volatile uint32_t i=0x01234567;
226 return (*((uint8_t*)(&i))) == 0x67;
227}
228EOF
229
230if $cc -o $TMPE $TMPC 2>/dev/null ; then
231$TMPE && bigendian="yes"
232else
233echo big/little test failed
234fi
235
236else
237
238# if cross compiling, cannot launch a program, so make a static guess
bellard808c4952004-12-19 23:33:47 +0000239if 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 +0000240 bigendian="yes"
241fi
242
243fi
244
bellarde8cd23d2003-06-25 16:08:13 +0000245# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000246cat > $TMPC <<EOF
247int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000248}
249EOF
250
bellarde8cd23d2003-06-25 16:08:13 +0000251have_gcc3_options="no"
252if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
253 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000254fi
bellardca735202003-03-18 20:41:34 +0000255
bellard11d9f692004-04-02 20:55:59 +0000256##########################################
257# SDL probe
258
259sdl_too_old=no
260
261if test -z "$sdl" ; then
262
bellarda6e022a2004-04-02 21:55:47 +0000263sdl_config="sdl-config"
264sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000265sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000266
267if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
268# win32 cross compilation case
269 sdl_config="i386-mingw32msvc-sdl-config"
270 sdl=yes
271else
272# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000273cat > $TMPC << EOF
274#include <SDL.h>
275#undef main /* We don't want SDL to override our main() */
276int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
277EOF
278
bellarda6e022a2004-04-02 21:55:47 +0000279if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
280_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000281if test "$_sdlversion" -lt 121 ; then
282sdl_too_old=yes
283else
284sdl=yes
285fi
bellard7c1f25b2004-04-22 00:02:08 +0000286
287# static link with sdl ?
288if test "$sdl" = "yes" ; then
289aa="no"
290`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
291sdl_static_libs=`$sdl_config --static-libs`
292if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000293 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000294fi
295
bellard7c1f25b2004-04-22 00:02:08 +0000296if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
297 sdl_static=yes
298fi
299
300fi # static link
301
302fi # sdl compile test
303
bellarda6e022a2004-04-02 21:55:47 +0000304fi # cross compilation
305fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000306
bellard7d132992003-03-06 23:23:54 +0000307if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
308cat << EOF
309
310Usage: configure [options]
311Options: [defaults in brackets after descriptions]
312
313EOF
314echo "Standard options:"
315echo " --help print this message"
316echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000317echo " --interp-prefix=PREFIX where to find shared libraries, etc."
318echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000319echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000320echo ""
bellardc9ec1fe2005-02-10 21:55:30 +0000321echo "kqemu kernel acceleration support:"
322echo " --disable-kqemu disable kqemu build"
323echo " --kernel-path=PATH set the kernel path (configure probes it)"
324echo ""
bellard7d132992003-03-06 23:23:54 +0000325echo "Advanced options (experts only):"
326echo " --source-path=PATH path of source code [$source_path]"
327echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
328echo " --cc=CC use C compiler CC [$cc]"
329echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000330echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000331echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard102a52e2004-11-14 19:57:29 +0000332echo " --enable-fmod enable FMOD audio output driver"
333echo " --fmod-lib path to FMOD library"
334echo " --fmod-inc path to FMOD includes"
bellard7d132992003-03-06 23:23:54 +0000335echo ""
336echo "NOTE: The object files are build at the place where configure is launched"
337exit 1
338fi
339
bellard11d9f692004-04-02 20:55:59 +0000340if test "$mingw32" = "yes" ; then
341if test -z "$prefix" ; then
342 prefix="/c/Program Files/Qemu"
343fi
344mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000345datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000346docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000347bindir="$prefix"
348else
349if test -z "$prefix" ; then
350 prefix="/usr/local"
351fi
bellard5a671352003-10-01 00:13:48 +0000352mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000353datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000354docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000355bindir="$prefix/bin"
356fi
bellard5a671352003-10-01 00:13:48 +0000357
bellard07f4ddb2005-04-23 17:44:28 +0000358# kqemu support
bellardc9ec1fe2005-02-10 21:55:30 +0000359if test $kqemu = "yes" ; then
bellard441c72b2005-02-12 14:45:23 +0000360 # test if the source code is installed
361 if test '!' -f "kqemu/Makefile" ; then
362 kqemu="no"
363 fi
364fi
365
bellard07f4ddb2005-04-23 17:44:28 +0000366# Linux specific kqemu configuration
367if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000368# find the kernel path
369if test -z "$kernel_path" ; then
370kernel_version=`uname -r`
371kernel_path="/lib/modules/$kernel_version/build"
372if test '!' -d "$kernel_path/include" ; then
373 kernel_path="/usr/src/linux"
374 if test '!' -d "$kernel_path/include" ; then
375 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
376 kqemu="no"
377 fi
378fi
379fi
380
381if test $kqemu = "yes" ; then
382
383# test that the kernel config is present
384if test '!' -f "$kernel_path/Makefile" ; then
bellardf94daed2005-03-01 21:28:22 +0000385 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
bellardc9ec1fe2005-02-10 21:55:30 +0000386 kqemu="no"
387fi
388
389# find build system (2.6 or legacy)
390kbuild26="yes"
391if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
392kbuild26="no"
393fi
394
395fi # kqemu
396
bellard07f4ddb2005-04-23 17:44:28 +0000397fi # kqemu and linux
bellardc9ec1fe2005-02-10 21:55:30 +0000398
399
bellard43ce4df2003-06-09 19:53:12 +0000400echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000401echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000402echo "binary directory $bindir"
403if test "$mingw32" = "no" ; then
404echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000405echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000406fi
bellard5a671352003-10-01 00:13:48 +0000407echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000408echo "C compiler $cc"
409echo "make $make"
410echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000411echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000412echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000413echo "gprof enabled $gprof"
414echo "static build $static"
bellard5b0753e2005-03-01 21:37:28 +0000415if test "$darwin" = "yes" ; then
416 echo "Cocoa support $cocoa"
417fi
bellard97a847b2003-08-10 21:36:04 +0000418echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000419echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000420echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000421echo "Adlib support $adlib"
bellard102a52e2004-11-14 19:57:29 +0000422echo -n "FMOD support $fmod"
423if test $fmod = "yes"; then
424 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
425fi
426echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000427echo "kqemu support $kqemu"
428if test $kqemu = "yes" -a $linux = "yes" ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000429echo ""
bellard07f4ddb2005-04-23 17:44:28 +0000430echo "KQEMU Linux module configuration:"
bellardc9ec1fe2005-02-10 21:55:30 +0000431echo "kernel sources $kernel_path"
432echo -n "kbuild type "
433if test $kbuild26 = "yes"; then
434echo "2.6"
435else
436echo "2.4"
437fi
438fi
bellard67b915a2004-03-31 23:37:16 +0000439
bellard97a847b2003-08-10 21:36:04 +0000440if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +0000441echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000442fi
bellard24b55b92005-03-01 22:30:41 +0000443#if test "$sdl_static" = "no"; then
444# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
445#fi
bellard97a847b2003-08-10 21:36:04 +0000446
447config_mak="config-host.mak"
448config_h="config-host.h"
449
bellard7c1f25b2004-04-22 00:02:08 +0000450#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000451
452echo "# Automatically generated by configure - do not modify" > $config_mak
453echo "/* Automatically generated by configure - do not modify */" > $config_h
454
455echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000456echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000457echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000458echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000459echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000460echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000461echo "MAKE=$make" >> $config_mak
462echo "CC=$cc" >> $config_mak
463if test "$have_gcc3_options" = "yes" ; then
464 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
465fi
466echo "HOST_CC=$host_cc" >> $config_mak
467echo "AR=$ar" >> $config_mak
468echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
469echo "CFLAGS=$CFLAGS" >> $config_mak
470echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000471echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000472if test "$cpu" = "i386" ; then
473 echo "ARCH=i386" >> $config_mak
474 echo "#define HOST_I386 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000475elif test "$cpu" = "x86_64" ; then
476 echo "ARCH=x86_64" >> $config_mak
477 echo "#define HOST_X86_64 1" >> $config_h
bellard808c4952004-12-19 23:33:47 +0000478elif test "$cpu" = "armv4b" ; then
479 echo "ARCH=arm" >> $config_mak
480 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000481elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000482 echo "ARCH=arm" >> $config_mak
483 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000484elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000485 echo "ARCH=ppc" >> $config_mak
486 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000487elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000488 echo "ARCH=mips" >> $config_mak
489 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000490elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000491 echo "ARCH=s390" >> $config_mak
492 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000493elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000494 echo "ARCH=alpha" >> $config_mak
495 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000496elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000497 echo "ARCH=sparc" >> $config_mak
498 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000499elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000500 echo "ARCH=sparc64" >> $config_mak
501 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000502elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000503 echo "ARCH=ia64" >> $config_mak
504 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000505elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000506 echo "ARCH=m68k" >> $config_mak
507 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000508else
509 echo "Unsupported CPU"
510 exit 1
511fi
512if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000513 echo "WORDS_BIGENDIAN=yes" >> $config_mak
514 echo "#define WORDS_BIGENDIAN 1" >> $config_h
515fi
bellard67b915a2004-03-31 23:37:16 +0000516if test "$mingw32" = "yes" ; then
517 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000518 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000519elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000520 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
521fi
bellard83fb7ad2004-07-05 21:25:26 +0000522if test "$darwin" = "yes" ; then
523 echo "CONFIG_DARWIN=yes" >> $config_mak
524 echo "#define CONFIG_DARWIN 1" >> $config_h
525fi
bellard67b915a2004-03-31 23:37:16 +0000526if test "$gdbstub" = "yes" ; then
527 echo "CONFIG_GDBSTUB=yes" >> $config_mak
528 echo "#define CONFIG_GDBSTUB 1" >> $config_h
529fi
bellard97a847b2003-08-10 21:36:04 +0000530if test "$gprof" = "yes" ; then
531 echo "TARGET_GPROF=yes" >> $config_mak
532 echo "#define HAVE_GPROF 1" >> $config_h
533fi
534if test "$static" = "yes" ; then
535 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000536 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000537fi
bellardc20709a2004-04-21 23:27:19 +0000538if test "$slirp" = "yes" ; then
539 echo "CONFIG_SLIRP=yes" >> $config_mak
540 echo "#define CONFIG_SLIRP 1" >> $config_h
541fi
bellardfb065182004-11-09 23:09:44 +0000542if test "$adlib" = "yes" ; then
543 echo "CONFIG_ADLIB=yes" >> $config_mak
544 echo "#define CONFIG_ADLIB 1" >> $config_h
545fi
546if test "$oss" = "yes" ; then
547 echo "CONFIG_OSS=yes" >> $config_mak
548 echo "#define CONFIG_OSS 1" >> $config_h
549fi
bellard102a52e2004-11-14 19:57:29 +0000550if test "$fmod" = "yes" ; then
551 echo "CONFIG_FMOD=yes" >> $config_mak
552 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
553 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
554 echo "#define CONFIG_FMOD 1" >> $config_h
555fi
bellard97a847b2003-08-10 21:36:04 +0000556echo -n "VERSION=" >>$config_mak
557head $source_path/VERSION >>$config_mak
558echo "" >>$config_mak
559echo -n "#define QEMU_VERSION \"" >> $config_h
560head $source_path/VERSION >> $config_h
561echo "\"" >> $config_h
562
bellardc9ec1fe2005-02-10 21:55:30 +0000563if test $kqemu = "yes" ; then
564 echo "CONFIG_KQEMU=yes" >> $config_mak
565 echo "KERNEL_PATH=$kernel_path" >> $config_mak
566 if test $kbuild26 = "yes" ; then
567 echo "CONFIG_KBUILD26=yes" >> $config_mak
568 fi
569fi
bellard97a847b2003-08-10 21:36:04 +0000570echo "SRC_PATH=$source_path" >> $config_mak
571echo "TARGET_DIRS=$target_list" >> $config_mak
572
bellard83fb7ad2004-07-05 21:25:26 +0000573# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000574if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000575 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000576 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000577 echo "#define _BSD 1" >> $config_h
578fi
579
bellard97a847b2003-08-10 21:36:04 +0000580for target in $target_list; do
581
582target_dir="$target"
583config_mak=$target_dir/config.mak
584config_h=$target_dir/config.h
585target_cpu=`echo $target | cut -d '-' -f 1`
586target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +0000587[ "$target_cpu" = "armeb" ] && target_bigendian=yes
bellard1e43adf2003-09-30 20:54:24 +0000588[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard64b3ab22005-01-30 22:43:42 +0000589[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000590[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000591target_softmmu="no"
592if expr $target : '.*-softmmu' > /dev/null ; then
593 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000594fi
bellard997344f2003-10-27 21:10:39 +0000595target_user_only="no"
596if expr $target : '.*-user' > /dev/null ; then
597 target_user_only="yes"
598fi
bellardde83cd02003-06-15 20:25:43 +0000599
bellard7c1f25b2004-04-22 00:02:08 +0000600#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000601
602mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +0000603mkdir -p $target_dir/fpu
bellard808c4952004-12-19 23:33:47 +0000604if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
bellard69de9272004-02-16 21:40:43 +0000605 mkdir -p $target_dir/nwfpe
606fi
bellarda7e61ed2004-04-22 21:46:47 +0000607if test "$target_user_only" = "no" ; then
608 mkdir -p $target_dir/slirp
609fi
bellard69de9272004-02-16 21:40:43 +0000610
bellard97a847b2003-08-10 21:36:04 +0000611ln -sf $source_path/Makefile.target $target_dir/Makefile
612
613echo "# Automatically generated by configure - do not modify" > $config_mak
614echo "/* Automatically generated by configure - do not modify */" > $config_h
615
616
617echo "include ../config-host.mak" >> $config_mak
618echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000619
620interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
621echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000622
623if test "$target_cpu" = "i386" ; then
624 echo "TARGET_ARCH=i386" >> $config_mak
625 echo "#define TARGET_ARCH \"i386\"" >> $config_h
626 echo "#define TARGET_I386 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000627 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
bellard824d5602005-02-12 18:58:00 +0000628 echo "#define USE_KQEMU 1" >> $config_h
629 fi
bellard808c4952004-12-19 23:33:47 +0000630elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
bellard97a847b2003-08-10 21:36:04 +0000631 echo "TARGET_ARCH=arm" >> $config_mak
632 echo "#define TARGET_ARCH \"arm\"" >> $config_h
633 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000634elif test "$target_cpu" = "sparc" ; then
635 echo "TARGET_ARCH=sparc" >> $config_mak
636 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
637 echo "#define TARGET_SPARC 1" >> $config_h
bellard64b3ab22005-01-30 22:43:42 +0000638elif test "$target_cpu" = "sparc64" ; then
639 echo "TARGET_ARCH=sparc64" >> $config_mak
640 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
641 echo "#define TARGET_SPARC 1" >> $config_h
642 echo "#define TARGET_SPARC64 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000643elif test "$target_cpu" = "ppc" ; then
644 echo "TARGET_ARCH=ppc" >> $config_mak
645 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
646 echo "#define TARGET_PPC 1" >> $config_h
bellard0b0babc2005-01-03 23:38:40 +0000647elif test "$target_cpu" = "x86_64" ; then
648 echo "TARGET_ARCH=x86_64" >> $config_mak
649 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
650 echo "#define TARGET_I386 1" >> $config_h
651 echo "#define TARGET_X86_64 1" >> $config_h
bellard07f4ddb2005-04-23 17:44:28 +0000652 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
653 echo "#define USE_KQEMU 1" >> $config_h
654 fi
bellardde83cd02003-06-15 20:25:43 +0000655else
656 echo "Unsupported target CPU"
657 exit 1
658fi
659if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000660 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
661 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
662fi
663if test "$target_softmmu" = "yes" ; then
664 echo "CONFIG_SOFTMMU=yes" >> $config_mak
665 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000666fi
bellard997344f2003-10-27 21:10:39 +0000667if test "$target_user_only" = "yes" ; then
668 echo "CONFIG_USER_ONLY=yes" >> $config_mak
669 echo "#define CONFIG_USER_ONLY 1" >> $config_h
670fi
bellardde83cd02003-06-15 20:25:43 +0000671
bellard158142c2005-03-13 16:54:06 +0000672if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
673 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
674 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
675fi
bellard7c1f25b2004-04-22 00:02:08 +0000676# sdl defines
677
678if test "$target_user_only" = "no"; then
679 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000680 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000681 else
bellarddbb2c922004-10-24 22:17:47 +0000682 sdl1=$sdl
683 fi
684 if test "$sdl1" = "yes" ; then
685 echo "#define CONFIG_SDL 1" >> $config_h
686 echo "CONFIG_SDL=yes" >> $config_mak
687 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
688 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
689 else
bellard7c1f25b2004-04-22 00:02:08 +0000690 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
691 fi
bellarddbb2c922004-10-24 22:17:47 +0000692 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
693 if [ "${aa}" = "yes" ] ; then
694 echo -n " `aalib-config --cflags`" >> $config_mak ;
695 fi
696 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000697 fi
bellard7c1f25b2004-04-22 00:02:08 +0000698fi
699
bellard5b0753e2005-03-01 21:37:28 +0000700if test "$cocoa" = "yes" ; then
701 echo "#define CONFIG_COCOA 1" >> $config_h
702 echo "CONFIG_COCOA=yes" >> $config_mak
703fi
704
bellard97a847b2003-08-10 21:36:04 +0000705done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000706
707# build tree in object directory if source path is different from current one
708if test "$source_path_used" = "yes" ; then
709 DIRS="tests"
710 FILES="Makefile tests/Makefile"
711 for dir in $DIRS ; do
712 mkdir -p $dir
713 done
714 for f in $FILES ; do
715 ln -sf $source_path/$f $f
716 done
717fi
bellard7d132992003-03-06 23:23:54 +0000718
bellard97a847b2003-08-10 21:36:04 +0000719rm -f $TMPO $TMPC $TMPE $TMPS