blob: 5d7eed688fd4fa112888f1628c6eab058b8b46e6 [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"
bellard7d132992003-03-06 23:23:54 +000075
76# OS specific
77targetos=`uname -s`
78case $targetos in
bellard67b915a2004-03-31 23:37:16 +000079MINGW32*)
80mingw32="yes"
81;;
bellard7d3505c2004-05-12 19:32:15 +000082FreeBSD)
83bsd="yes"
84;;
85NetBSD)
86bsd="yes"
87;;
88OpenBSD)
89bsd="yes"
90;;
bellard83fb7ad2004-07-05 21:25:26 +000091Darwin)
92bsd="yes"
93darwin="yes"
94;;
bellard7d132992003-03-06 23:23:54 +000095*) ;;
96esac
97
bellard7d3505c2004-05-12 19:32:15 +000098if [ "$bsd" = "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +000099 if [ ! "$darwin" = "yes" ] ; then
100 make="gmake"
101 fi
bellarde95c8d52004-09-30 22:22:08 +0000102 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard7d3505c2004-05-12 19:32:15 +0000103fi
104
bellard7d132992003-03-06 23:23:54 +0000105# find source path
106# XXX: we assume an absolute path is given when launching configure,
107# except in './configure' case.
108source_path=${0%configure}
109source_path=${source_path%/}
110source_path_used="yes"
111if test -z "$source_path" -o "$source_path" = "." ; then
112 source_path=`pwd`
113 source_path_used="no"
114fi
115
116for opt do
117 case "$opt" in
118 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
119 ;;
bellard32ce6332003-04-11 00:16:16 +0000120 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
121 ;;
bellard7d132992003-03-06 23:23:54 +0000122 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
123 ;;
124 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
125 ;;
126 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
127 ;;
128 --make=*) make=`echo $opt | cut -d '=' -f 2`
129 ;;
130 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
131 ;;
132 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
133 ;;
134 --extra-libs=*) extralibs=${opt#--extra-libs=}
135 ;;
136 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
137 ;;
bellard97a847b2003-08-10 21:36:04 +0000138 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000139 ;;
bellard7d132992003-03-06 23:23:54 +0000140 --enable-gprof) gprof="yes"
141 ;;
bellard43ce4df2003-06-09 19:53:12 +0000142 --static) static="yes"
143 ;;
bellard97a847b2003-08-10 21:36:04 +0000144 --disable-sdl) sdl="no"
145 ;;
bellard67b915a2004-03-31 23:37:16 +0000146 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
147 ;;
bellard443f1372004-06-04 11:13:20 +0000148 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000149 ;;
bellard7d132992003-03-06 23:23:54 +0000150 esac
151done
152
153# Checking for CFLAGS
154if test -z "$CFLAGS"; then
155 CFLAGS="-O2"
156fi
157
158cc="${cross_prefix}${cc}"
159ar="${cross_prefix}${ar}"
160strip="${cross_prefix}${strip}"
161
bellard67b915a2004-03-31 23:37:16 +0000162if test "$mingw32" = "yes" ; then
bellarde95c8d52004-09-30 22:22:08 +0000163 target_list="i386-softmmu ppc-softmmu sparc-softmmu"
bellard67b915a2004-03-31 23:37:16 +0000164 EXESUF=".exe"
165 gdbstub="no"
166fi
167
bellard7d132992003-03-06 23:23:54 +0000168if test -z "$cross_prefix" ; then
169
170# ---
171# big/little endian test
172cat > $TMPC << EOF
173#include <inttypes.h>
174int main(int argc, char ** argv){
175 volatile uint32_t i=0x01234567;
176 return (*((uint8_t*)(&i))) == 0x67;
177}
178EOF
179
180if $cc -o $TMPE $TMPC 2>/dev/null ; then
181$TMPE && bigendian="yes"
182else
183echo big/little test failed
184fi
185
186else
187
188# if cross compiling, cannot launch a program, so make a static guess
bellard38e584a2003-08-10 22:14:22 +0000189if 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 +0000190 bigendian="yes"
191fi
192
193fi
194
bellarde8cd23d2003-06-25 16:08:13 +0000195# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000196cat > $TMPC <<EOF
197int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000198}
199EOF
200
bellarde8cd23d2003-06-25 16:08:13 +0000201have_gcc3_options="no"
202if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
203 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000204fi
bellardca735202003-03-18 20:41:34 +0000205
bellard11d9f692004-04-02 20:55:59 +0000206##########################################
207# SDL probe
208
209sdl_too_old=no
210
211if test -z "$sdl" ; then
212
bellarda6e022a2004-04-02 21:55:47 +0000213sdl_config="sdl-config"
214sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000215sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000216
217if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
218# win32 cross compilation case
219 sdl_config="i386-mingw32msvc-sdl-config"
220 sdl=yes
221else
222# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000223cat > $TMPC << EOF
224#include <SDL.h>
225#undef main /* We don't want SDL to override our main() */
226int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
227EOF
228
bellarda6e022a2004-04-02 21:55:47 +0000229if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
230_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000231if test "$_sdlversion" -lt 121 ; then
232sdl_too_old=yes
233else
234sdl=yes
235fi
bellard7c1f25b2004-04-22 00:02:08 +0000236
237# static link with sdl ?
238if test "$sdl" = "yes" ; then
239aa="no"
240`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
241sdl_static_libs=`$sdl_config --static-libs`
242if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000243 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000244fi
245
bellard7c1f25b2004-04-22 00:02:08 +0000246if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
247 sdl_static=yes
248fi
249
250fi # static link
251
252fi # sdl compile test
253
bellarda6e022a2004-04-02 21:55:47 +0000254fi # cross compilation
255fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000256
bellard7d132992003-03-06 23:23:54 +0000257if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
258cat << EOF
259
260Usage: configure [options]
261Options: [defaults in brackets after descriptions]
262
263EOF
264echo "Standard options:"
265echo " --help print this message"
266echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000267echo " --interp-prefix=PREFIX where to find shared libraries, etc."
268echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000269echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000270echo ""
271echo "Advanced options (experts only):"
272echo " --source-path=PATH path of source code [$source_path]"
273echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
274echo " --cc=CC use C compiler CC [$cc]"
275echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000276echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000277echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard7d132992003-03-06 23:23:54 +0000278echo ""
279echo "NOTE: The object files are build at the place where configure is launched"
280exit 1
281fi
282
bellard11d9f692004-04-02 20:55:59 +0000283if test "$mingw32" = "yes" ; then
284if test -z "$prefix" ; then
285 prefix="/c/Program Files/Qemu"
286fi
287mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000288datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000289docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000290bindir="$prefix"
291else
292if test -z "$prefix" ; then
293 prefix="/usr/local"
294fi
bellard5a671352003-10-01 00:13:48 +0000295mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000296datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000297docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000298bindir="$prefix/bin"
299fi
bellard5a671352003-10-01 00:13:48 +0000300
bellard43ce4df2003-06-09 19:53:12 +0000301echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000302echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000303echo "binary directory $bindir"
304if test "$mingw32" = "no" ; then
305echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000306echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000307fi
bellard5a671352003-10-01 00:13:48 +0000308echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000309echo "C compiler $cc"
310echo "make $make"
311echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000312echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000313echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000314echo "gprof enabled $gprof"
315echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000316echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000317echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000318echo "mingw32 support $mingw32"
319
bellard97a847b2003-08-10 21:36:04 +0000320if test $sdl_too_old = "yes"; then
321echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000322fi
bellard7c1f25b2004-04-22 00:02:08 +0000323if test "$sdl_static" = "no"; then
324 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
325fi
bellard97a847b2003-08-10 21:36:04 +0000326
327config_mak="config-host.mak"
328config_h="config-host.h"
329
bellard7c1f25b2004-04-22 00:02:08 +0000330#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000331
332echo "# Automatically generated by configure - do not modify" > $config_mak
333echo "/* Automatically generated by configure - do not modify */" > $config_h
334
335echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000336echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000337echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000338echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000339echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000340echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000341echo "MAKE=$make" >> $config_mak
342echo "CC=$cc" >> $config_mak
343if test "$have_gcc3_options" = "yes" ; then
344 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
345fi
346echo "HOST_CC=$host_cc" >> $config_mak
347echo "AR=$ar" >> $config_mak
348echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
349echo "CFLAGS=$CFLAGS" >> $config_mak
350echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000351echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000352if test "$cpu" = "i386" ; then
353 echo "ARCH=i386" >> $config_mak
354 echo "#define HOST_I386 1" >> $config_h
bellardbc51c5c2004-03-17 23:46:04 +0000355elif test "$cpu" = "amd64" ; then
356 echo "ARCH=amd64" >> $config_mak
357 echo "#define HOST_AMD64 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000358elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000359 echo "ARCH=arm" >> $config_mak
360 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000361elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000362 echo "ARCH=ppc" >> $config_mak
363 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000364elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000365 echo "ARCH=mips" >> $config_mak
366 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000367elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000368 echo "ARCH=s390" >> $config_mak
369 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000370elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000371 echo "ARCH=alpha" >> $config_mak
372 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000373elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000374 echo "ARCH=sparc" >> $config_mak
375 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000376elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000377 echo "ARCH=sparc64" >> $config_mak
378 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000379elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000380 echo "ARCH=ia64" >> $config_mak
381 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000382elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000383 echo "ARCH=m68k" >> $config_mak
384 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000385else
386 echo "Unsupported CPU"
387 exit 1
388fi
389if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000390 echo "WORDS_BIGENDIAN=yes" >> $config_mak
391 echo "#define WORDS_BIGENDIAN 1" >> $config_h
392fi
bellard67b915a2004-03-31 23:37:16 +0000393if test "$mingw32" = "yes" ; then
394 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000395 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000396elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000397 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
398fi
bellard83fb7ad2004-07-05 21:25:26 +0000399if test "$darwin" = "yes" ; then
400 echo "CONFIG_DARWIN=yes" >> $config_mak
401 echo "#define CONFIG_DARWIN 1" >> $config_h
402fi
bellard67b915a2004-03-31 23:37:16 +0000403if test "$gdbstub" = "yes" ; then
404 echo "CONFIG_GDBSTUB=yes" >> $config_mak
405 echo "#define CONFIG_GDBSTUB 1" >> $config_h
406fi
bellard97a847b2003-08-10 21:36:04 +0000407if test "$gprof" = "yes" ; then
408 echo "TARGET_GPROF=yes" >> $config_mak
409 echo "#define HAVE_GPROF 1" >> $config_h
410fi
411if test "$static" = "yes" ; then
412 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000413 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000414fi
bellardc20709a2004-04-21 23:27:19 +0000415if test "$slirp" = "yes" ; then
416 echo "CONFIG_SLIRP=yes" >> $config_mak
417 echo "#define CONFIG_SLIRP 1" >> $config_h
418fi
bellard97a847b2003-08-10 21:36:04 +0000419echo -n "VERSION=" >>$config_mak
420head $source_path/VERSION >>$config_mak
421echo "" >>$config_mak
422echo -n "#define QEMU_VERSION \"" >> $config_h
423head $source_path/VERSION >> $config_h
424echo "\"" >> $config_h
425
426echo "SRC_PATH=$source_path" >> $config_mak
427echo "TARGET_DIRS=$target_list" >> $config_mak
428
bellard83fb7ad2004-07-05 21:25:26 +0000429# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +0000430if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000431 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +0000432 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000433 echo "#define _BSD 1" >> $config_h
434fi
435
bellard97a847b2003-08-10 21:36:04 +0000436for target in $target_list; do
437
438target_dir="$target"
439config_mak=$target_dir/config.mak
440config_h=$target_dir/config.h
441target_cpu=`echo $target | cut -d '-' -f 1`
442target_bigendian="no"
bellard1e43adf2003-09-30 20:54:24 +0000443[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000444[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000445target_softmmu="no"
446if expr $target : '.*-softmmu' > /dev/null ; then
447 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000448fi
bellard997344f2003-10-27 21:10:39 +0000449target_user_only="no"
450if expr $target : '.*-user' > /dev/null ; then
451 target_user_only="yes"
452fi
bellardde83cd02003-06-15 20:25:43 +0000453
bellard7c1f25b2004-04-22 00:02:08 +0000454#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000455
456mkdir -p $target_dir
bellard69de9272004-02-16 21:40:43 +0000457if test "$target" = "arm-user" ; then
458 mkdir -p $target_dir/nwfpe
459fi
bellarda7e61ed2004-04-22 21:46:47 +0000460if test "$target_user_only" = "no" ; then
461 mkdir -p $target_dir/slirp
462fi
bellard69de9272004-02-16 21:40:43 +0000463
bellard97a847b2003-08-10 21:36:04 +0000464ln -sf $source_path/Makefile.target $target_dir/Makefile
465
466echo "# Automatically generated by configure - do not modify" > $config_mak
467echo "/* Automatically generated by configure - do not modify */" > $config_h
468
469
470echo "include ../config-host.mak" >> $config_mak
471echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000472
473interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
474echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000475
476if test "$target_cpu" = "i386" ; then
477 echo "TARGET_ARCH=i386" >> $config_mak
478 echo "#define TARGET_ARCH \"i386\"" >> $config_h
479 echo "#define TARGET_I386 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000480elif test "$target_cpu" = "arm" ; then
bellard97a847b2003-08-10 21:36:04 +0000481 echo "TARGET_ARCH=arm" >> $config_mak
482 echo "#define TARGET_ARCH \"arm\"" >> $config_h
483 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000484elif test "$target_cpu" = "sparc" ; then
485 echo "TARGET_ARCH=sparc" >> $config_mak
486 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
487 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000488elif test "$target_cpu" = "ppc" ; then
489 echo "TARGET_ARCH=ppc" >> $config_mak
490 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
491 echo "#define TARGET_PPC 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000492else
493 echo "Unsupported target CPU"
494 exit 1
495fi
496if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000497 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
498 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
499fi
500if test "$target_softmmu" = "yes" ; then
501 echo "CONFIG_SOFTMMU=yes" >> $config_mak
502 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000503fi
bellard997344f2003-10-27 21:10:39 +0000504if test "$target_user_only" = "yes" ; then
505 echo "CONFIG_USER_ONLY=yes" >> $config_mak
506 echo "#define CONFIG_USER_ONLY 1" >> $config_h
507fi
bellardde83cd02003-06-15 20:25:43 +0000508
bellard7c1f25b2004-04-22 00:02:08 +0000509# sdl defines
510
511if test "$target_user_only" = "no"; then
512 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
513 if test "$sdl_static" = "yes" ; then
514 echo "#define CONFIG_SDL 1" >> $config_h
515 echo "CONFIG_SDL=yes" >> $config_mak
516 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
517 fi
518 else
519 if test "$sdl" = "yes" ; then
520 echo "#define CONFIG_SDL 1" >> $config_h
521 echo "CONFIG_SDL=yes" >> $config_mak
522 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
523 fi
524 fi
525 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
526 if [ "${aa}" = "yes" ] ; then
527 echo -n " `aalib-config --cflags`" >> $config_mak ;
528 fi
529 echo "" >> $config_mak
530fi
531
bellard97a847b2003-08-10 21:36:04 +0000532done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000533
534# build tree in object directory if source path is different from current one
535if test "$source_path_used" = "yes" ; then
536 DIRS="tests"
537 FILES="Makefile tests/Makefile"
538 for dir in $DIRS ; do
539 mkdir -p $dir
540 done
541 for f in $FILES ; do
542 ln -sf $source_path/$f $f
543 done
544fi
bellard7d132992003-03-06 23:23:54 +0000545
bellard97a847b2003-08-10 21:36:04 +0000546rm -f $TMPO $TMPC $TMPE $TMPS