blob: 8e0cff852330863e85f23e96de426824dccd320d [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`
bellarda541f292004-04-12 20:39:29 +000030target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-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;;
bellard7d132992003-03-06 23:23:54 +000091*) ;;
92esac
93
bellard7d3505c2004-05-12 19:32:15 +000094if [ "$bsd" = "yes" ] ; then
95 make="gmake"
96 target_list="i386-softmmu"
97fi
98
bellard7d132992003-03-06 23:23:54 +000099# find source path
100# XXX: we assume an absolute path is given when launching configure,
101# except in './configure' case.
102source_path=${0%configure}
103source_path=${source_path%/}
104source_path_used="yes"
105if test -z "$source_path" -o "$source_path" = "." ; then
106 source_path=`pwd`
107 source_path_used="no"
108fi
109
110for opt do
111 case "$opt" in
112 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
113 ;;
bellard32ce6332003-04-11 00:16:16 +0000114 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
115 ;;
bellard7d132992003-03-06 23:23:54 +0000116 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
117 ;;
118 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
119 ;;
120 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
121 ;;
122 --make=*) make=`echo $opt | cut -d '=' -f 2`
123 ;;
124 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
125 ;;
126 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
127 ;;
128 --extra-libs=*) extralibs=${opt#--extra-libs=}
129 ;;
130 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
131 ;;
bellard97a847b2003-08-10 21:36:04 +0000132 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000133 ;;
bellard7d132992003-03-06 23:23:54 +0000134 --enable-gprof) gprof="yes"
135 ;;
bellard43ce4df2003-06-09 19:53:12 +0000136 --static) static="yes"
137 ;;
bellard97a847b2003-08-10 21:36:04 +0000138 --disable-sdl) sdl="no"
139 ;;
bellard67b915a2004-03-31 23:37:16 +0000140 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
141 ;;
bellard443f1372004-06-04 11:13:20 +0000142 --disable-slirp) slirp="no"
bellardc20709a2004-04-21 23:27:19 +0000143 ;;
bellard7d132992003-03-06 23:23:54 +0000144 esac
145done
146
147# Checking for CFLAGS
148if test -z "$CFLAGS"; then
149 CFLAGS="-O2"
150fi
151
152cc="${cross_prefix}${cc}"
153ar="${cross_prefix}${ar}"
154strip="${cross_prefix}${strip}"
155
bellard67b915a2004-03-31 23:37:16 +0000156if test "$mingw32" = "yes" ; then
bellard43003042004-05-20 13:23:39 +0000157 target_list="i386-softmmu ppc-softmmu"
bellard67b915a2004-03-31 23:37:16 +0000158 EXESUF=".exe"
159 gdbstub="no"
bellard443f1372004-06-04 11:13:20 +0000160 slirp="no"
bellard67b915a2004-03-31 23:37:16 +0000161fi
162
bellard7d132992003-03-06 23:23:54 +0000163if test -z "$cross_prefix" ; then
164
165# ---
166# big/little endian test
167cat > $TMPC << EOF
168#include <inttypes.h>
169int main(int argc, char ** argv){
170 volatile uint32_t i=0x01234567;
171 return (*((uint8_t*)(&i))) == 0x67;
172}
173EOF
174
175if $cc -o $TMPE $TMPC 2>/dev/null ; then
176$TMPE && bigendian="yes"
177else
178echo big/little test failed
179fi
180
181else
182
183# if cross compiling, cannot launch a program, so make a static guess
bellard38e584a2003-08-10 22:14:22 +0000184if 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 +0000185 bigendian="yes"
186fi
187
188fi
189
bellarde8cd23d2003-06-25 16:08:13 +0000190# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000191cat > $TMPC <<EOF
192int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000193}
194EOF
195
bellarde8cd23d2003-06-25 16:08:13 +0000196have_gcc3_options="no"
197if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
198 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000199fi
bellardca735202003-03-18 20:41:34 +0000200
bellard11d9f692004-04-02 20:55:59 +0000201##########################################
202# SDL probe
203
204sdl_too_old=no
205
206if test -z "$sdl" ; then
207
bellarda6e022a2004-04-02 21:55:47 +0000208sdl_config="sdl-config"
209sdl=no
bellard7c1f25b2004-04-22 00:02:08 +0000210sdl_static=no
bellarda6e022a2004-04-02 21:55:47 +0000211
212if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
213# win32 cross compilation case
214 sdl_config="i386-mingw32msvc-sdl-config"
215 sdl=yes
216else
217# normal SDL probe
bellard11d9f692004-04-02 20:55:59 +0000218cat > $TMPC << EOF
219#include <SDL.h>
220#undef main /* We don't want SDL to override our main() */
221int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
222EOF
223
bellarda6e022a2004-04-02 21:55:47 +0000224if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
225_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
bellard11d9f692004-04-02 20:55:59 +0000226if test "$_sdlversion" -lt 121 ; then
227sdl_too_old=yes
228else
229sdl=yes
230fi
bellard7c1f25b2004-04-22 00:02:08 +0000231
232# static link with sdl ?
233if test "$sdl" = "yes" ; then
234aa="no"
235`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
236sdl_static_libs=`$sdl_config --static-libs`
237if [ "$aa" = "yes" ] ; then
bellardd8d8aa42004-04-29 20:14:07 +0000238 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
bellard11d9f692004-04-02 20:55:59 +0000239fi
240
bellard7c1f25b2004-04-22 00:02:08 +0000241if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
242 sdl_static=yes
243fi
244
245fi # static link
246
247fi # sdl compile test
248
bellarda6e022a2004-04-02 21:55:47 +0000249fi # cross compilation
250fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000251
bellard7d132992003-03-06 23:23:54 +0000252if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
253cat << EOF
254
255Usage: configure [options]
256Options: [defaults in brackets after descriptions]
257
258EOF
259echo "Standard options:"
260echo " --help print this message"
261echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000262echo " --interp-prefix=PREFIX where to find shared libraries, etc."
263echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000264echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000265echo ""
266echo "Advanced options (experts only):"
267echo " --source-path=PATH path of source code [$source_path]"
268echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
269echo " --cc=CC use C compiler CC [$cc]"
270echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000271echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000272echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard7d132992003-03-06 23:23:54 +0000273echo ""
274echo "NOTE: The object files are build at the place where configure is launched"
275exit 1
276fi
277
bellard11d9f692004-04-02 20:55:59 +0000278if test "$mingw32" = "yes" ; then
279if test -z "$prefix" ; then
280 prefix="/c/Program Files/Qemu"
281fi
282mandir="$prefix"
bellard7efa4382004-05-12 18:54:06 +0000283datadir="$prefix"
bellard1f50f8d2004-05-08 14:44:43 +0000284docdir="$prefix"
bellard11d9f692004-04-02 20:55:59 +0000285bindir="$prefix"
286else
287if test -z "$prefix" ; then
288 prefix="/usr/local"
289fi
bellard5a671352003-10-01 00:13:48 +0000290mandir="$prefix/share/man"
bellard7efa4382004-05-12 18:54:06 +0000291datadir="$prefix/share/qemu"
bellard1f50f8d2004-05-08 14:44:43 +0000292docdir="$prefix/share/doc/qemu"
bellard11d9f692004-04-02 20:55:59 +0000293bindir="$prefix/bin"
294fi
bellard5a671352003-10-01 00:13:48 +0000295
bellard43ce4df2003-06-09 19:53:12 +0000296echo "Install prefix $prefix"
bellard7efa4382004-05-12 18:54:06 +0000297echo "BIOS directory $datadir"
bellard11d9f692004-04-02 20:55:59 +0000298echo "binary directory $bindir"
299if test "$mingw32" = "no" ; then
300echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000301echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000302fi
bellard5a671352003-10-01 00:13:48 +0000303echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000304echo "C compiler $cc"
305echo "make $make"
306echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000307echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000308echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000309echo "gprof enabled $gprof"
310echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000311echo "SDL support $sdl"
bellard7c1f25b2004-04-22 00:02:08 +0000312echo "SDL static link $sdl_static"
bellard67b915a2004-03-31 23:37:16 +0000313echo "mingw32 support $mingw32"
314
bellard97a847b2003-08-10 21:36:04 +0000315if test $sdl_too_old = "yes"; then
316echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000317fi
bellard7c1f25b2004-04-22 00:02:08 +0000318if test "$sdl_static" = "no"; then
319 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
320fi
bellard97a847b2003-08-10 21:36:04 +0000321
322config_mak="config-host.mak"
323config_h="config-host.h"
324
bellard7c1f25b2004-04-22 00:02:08 +0000325#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +0000326
327echo "# Automatically generated by configure - do not modify" > $config_mak
328echo "/* Automatically generated by configure - do not modify */" > $config_h
329
330echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000331echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000332echo "mandir=$mandir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000333echo "datadir=$datadir" >> $config_mak
bellard1f50f8d2004-05-08 14:44:43 +0000334echo "docdir=$docdir" >> $config_mak
bellard7efa4382004-05-12 18:54:06 +0000335echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000336echo "MAKE=$make" >> $config_mak
337echo "CC=$cc" >> $config_mak
338if test "$have_gcc3_options" = "yes" ; then
339 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
340fi
341echo "HOST_CC=$host_cc" >> $config_mak
342echo "AR=$ar" >> $config_mak
343echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
344echo "CFLAGS=$CFLAGS" >> $config_mak
345echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000346echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000347if test "$cpu" = "i386" ; then
348 echo "ARCH=i386" >> $config_mak
349 echo "#define HOST_I386 1" >> $config_h
bellardbc51c5c2004-03-17 23:46:04 +0000350elif test "$cpu" = "amd64" ; then
351 echo "ARCH=amd64" >> $config_mak
352 echo "#define HOST_AMD64 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000353elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000354 echo "ARCH=arm" >> $config_mak
355 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000356elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000357 echo "ARCH=ppc" >> $config_mak
358 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000359elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000360 echo "ARCH=mips" >> $config_mak
361 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000362elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000363 echo "ARCH=s390" >> $config_mak
364 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000365elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000366 echo "ARCH=alpha" >> $config_mak
367 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000368elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000369 echo "ARCH=sparc" >> $config_mak
370 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000371elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000372 echo "ARCH=sparc64" >> $config_mak
373 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000374elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000375 echo "ARCH=ia64" >> $config_mak
376 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000377elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000378 echo "ARCH=m68k" >> $config_mak
379 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000380else
381 echo "Unsupported CPU"
382 exit 1
383fi
384if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000385 echo "WORDS_BIGENDIAN=yes" >> $config_mak
386 echo "#define WORDS_BIGENDIAN 1" >> $config_h
387fi
bellard67b915a2004-03-31 23:37:16 +0000388if test "$mingw32" = "yes" ; then
389 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000390 echo "#define CONFIG_WIN32 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000391elif test -f "/usr/include/byteswap.h" ; then
bellard67b915a2004-03-31 23:37:16 +0000392 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
393fi
394if test "$gdbstub" = "yes" ; then
395 echo "CONFIG_GDBSTUB=yes" >> $config_mak
396 echo "#define CONFIG_GDBSTUB 1" >> $config_h
397fi
bellard97a847b2003-08-10 21:36:04 +0000398if test "$gprof" = "yes" ; then
399 echo "TARGET_GPROF=yes" >> $config_mak
400 echo "#define HAVE_GPROF 1" >> $config_h
401fi
402if test "$static" = "yes" ; then
403 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000404 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000405fi
bellardc20709a2004-04-21 23:27:19 +0000406if test "$slirp" = "yes" ; then
407 echo "CONFIG_SLIRP=yes" >> $config_mak
408 echo "#define CONFIG_SLIRP 1" >> $config_h
409fi
bellard97a847b2003-08-10 21:36:04 +0000410echo -n "VERSION=" >>$config_mak
411head $source_path/VERSION >>$config_mak
412echo "" >>$config_mak
413echo -n "#define QEMU_VERSION \"" >> $config_h
414head $source_path/VERSION >> $config_h
415echo "\"" >> $config_h
416
417echo "SRC_PATH=$source_path" >> $config_mak
418echo "TARGET_DIRS=$target_list" >> $config_mak
419
bellard7d3505c2004-05-12 19:32:15 +0000420if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +0000421 echo "#define O_LARGEFILE 0" >> $config_h
422 echo "#define lseek64 lseek" >> $config_h
423 echo "#define ftruncate64 ftruncate" >> $config_h
424 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +0000425 echo "#define _BSD 1" >> $config_h
426fi
427
bellard97a847b2003-08-10 21:36:04 +0000428for target in $target_list; do
429
430target_dir="$target"
431config_mak=$target_dir/config.mak
432config_h=$target_dir/config.h
433target_cpu=`echo $target | cut -d '-' -f 1`
434target_bigendian="no"
bellard1e43adf2003-09-30 20:54:24 +0000435[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000436[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000437target_softmmu="no"
438if expr $target : '.*-softmmu' > /dev/null ; then
439 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000440fi
bellard997344f2003-10-27 21:10:39 +0000441target_user_only="no"
442if expr $target : '.*-user' > /dev/null ; then
443 target_user_only="yes"
444fi
bellardde83cd02003-06-15 20:25:43 +0000445
bellard7c1f25b2004-04-22 00:02:08 +0000446#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +0000447
448mkdir -p $target_dir
bellard69de9272004-02-16 21:40:43 +0000449if test "$target" = "arm-user" ; then
450 mkdir -p $target_dir/nwfpe
451fi
bellarda7e61ed2004-04-22 21:46:47 +0000452if test "$target_user_only" = "no" ; then
453 mkdir -p $target_dir/slirp
454fi
bellard69de9272004-02-16 21:40:43 +0000455
bellard97a847b2003-08-10 21:36:04 +0000456ln -sf $source_path/Makefile.target $target_dir/Makefile
457
458echo "# Automatically generated by configure - do not modify" > $config_mak
459echo "/* Automatically generated by configure - do not modify */" > $config_h
460
461
462echo "include ../config-host.mak" >> $config_mak
463echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000464
465interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
466echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000467
468if test "$target_cpu" = "i386" ; then
469 echo "TARGET_ARCH=i386" >> $config_mak
470 echo "#define TARGET_ARCH \"i386\"" >> $config_h
471 echo "#define TARGET_I386 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000472elif test "$target_cpu" = "arm" ; then
bellard97a847b2003-08-10 21:36:04 +0000473 echo "TARGET_ARCH=arm" >> $config_mak
474 echo "#define TARGET_ARCH \"arm\"" >> $config_h
475 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000476elif test "$target_cpu" = "sparc" ; then
477 echo "TARGET_ARCH=sparc" >> $config_mak
478 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
479 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000480elif test "$target_cpu" = "ppc" ; then
481 echo "TARGET_ARCH=ppc" >> $config_mak
482 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
483 echo "#define TARGET_PPC 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000484else
485 echo "Unsupported target CPU"
486 exit 1
487fi
488if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000489 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
490 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
491fi
492if test "$target_softmmu" = "yes" ; then
493 echo "CONFIG_SOFTMMU=yes" >> $config_mak
494 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000495fi
bellard997344f2003-10-27 21:10:39 +0000496if test "$target_user_only" = "yes" ; then
497 echo "CONFIG_USER_ONLY=yes" >> $config_mak
498 echo "#define CONFIG_USER_ONLY 1" >> $config_h
499fi
bellardde83cd02003-06-15 20:25:43 +0000500
bellard7c1f25b2004-04-22 00:02:08 +0000501# sdl defines
502
503if test "$target_user_only" = "no"; then
504 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
505 if test "$sdl_static" = "yes" ; then
506 echo "#define CONFIG_SDL 1" >> $config_h
507 echo "CONFIG_SDL=yes" >> $config_mak
508 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
509 fi
510 else
511 if test "$sdl" = "yes" ; then
512 echo "#define CONFIG_SDL 1" >> $config_h
513 echo "CONFIG_SDL=yes" >> $config_mak
514 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
515 fi
516 fi
517 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
518 if [ "${aa}" = "yes" ] ; then
519 echo -n " `aalib-config --cflags`" >> $config_mak ;
520 fi
521 echo "" >> $config_mak
522fi
523
bellard97a847b2003-08-10 21:36:04 +0000524done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000525
526# build tree in object directory if source path is different from current one
527if test "$source_path_used" = "yes" ; then
528 DIRS="tests"
529 FILES="Makefile tests/Makefile"
530 for dir in $DIRS ; do
531 mkdir -p $dir
532 done
533 for f in $FILES ; do
534 ln -sf $source_path/$f $f
535 done
536fi
bellard7d132992003-03-06 23:23:54 +0000537
bellard97a847b2003-08-10 21:36:04 +0000538rm -f $TMPO $TMPC $TMPE $TMPS