blob: faacb8de0957632ad56c9e8b2b9d8fe85195b098 [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"
malc9d56d2d2008-09-30 19:44:32 +000018TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
malcd4742de2008-11-29 22:04:31 +000019TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
bellard7d132992003-03-06 23:23:54 +000020
malcd4742de2008-11-29 22:04:31 +000021trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
malc9ac81bb2008-11-29 20:09:56 +000022
bellard7d132992003-03-06 23:23:54 +000023# default parameters
bellard11d9f692004-04-02 20:55:59 +000024prefix=""
bellard1e43adf2003-09-30 20:54:24 +000025interp_prefix="/usr/gnemul/qemu-%M"
bellard43ce4df2003-06-09 19:53:12 +000026static="no"
bellard7d132992003-03-06 23:23:54 +000027cross_prefix=""
28cc="gcc"
malc0c58ac12008-06-25 21:04:05 +000029audio_drv_list=""
malc4c9b53e2009-01-09 10:46:34 +000030audio_card_list="ac97 es1370 sb16"
31audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
bellard7d132992003-03-06 23:23:54 +000032host_cc="gcc"
33ar="ar"
34make="make"
pbrook6a882642006-04-17 13:57:12 +000035install="install"
bellard7d132992003-03-06 23:23:54 +000036strip="strip"
aliguoriac0df512008-12-29 17:14:15 +000037
38# parse CC options first
39for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --cross-prefix=*) cross_prefix="$optarg"
43 ;;
44 --cc=*) cc="$optarg"
45 ;;
46 esac
47done
48
49# OS specific
50# Using uname is really, really broken. Once we have the right set of checks
51# we can eliminate it's usage altogether
52
53cc="${cross_prefix}${cc}"
54ar="${cross_prefix}${ar}"
55strip="${cross_prefix}${strip}"
56
57# check that the C compiler works.
58cat > $TMPC <<EOF
59int main(void) {}
60EOF
61
62if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63 : C compiler works ok
64else
65 echo "ERROR: \"$cc\" either does not exist or does not work"
66 exit 1
67fi
68
69check_define() {
70cat > $TMPC <<EOF
71#if !defined($1)
72#error Not defined
73#endif
74int main(void) { return 0; }
75EOF
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
77}
78
79if check_define __i386__ ; then
80 cpu="i386"
81elif check_define __x86_64__ ; then
82 cpu="x86_64"
blueswir13aa9bd62008-12-31 16:55:26 +000083elif check_define __sparc__ ; then
84 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
85 # They must be specified using --sparc_cpu
86 if check_define __arch64__ ; then
87 cpu="sparc64"
88 else
89 cpu="sparc"
90 fi
malcfdf7ed92009-01-14 18:39:52 +000091elif check_define _ARCH_PPC ; then
92 if check_define _ARCH_PPC64 ; then
93 cpu="ppc64"
94 else
95 cpu="ppc"
96 fi
aliguoriac0df512008-12-29 17:14:15 +000097else
malcfdf7ed92009-01-14 18:39:52 +000098 cpu=`uname -m`
aliguoriac0df512008-12-29 17:14:15 +000099fi
100
bellard5327cf42005-01-10 23:18:50 +0000101target_list=""
bellard7d132992003-03-06 23:23:54 +0000102case "$cpu" in
103 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +0000104 cpu="i386"
bellard7d132992003-03-06 23:23:54 +0000105 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000106 x86_64|amd64)
107 cpu="x86_64"
108 ;;
109 alpha)
110 cpu="alpha"
111 ;;
bellardba680552005-03-13 09:49:52 +0000112 armv*b)
bellard808c4952004-12-19 23:33:47 +0000113 cpu="armv4b"
114 ;;
bellardba680552005-03-13 09:49:52 +0000115 armv*l)
bellard7d132992003-03-06 23:23:54 +0000116 cpu="armv4l"
117 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000118 cris)
119 cpu="cris"
bellard7d132992003-03-06 23:23:54 +0000120 ;;
aurel32f54b3f92008-04-12 20:14:54 +0000121 parisc|parisc64)
122 cpu="hppa"
123 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000124 ia64)
125 cpu="ia64"
126 ;;
127 m68k)
128 cpu="m68k"
bellard7d132992003-03-06 23:23:54 +0000129 ;;
130 mips)
131 cpu="mips"
132 ;;
thsfbe4f652007-04-01 11:16:48 +0000133 mips64)
134 cpu="mips64"
135 ;;
malcfdf7ed92009-01-14 18:39:52 +0000136 ppc)
137 cpu="ppc"
138 ;;
139 ppc64)
140 cpu="ppc64"
thse7daa602007-10-08 13:38:27 +0000141 ;;
ths0e7b8a92007-08-01 00:09:31 +0000142 s390*)
bellardfb3e5842003-03-29 17:32:36 +0000143 cpu="s390"
144 ;;
blueswir131422552007-04-16 18:27:06 +0000145 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000146 cpu="sparc"
147 ;;
148 sparc64)
149 cpu="sparc64"
150 ;;
bellard7d132992003-03-06 23:23:54 +0000151 *)
152 cpu="unknown"
153 ;;
154esac
155gprof="no"
aliguori03b4fe72008-10-07 19:16:17 +0000156sparse="no"
bellard7d132992003-03-06 23:23:54 +0000157bigendian="no"
bellard67b915a2004-03-31 23:37:16 +0000158mingw32="no"
159EXESUF=""
160gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +0000161slirp="yes"
aliguorie0e6c8c02008-07-23 18:14:33 +0000162vde="yes"
bellard102a52e2004-11-14 19:57:29 +0000163fmod_lib=""
164fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +0000165oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +0000166vnc_tls="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000167bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000168linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000169solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000170kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000171profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000172cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000173check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000174softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000175linux_user="no"
176darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000177bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000178build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000179uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000180curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000181aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000182nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000183mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000184bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000185kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000186kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000187aix="no"
ths77755342008-11-27 15:45:16 +0000188blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000189fdt="yes"
aliguori5368a422009-03-03 17:37:21 +0000190sdl_x11="no"
bellard7d132992003-03-06 23:23:54 +0000191
192# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000193if check_define __linux__ ; then
194 targetos="Linux"
195elif check_define _WIN32 ; then
196 targetos='MINGW32'
197else
198 targetos=`uname -s`
199fi
bellard7d132992003-03-06 23:23:54 +0000200case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000201CYGWIN*)
202mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000203OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000204if [ "$cpu" = "i386" ] ; then
205 kqemu="yes"
206fi
malcc2de5c92008-06-28 19:13:06 +0000207audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000208;;
bellard67b915a2004-03-31 23:37:16 +0000209MINGW32*)
210mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000211if [ "$cpu" = "i386" ] ; then
212 kqemu="yes"
213fi
malcc2de5c92008-06-28 19:13:06 +0000214audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000215;;
ths5c40d2b2007-06-23 16:03:36 +0000216GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000217audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000218audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000219if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
220 kqemu="yes"
221fi
222;;
bellard7d3505c2004-05-12 19:32:15 +0000223FreeBSD)
224bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000225audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000226audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000227if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000228 kqemu="yes"
229fi
bellard7d3505c2004-05-12 19:32:15 +0000230;;
231NetBSD)
232bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000233audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000234audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000235oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000236;;
237OpenBSD)
238bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000239openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000240audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000241audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000242oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000243;;
bellard83fb7ad2004-07-05 21:25:26 +0000244Darwin)
245bsd="yes"
246darwin="yes"
aliguori1b0f9cc2009-01-26 15:37:40 +0000247# on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
malcaab85882009-02-23 14:11:10 +0000248if [ "$cpu" = "i386" ] ; then
249 is_x86_64=`sysctl -n hw.optional.x86_64`
250 [ "$is_x86_64" = "1" ] && cpu=x86_64
aliguori1b0f9cc2009-01-26 15:37:40 +0000251fi
252if [ "$cpu" = "x86_64" ] ; then
253 OS_CFLAGS="-arch x86_64"
254 LDFLAGS="-arch x86_64"
255else
256 OS_CFLAGS="-mdynamic-no-pic"
257fi
ths831b7822007-01-18 20:06:33 +0000258darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000259cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000260audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000261audio_possible_drivers="coreaudio sdl fmod"
thsc2c59c32008-01-08 00:00:20 +0000262OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000263;;
bellardec530c82006-04-25 22:36:06 +0000264SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000265 solaris="yes"
266 make="gmake"
267 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000268 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000269 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000270 # have to select again, because `uname -m` returns i86pc
271 # even on an x86_64 box.
272 solariscpu=`isainfo -k`
273 if test "${solariscpu}" = "amd64" ; then
274 cpu="x86_64"
275 fi
thsc2b84fa2007-02-10 23:21:21 +0000276 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000277 if test "$solarisrev" -le 9 ; then
278 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
279 needs_libsunmath="yes"
280 else
281 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
282 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
283 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
284 echo "Studio 11 can be downloaded from www.sun.com."
285 exit 1
286 fi
287 fi
288 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000289 kqemu="yes"
290 fi
ths86b2bd92007-02-11 00:31:33 +0000291 fi
ths6b4d2ba2007-05-13 18:02:43 +0000292 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000293 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000294 fi
malcc2de5c92008-06-28 19:13:06 +0000295 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000296;;
malcb29fe3e2008-11-18 01:42:22 +0000297AIX)
298aix="yes"
299make="gmake"
300;;
bellard1d14ffa2005-10-30 18:58:22 +0000301*)
malc0c58ac12008-06-25 21:04:05 +0000302audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000303audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000304linux="yes"
ths831b7822007-01-18 20:06:33 +0000305linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000306usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000307if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000308 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000309 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000310fi
bellardfb065182004-11-09 23:09:44 +0000311;;
bellard7d132992003-03-06 23:23:54 +0000312esac
313
bellard7d3505c2004-05-12 19:32:15 +0000314if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000315 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000316 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000317 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000318 fi
blueswir184778502008-10-26 20:33:16 +0000319 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000320fi
321
bellard7d132992003-03-06 23:23:54 +0000322# find source path
pbrookad064842006-04-16 12:41:07 +0000323source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000324source_path_used="no"
325workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000326if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000327 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000328else
329 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000330fi
pbrook724db112008-02-03 19:20:13 +0000331[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000332
bellard85aa5182007-11-11 20:17:03 +0000333werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000334# generate compile errors on warnings for development builds
335#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
336#werror="yes";
337#fi
bellard85aa5182007-11-11 20:17:03 +0000338
bellard7d132992003-03-06 23:23:54 +0000339for opt do
pbrooka46e4032006-04-29 23:05:22 +0000340 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000341 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000342 --help|-h) show_help=yes
343 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000344 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000345 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000346 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000347 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000348 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000349 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000350 ;;
aliguoriac0df512008-12-29 17:14:15 +0000351 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000352 ;;
aliguoriac0df512008-12-29 17:14:15 +0000353 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000354 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000355 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000356 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000357 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000358 ;;
pbrook6a882642006-04-17 13:57:12 +0000359 --install=*) install="$optarg"
360 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000361 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000362 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000363 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000364 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000365 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000366 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000367 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000368 ;;
bellard7d132992003-03-06 23:23:54 +0000369 --enable-gprof) gprof="yes"
370 ;;
bellard43ce4df2003-06-09 19:53:12 +0000371 --static) static="yes"
372 ;;
bellard97a847b2003-08-10 21:36:04 +0000373 --disable-sdl) sdl="no"
374 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000375 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000376 ;;
malcc2de5c92008-06-28 19:13:06 +0000377 --fmod-inc=*) fmod_inc="$optarg"
378 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000379 --oss-lib=*) oss_lib="$optarg"
380 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000381 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000382 ;;
383 --audio-drv-list=*) audio_drv_list="$optarg"
384 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000385 --enable-sparse) sparse="yes"
386 ;;
387 --disable-sparse) sparse="no"
388 ;;
ths8d5d2d42007-08-25 01:37:51 +0000389 --disable-vnc-tls) vnc_tls="no"
390 ;;
bellard443f1372004-06-04 11:13:20 +0000391 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000392 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000393 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000394 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000395 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000396 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000397 --disable-brlapi) brlapi="no"
398 ;;
balrogfb599c92008-09-28 23:49:55 +0000399 --disable-bluez) bluez="no"
400 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000401 --disable-kvm) kvm="no"
402 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000403 --enable-profiler) profiler="yes"
404 ;;
malcc2de5c92008-06-28 19:13:06 +0000405 --enable-cocoa)
406 cocoa="yes" ;
407 sdl="no" ;
408 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000409 ;;
bellard97ccc682005-07-02 13:32:17 +0000410 --disable-gfx-check) check_gfx="no"
411 ;;
pbrookcad25d62006-03-19 16:31:11 +0000412 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000413 ;;
pbrookcad25d62006-03-19 16:31:11 +0000414 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000415 ;;
ths831b7822007-01-18 20:06:33 +0000416 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000417 ;;
ths831b7822007-01-18 20:06:33 +0000418 --enable-linux-user) linux_user="yes"
419 ;;
420 --disable-darwin-user) darwin_user="no"
421 ;;
422 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000423 ;;
blueswir184778502008-10-26 20:33:16 +0000424 --disable-bsd-user) bsd_user="no"
425 ;;
426 --enable-bsd-user) bsd_user="yes"
427 ;;
pbrookc5937222006-05-14 11:30:38 +0000428 --enable-uname-release=*) uname_release="$optarg"
429 ;;
blueswir131422552007-04-16 18:27:06 +0000430 --sparc_cpu=*)
431 sparc_cpu="$optarg"
432 case $sparc_cpu in
433 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
434 target_cpu="sparc"; cpu="sparc" ;;
435 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
436 target_cpu="sparc"; cpu="sparc" ;;
437 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
438 target_cpu="sparc64"; cpu="sparc64" ;;
439 *) echo "undefined SPARC architecture. Exiting";exit 1;;
440 esac
441 ;;
bellard85aa5182007-11-11 20:17:03 +0000442 --enable-werror) werror="yes"
443 ;;
444 --disable-werror) werror="no"
445 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000446 --disable-curses) curses="no"
447 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000448 --disable-nptl) nptl="no"
449 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000450 --enable-mixemu) mixemu="yes"
451 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000452 --disable-aio) aio="no"
453 ;;
ths77755342008-11-27 15:45:16 +0000454 --disable-blobs) blobs="no"
455 ;;
aliguorieac30262008-11-05 16:28:56 +0000456 --kerneldir=*) kerneldir="$optarg"
457 ;;
balrog7f1559c2007-11-17 10:24:32 +0000458 *) echo "ERROR: unknown option $opt"; show_help="yes"
459 ;;
bellard7d132992003-03-06 23:23:54 +0000460 esac
461done
462
ths6f30fa82007-01-05 01:00:47 +0000463# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000464CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000465CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000466LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000467if test "$werror" = "yes" ; then
468CFLAGS="$CFLAGS -Werror"
469fi
ths6f30fa82007-01-05 01:00:47 +0000470
blueswir1d2c7c9b2008-11-01 14:50:20 +0000471if test "$solaris" = "no" ; then
472 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
473 LDFLAGS="$LDFLAGS -Wl,--warn-common"
474 fi
blueswir149237ac2008-09-17 19:05:19 +0000475fi
476
blueswir131422552007-04-16 18:27:06 +0000477#
478# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
479# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
480#
bellard40293e52008-01-31 11:32:10 +0000481case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000482 sparc) if test -z "$sparc_cpu" ; then
483 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
484 ARCH_LDFLAGS="-m32"
485 else
486 ARCH_CFLAGS="${SP_CFLAGS}"
487 ARCH_LDFLAGS="${SP_LDFLAGS}"
488 fi
489 ;;
490 sparc64) if test -z "$sparc_cpu" ; then
491 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
492 ARCH_LDFLAGS="-m64"
493 else
494 ARCH_CFLAGS="${SP_CFLAGS}"
495 ARCH_LDFLAGS="${SP_LDFLAGS}"
496 fi
497 ;;
ths76d83bd2007-11-18 21:22:10 +0000498 s390)
499 ARCH_CFLAGS="-march=z900"
500 ;;
bellard40293e52008-01-31 11:32:10 +0000501 i386)
502 ARCH_CFLAGS="-m32"
503 ARCH_LDFLAGS="-m32"
504 ;;
505 x86_64)
506 ARCH_CFLAGS="-m64"
507 ARCH_LDFLAGS="-m64"
508 ;;
blueswir131422552007-04-16 18:27:06 +0000509esac
510
pbrookaf5db582006-04-08 14:26:41 +0000511if test x"$show_help" = x"yes" ; then
512cat << EOF
513
514Usage: configure [options]
515Options: [defaults in brackets after descriptions]
516
517EOF
518echo "Standard options:"
519echo " --help print this message"
520echo " --prefix=PREFIX install in PREFIX [$prefix]"
521echo " --interp-prefix=PREFIX where to find shared libraries, etc."
522echo " use %M for cpu name [$interp_prefix]"
523echo " --target-list=LIST set target list [$target_list]"
524echo ""
525echo "kqemu kernel acceleration support:"
526echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000527echo ""
528echo "Advanced options (experts only):"
529echo " --source-path=PATH path of source code [$source_path]"
530echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
531echo " --cc=CC use C compiler CC [$cc]"
532echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
533echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000534echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000535echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000536echo " --enable-sparse enable sparse checker"
537echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000538echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000539echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000540echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000541echo " --audio-drv-list=LIST set audio drivers list:"
542echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000543echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
544echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000545echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000546echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000547echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000548echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000549echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000550echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000551echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000552echo " --enable-system enable all system emulation targets"
553echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000554echo " --enable-linux-user enable all linux usermode emulation targets"
555echo " --disable-linux-user disable all linux usermode emulation targets"
556echo " --enable-darwin-user enable all darwin usermode emulation targets"
557echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000558echo " --enable-bsd-user enable all BSD usermode emulation targets"
559echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000560echo " --fmod-lib path to FMOD library"
561echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000562echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000563echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000564echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000565echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000566echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000567echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000568echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000569echo ""
ths5bf08932006-12-23 00:33:26 +0000570echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000571exit 1
572fi
573
bellard67b915a2004-03-31 23:37:16 +0000574if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000575 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000576 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000577 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000578 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000579 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000580fi
581
aliguori03b4fe72008-10-07 19:16:17 +0000582if test ! -x "$(which cgcc 2>/dev/null)"; then
583 sparse="no"
584fi
585
bellardec530c82006-04-25 22:36:06 +0000586#
587# Solaris specific configure tool chain decisions
588#
589if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000590 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
591 if test -z "$solinst" ; then
592 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
593 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
594 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
595 exit 1
596 fi
597 if test "$solinst" = "/usr/sbin/install" ; then
598 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
599 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
600 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
601 exit 1
602 fi
bellardec530c82006-04-25 22:36:06 +0000603 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
604 if test -z "$sol_ar" ; then
605 echo "Error: No path includes ar"
606 if test -f /usr/ccs/bin/ar ; then
607 echo "Add /usr/ccs/bin to your path and rerun configure"
608 fi
609 exit 1
610 fi
ths5fafdf22007-09-16 21:08:06 +0000611fi
bellardec530c82006-04-25 22:36:06 +0000612
613
bellard5327cf42005-01-10 23:18:50 +0000614if test -z "$target_list" ; then
615# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000616 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000617 target_list="\
618i386-softmmu \
619x86_64-softmmu \
620arm-softmmu \
621cris-softmmu \
622m68k-softmmu \
623mips-softmmu \
624mipsel-softmmu \
625mips64-softmmu \
626mips64el-softmmu \
627ppc-softmmu \
628ppcemb-softmmu \
629ppc64-softmmu \
630sh4-softmmu \
631sh4eb-softmmu \
632sparc-softmmu \
633"
pbrook0a8e90f2006-03-19 14:54:16 +0000634 fi
bellard5327cf42005-01-10 23:18:50 +0000635# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000636 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000637 target_list="${target_list}\
638i386-linux-user \
639x86_64-linux-user \
640alpha-linux-user \
641arm-linux-user \
642armeb-linux-user \
643cris-linux-user \
644m68k-linux-user \
645mips-linux-user \
646mipsel-linux-user \
647ppc-linux-user \
648ppc64-linux-user \
649ppc64abi32-linux-user \
650sh4-linux-user \
651sh4eb-linux-user \
652sparc-linux-user \
653sparc64-linux-user \
654sparc32plus-linux-user \
655"
ths831b7822007-01-18 20:06:33 +0000656 fi
657# the following are Darwin specific
658 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000659 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000660 fi
blueswir184778502008-10-26 20:33:16 +0000661# the following are BSD specific
662 if [ "$bsd_user" = "yes" ] ; then
663 target_list="${target_list}\
664sparc64-bsd-user \
665"
666 fi
bellard6e20a452005-06-05 15:56:02 +0000667else
pbrookb1a550a2006-04-16 13:28:56 +0000668 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000669fi
pbrook0a8e90f2006-03-19 14:54:16 +0000670if test -z "$target_list" ; then
671 echo "No targets enabled"
672 exit 1
673fi
bellard5327cf42005-01-10 23:18:50 +0000674
bellard7d132992003-03-06 23:23:54 +0000675if test -z "$cross_prefix" ; then
676
677# ---
678# big/little endian test
679cat > $TMPC << EOF
680#include <inttypes.h>
681int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000682 volatile uint32_t i=0x01234567;
683 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000684}
685EOF
686
aurel32178baee2008-12-08 18:11:57 +0000687if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000688$TMPE && bigendian="yes"
689else
690echo big/little test failed
691fi
692
693else
694
695# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000696if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000697 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000698 -o "$cpu" = "m68k" \
699 -o "$cpu" = "mips" \
700 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000701 -o "$cpu" = "ppc" \
702 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000703 -o "$cpu" = "s390" \
704 -o "$cpu" = "sparc" \
705 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000706 bigendian="yes"
707fi
708
709fi
710
bellardb6853692005-06-05 17:10:39 +0000711# host long bits test
712hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000713if test "$cpu" = "x86_64" \
714 -o "$cpu" = "alpha" \
715 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000716 -o "$cpu" = "sparc64" \
717 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000718 hostlongbits="64"
719fi
720
bellarde8cd23d2003-06-25 16:08:13 +0000721# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000722cat > $TMPC <<EOF
723int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000724}
725EOF
726
pbrookbd0c5662008-05-29 14:34:11 +0000727# Check host NPTL support
728cat > $TMPC <<EOF
729#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000730#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000731void foo()
732{
733#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
734#error bork
735#endif
736}
737EOF
738
balrog8c7f7572008-12-15 03:15:36 +0000739if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000740 :
741else
742 nptl="no"
743fi
744
bellard11d9f692004-04-02 20:55:59 +0000745##########################################
balrogac629222008-10-11 09:56:04 +0000746# zlib check
747
748cat > $TMPC << EOF
749#include <zlib.h>
750int main(void) { zlibVersion(); return 0; }
751EOF
balrog8c7f7572008-12-15 03:15:36 +0000752if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000753 :
754else
755 echo
756 echo "Error: zlib check failed"
757 echo "Make sure to have the zlib libs and headers installed."
758 echo
759 exit 1
760fi
761
762##########################################
bellard11d9f692004-04-02 20:55:59 +0000763# SDL probe
764
765sdl_too_old=no
766
767if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000768 sdl_config="sdl-config"
769 sdl=no
770 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000771
772cat > $TMPC << EOF
773#include <SDL.h>
774#undef main /* We don't want SDL to override our main() */
775int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
776EOF
balrog8c7f7572008-12-15 03:15:36 +0000777 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000778 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
779 if test "$_sdlversion" -lt 121 ; then
780 sdl_too_old=yes
781 else
782 if test "$cocoa" = "no" ; then
783 sdl=yes
784 fi
785 fi
786
787 # static link with sdl ?
788 if test "$sdl" = "yes" ; then
789 aa="no"
790 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
791 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
792 if [ "$aa" = "yes" ] ; then
793 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000794 fi
bellard11d9f692004-04-02 20:55:59 +0000795
balrog8c7f7572008-12-15 03:15:36 +0000796 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
aliguoricd01b4a2008-08-21 19:25:45 +0000797 sdl_static=yes
798 fi
799 fi # static link
800 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000801else
ths069b0bd2007-07-12 00:27:15 +0000802 # Make sure to disable cocoa if sdl was set
803 if test "$sdl" = "yes" ; then
804 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000805 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000806 fi
bellarda6e022a2004-04-02 21:55:47 +0000807fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000808
aliguori5368a422009-03-03 17:37:21 +0000809if test "$sdl" = "yes" ; then
810cat > $TMPC <<EOF
811#include <SDL.h>
812#if defined(SDL_VIDEO_DRIVER_X11)
813#include <X11/XKBlib.h>
814#else
815#error No x11 support
816#endif
817int main(void) { return 0; }
818EOF
819 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then
820 sdl_x11="yes"
821 fi
822fi
823
ths8f28f3f2007-01-05 21:25:54 +0000824##########################################
ths8d5d2d42007-08-25 01:37:51 +0000825# VNC TLS detection
826if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000827cat > $TMPC <<EOF
828#include <gnutls/gnutls.h>
829int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
830EOF
831 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
832 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
833 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000834 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000835 :
836 else
837 vnc_tls="no"
838 fi
ths8d5d2d42007-08-25 01:37:51 +0000839fi
840
841##########################################
ths8a16d272008-07-19 09:56:24 +0000842# vde libraries probe
843if test "$vde" = "yes" ; then
844 cat > $TMPC << EOF
845#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000846int main(void)
847{
848 struct vde_open_args a = {0, 0, 0};
849 vde_open("", "", &a);
850 return 0;
851}
ths8a16d272008-07-19 09:56:24 +0000852EOF
balrog8c7f7572008-12-15 03:15:36 +0000853 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000854 :
855 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000856 vde="no"
ths8a16d272008-07-19 09:56:24 +0000857 fi
858fi
859
860##########################################
malcc2de5c92008-06-28 19:13:06 +0000861# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000862
malcc2de5c92008-06-28 19:13:06 +0000863audio_drv_probe()
864{
865 drv=$1
866 hdr=$2
867 lib=$3
868 exp=$4
869 cfl=$5
870 cat > $TMPC << EOF
871#include <$hdr>
872int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000873EOF
balrog8c7f7572008-12-15 03:15:36 +0000874 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000875 :
876 else
877 echo
878 echo "Error: $drv check failed"
879 echo "Make sure to have the $drv libs and headers installed."
880 echo
881 exit 1
882 fi
883}
884
malc2fa7d3b2008-07-29 12:58:44 +0000885audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000886for drv in $audio_drv_list; do
887 case $drv in
888 alsa)
889 audio_drv_probe $drv alsa/asoundlib.h -lasound \
890 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
891 ;;
892
893 fmod)
894 if test -z $fmod_lib || test -z $fmod_inc; then
895 echo
896 echo "Error: You must specify path to FMOD library and headers"
897 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
898 echo
899 exit 1
900 fi
901 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
902 ;;
903
904 esd)
905 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
906 ;;
malcb8e59f12008-07-02 21:03:08 +0000907
908 pa)
909 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
910 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
911 ;;
912
blueswir12f6a1ab2008-08-21 18:00:53 +0000913 oss|sdl|core|wav|dsound)
914 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
915 ;;
916
malce4c63a62008-07-19 16:15:16 +0000917 *)
malc1c9b2a52008-07-19 16:57:30 +0000918 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000919 echo
920 echo "Error: Unknown driver '$drv' selected"
921 echo "Possible drivers are: $audio_possible_drivers"
922 echo
923 exit 1
924 }
925 ;;
malcc2de5c92008-06-28 19:13:06 +0000926 esac
927done
ths8f28f3f2007-01-05 21:25:54 +0000928
balrog4d3b6f62008-02-10 16:33:14 +0000929##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000930# BrlAPI probe
931
932if test -z "$brlapi" ; then
933 brlapi=no
934cat > $TMPC << EOF
935#include <brlapi.h>
936int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
937EOF
aurel32178baee2008-12-08 18:11:57 +0000938 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000939 brlapi=yes
940 fi # brlapi compile test
941fi # -z $brlapi
942
943##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000944# curses probe
945
946if test "$curses" = "yes" ; then
947 curses=no
948 cat > $TMPC << EOF
949#include <curses.h>
950int main(void) { return curses_version(); }
951EOF
aurel32178baee2008-12-08 18:11:57 +0000952 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000953 curses=yes
954 fi
955fi # test "$curses"
956
blueswir1414f0da2008-08-15 18:20:52 +0000957##########################################
balrogfb599c92008-09-28 23:49:55 +0000958# bluez support probe
959if test "$bluez" = "yes" ; then
960 `pkg-config bluez` || bluez="no"
961fi
962if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000963 cat > $TMPC << EOF
964#include <bluetooth/bluetooth.h>
965int main(void) { return bt_error(0); }
966EOF
balrogfb599c92008-09-28 23:49:55 +0000967 bluez_cflags=`pkg-config --cflags bluez`
968 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000969 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000970 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +0000971 :
972 else
973 bluez="no"
974 fi
balrogfb599c92008-09-28 23:49:55 +0000975fi
976
977##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000978# kvm probe
979if test "$kvm" = "yes" ; then
980 cat > $TMPC <<EOF
981#include <linux/kvm.h>
aliguori9fd8d8d2009-01-15 21:57:30 +0000982#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
aliguori7ba1e612008-11-05 16:04:33 +0000983#error Invalid KVM version
984#endif
aliguori9fd8d8d2009-01-15 21:57:30 +0000985#if !defined(KVM_CAP_USER_MEMORY)
986#error Missing KVM capability KVM_CAP_USER_MEMORY
987#endif
988#if !defined(KVM_CAP_SET_TSS_ADDR)
989#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
990#endif
991#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
992#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
993#endif
aliguori7ba1e612008-11-05 16:04:33 +0000994int main(void) { return 0; }
995EOF
aliguorieac30262008-11-05 16:28:56 +0000996 if test "$kerneldir" != "" ; then
997 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +0000998 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
999 -a -d "$kerneldir/arch/x86/include" ; then
1000 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +00001001 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1002 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +00001003 elif test -d "$kerneldir/arch/$cpu/include" ; then
1004 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1005 fi
aliguorieac30262008-11-05 16:28:56 +00001006 else
1007 kvm_cflags=""
1008 fi
aliguori7ba1e612008-11-05 16:04:33 +00001009 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001010 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +00001011 :
1012 else
aliguori9fd8d8d2009-01-15 21:57:30 +00001013 kvm="no";
1014 if [ -x "`which awk 2>/dev/null`" ] && \
1015 [ -x "`which grep 2>/dev/null`" ]; then
1016 kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1017 | grep "error: " \
1018 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1019 if test "$kvmerr" != "" ; then
1020 kvm="no - (${kvmerr})"
1021 fi
1022 fi
aliguori7ba1e612008-11-05 16:04:33 +00001023 fi
1024fi
1025
1026##########################################
blueswir1414f0da2008-08-15 18:20:52 +00001027# AIO probe
aliguori3c529d92008-12-12 16:41:40 +00001028AIOLIBS=""
1029
blueswir1414f0da2008-08-15 18:20:52 +00001030if test "$aio" = "yes" ; then
1031 aio=no
1032 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +00001033#include <pthread.h>
blueswir1c9db92f2009-01-17 06:49:15 +00001034int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +00001035EOF
1036 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1037 aio=yes
aliguori3c529d92008-12-12 16:41:40 +00001038 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +00001039 fi
1040fi
1041
aliguoribf9298b2008-12-05 20:05:26 +00001042##########################################
1043# iovec probe
1044cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001045#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001046#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001047#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001048int main(void) { struct iovec iov; return 0; }
1049EOF
1050iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001051if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001052 iovec=yes
1053fi
1054
aurel32f652e6a2008-12-16 10:43:48 +00001055##########################################
1056# fdt probe
1057if test "$fdt" = "yes" ; then
1058 fdt=no
1059 cat > $TMPC << EOF
1060int main(void) { return 0; }
1061EOF
1062 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1063 fdt=yes
1064 fi
1065fi
1066
pbrookcc8ae6d2006-04-23 17:57:59 +00001067# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001068if [ -x "`which texi2html 2>/dev/null`" ] && \
1069 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001070 build_docs="yes"
1071fi
1072
aliguorida93a1f2008-12-12 20:02:52 +00001073##########################################
1074# Do we need librt
1075cat > $TMPC <<EOF
1076#include <signal.h>
1077#include <time.h>
1078int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1079EOF
1080
1081rt=no
balrog8c7f7572008-12-15 03:15:36 +00001082if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001083 :
balrog8c7f7572008-12-15 03:15:36 +00001084elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001085 rt=yes
1086fi
1087
1088if test "$rt" = "yes" ; then
1089 # Hack, we should have a general purpose LIBS for this sort of thing
1090 AIOLIBS="$AIOLIBS -lrt"
1091fi
1092
bellard11d9f692004-04-02 20:55:59 +00001093if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001094 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001095 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001096 fi
1097 mansuffix=""
1098 datasuffix=""
1099 docsuffix=""
1100 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001101else
pbrook308c3592007-02-27 00:52:01 +00001102 if test -z "$prefix" ; then
1103 prefix="/usr/local"
1104 fi
1105 mansuffix="/share/man"
1106 datasuffix="/share/qemu"
1107 docsuffix="/share/doc/qemu"
1108 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001109fi
bellard5a671352003-10-01 00:13:48 +00001110
bellard43ce4df2003-06-09 19:53:12 +00001111echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001112echo "BIOS directory $prefix$datasuffix"
1113echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001114if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001115echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001116echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001117fi
bellard5a671352003-10-01 00:13:48 +00001118echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001119echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001120echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001121echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001122echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001123echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001124echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001125echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001126echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001127echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001128echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001129echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001130echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001131echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001132if test "$darwin" = "yes" ; then
1133 echo "Cocoa support $cocoa"
1134fi
bellard97a847b2003-08-10 21:36:04 +00001135echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001136if test "$sdl" != "no" ; then
1137 echo "SDL static link $sdl_static"
1138fi
balrog4d3b6f62008-02-10 16:33:14 +00001139echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001140echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001141echo "Audio drivers $audio_drv_list"
1142echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001143echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001144echo "VNC TLS support $vnc_tls"
1145if test "$vnc_tls" = "yes" ; then
1146 echo " TLS CFLAGS $vnc_tls_cflags"
1147 echo " TLS LIBS $vnc_tls_libs"
1148fi
blueswir131422552007-04-16 18:27:06 +00001149if test -n "$sparc_cpu"; then
1150 echo "Target Sparc Arch $sparc_cpu"
1151fi
bellard07f4ddb2005-04-23 17:44:28 +00001152echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001153echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001154echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001155[ ! -z "$uname_release" ] && \
1156echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001157echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001158echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001159echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001160echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001161echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001162echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001163
bellard97a847b2003-08-10 21:36:04 +00001164if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001165echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001166fi
malcd4742de2008-11-29 22:04:31 +00001167if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001168 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001169 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001170fi
bellard24b55b92005-03-01 22:30:41 +00001171#if test "$sdl_static" = "no"; then
1172# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1173#fi
bellard97a847b2003-08-10 21:36:04 +00001174config_mak="config-host.mak"
1175config_h="config-host.h"
1176
bellard7c1f25b2004-04-22 00:02:08 +00001177#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001178
ths15d9ca02007-07-31 23:07:32 +00001179test -f $config_h && mv $config_h ${config_h}~
1180
bellard97a847b2003-08-10 21:36:04 +00001181echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001182printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001183printf " '%s'" "$0" "$@" >> $config_mak
1184echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001185echo "/* Automatically generated by configure - do not modify */" > $config_h
1186
1187echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001188echo "bindir=\${prefix}$binsuffix" >> $config_mak
1189echo "mandir=\${prefix}$mansuffix" >> $config_mak
1190echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001191echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001192echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001193echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001194echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001195echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001196echo "HOST_CC=$host_cc" >> $config_mak
1197echo "AR=$ar" >> $config_mak
1198echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001199# XXX: only use CFLAGS and LDFLAGS ?
1200# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1201# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001202echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001203echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1204echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1205echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001206echo "CFLAGS=$CFLAGS" >> $config_mak
1207echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001208echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001209echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001210case "$cpu" in
1211 i386)
1212 echo "ARCH=i386" >> $config_mak
1213 echo "#define HOST_I386 1" >> $config_h
1214 ;;
1215 x86_64)
1216 echo "ARCH=x86_64" >> $config_mak
1217 echo "#define HOST_X86_64 1" >> $config_h
1218 ;;
1219 alpha)
1220 echo "ARCH=alpha" >> $config_mak
1221 echo "#define HOST_ALPHA 1" >> $config_h
1222 ;;
1223 armv4b)
1224 echo "ARCH=arm" >> $config_mak
1225 echo "#define HOST_ARM 1" >> $config_h
1226 ;;
1227 armv4l)
1228 echo "ARCH=arm" >> $config_mak
1229 echo "#define HOST_ARM 1" >> $config_h
1230 ;;
1231 cris)
1232 echo "ARCH=cris" >> $config_mak
1233 echo "#define HOST_CRIS 1" >> $config_h
1234 ;;
1235 hppa)
1236 echo "ARCH=hppa" >> $config_mak
1237 echo "#define HOST_HPPA 1" >> $config_h
1238 ;;
1239 ia64)
1240 echo "ARCH=ia64" >> $config_mak
1241 echo "#define HOST_IA64 1" >> $config_h
1242 ;;
1243 m68k)
1244 echo "ARCH=m68k" >> $config_mak
1245 echo "#define HOST_M68K 1" >> $config_h
1246 ;;
1247 mips)
1248 echo "ARCH=mips" >> $config_mak
1249 echo "#define HOST_MIPS 1" >> $config_h
1250 ;;
1251 mips64)
1252 echo "ARCH=mips64" >> $config_mak
1253 echo "#define HOST_MIPS64 1" >> $config_h
1254 ;;
malcfdf7ed92009-01-14 18:39:52 +00001255 ppc)
1256 echo "ARCH=ppc" >> $config_mak
1257 echo "#define HOST_PPC 1" >> $config_h
1258 ;;
1259 ppc64)
1260 echo "ARCH=ppc64" >> $config_mak
1261 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001262 ;;
1263 s390)
1264 echo "ARCH=s390" >> $config_mak
1265 echo "#define HOST_S390 1" >> $config_h
1266 ;;
1267 sparc)
1268 echo "ARCH=sparc" >> $config_mak
1269 echo "#define HOST_SPARC 1" >> $config_h
1270 ;;
1271 sparc64)
1272 echo "ARCH=sparc64" >> $config_mak
1273 echo "#define HOST_SPARC64 1" >> $config_h
1274 ;;
1275 *)
1276 echo "Unsupported CPU = $cpu"
1277 exit 1
1278 ;;
1279esac
aliguori03b4fe72008-10-07 19:16:17 +00001280if test "$sparse" = "yes" ; then
1281 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1282 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1283 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1284fi
bellard7d132992003-03-06 23:23:54 +00001285if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001286 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1287 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1288fi
bellardb6853692005-06-05 17:10:39 +00001289echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001290if test "$mingw32" = "yes" ; then
1291 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001292 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001293else
1294 cat > $TMPC << EOF
1295#include <byteswap.h>
1296int main(void) { return bswap_32(0); }
1297EOF
aurel32178baee2008-12-08 18:11:57 +00001298 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001299 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1300 fi
blueswir113606772008-12-05 17:54:09 +00001301 cat > $TMPC << EOF
1302#include <sys/endian.h>
1303#include <sys/types.h>
1304#include <machine/bswap.h>
1305int main(void) { return bswap32(0); }
1306EOF
aurel32178baee2008-12-08 18:11:57 +00001307 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001308 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1309 fi
bellard67b915a2004-03-31 23:37:16 +00001310fi
blueswir1128ab2f2008-08-15 18:33:42 +00001311
1312if [ "$openbsd" = "yes" ] ; then
1313 echo "#define ENOTSUP 4096" >> $config_h
1314fi
1315
bellard83fb7ad2004-07-05 21:25:26 +00001316if test "$darwin" = "yes" ; then
1317 echo "CONFIG_DARWIN=yes" >> $config_mak
1318 echo "#define CONFIG_DARWIN 1" >> $config_h
1319fi
malcb29fe3e2008-11-18 01:42:22 +00001320
1321if test "$aix" = "yes" ; then
1322 echo "CONFIG_AIX=yes" >> $config_mak
1323 echo "#define CONFIG_AIX 1" >> $config_h
1324fi
1325
bellardec530c82006-04-25 22:36:06 +00001326if test "$solaris" = "yes" ; then
1327 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001328 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001329 if test "$needs_libsunmath" = "yes" ; then
1330 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1331 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1332 fi
bellardec530c82006-04-25 22:36:06 +00001333fi
blueswir131422552007-04-16 18:27:06 +00001334if test -n "$sparc_cpu"; then
1335 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1336 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1337fi
bellard67b915a2004-03-31 23:37:16 +00001338if test "$gdbstub" = "yes" ; then
1339 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1340 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1341fi
bellard97a847b2003-08-10 21:36:04 +00001342if test "$gprof" = "yes" ; then
1343 echo "TARGET_GPROF=yes" >> $config_mak
1344 echo "#define HAVE_GPROF 1" >> $config_h
1345fi
1346if test "$static" = "yes" ; then
1347 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001348 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001349fi
bellard05c2a3e2006-02-08 22:39:17 +00001350if test $profiler = "yes" ; then
1351 echo "#define CONFIG_PROFILER 1" >> $config_h
1352fi
bellardc20709a2004-04-21 23:27:19 +00001353if test "$slirp" = "yes" ; then
1354 echo "CONFIG_SLIRP=yes" >> $config_mak
1355 echo "#define CONFIG_SLIRP 1" >> $config_h
1356fi
ths8a16d272008-07-19 09:56:24 +00001357if test "$vde" = "yes" ; then
1358 echo "CONFIG_VDE=yes" >> $config_mak
1359 echo "#define CONFIG_VDE 1" >> $config_h
1360 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1361fi
malc0c58ac12008-06-25 21:04:05 +00001362for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001363 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001364 echo "$def=yes" >> $config_mak
1365 echo "#define $def 1" >> $config_h
1366done
1367echo "#define AUDIO_DRIVERS \\" >> $config_h
1368for drv in $audio_drv_list; do
1369 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001370 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001371 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001372 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001373 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1374 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001375 elif test "$drv" = "oss"; then
1376 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001377 fi
1378done
1379echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001380if test "$mixemu" = "yes" ; then
1381 echo "CONFIG_MIXEMU=yes" >> $config_mak
1382 echo "#define CONFIG_MIXEMU 1" >> $config_h
1383fi
ths8d5d2d42007-08-25 01:37:51 +00001384if test "$vnc_tls" = "yes" ; then
1385 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1386 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1387 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1388 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1389fi
pbrookb1a550a2006-04-16 13:28:56 +00001390qemu_version=`head $source_path/VERSION`
1391echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001392echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001393
1394echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001395if [ "$source_path_used" = "yes" ]; then
1396 echo "VPATH=$source_path" >> $config_mak
1397fi
bellard97a847b2003-08-10 21:36:04 +00001398echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001399if [ "$build_docs" = "yes" ] ; then
1400 echo "BUILD_DOCS=yes" >> $config_mak
1401fi
bellard49ecc3f2007-11-07 19:25:15 +00001402if test "$static" = "yes"; then
1403 sdl1=$sdl_static
1404else
1405 sdl1=$sdl
1406fi
1407if test "$sdl1" = "yes" ; then
1408 echo "#define CONFIG_SDL 1" >> $config_h
1409 echo "CONFIG_SDL=yes" >> $config_mak
1410 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1411 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
aliguori5368a422009-03-03 17:37:21 +00001412 elif test "$sdl_x11" = "yes" ; then
1413 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001414 else
1415 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1416 fi
1417 if [ "${aa}" = "yes" ] ; then
1418 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1419 else
1420 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1421 fi
1422fi
1423if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001424 echo "#define CONFIG_COCOA 1" >> $config_h
1425 echo "CONFIG_COCOA=yes" >> $config_mak
1426fi
1427if test "$curses" = "yes" ; then
1428 echo "#define CONFIG_CURSES 1" >> $config_h
1429 echo "CONFIG_CURSES=yes" >> $config_mak
1430 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001431fi
aurel322e4d9fb2008-04-08 06:01:02 +00001432if test "$brlapi" = "yes" ; then
1433 echo "CONFIG_BRLAPI=yes" >> $config_mak
1434 echo "#define CONFIG_BRLAPI 1" >> $config_h
1435 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1436fi
balrogfb599c92008-09-28 23:49:55 +00001437if test "$bluez" = "yes" ; then
1438 echo "CONFIG_BLUEZ=yes" >> $config_mak
1439 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1440 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1441 echo "#define CONFIG_BLUEZ 1" >> $config_h
1442fi
blueswir1414f0da2008-08-15 18:20:52 +00001443if test "$aio" = "yes" ; then
1444 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001445 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001446fi
ths77755342008-11-27 15:45:16 +00001447if test "$blobs" = "yes" ; then
1448 echo "INSTALL_BLOBS=yes" >> $config_mak
1449fi
aliguoribf9298b2008-12-05 20:05:26 +00001450if test "$iovec" = "yes" ; then
1451 echo "#define HAVE_IOVEC 1" >> $config_h
1452fi
aurel32f652e6a2008-12-16 10:43:48 +00001453if test "$fdt" = "yes" ; then
1454 echo "#define HAVE_FDT 1" >> $config_h
1455 echo "FDT_LIBS=-lfdt" >> $config_mak
1456fi
bellard97a847b2003-08-10 21:36:04 +00001457
bellard83fb7ad2004-07-05 21:25:26 +00001458# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001459if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001460 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001461 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001462 echo "#define _BSD 1" >> $config_h
1463fi
1464
pbrookc5937222006-05-14 11:30:38 +00001465echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1466
blueswir168063642008-11-22 21:03:55 +00001467# USB host support
1468case "$usb" in
1469linux)
1470 echo "HOST_USB=linux" >> $config_mak
1471;;
1472bsd)
1473 echo "HOST_USB=bsd" >> $config_mak
1474;;
1475*)
1476 echo "HOST_USB=stub" >> $config_mak
1477;;
1478esac
1479
pbrookc39e3332007-09-22 16:49:14 +00001480tools=
1481if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1482 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001483 if [ "$linux" = "yes" ] ; then
1484 tools="qemu-nbd\$(EXESUF) $tools"
1485 fi
pbrookc39e3332007-09-22 16:49:14 +00001486fi
1487echo "TOOLS=$tools" >> $config_mak
1488
ths15d9ca02007-07-31 23:07:32 +00001489test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1490
bellard1d14ffa2005-10-30 18:58:22 +00001491for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001492target_dir="$target"
1493config_mak=$target_dir/config.mak
1494config_h=$target_dir/config.h
1495target_cpu=`echo $target | cut -d '-' -f 1`
1496target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001497[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001498[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1499[ "$target_cpu" = "mips" ] && target_bigendian=yes
1500[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1501[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001502[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001503[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001504[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001505[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001506[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001507[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1508[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1509[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001510target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001511target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001512target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001513target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001514target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001515case "$target" in
1516 ${target_cpu}-softmmu)
1517 target_softmmu="yes"
1518 ;;
1519 ${target_cpu}-linux-user)
1520 target_user_only="yes"
1521 target_linux_user="yes"
1522 ;;
1523 ${target_cpu}-darwin-user)
1524 target_user_only="yes"
1525 target_darwin_user="yes"
1526 ;;
blueswir184778502008-10-26 20:33:16 +00001527 ${target_cpu}-bsd-user)
1528 target_user_only="yes"
1529 target_bsd_user="yes"
1530 ;;
pbrook9e407a82007-05-26 16:38:53 +00001531 *)
1532 echo "ERROR: Target '$target' not recognised"
1533 exit 1
1534 ;;
1535esac
ths831b7822007-01-18 20:06:33 +00001536
bellard97ccc682005-07-02 13:32:17 +00001537if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001538 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001539 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001540 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001541 echo "Note that this will disable all output from the virtual graphics card"
1542 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001543 exit 1;
1544fi
1545
bellard7c1f25b2004-04-22 00:02:08 +00001546#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001547
ths15d9ca02007-07-31 23:07:32 +00001548test -f $config_h && mv $config_h ${config_h}~
1549
bellard97a847b2003-08-10 21:36:04 +00001550mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001551mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001552mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001553if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
bellard69de9272004-02-16 21:40:43 +00001554 mkdir -p $target_dir/nwfpe
1555fi
1556
bellardec530c82006-04-25 22:36:06 +00001557#
1558# don't use ln -sf as not all "ln -sf" over write the file/link
1559#
1560rm -f $target_dir/Makefile
1561ln -s $source_path/Makefile.target $target_dir/Makefile
1562
bellard97a847b2003-08-10 21:36:04 +00001563
1564echo "# Automatically generated by configure - do not modify" > $config_mak
1565echo "/* Automatically generated by configure - do not modify */" > $config_h
1566
1567
1568echo "include ../config-host.mak" >> $config_mak
1569echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001570
pbrooke5fe0c52006-06-11 13:32:59 +00001571bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001572elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001573target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001574interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1575echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001576gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001577
aliguori5985ece2008-11-05 19:59:25 +00001578# Make sure the target and host cpus are compatible
1579if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
malcfdf7ed92009-01-14 18:39:52 +00001580 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001581 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1582 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001583 kvm="no"
1584fi
1585# Disable KVM for linux-user
1586if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1587 kvm="no"
1588fi
1589
aurel322408a522008-04-20 20:19:44 +00001590case "$target_cpu" in
1591 i386)
1592 echo "TARGET_ARCH=i386" >> $config_mak
1593 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1594 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001595 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001596 then
1597 echo "#define USE_KQEMU 1" >> $config_h
1598 fi
aliguori7ba1e612008-11-05 16:04:33 +00001599 if test "$kvm" = "yes" ; then
1600 echo "CONFIG_KVM=yes" >> $config_mak
1601 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001602 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001603 fi
aurel322408a522008-04-20 20:19:44 +00001604 ;;
1605 x86_64)
1606 echo "TARGET_ARCH=x86_64" >> $config_mak
1607 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1608 echo "#define TARGET_I386 1" >> $config_h
1609 echo "#define TARGET_X86_64 1" >> $config_h
1610 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1611 then
1612 echo "#define USE_KQEMU 1" >> $config_h
1613 fi
aliguori7ba1e612008-11-05 16:04:33 +00001614 if test "$kvm" = "yes" ; then
1615 echo "CONFIG_KVM=yes" >> $config_mak
1616 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1617 echo "#define CONFIG_KVM 1" >> $config_h
1618 fi
aurel322408a522008-04-20 20:19:44 +00001619 ;;
1620 alpha)
1621 echo "TARGET_ARCH=alpha" >> $config_mak
1622 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1623 echo "#define TARGET_ALPHA 1" >> $config_h
1624 ;;
1625 arm|armeb)
1626 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001627 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1628 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001629 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001630 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001631 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001632 ;;
1633 cris)
1634 echo "TARGET_ARCH=cris" >> $config_mak
1635 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1636 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001637 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001638 ;;
1639 m68k)
1640 echo "TARGET_ARCH=m68k" >> $config_mak
1641 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1642 echo "#define TARGET_M68K 1" >> $config_h
1643 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001644 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001645 ;;
1646 mips|mipsel)
1647 echo "TARGET_ARCH=mips" >> $config_mak
1648 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1649 echo "#define TARGET_MIPS 1" >> $config_h
1650 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1651 ;;
1652 mipsn32|mipsn32el)
1653 echo "TARGET_ARCH=mipsn32" >> $config_mak
1654 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1655 echo "#define TARGET_MIPS 1" >> $config_h
1656 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1657 ;;
1658 mips64|mips64el)
1659 echo "TARGET_ARCH=mips64" >> $config_mak
1660 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1661 echo "#define TARGET_MIPS 1" >> $config_h
1662 echo "#define TARGET_MIPS64 1" >> $config_h
1663 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1664 ;;
1665 ppc)
1666 echo "TARGET_ARCH=ppc" >> $config_mak
1667 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1668 echo "#define TARGET_PPC 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001669 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001670 ;;
1671 ppcemb)
1672 echo "TARGET_ARCH=ppcemb" >> $config_mak
1673 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1674 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1675 echo "#define TARGET_PPC 1" >> $config_h
1676 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001677 if test "$kvm" = "yes" ; then
1678 echo "CONFIG_KVM=yes" >> $config_mak
1679 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1680 echo "#define CONFIG_KVM 1" >> $config_h
1681 fi
aurel32c8b35322009-01-24 15:07:34 +00001682 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001683 ;;
1684 ppc64)
1685 echo "TARGET_ARCH=ppc64" >> $config_mak
1686 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1687 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1688 echo "#define TARGET_PPC 1" >> $config_h
1689 echo "#define TARGET_PPC64 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001690 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001691 ;;
1692 ppc64abi32)
1693 echo "TARGET_ARCH=ppc64" >> $config_mak
1694 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1695 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1696 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1697 echo "#define TARGET_PPC 1" >> $config_h
1698 echo "#define TARGET_PPC64 1" >> $config_h
1699 echo "#define TARGET_ABI32 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001700 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001701 ;;
1702 sh4|sh4eb)
1703 echo "TARGET_ARCH=sh4" >> $config_mak
1704 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1705 echo "#define TARGET_SH4 1" >> $config_h
1706 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001707 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001708 ;;
1709 sparc)
1710 echo "TARGET_ARCH=sparc" >> $config_mak
1711 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1712 echo "#define TARGET_SPARC 1" >> $config_h
1713 ;;
1714 sparc64)
1715 echo "TARGET_ARCH=sparc64" >> $config_mak
1716 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1717 echo "#define TARGET_SPARC 1" >> $config_h
1718 echo "#define TARGET_SPARC64 1" >> $config_h
1719 elfload32="yes"
1720 ;;
1721 sparc32plus)
1722 echo "TARGET_ARCH=sparc64" >> $config_mak
1723 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1724 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1725 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1726 echo "#define TARGET_SPARC 1" >> $config_h
1727 echo "#define TARGET_SPARC64 1" >> $config_h
1728 echo "#define TARGET_ABI32 1" >> $config_h
1729 ;;
1730 *)
1731 echo "Unsupported target CPU"
1732 exit 1
1733 ;;
1734esac
bellardde83cd02003-06-15 20:25:43 +00001735if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001736 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1737 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1738fi
1739if test "$target_softmmu" = "yes" ; then
1740 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1741 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001742fi
bellard997344f2003-10-27 21:10:39 +00001743if test "$target_user_only" = "yes" ; then
1744 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1745 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1746fi
ths831b7822007-01-18 20:06:33 +00001747if test "$target_linux_user" = "yes" ; then
1748 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1749 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1750fi
1751if test "$target_darwin_user" = "yes" ; then
1752 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1753 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1754fi
pbrook56aebc82008-10-11 17:55:29 +00001755list=""
1756if test ! -z "$gdb_xml_files" ; then
1757 for x in $gdb_xml_files; do
1758 list="$list $source_path/gdb-xml/$x"
1759 done
1760fi
1761echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001762
aurel320938cda2008-04-11 21:36:06 +00001763if test "$target_cpu" = "arm" \
1764 -o "$target_cpu" = "armeb" \
1765 -o "$target_cpu" = "m68k" \
1766 -o "$target_cpu" = "mips" \
1767 -o "$target_cpu" = "mipsel" \
1768 -o "$target_cpu" = "mipsn32" \
1769 -o "$target_cpu" = "mipsn32el" \
1770 -o "$target_cpu" = "mips64" \
1771 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001772 -o "$target_cpu" = "ppc" \
1773 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001774 -o "$target_cpu" = "ppc64abi32" \
1775 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001776 -o "$target_cpu" = "sparc" \
1777 -o "$target_cpu" = "sparc64" \
1778 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001779 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1780 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1781fi
pbrooke5fe0c52006-06-11 13:32:59 +00001782if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1783 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1784 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1785fi
pbrookbd0c5662008-05-29 14:34:11 +00001786if test "$target_user_only" = "yes" \
1787 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1788 echo "#define USE_NPTL 1" >> $config_h
1789fi
blueswir1cb33da52007-10-09 16:34:29 +00001790# 32 bit ELF loader in addition to native 64 bit loader?
1791if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1792 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1793 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1794fi
blueswir184778502008-10-26 20:33:16 +00001795if test "$target_bsd_user" = "yes" ; then
1796 echo "CONFIG_BSD_USER=yes" >> $config_mak
1797 echo "#define CONFIG_BSD_USER 1" >> $config_h
1798fi
bellard5b0753e2005-03-01 21:37:28 +00001799
ths15d9ca02007-07-31 23:07:32 +00001800test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1801
bellard97a847b2003-08-10 21:36:04 +00001802done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001803
1804# build tree in object directory if source path is different from current one
1805if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001806 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001807 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001808 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001809 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001810 for dir in $DIRS ; do
1811 mkdir -p $dir
1812 done
bellardec530c82006-04-25 22:36:06 +00001813 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001814 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001815 rm -f $f
1816 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001817 done
1818fi