blob: 192cb56dfba99966ddf26df9d7a263c5485d660f [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`
bellarde95c8d52004-09-30 22:22:08 +000030target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-softmmu sparc-softmmu"
bellard7d132992003-03-06 23:23:54 +000031case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +000033 cpu="i386"
bellard7d132992003-03-06 23:23:54 +000034 ;;
35 armv4l)
36 cpu="armv4l"
37 ;;
38 alpha)
39 cpu="alpha"
40 ;;
bellard295defa2003-04-07 21:31:29 +000041 "Power Macintosh"|ppc|ppc64)
bellard7d132992003-03-06 23:23:54 +000042 cpu="powerpc"
43 ;;
44 mips)
45 cpu="mips"
46 ;;
bellardfb3e5842003-03-29 17:32:36 +000047 s390)
48 cpu="s390"
49 ;;
bellardae228532003-05-13 18:59:59 +000050 sparc)
51 cpu="sparc"
52 ;;
53 sparc64)
54 cpu="sparc64"
55 ;;
bellarda8baa8c2003-04-29 20:53:31 +000056 ia64)
57 cpu="ia64"
58 ;;
bellard38e584a2003-08-10 22:14:22 +000059 m68k)
60 cpu="m68k"
61 ;;
bellardbc51c5c2004-03-17 23:46:04 +000062 x86_64|amd64)
63 cpu="amd64"
64 ;;
bellard7d132992003-03-06 23:23:54 +000065 *)
66 cpu="unknown"
67 ;;
68esac
69gprof="no"
70bigendian="no"
bellard67b915a2004-03-31 23:37:16 +000071mingw32="no"
72EXESUF=""
73gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +000074slirp="yes"
bellardfb065182004-11-09 23:09:44 +000075adlib="no"
76oss="no"
bellard7d132992003-03-06 23:23:54 +000077
78# OS specific
79targetos=`uname -s`
80case $targetos in
bellard67b915a2004-03-31 23:37:16 +000081MINGW32*)
82mingw32="yes"
83;;
bellard7d3505c2004-05-12 19:32:15 +000084FreeBSD)
85bsd="yes"
bellardfb065182004-11-09 23:09:44 +000086oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000087;;
88NetBSD)
89bsd="yes"
bellardfb065182004-11-09 23:09:44 +000090oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000091;;
92OpenBSD)
93bsd="yes"
bellardfb065182004-11-09 23:09:44 +000094oss="yes"
bellard7d3505c2004-05-12 19:32:15 +000095;;
bellard83fb7ad2004-07-05 21:25:26 +000096Darwin)
97bsd="yes"
98darwin="yes"
99;;
bellardfb065182004-11-09 23:09:44 +0000100*)
101oss="yes"
102;;
bellard7d132992003-03-06 23:23:54 +0000103esac
104
bellard7d3505c2004-05-12 19:32:15 +0000105if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000106 if [ ! "$darwin" = "yes" ] ; then
107 make="gmake"
108 fi
bellarde95c8d52004-09-30 22:22:08 +0000109 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard7d3505c2004-05-12 19:32:15 +0000110fi
111
bellard7d132992003-03-06 23:23:54 +0000112# find source path
113# XXX: we assume an absolute path is given when launching configure,
114# except in './configure' case.
115source_path=${0%configure}
116source_path=${source_path%/}
117source_path_used="yes"
118if test -z "$source_path" -o "$source_path" = "." ; then
119 source_path=`pwd`
120 source_path_used="no"
121fi
122
123for opt do
124 case "$opt" in
125 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
126 ;;
bellard32ce6332003-04-11 00:16:16 +0000127 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
128 ;;
bellard7d132992003-03-06 23:23:54 +0000129 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
130 ;;
131 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
132 ;;
133 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
134 ;;
135 --make=*) make=`echo $opt | cut -d '=' -f 2`
136 ;;
137 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
138 ;;
139 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
140 ;;
141 --extra-libs=*) extralibs=${opt#--extra-libs=}
142 ;;
143 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
144 ;;
bellard97a847b2003-08-10 21:36:04 +0000145 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000146 ;;
bellard7d132992003-03-06 23:23:54 +0000147 --enable-gprof) gprof="yes"
148 ;;
bellard43ce4df2003-06-09 19:53:12 +0000149 --static) static="yes"
150 ;;
bellard97a847b2003-08-10 21:36:04 +0000151 --disable-sdl) sdl="no"
152 ;;
bellard67b915a2004-03-31 23:37:16 +0000153 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
154 ;;
bellard443f1372004-06-04 11:13:20 +0000155 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000156 ;;
bellardfb065182004-11-09 23:09:44 +0000157 --enable-adlib) adlib="yes"
158 ;;
bellard7d132992003-03-06 23:23:54 +0000159 esac
160done
161
162# Checking for CFLAGS
163if test -z "$CFLAGS"; then
164 CFLAGS="-O2"
165fi
166
167cc="${cross_prefix}${cc}"
168ar="${cross_prefix}${ar}"
169strip="${cross_prefix}${strip}"
170
bellard67b915a2004-03-31 23:37:16 +0000171if test "$mingw32" = "yes" ; then
bellarde95c8d52004-09-30 22:22:08 +0000172 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard67b915a2004-03-31 23:37:16 +0000173 EXESUF=".exe"
174 gdbstub="no"
bellard9f059ec2004-11-14 18:59:52 +0000175 oss="no"
bellard67b915a2004-03-31 23:37:16 +0000176fi
177
bellard7d132992003-03-06 23:23:54 +0000178if test -z "$cross_prefix" ; then
179
180# ---
181# big/little endian test
182cat > $TMPC << EOF
183#include <inttypes.h>
184int main(int argc, char ** argv){
185 volatile uint32_t i=0x01234567;
186 return (*((uint8_t*)(&i))) == 0x67;
187}
188EOF
189
190if $cc -o $TMPE $TMPC 2>/dev/null ; then
191$TMPE && bigendian="yes"
192else
193echo big/little test failed
194fi
195
196else
197
198# if cross compiling, cannot launch a program, so make a static guess
bellard38e584a2003-08-10 22:14:22 +0000199if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then
bellard7d132992003-03-06 23:23:54 +0000200 bigendian="yes"
201fi
202
203fi
204
bellarde8cd23d2003-06-25 16:08:13 +0000205# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000206cat > $TMPC <<EOF
207int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000208}
209EOF
210
bellarde8cd23d2003-06-25 16:08:13 +0000211have_gcc3_options="no"
212if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
213 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000214fi
bellardca735202003-03-18 20:41:34 +0000215
bellard11d9f692004-04-02 20:55:59 +0000216##########################################
217# SDL probe
218
219sdl_too_old=no
220
221if test -z "$sdl" ; then
222
bellarda6e022a2004-04-02 21:55:47 +0000223sdl_config="sdl-config"
224sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000225sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000226
227if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
228# win32 cross compilation case
229 sdl_config="i386-mingw32msvc-sdl-config"
230 sdl=yes
231else
232# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000233cat > $TMPC << EOF
234#include <SDL.h>
235#undef main /* We don't want SDL to override our main() */
236int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
237EOF
238
bellarda6e022a2004-04-02 21:55:47 +0000239if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
240_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000241if test "$_sdlversion" -lt 121 ; then
242sdl_too_old=yes
243else
244sdl=yes
245fi
bellard7c1f25b2004-04-22 00:02:08 +0000246
247# static link with sdl ?
248if test "$sdl" = "yes" ; then
249aa="no"
250`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
251sdl_static_libs=`$sdl_config --static-libs`
252if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000253 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000254fi
255
bellard7c1f25b2004-04-22 00:02:08 +0000256if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
257 sdl_static=yes
258fi
259
260fi # static link
261
262fi # sdl compile test
263
bellarda6e022a2004-04-02 21:55:47 +0000264fi # cross compilation
265fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000266
bellard7d132992003-03-06 23:23:54 +0000267if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
268cat << EOF
269
270Usage: configure [options]
271Options: [defaults in brackets after descriptions]
272
273EOF
274echo "Standard options:"
275echo " --help print this message"
276echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000277echo " --interp-prefix=PREFIX where to find shared libraries, etc."
278echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000279echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000280echo ""
281echo "Advanced options (experts only):"
282echo " --source-path=PATH path of source code [$source_path]"
283echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
284echo " --cc=CC use C compiler CC [$cc]"
285echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000286echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000287echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard7d132992003-03-06 23:23:54 +0000288echo ""
289echo "NOTE: The object files are build at the place where configure is launched"
290exit 1
291fi
292
bellard11d9f692004-04-02 20:55:59 +0000293if test "$mingw32" = "yes" ; then
294if test -z "$prefix" ; then
295 prefix="/c/Program Files/Qemu"
296fi
297mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000298datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000299docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000300bindir="$prefix"
301else
302if test -z "$prefix" ; then
303 prefix="/usr/local"
304fi
bellard5a671352003-10-01 00:13:48 +0000305mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000306datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000307docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000308bindir="$prefix/bin"
309fi
bellard5a671352003-10-01 00:13:48 +0000310
bellard43ce4df2003-06-09 19:53:12 +0000311echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000312echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000313echo "binary directory $bindir"
314if test "$mingw32" = "no" ; then
315echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000316echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000317fi
bellard5a671352003-10-01 00:13:48 +0000318echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000319echo "C compiler $cc"
320echo "make $make"
321echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000322echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000323echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000324echo "gprof enabled $gprof"
325echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000326echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000327echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000328echo "mingw32 support $mingw32"
bellardfb065182004-11-09 23:09:44 +0000329echo "Adlib support $adlib"
bellard67b915a2004-03-31 23:37:16 +0000330
bellard97a847b2003-08-10 21:36:04 +0000331if test $sdl_too_old = "yes"; then
332echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000333fi
bellard7c1f25b2004-04-22 00:02:08 +0000334if test "$sdl_static" = "no"; then
335 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
336fi
bellard97a847b2003-08-10 21:36:04 +0000337
338config_mak="config-host.mak"
339config_h="config-host.h"
340
bellard7c1f25b2004-04-22 00:02:08 +0000341#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000342
343echo "# Automatically generated by configure - do not modify" > $config_mak
344echo "/* Automatically generated by configure - do not modify */" > $config_h
345
346echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000347echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000348echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000349echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000350echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000351echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000352echo "MAKE=$make" >> $config_mak
353echo "CC=$cc" >> $config_mak
354if test "$have_gcc3_options" = "yes" ; then
355 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
356fi
357echo "HOST_CC=$host_cc" >> $config_mak
358echo "AR=$ar" >> $config_mak
359echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
360echo "CFLAGS=$CFLAGS" >> $config_mak
361echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000362echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000363if test "$cpu" = "i386" ; then
364 echo "ARCH=i386" >> $config_mak
365 echo "#define HOST_I386 1" >> $config_h
bellardbc51c5c2004-03-17 23:46:04 +0000366elif test "$cpu" = "amd64" ; then
367 echo "ARCH=amd64" >> $config_mak
368 echo "#define HOST_AMD64 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000369elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000370 echo "ARCH=arm" >> $config_mak
371 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000372elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000373 echo "ARCH=ppc" >> $config_mak
374 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000375elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000376 echo "ARCH=mips" >> $config_mak
377 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000378elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000379 echo "ARCH=s390" >> $config_mak
380 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000381elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000382 echo "ARCH=alpha" >> $config_mak
383 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000384elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000385 echo "ARCH=sparc" >> $config_mak
386 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000387elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000388 echo "ARCH=sparc64" >> $config_mak
389 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000390elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000391 echo "ARCH=ia64" >> $config_mak
392 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000393elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000394 echo "ARCH=m68k" >> $config_mak
395 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000396else
397 echo "Unsupported CPU"
398 exit 1
399fi
400if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000401 echo "WORDS_BIGENDIAN=yes" >> $config_mak
402 echo "#define WORDS_BIGENDIAN 1" >> $config_h
403fi
bellard67b915a2004-03-31 23:37:16 +0000404if test "$mingw32" = "yes" ; then
405 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000406 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000407elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000408 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
409fi
bellard83fb7ad2004-07-05 21:25:26 +0000410if test "$darwin" = "yes" ; then
411 echo "CONFIG_DARWIN=yes" >> $config_mak
412 echo "#define CONFIG_DARWIN 1" >> $config_h
413fi
bellard67b915a2004-03-31 23:37:16 +0000414if test "$gdbstub" = "yes" ; then
415 echo "CONFIG_GDBSTUB=yes" >> $config_mak
416 echo "#define CONFIG_GDBSTUB 1" >> $config_h
417fi
bellard97a847b2003-08-10 21:36:04 +0000418if test "$gprof" = "yes" ; then
419 echo "TARGET_GPROF=yes" >> $config_mak
420 echo "#define HAVE_GPROF 1" >> $config_h
421fi
422if test "$static" = "yes" ; then
423 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000424 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000425fi
bellardc20709a2004-04-21 23:27:19 +0000426if test "$slirp" = "yes" ; then
427 echo "CONFIG_SLIRP=yes" >> $config_mak
428 echo "#define CONFIG_SLIRP 1" >> $config_h
429fi
bellardfb065182004-11-09 23:09:44 +0000430if test "$adlib" = "yes" ; then
431 echo "CONFIG_ADLIB=yes" >> $config_mak
432 echo "#define CONFIG_ADLIB 1" >> $config_h
433fi
434if test "$oss" = "yes" ; then
435 echo "CONFIG_OSS=yes" >> $config_mak
436 echo "#define CONFIG_OSS 1" >> $config_h
437fi
bellard97a847b2003-08-10 21:36:04 +0000438echo -n "VERSION=" >>$config_mak
439head $source_path/VERSION >>$config_mak
440echo "" >>$config_mak
441echo -n "#define QEMU_VERSION \"" >> $config_h
442head $source_path/VERSION >> $config_h
443echo "\"" >> $config_h
444
445echo "SRC_PATH=$source_path" >> $config_mak
446echo "TARGET_DIRS=$target_list" >> $config_mak
447
bellard83fb7ad2004-07-05 21:25:26 +0000448# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000449if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000450 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000451 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000452 echo "#define _BSD 1" >> $config_h
453fi
454
bellard97a847b2003-08-10 21:36:04 +0000455for target in $target_list; do
456
457target_dir="$target"
458config_mak=$target_dir/config.mak
459config_h=$target_dir/config.h
460target_cpu=`echo $target | cut -d '-' -f 1`
461target_bigendian="no"
bellard1e43adf2003-09-30 20:54:24 +0000462[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000463[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000464target_softmmu="no"
465if expr $target : '.*-softmmu' > /dev/null ; then
466 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000467fi
bellard997344f2003-10-27 21:10:39 +0000468target_user_only="no"
469if expr $target : '.*-user' > /dev/null ; then
470 target_user_only="yes"
471fi
bellardde83cd02003-06-15 20:25:43 +0000472
bellard7c1f25b2004-04-22 00:02:08 +0000473#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000474
475mkdir -p $target_dir
bellard69de9272004-02-16 21:40:43 +0000476if test "$target" = "arm-user" ; then
477 mkdir -p $target_dir/nwfpe
478fi
bellarda7e61ed2004-04-22 21:46:47 +0000479if test "$target_user_only" = "no" ; then
480 mkdir -p $target_dir/slirp
481fi
bellard69de9272004-02-16 21:40:43 +0000482
bellard97a847b2003-08-10 21:36:04 +0000483ln -sf $source_path/Makefile.target $target_dir/Makefile
484
485echo "# Automatically generated by configure - do not modify" > $config_mak
486echo "/* Automatically generated by configure - do not modify */" > $config_h
487
488
489echo "include ../config-host.mak" >> $config_mak
490echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000491
492interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
493echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000494
495if test "$target_cpu" = "i386" ; then
496 echo "TARGET_ARCH=i386" >> $config_mak
497 echo "#define TARGET_ARCH \"i386\"" >> $config_h
498 echo "#define TARGET_I386 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000499elif test "$target_cpu" = "arm" ; then
bellard97a847b2003-08-10 21:36:04 +0000500 echo "TARGET_ARCH=arm" >> $config_mak
501 echo "#define TARGET_ARCH \"arm\"" >> $config_h
502 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000503elif test "$target_cpu" = "sparc" ; then
504 echo "TARGET_ARCH=sparc" >> $config_mak
505 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
506 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000507elif test "$target_cpu" = "ppc" ; then
508 echo "TARGET_ARCH=ppc" >> $config_mak
509 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
510 echo "#define TARGET_PPC 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000511else
512 echo "Unsupported target CPU"
513 exit 1
514fi
515if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000516 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
517 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
518fi
519if test "$target_softmmu" = "yes" ; then
520 echo "CONFIG_SOFTMMU=yes" >> $config_mak
521 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000522fi
bellard997344f2003-10-27 21:10:39 +0000523if test "$target_user_only" = "yes" ; then
524 echo "CONFIG_USER_ONLY=yes" >> $config_mak
525 echo "#define CONFIG_USER_ONLY 1" >> $config_h
526fi
bellardde83cd02003-06-15 20:25:43 +0000527
bellard7c1f25b2004-04-22 00:02:08 +0000528# sdl defines
529
530if test "$target_user_only" = "no"; then
531 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
bellarddbb2c922004-10-24 22:17:47 +0000532 sdl1=$sdl_static
bellard7c1f25b2004-04-22 00:02:08 +0000533 else
bellarddbb2c922004-10-24 22:17:47 +0000534 sdl1=$sdl
535 fi
536 if test "$sdl1" = "yes" ; then
537 echo "#define CONFIG_SDL 1" >> $config_h
538 echo "CONFIG_SDL=yes" >> $config_mak
539 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
540 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
541 else
bellard7c1f25b2004-04-22 00:02:08 +0000542 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
543 fi
bellarddbb2c922004-10-24 22:17:47 +0000544 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
545 if [ "${aa}" = "yes" ] ; then
546 echo -n " `aalib-config --cflags`" >> $config_mak ;
547 fi
548 echo "" >> $config_mak
bellard7c1f25b2004-04-22 00:02:08 +0000549 fi
bellard7c1f25b2004-04-22 00:02:08 +0000550fi
551
bellard97a847b2003-08-10 21:36:04 +0000552done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000553
554# build tree in object directory if source path is different from current one
555if test "$source_path_used" = "yes" ; then
556 DIRS="tests"
557 FILES="Makefile tests/Makefile"
558 for dir in $DIRS ; do
559 mkdir -p $dir
560 done
561 for f in $FILES ; do
562 ln -sf $source_path/$f $f
563 done
564fi
bellard7d132992003-03-06 23:23:54 +0000565
bellard97a847b2003-08-10 21:36:04 +0000566rm -f $TMPO $TMPC $TMPE $TMPS