blob: 3823ee423e6fc52778b1a0339b9918c87be23bb9 [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"
aliguori2f9606b2009-03-06 20:27:28 +0000167vnc_sasl="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000168bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000169linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000170solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000171kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000172profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000173cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000174check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000175softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000176linux_user="no"
177darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000178bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000179build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000180uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000181curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000182aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000183nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000184mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000185bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000186kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000187kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000188aix="no"
ths77755342008-11-27 15:45:16 +0000189blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000190fdt="yes"
aliguori5368a422009-03-03 17:37:21 +0000191sdl_x11="no"
bellard7d132992003-03-06 23:23:54 +0000192
193# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000194if check_define __linux__ ; then
195 targetos="Linux"
196elif check_define _WIN32 ; then
197 targetos='MINGW32'
198else
199 targetos=`uname -s`
200fi
bellard7d132992003-03-06 23:23:54 +0000201case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000202CYGWIN*)
203mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000204OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000205if [ "$cpu" = "i386" ] ; then
206 kqemu="yes"
207fi
malcc2de5c92008-06-28 19:13:06 +0000208audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000209;;
bellard67b915a2004-03-31 23:37:16 +0000210MINGW32*)
211mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000212if [ "$cpu" = "i386" ] ; then
213 kqemu="yes"
214fi
malcc2de5c92008-06-28 19:13:06 +0000215audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000216;;
ths5c40d2b2007-06-23 16:03:36 +0000217GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000218audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000219audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000220if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
221 kqemu="yes"
222fi
223;;
bellard7d3505c2004-05-12 19:32:15 +0000224FreeBSD)
225bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000226audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000227audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000228if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000229 kqemu="yes"
230fi
bellard7d3505c2004-05-12 19:32:15 +0000231;;
232NetBSD)
233bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000234audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000235audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000236oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000237;;
238OpenBSD)
239bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000240openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000241audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000242audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000243oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000244;;
bellard83fb7ad2004-07-05 21:25:26 +0000245Darwin)
246bsd="yes"
247darwin="yes"
aliguori1b0f9cc2009-01-26 15:37:40 +0000248# 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 +0000249if [ "$cpu" = "i386" ] ; then
250 is_x86_64=`sysctl -n hw.optional.x86_64`
251 [ "$is_x86_64" = "1" ] && cpu=x86_64
aliguori1b0f9cc2009-01-26 15:37:40 +0000252fi
253if [ "$cpu" = "x86_64" ] ; then
254 OS_CFLAGS="-arch x86_64"
255 LDFLAGS="-arch x86_64"
256else
257 OS_CFLAGS="-mdynamic-no-pic"
258fi
ths831b7822007-01-18 20:06:33 +0000259darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000260cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000261audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000262audio_possible_drivers="coreaudio sdl fmod"
thsc2c59c32008-01-08 00:00:20 +0000263OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000264;;
bellardec530c82006-04-25 22:36:06 +0000265SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000266 solaris="yes"
267 make="gmake"
268 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000269 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000270 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000271 # have to select again, because `uname -m` returns i86pc
272 # even on an x86_64 box.
273 solariscpu=`isainfo -k`
274 if test "${solariscpu}" = "amd64" ; then
275 cpu="x86_64"
276 fi
thsc2b84fa2007-02-10 23:21:21 +0000277 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000278 if test "$solarisrev" -le 9 ; then
279 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
280 needs_libsunmath="yes"
281 else
282 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
283 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
284 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
285 echo "Studio 11 can be downloaded from www.sun.com."
286 exit 1
287 fi
288 fi
289 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000290 kqemu="yes"
291 fi
ths86b2bd92007-02-11 00:31:33 +0000292 fi
ths6b4d2ba2007-05-13 18:02:43 +0000293 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000294 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000295 fi
malcc2de5c92008-06-28 19:13:06 +0000296 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000297;;
malcb29fe3e2008-11-18 01:42:22 +0000298AIX)
299aix="yes"
300make="gmake"
301;;
bellard1d14ffa2005-10-30 18:58:22 +0000302*)
malc0c58ac12008-06-25 21:04:05 +0000303audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000304audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000305linux="yes"
ths831b7822007-01-18 20:06:33 +0000306linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000307usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000308if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000309 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000310 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000311fi
bellardfb065182004-11-09 23:09:44 +0000312;;
bellard7d132992003-03-06 23:23:54 +0000313esac
314
bellard7d3505c2004-05-12 19:32:15 +0000315if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000316 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000317 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000318 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000319 fi
blueswir184778502008-10-26 20:33:16 +0000320 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000321fi
322
bellard7d132992003-03-06 23:23:54 +0000323# find source path
pbrookad064842006-04-16 12:41:07 +0000324source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000325source_path_used="no"
326workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000327if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000328 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000329else
330 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000331fi
pbrook724db112008-02-03 19:20:13 +0000332[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000333
bellard85aa5182007-11-11 20:17:03 +0000334werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000335# generate compile errors on warnings for development builds
336#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
337#werror="yes";
338#fi
bellard85aa5182007-11-11 20:17:03 +0000339
bellard7d132992003-03-06 23:23:54 +0000340for opt do
pbrooka46e4032006-04-29 23:05:22 +0000341 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000342 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000343 --help|-h) show_help=yes
344 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000345 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000346 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000347 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000348 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000349 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000350 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000351 ;;
aliguoriac0df512008-12-29 17:14:15 +0000352 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000353 ;;
aliguoriac0df512008-12-29 17:14:15 +0000354 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000355 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000356 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000357 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000358 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000359 ;;
pbrook6a882642006-04-17 13:57:12 +0000360 --install=*) install="$optarg"
361 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000362 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000363 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000364 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000365 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000366 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000367 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000368 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000369 ;;
bellard7d132992003-03-06 23:23:54 +0000370 --enable-gprof) gprof="yes"
371 ;;
bellard43ce4df2003-06-09 19:53:12 +0000372 --static) static="yes"
373 ;;
bellard97a847b2003-08-10 21:36:04 +0000374 --disable-sdl) sdl="no"
375 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000376 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000377 ;;
malcc2de5c92008-06-28 19:13:06 +0000378 --fmod-inc=*) fmod_inc="$optarg"
379 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000380 --oss-lib=*) oss_lib="$optarg"
381 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000382 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000383 ;;
384 --audio-drv-list=*) audio_drv_list="$optarg"
385 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000386 --enable-sparse) sparse="yes"
387 ;;
388 --disable-sparse) sparse="no"
389 ;;
ths8d5d2d42007-08-25 01:37:51 +0000390 --disable-vnc-tls) vnc_tls="no"
391 ;;
aliguori2f9606b2009-03-06 20:27:28 +0000392 --disable-vnc-sasl) vnc_sasl="no"
393 ;;
bellard443f1372004-06-04 11:13:20 +0000394 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000395 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000396 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000397 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000398 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000399 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000400 --disable-brlapi) brlapi="no"
401 ;;
balrogfb599c92008-09-28 23:49:55 +0000402 --disable-bluez) bluez="no"
403 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000404 --disable-kvm) kvm="no"
405 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000406 --enable-profiler) profiler="yes"
407 ;;
malcc2de5c92008-06-28 19:13:06 +0000408 --enable-cocoa)
409 cocoa="yes" ;
410 sdl="no" ;
411 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000412 ;;
bellard97ccc682005-07-02 13:32:17 +0000413 --disable-gfx-check) check_gfx="no"
414 ;;
pbrookcad25d62006-03-19 16:31:11 +0000415 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000416 ;;
pbrookcad25d62006-03-19 16:31:11 +0000417 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000418 ;;
ths831b7822007-01-18 20:06:33 +0000419 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000420 ;;
ths831b7822007-01-18 20:06:33 +0000421 --enable-linux-user) linux_user="yes"
422 ;;
423 --disable-darwin-user) darwin_user="no"
424 ;;
425 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000426 ;;
blueswir184778502008-10-26 20:33:16 +0000427 --disable-bsd-user) bsd_user="no"
428 ;;
429 --enable-bsd-user) bsd_user="yes"
430 ;;
pbrookc5937222006-05-14 11:30:38 +0000431 --enable-uname-release=*) uname_release="$optarg"
432 ;;
blueswir131422552007-04-16 18:27:06 +0000433 --sparc_cpu=*)
434 sparc_cpu="$optarg"
435 case $sparc_cpu in
436 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
437 target_cpu="sparc"; cpu="sparc" ;;
438 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
439 target_cpu="sparc"; cpu="sparc" ;;
440 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
441 target_cpu="sparc64"; cpu="sparc64" ;;
442 *) echo "undefined SPARC architecture. Exiting";exit 1;;
443 esac
444 ;;
bellard85aa5182007-11-11 20:17:03 +0000445 --enable-werror) werror="yes"
446 ;;
447 --disable-werror) werror="no"
448 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000449 --disable-curses) curses="no"
450 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000451 --disable-nptl) nptl="no"
452 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000453 --enable-mixemu) mixemu="yes"
454 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000455 --disable-aio) aio="no"
456 ;;
ths77755342008-11-27 15:45:16 +0000457 --disable-blobs) blobs="no"
458 ;;
aliguorieac30262008-11-05 16:28:56 +0000459 --kerneldir=*) kerneldir="$optarg"
460 ;;
balrog7f1559c2007-11-17 10:24:32 +0000461 *) echo "ERROR: unknown option $opt"; show_help="yes"
462 ;;
bellard7d132992003-03-06 23:23:54 +0000463 esac
464done
465
ths6f30fa82007-01-05 01:00:47 +0000466# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000467CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000468CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000469LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000470if test "$werror" = "yes" ; then
471CFLAGS="$CFLAGS -Werror"
472fi
ths6f30fa82007-01-05 01:00:47 +0000473
blueswir1d2c7c9b2008-11-01 14:50:20 +0000474if test "$solaris" = "no" ; then
475 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
476 LDFLAGS="$LDFLAGS -Wl,--warn-common"
477 fi
blueswir149237ac2008-09-17 19:05:19 +0000478fi
479
blueswir131422552007-04-16 18:27:06 +0000480#
481# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
482# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
483#
bellard40293e52008-01-31 11:32:10 +0000484case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000485 sparc) if test -z "$sparc_cpu" ; then
486 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
487 ARCH_LDFLAGS="-m32"
488 else
489 ARCH_CFLAGS="${SP_CFLAGS}"
490 ARCH_LDFLAGS="${SP_LDFLAGS}"
491 fi
492 ;;
493 sparc64) if test -z "$sparc_cpu" ; then
494 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
495 ARCH_LDFLAGS="-m64"
496 else
497 ARCH_CFLAGS="${SP_CFLAGS}"
498 ARCH_LDFLAGS="${SP_LDFLAGS}"
499 fi
500 ;;
ths76d83bd2007-11-18 21:22:10 +0000501 s390)
502 ARCH_CFLAGS="-march=z900"
503 ;;
bellard40293e52008-01-31 11:32:10 +0000504 i386)
505 ARCH_CFLAGS="-m32"
506 ARCH_LDFLAGS="-m32"
507 ;;
508 x86_64)
509 ARCH_CFLAGS="-m64"
510 ARCH_LDFLAGS="-m64"
511 ;;
blueswir131422552007-04-16 18:27:06 +0000512esac
513
pbrookaf5db582006-04-08 14:26:41 +0000514if test x"$show_help" = x"yes" ; then
515cat << EOF
516
517Usage: configure [options]
518Options: [defaults in brackets after descriptions]
519
520EOF
521echo "Standard options:"
522echo " --help print this message"
523echo " --prefix=PREFIX install in PREFIX [$prefix]"
524echo " --interp-prefix=PREFIX where to find shared libraries, etc."
525echo " use %M for cpu name [$interp_prefix]"
526echo " --target-list=LIST set target list [$target_list]"
527echo ""
528echo "kqemu kernel acceleration support:"
529echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000530echo ""
531echo "Advanced options (experts only):"
532echo " --source-path=PATH path of source code [$source_path]"
533echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
534echo " --cc=CC use C compiler CC [$cc]"
535echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
536echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000537echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000538echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000539echo " --enable-sparse enable sparse checker"
540echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000541echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000542echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000543echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000544echo " --audio-drv-list=LIST set audio drivers list:"
545echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000546echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
547echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000548echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000549echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000550echo " --disable-vnc-tls disable TLS encryption for VNC server"
aliguori2f9606b2009-03-06 20:27:28 +0000551echo " --disable-vnc-sasl disable SASL encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000552echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000553echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000554echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000555echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000556echo " --enable-system enable all system emulation targets"
557echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000558echo " --enable-linux-user enable all linux usermode emulation targets"
559echo " --disable-linux-user disable all linux usermode emulation targets"
560echo " --enable-darwin-user enable all darwin usermode emulation targets"
561echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000562echo " --enable-bsd-user enable all BSD usermode emulation targets"
563echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000564echo " --fmod-lib path to FMOD library"
565echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000566echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000567echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000568echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000569echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000570echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000571echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000572echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000573echo ""
ths5bf08932006-12-23 00:33:26 +0000574echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000575exit 1
576fi
577
bellard67b915a2004-03-31 23:37:16 +0000578if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000579 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000580 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000581 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000582 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000583 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000584fi
585
aliguori03b4fe72008-10-07 19:16:17 +0000586if test ! -x "$(which cgcc 2>/dev/null)"; then
587 sparse="no"
588fi
589
bellardec530c82006-04-25 22:36:06 +0000590#
591# Solaris specific configure tool chain decisions
592#
593if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000594 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
595 if test -z "$solinst" ; then
596 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
597 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
598 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
599 exit 1
600 fi
601 if test "$solinst" = "/usr/sbin/install" ; then
602 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
603 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
604 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
605 exit 1
606 fi
bellardec530c82006-04-25 22:36:06 +0000607 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
608 if test -z "$sol_ar" ; then
609 echo "Error: No path includes ar"
610 if test -f /usr/ccs/bin/ar ; then
611 echo "Add /usr/ccs/bin to your path and rerun configure"
612 fi
613 exit 1
614 fi
ths5fafdf22007-09-16 21:08:06 +0000615fi
bellardec530c82006-04-25 22:36:06 +0000616
617
bellard5327cf42005-01-10 23:18:50 +0000618if test -z "$target_list" ; then
619# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000620 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000621 target_list="\
622i386-softmmu \
623x86_64-softmmu \
624arm-softmmu \
625cris-softmmu \
626m68k-softmmu \
627mips-softmmu \
628mipsel-softmmu \
629mips64-softmmu \
630mips64el-softmmu \
631ppc-softmmu \
632ppcemb-softmmu \
633ppc64-softmmu \
634sh4-softmmu \
635sh4eb-softmmu \
636sparc-softmmu \
637"
pbrook0a8e90f2006-03-19 14:54:16 +0000638 fi
bellard5327cf42005-01-10 23:18:50 +0000639# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000640 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000641 target_list="${target_list}\
642i386-linux-user \
643x86_64-linux-user \
644alpha-linux-user \
645arm-linux-user \
646armeb-linux-user \
647cris-linux-user \
648m68k-linux-user \
649mips-linux-user \
650mipsel-linux-user \
651ppc-linux-user \
652ppc64-linux-user \
653ppc64abi32-linux-user \
654sh4-linux-user \
655sh4eb-linux-user \
656sparc-linux-user \
657sparc64-linux-user \
658sparc32plus-linux-user \
659"
ths831b7822007-01-18 20:06:33 +0000660 fi
661# the following are Darwin specific
662 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000663 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000664 fi
blueswir184778502008-10-26 20:33:16 +0000665# the following are BSD specific
666 if [ "$bsd_user" = "yes" ] ; then
667 target_list="${target_list}\
668sparc64-bsd-user \
669"
670 fi
bellard6e20a452005-06-05 15:56:02 +0000671else
pbrookb1a550a2006-04-16 13:28:56 +0000672 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000673fi
pbrook0a8e90f2006-03-19 14:54:16 +0000674if test -z "$target_list" ; then
675 echo "No targets enabled"
676 exit 1
677fi
bellard5327cf42005-01-10 23:18:50 +0000678
bellard7d132992003-03-06 23:23:54 +0000679if test -z "$cross_prefix" ; then
680
681# ---
682# big/little endian test
683cat > $TMPC << EOF
684#include <inttypes.h>
685int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000686 volatile uint32_t i=0x01234567;
687 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000688}
689EOF
690
aurel32178baee2008-12-08 18:11:57 +0000691if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000692$TMPE && bigendian="yes"
693else
694echo big/little test failed
695fi
696
697else
698
699# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000700if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000701 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000702 -o "$cpu" = "m68k" \
703 -o "$cpu" = "mips" \
704 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000705 -o "$cpu" = "ppc" \
706 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000707 -o "$cpu" = "s390" \
708 -o "$cpu" = "sparc" \
709 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000710 bigendian="yes"
711fi
712
713fi
714
bellardb6853692005-06-05 17:10:39 +0000715# host long bits test
716hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000717if test "$cpu" = "x86_64" \
718 -o "$cpu" = "alpha" \
719 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000720 -o "$cpu" = "sparc64" \
721 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000722 hostlongbits="64"
723fi
724
bellarde8cd23d2003-06-25 16:08:13 +0000725# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000726cat > $TMPC <<EOF
727int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000728}
729EOF
730
pbrookbd0c5662008-05-29 14:34:11 +0000731# Check host NPTL support
732cat > $TMPC <<EOF
733#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000734#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000735void foo()
736{
737#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
738#error bork
739#endif
740}
741EOF
742
balrog8c7f7572008-12-15 03:15:36 +0000743if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000744 :
745else
746 nptl="no"
747fi
748
bellard11d9f692004-04-02 20:55:59 +0000749##########################################
balrogac629222008-10-11 09:56:04 +0000750# zlib check
751
752cat > $TMPC << EOF
753#include <zlib.h>
754int main(void) { zlibVersion(); return 0; }
755EOF
balrog8c7f7572008-12-15 03:15:36 +0000756if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000757 :
758else
759 echo
760 echo "Error: zlib check failed"
761 echo "Make sure to have the zlib libs and headers installed."
762 echo
763 exit 1
764fi
765
766##########################################
bellard11d9f692004-04-02 20:55:59 +0000767# SDL probe
768
769sdl_too_old=no
770
771if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000772 sdl_config="sdl-config"
773 sdl=no
774 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000775
776cat > $TMPC << EOF
777#include <SDL.h>
778#undef main /* We don't want SDL to override our main() */
779int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
780EOF
balrog8c7f7572008-12-15 03:15:36 +0000781 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 +0000782 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
783 if test "$_sdlversion" -lt 121 ; then
784 sdl_too_old=yes
785 else
786 if test "$cocoa" = "no" ; then
787 sdl=yes
788 fi
789 fi
790
791 # static link with sdl ?
792 if test "$sdl" = "yes" ; then
793 aa="no"
794 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
795 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
796 if [ "$aa" = "yes" ] ; then
797 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000798 fi
bellard11d9f692004-04-02 20:55:59 +0000799
balrog8c7f7572008-12-15 03:15:36 +0000800 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 +0000801 sdl_static=yes
802 fi
803 fi # static link
804 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000805else
ths069b0bd2007-07-12 00:27:15 +0000806 # Make sure to disable cocoa if sdl was set
807 if test "$sdl" = "yes" ; then
808 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000809 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000810 fi
bellarda6e022a2004-04-02 21:55:47 +0000811fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000812
aliguori5368a422009-03-03 17:37:21 +0000813if test "$sdl" = "yes" ; then
814cat > $TMPC <<EOF
815#include <SDL.h>
816#if defined(SDL_VIDEO_DRIVER_X11)
817#include <X11/XKBlib.h>
818#else
819#error No x11 support
820#endif
821int main(void) { return 0; }
822EOF
823 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
824 sdl_x11="yes"
825 fi
826fi
827
ths8f28f3f2007-01-05 21:25:54 +0000828##########################################
ths8d5d2d42007-08-25 01:37:51 +0000829# VNC TLS detection
830if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000831cat > $TMPC <<EOF
832#include <gnutls/gnutls.h>
833int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
834EOF
835 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
836 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
837 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000838 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000839 :
840 else
841 vnc_tls="no"
842 fi
ths8d5d2d42007-08-25 01:37:51 +0000843fi
844
845##########################################
aliguori2f9606b2009-03-06 20:27:28 +0000846# VNC SASL detection
847if test "$vnc_sasl" = "yes" ; then
848cat > $TMPC <<EOF
849#include <sasl/sasl.h>
850#include <stdio.h>
851int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
852EOF
853 # Assuming Cyrus-SASL installed in /usr prefix
854 vnc_sasl_cflags=""
855 vnc_sasl_libs="-lsasl2"
856 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
857 $vnc_sasl_libs 2> /dev/null ; then
858 :
859 else
860 vnc_sasl="no"
861 fi
862fi
863
864##########################################
aliguori76655d62009-03-06 20:27:37 +0000865# fnmatch() probe, used for ACL routines
866fnmatch="no"
867cat > $TMPC << EOF
868#include <fnmatch.h>
869int main(void)
870{
871 fnmatch("foo", "foo", 0);
872 return 0;
873}
874EOF
875if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
876 fnmatch="yes"
877fi
878
879##########################################
ths8a16d272008-07-19 09:56:24 +0000880# vde libraries probe
881if test "$vde" = "yes" ; then
882 cat > $TMPC << EOF
883#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000884int main(void)
885{
886 struct vde_open_args a = {0, 0, 0};
887 vde_open("", "", &a);
888 return 0;
889}
ths8a16d272008-07-19 09:56:24 +0000890EOF
balrog8c7f7572008-12-15 03:15:36 +0000891 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000892 :
893 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000894 vde="no"
ths8a16d272008-07-19 09:56:24 +0000895 fi
896fi
897
898##########################################
malcc2de5c92008-06-28 19:13:06 +0000899# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000900
malcc2de5c92008-06-28 19:13:06 +0000901audio_drv_probe()
902{
903 drv=$1
904 hdr=$2
905 lib=$3
906 exp=$4
907 cfl=$5
908 cat > $TMPC << EOF
909#include <$hdr>
910int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000911EOF
balrog8c7f7572008-12-15 03:15:36 +0000912 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000913 :
914 else
915 echo
916 echo "Error: $drv check failed"
917 echo "Make sure to have the $drv libs and headers installed."
918 echo
919 exit 1
920 fi
921}
922
malc2fa7d3b2008-07-29 12:58:44 +0000923audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000924for drv in $audio_drv_list; do
925 case $drv in
926 alsa)
927 audio_drv_probe $drv alsa/asoundlib.h -lasound \
928 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
929 ;;
930
931 fmod)
932 if test -z $fmod_lib || test -z $fmod_inc; then
933 echo
934 echo "Error: You must specify path to FMOD library and headers"
935 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
936 echo
937 exit 1
938 fi
939 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
940 ;;
941
942 esd)
943 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
944 ;;
malcb8e59f12008-07-02 21:03:08 +0000945
946 pa)
947 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
948 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
949 ;;
950
blueswir12f6a1ab2008-08-21 18:00:53 +0000951 oss|sdl|core|wav|dsound)
952 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
953 ;;
954
malce4c63a62008-07-19 16:15:16 +0000955 *)
malc1c9b2a52008-07-19 16:57:30 +0000956 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000957 echo
958 echo "Error: Unknown driver '$drv' selected"
959 echo "Possible drivers are: $audio_possible_drivers"
960 echo
961 exit 1
962 }
963 ;;
malcc2de5c92008-06-28 19:13:06 +0000964 esac
965done
ths8f28f3f2007-01-05 21:25:54 +0000966
balrog4d3b6f62008-02-10 16:33:14 +0000967##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000968# BrlAPI probe
969
970if test -z "$brlapi" ; then
971 brlapi=no
972cat > $TMPC << EOF
973#include <brlapi.h>
974int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
975EOF
aurel32178baee2008-12-08 18:11:57 +0000976 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000977 brlapi=yes
978 fi # brlapi compile test
979fi # -z $brlapi
980
981##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000982# curses probe
983
984if test "$curses" = "yes" ; then
985 curses=no
986 cat > $TMPC << EOF
987#include <curses.h>
988int main(void) { return curses_version(); }
989EOF
aurel32178baee2008-12-08 18:11:57 +0000990 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000991 curses=yes
992 fi
993fi # test "$curses"
994
blueswir1414f0da2008-08-15 18:20:52 +0000995##########################################
balrogfb599c92008-09-28 23:49:55 +0000996# bluez support probe
997if test "$bluez" = "yes" ; then
998 `pkg-config bluez` || bluez="no"
999fi
1000if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +00001001 cat > $TMPC << EOF
1002#include <bluetooth/bluetooth.h>
1003int main(void) { return bt_error(0); }
1004EOF
balrogfb599c92008-09-28 23:49:55 +00001005 bluez_cflags=`pkg-config --cflags bluez`
1006 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +00001007 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001008 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +00001009 :
1010 else
1011 bluez="no"
1012 fi
balrogfb599c92008-09-28 23:49:55 +00001013fi
1014
1015##########################################
aliguori7ba1e612008-11-05 16:04:33 +00001016# kvm probe
1017if test "$kvm" = "yes" ; then
1018 cat > $TMPC <<EOF
1019#include <linux/kvm.h>
aliguori9fd8d8d2009-01-15 21:57:30 +00001020#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
aliguori7ba1e612008-11-05 16:04:33 +00001021#error Invalid KVM version
1022#endif
aliguori9fd8d8d2009-01-15 21:57:30 +00001023#if !defined(KVM_CAP_USER_MEMORY)
1024#error Missing KVM capability KVM_CAP_USER_MEMORY
1025#endif
1026#if !defined(KVM_CAP_SET_TSS_ADDR)
1027#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1028#endif
1029#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1030#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1031#endif
aliguori7ba1e612008-11-05 16:04:33 +00001032int main(void) { return 0; }
1033EOF
aliguorieac30262008-11-05 16:28:56 +00001034 if test "$kerneldir" != "" ; then
1035 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +00001036 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1037 -a -d "$kerneldir/arch/x86/include" ; then
1038 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +00001039 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1040 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +00001041 elif test -d "$kerneldir/arch/$cpu/include" ; then
1042 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1043 fi
aliguorieac30262008-11-05 16:28:56 +00001044 else
1045 kvm_cflags=""
1046 fi
aliguori7ba1e612008-11-05 16:04:33 +00001047 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001048 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +00001049 :
1050 else
aliguori9fd8d8d2009-01-15 21:57:30 +00001051 kvm="no";
1052 if [ -x "`which awk 2>/dev/null`" ] && \
1053 [ -x "`which grep 2>/dev/null`" ]; then
1054 kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1055 | grep "error: " \
1056 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1057 if test "$kvmerr" != "" ; then
1058 kvm="no - (${kvmerr})"
1059 fi
1060 fi
aliguori7ba1e612008-11-05 16:04:33 +00001061 fi
1062fi
1063
1064##########################################
blueswir1414f0da2008-08-15 18:20:52 +00001065# AIO probe
aliguori3c529d92008-12-12 16:41:40 +00001066AIOLIBS=""
1067
blueswir1414f0da2008-08-15 18:20:52 +00001068if test "$aio" = "yes" ; then
1069 aio=no
1070 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +00001071#include <pthread.h>
blueswir1c9db92f2009-01-17 06:49:15 +00001072int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +00001073EOF
1074 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1075 aio=yes
aliguori3c529d92008-12-12 16:41:40 +00001076 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +00001077 fi
1078fi
1079
aliguoribf9298b2008-12-05 20:05:26 +00001080##########################################
1081# iovec probe
1082cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001083#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001084#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001085#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001086int main(void) { struct iovec iov; return 0; }
1087EOF
1088iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001089if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001090 iovec=yes
1091fi
1092
aurel32f652e6a2008-12-16 10:43:48 +00001093##########################################
1094# fdt probe
1095if test "$fdt" = "yes" ; then
1096 fdt=no
1097 cat > $TMPC << EOF
1098int main(void) { return 0; }
1099EOF
1100 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1101 fdt=yes
1102 fi
1103fi
1104
pbrookcc8ae6d2006-04-23 17:57:59 +00001105# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001106if [ -x "`which texi2html 2>/dev/null`" ] && \
1107 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001108 build_docs="yes"
1109fi
1110
aliguorida93a1f2008-12-12 20:02:52 +00001111##########################################
1112# Do we need librt
1113cat > $TMPC <<EOF
1114#include <signal.h>
1115#include <time.h>
1116int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1117EOF
1118
1119rt=no
balrog8c7f7572008-12-15 03:15:36 +00001120if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001121 :
balrog8c7f7572008-12-15 03:15:36 +00001122elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001123 rt=yes
1124fi
1125
1126if test "$rt" = "yes" ; then
1127 # Hack, we should have a general purpose LIBS for this sort of thing
1128 AIOLIBS="$AIOLIBS -lrt"
1129fi
1130
bellard11d9f692004-04-02 20:55:59 +00001131if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001132 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001133 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001134 fi
1135 mansuffix=""
1136 datasuffix=""
1137 docsuffix=""
1138 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001139else
pbrook308c3592007-02-27 00:52:01 +00001140 if test -z "$prefix" ; then
1141 prefix="/usr/local"
1142 fi
1143 mansuffix="/share/man"
1144 datasuffix="/share/qemu"
1145 docsuffix="/share/doc/qemu"
1146 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001147fi
bellard5a671352003-10-01 00:13:48 +00001148
bellard43ce4df2003-06-09 19:53:12 +00001149echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001150echo "BIOS directory $prefix$datasuffix"
1151echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001152if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001153echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001154echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001155fi
bellard5a671352003-10-01 00:13:48 +00001156echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001157echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001158echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001159echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001160echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001161echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001162echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001163echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001164echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001165echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001166echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001167echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001168echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001169echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001170if test "$darwin" = "yes" ; then
1171 echo "Cocoa support $cocoa"
1172fi
bellard97a847b2003-08-10 21:36:04 +00001173echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001174if test "$sdl" != "no" ; then
1175 echo "SDL static link $sdl_static"
1176fi
balrog4d3b6f62008-02-10 16:33:14 +00001177echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001178echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001179echo "Audio drivers $audio_drv_list"
1180echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001181echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001182echo "VNC TLS support $vnc_tls"
1183if test "$vnc_tls" = "yes" ; then
1184 echo " TLS CFLAGS $vnc_tls_cflags"
1185 echo " TLS LIBS $vnc_tls_libs"
1186fi
aliguori2f9606b2009-03-06 20:27:28 +00001187echo "VNC SASL support $vnc_sasl"
1188if test "$vnc_sasl" = "yes" ; then
1189 echo " SASL CFLAGS $vnc_sasl_cflags"
1190 echo " SASL LIBS $vnc_sasl_libs"
1191fi
blueswir131422552007-04-16 18:27:06 +00001192if test -n "$sparc_cpu"; then
1193 echo "Target Sparc Arch $sparc_cpu"
1194fi
bellard07f4ddb2005-04-23 17:44:28 +00001195echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001196echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001197echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001198[ ! -z "$uname_release" ] && \
1199echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001200echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001201echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001202echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001203echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001204echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001205echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001206
bellard97a847b2003-08-10 21:36:04 +00001207if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001208echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001209fi
malcd4742de2008-11-29 22:04:31 +00001210if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001211 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001212 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001213fi
bellard24b55b92005-03-01 22:30:41 +00001214#if test "$sdl_static" = "no"; then
1215# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1216#fi
bellard97a847b2003-08-10 21:36:04 +00001217config_mak="config-host.mak"
1218config_h="config-host.h"
1219
bellard7c1f25b2004-04-22 00:02:08 +00001220#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001221
ths15d9ca02007-07-31 23:07:32 +00001222test -f $config_h && mv $config_h ${config_h}~
1223
bellard97a847b2003-08-10 21:36:04 +00001224echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001225printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001226printf " '%s'" "$0" "$@" >> $config_mak
1227echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001228echo "/* Automatically generated by configure - do not modify */" > $config_h
1229
1230echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001231echo "bindir=\${prefix}$binsuffix" >> $config_mak
1232echo "mandir=\${prefix}$mansuffix" >> $config_mak
1233echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001234echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001235echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001236echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001237echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001238echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001239echo "HOST_CC=$host_cc" >> $config_mak
1240echo "AR=$ar" >> $config_mak
1241echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001242# XXX: only use CFLAGS and LDFLAGS ?
1243# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1244# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001245echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001246echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1247echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1248echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001249echo "CFLAGS=$CFLAGS" >> $config_mak
1250echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001251echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001252echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001253case "$cpu" in
1254 i386)
1255 echo "ARCH=i386" >> $config_mak
1256 echo "#define HOST_I386 1" >> $config_h
1257 ;;
1258 x86_64)
1259 echo "ARCH=x86_64" >> $config_mak
1260 echo "#define HOST_X86_64 1" >> $config_h
1261 ;;
1262 alpha)
1263 echo "ARCH=alpha" >> $config_mak
1264 echo "#define HOST_ALPHA 1" >> $config_h
1265 ;;
1266 armv4b)
1267 echo "ARCH=arm" >> $config_mak
1268 echo "#define HOST_ARM 1" >> $config_h
1269 ;;
1270 armv4l)
1271 echo "ARCH=arm" >> $config_mak
1272 echo "#define HOST_ARM 1" >> $config_h
1273 ;;
1274 cris)
1275 echo "ARCH=cris" >> $config_mak
1276 echo "#define HOST_CRIS 1" >> $config_h
1277 ;;
1278 hppa)
1279 echo "ARCH=hppa" >> $config_mak
1280 echo "#define HOST_HPPA 1" >> $config_h
1281 ;;
1282 ia64)
1283 echo "ARCH=ia64" >> $config_mak
1284 echo "#define HOST_IA64 1" >> $config_h
1285 ;;
1286 m68k)
1287 echo "ARCH=m68k" >> $config_mak
1288 echo "#define HOST_M68K 1" >> $config_h
1289 ;;
1290 mips)
1291 echo "ARCH=mips" >> $config_mak
1292 echo "#define HOST_MIPS 1" >> $config_h
1293 ;;
1294 mips64)
1295 echo "ARCH=mips64" >> $config_mak
1296 echo "#define HOST_MIPS64 1" >> $config_h
1297 ;;
malcfdf7ed92009-01-14 18:39:52 +00001298 ppc)
1299 echo "ARCH=ppc" >> $config_mak
1300 echo "#define HOST_PPC 1" >> $config_h
1301 ;;
1302 ppc64)
1303 echo "ARCH=ppc64" >> $config_mak
1304 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001305 ;;
1306 s390)
1307 echo "ARCH=s390" >> $config_mak
1308 echo "#define HOST_S390 1" >> $config_h
1309 ;;
1310 sparc)
1311 echo "ARCH=sparc" >> $config_mak
1312 echo "#define HOST_SPARC 1" >> $config_h
1313 ;;
1314 sparc64)
1315 echo "ARCH=sparc64" >> $config_mak
1316 echo "#define HOST_SPARC64 1" >> $config_h
1317 ;;
1318 *)
1319 echo "Unsupported CPU = $cpu"
1320 exit 1
1321 ;;
1322esac
aliguori03b4fe72008-10-07 19:16:17 +00001323if test "$sparse" = "yes" ; then
1324 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1325 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1326 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1327fi
bellard7d132992003-03-06 23:23:54 +00001328if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001329 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1330 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1331fi
bellardb6853692005-06-05 17:10:39 +00001332echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001333if test "$mingw32" = "yes" ; then
1334 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001335 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001336else
1337 cat > $TMPC << EOF
1338#include <byteswap.h>
1339int main(void) { return bswap_32(0); }
1340EOF
aurel32178baee2008-12-08 18:11:57 +00001341 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001342 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1343 fi
blueswir113606772008-12-05 17:54:09 +00001344 cat > $TMPC << EOF
1345#include <sys/endian.h>
1346#include <sys/types.h>
1347#include <machine/bswap.h>
1348int main(void) { return bswap32(0); }
1349EOF
aurel32178baee2008-12-08 18:11:57 +00001350 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001351 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1352 fi
bellard67b915a2004-03-31 23:37:16 +00001353fi
blueswir1128ab2f2008-08-15 18:33:42 +00001354
1355if [ "$openbsd" = "yes" ] ; then
1356 echo "#define ENOTSUP 4096" >> $config_h
1357fi
1358
bellard83fb7ad2004-07-05 21:25:26 +00001359if test "$darwin" = "yes" ; then
1360 echo "CONFIG_DARWIN=yes" >> $config_mak
1361 echo "#define CONFIG_DARWIN 1" >> $config_h
1362fi
malcb29fe3e2008-11-18 01:42:22 +00001363
1364if test "$aix" = "yes" ; then
1365 echo "CONFIG_AIX=yes" >> $config_mak
1366 echo "#define CONFIG_AIX 1" >> $config_h
1367fi
1368
bellardec530c82006-04-25 22:36:06 +00001369if test "$solaris" = "yes" ; then
1370 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001371 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001372 if test "$needs_libsunmath" = "yes" ; then
1373 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1374 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1375 fi
bellardec530c82006-04-25 22:36:06 +00001376fi
blueswir131422552007-04-16 18:27:06 +00001377if test -n "$sparc_cpu"; then
1378 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1379 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1380fi
bellard67b915a2004-03-31 23:37:16 +00001381if test "$gdbstub" = "yes" ; then
1382 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1383 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1384fi
bellard97a847b2003-08-10 21:36:04 +00001385if test "$gprof" = "yes" ; then
1386 echo "TARGET_GPROF=yes" >> $config_mak
1387 echo "#define HAVE_GPROF 1" >> $config_h
1388fi
1389if test "$static" = "yes" ; then
1390 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001391 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001392fi
bellard05c2a3e2006-02-08 22:39:17 +00001393if test $profiler = "yes" ; then
1394 echo "#define CONFIG_PROFILER 1" >> $config_h
1395fi
bellardc20709a2004-04-21 23:27:19 +00001396if test "$slirp" = "yes" ; then
1397 echo "CONFIG_SLIRP=yes" >> $config_mak
1398 echo "#define CONFIG_SLIRP 1" >> $config_h
1399fi
ths8a16d272008-07-19 09:56:24 +00001400if test "$vde" = "yes" ; then
1401 echo "CONFIG_VDE=yes" >> $config_mak
1402 echo "#define CONFIG_VDE 1" >> $config_h
1403 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1404fi
malc0c58ac12008-06-25 21:04:05 +00001405for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001406 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001407 echo "$def=yes" >> $config_mak
1408 echo "#define $def 1" >> $config_h
1409done
1410echo "#define AUDIO_DRIVERS \\" >> $config_h
1411for drv in $audio_drv_list; do
1412 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001413 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001414 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001415 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001416 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1417 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001418 elif test "$drv" = "oss"; then
1419 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001420 fi
1421done
1422echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001423if test "$mixemu" = "yes" ; then
1424 echo "CONFIG_MIXEMU=yes" >> $config_mak
1425 echo "#define CONFIG_MIXEMU 1" >> $config_h
1426fi
ths8d5d2d42007-08-25 01:37:51 +00001427if test "$vnc_tls" = "yes" ; then
1428 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1429 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1430 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1431 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1432fi
aliguori2f9606b2009-03-06 20:27:28 +00001433if test "$vnc_sasl" = "yes" ; then
1434 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1435 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1436 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1437 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1438fi
aliguori76655d62009-03-06 20:27:37 +00001439if test "$fnmatch" = "yes" ; then
1440 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1441fi
pbrookb1a550a2006-04-16 13:28:56 +00001442qemu_version=`head $source_path/VERSION`
1443echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001444echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001445
1446echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001447if [ "$source_path_used" = "yes" ]; then
1448 echo "VPATH=$source_path" >> $config_mak
1449fi
bellard97a847b2003-08-10 21:36:04 +00001450echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001451if [ "$build_docs" = "yes" ] ; then
1452 echo "BUILD_DOCS=yes" >> $config_mak
1453fi
bellard49ecc3f2007-11-07 19:25:15 +00001454if test "$static" = "yes"; then
1455 sdl1=$sdl_static
1456else
1457 sdl1=$sdl
1458fi
1459if test "$sdl1" = "yes" ; then
1460 echo "#define CONFIG_SDL 1" >> $config_h
1461 echo "CONFIG_SDL=yes" >> $config_mak
1462 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1463 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
aliguori5368a422009-03-03 17:37:21 +00001464 elif test "$sdl_x11" = "yes" ; then
1465 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001466 else
1467 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1468 fi
1469 if [ "${aa}" = "yes" ] ; then
1470 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1471 else
1472 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1473 fi
1474fi
1475if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001476 echo "#define CONFIG_COCOA 1" >> $config_h
1477 echo "CONFIG_COCOA=yes" >> $config_mak
1478fi
1479if test "$curses" = "yes" ; then
1480 echo "#define CONFIG_CURSES 1" >> $config_h
1481 echo "CONFIG_CURSES=yes" >> $config_mak
1482 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001483fi
aurel322e4d9fb2008-04-08 06:01:02 +00001484if test "$brlapi" = "yes" ; then
1485 echo "CONFIG_BRLAPI=yes" >> $config_mak
1486 echo "#define CONFIG_BRLAPI 1" >> $config_h
1487 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1488fi
balrogfb599c92008-09-28 23:49:55 +00001489if test "$bluez" = "yes" ; then
1490 echo "CONFIG_BLUEZ=yes" >> $config_mak
1491 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1492 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1493 echo "#define CONFIG_BLUEZ 1" >> $config_h
1494fi
blueswir1414f0da2008-08-15 18:20:52 +00001495if test "$aio" = "yes" ; then
1496 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001497 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001498fi
ths77755342008-11-27 15:45:16 +00001499if test "$blobs" = "yes" ; then
1500 echo "INSTALL_BLOBS=yes" >> $config_mak
1501fi
aliguoribf9298b2008-12-05 20:05:26 +00001502if test "$iovec" = "yes" ; then
1503 echo "#define HAVE_IOVEC 1" >> $config_h
1504fi
aurel32f652e6a2008-12-16 10:43:48 +00001505if test "$fdt" = "yes" ; then
1506 echo "#define HAVE_FDT 1" >> $config_h
1507 echo "FDT_LIBS=-lfdt" >> $config_mak
1508fi
bellard97a847b2003-08-10 21:36:04 +00001509
bellard83fb7ad2004-07-05 21:25:26 +00001510# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001511if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001512 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001513 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001514 echo "#define _BSD 1" >> $config_h
1515fi
1516
pbrookc5937222006-05-14 11:30:38 +00001517echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1518
blueswir168063642008-11-22 21:03:55 +00001519# USB host support
1520case "$usb" in
1521linux)
1522 echo "HOST_USB=linux" >> $config_mak
1523;;
1524bsd)
1525 echo "HOST_USB=bsd" >> $config_mak
1526;;
1527*)
1528 echo "HOST_USB=stub" >> $config_mak
1529;;
1530esac
1531
pbrookc39e3332007-09-22 16:49:14 +00001532tools=
1533if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1534 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001535 if [ "$linux" = "yes" ] ; then
1536 tools="qemu-nbd\$(EXESUF) $tools"
1537 fi
pbrookc39e3332007-09-22 16:49:14 +00001538fi
1539echo "TOOLS=$tools" >> $config_mak
1540
ths15d9ca02007-07-31 23:07:32 +00001541test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1542
bellard1d14ffa2005-10-30 18:58:22 +00001543for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001544target_dir="$target"
1545config_mak=$target_dir/config.mak
1546config_h=$target_dir/config.h
1547target_cpu=`echo $target | cut -d '-' -f 1`
1548target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001549[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001550[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1551[ "$target_cpu" = "mips" ] && target_bigendian=yes
1552[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1553[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001554[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001555[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001556[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001557[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001558[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001559[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1560[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1561[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001562target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001563target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001564target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001565target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001566target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001567case "$target" in
1568 ${target_cpu}-softmmu)
1569 target_softmmu="yes"
1570 ;;
1571 ${target_cpu}-linux-user)
1572 target_user_only="yes"
1573 target_linux_user="yes"
1574 ;;
1575 ${target_cpu}-darwin-user)
1576 target_user_only="yes"
1577 target_darwin_user="yes"
1578 ;;
blueswir184778502008-10-26 20:33:16 +00001579 ${target_cpu}-bsd-user)
1580 target_user_only="yes"
1581 target_bsd_user="yes"
1582 ;;
pbrook9e407a82007-05-26 16:38:53 +00001583 *)
1584 echo "ERROR: Target '$target' not recognised"
1585 exit 1
1586 ;;
1587esac
ths831b7822007-01-18 20:06:33 +00001588
bellard97ccc682005-07-02 13:32:17 +00001589if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001590 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001591 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001592 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001593 echo "Note that this will disable all output from the virtual graphics card"
1594 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001595 exit 1;
1596fi
1597
bellard7c1f25b2004-04-22 00:02:08 +00001598#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001599
ths15d9ca02007-07-31 23:07:32 +00001600test -f $config_h && mv $config_h ${config_h}~
1601
bellard97a847b2003-08-10 21:36:04 +00001602mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001603mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001604mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001605if 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 +00001606 mkdir -p $target_dir/nwfpe
1607fi
1608
bellardec530c82006-04-25 22:36:06 +00001609#
1610# don't use ln -sf as not all "ln -sf" over write the file/link
1611#
1612rm -f $target_dir/Makefile
1613ln -s $source_path/Makefile.target $target_dir/Makefile
1614
bellard97a847b2003-08-10 21:36:04 +00001615
1616echo "# Automatically generated by configure - do not modify" > $config_mak
1617echo "/* Automatically generated by configure - do not modify */" > $config_h
1618
1619
1620echo "include ../config-host.mak" >> $config_mak
1621echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001622
pbrooke5fe0c52006-06-11 13:32:59 +00001623bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001624elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001625target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001626interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1627echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001628gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001629
aliguori5985ece2008-11-05 19:59:25 +00001630# Make sure the target and host cpus are compatible
1631if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
malcfdf7ed92009-01-14 18:39:52 +00001632 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001633 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1634 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001635 kvm="no"
1636fi
1637# Disable KVM for linux-user
1638if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1639 kvm="no"
1640fi
1641
aurel322408a522008-04-20 20:19:44 +00001642case "$target_cpu" in
1643 i386)
1644 echo "TARGET_ARCH=i386" >> $config_mak
1645 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1646 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001647 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001648 then
1649 echo "#define USE_KQEMU 1" >> $config_h
1650 fi
aliguori7ba1e612008-11-05 16:04:33 +00001651 if test "$kvm" = "yes" ; then
1652 echo "CONFIG_KVM=yes" >> $config_mak
1653 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001654 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001655 fi
aurel322408a522008-04-20 20:19:44 +00001656 ;;
1657 x86_64)
1658 echo "TARGET_ARCH=x86_64" >> $config_mak
1659 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1660 echo "#define TARGET_I386 1" >> $config_h
1661 echo "#define TARGET_X86_64 1" >> $config_h
1662 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1663 then
1664 echo "#define USE_KQEMU 1" >> $config_h
1665 fi
aliguori7ba1e612008-11-05 16:04:33 +00001666 if test "$kvm" = "yes" ; then
1667 echo "CONFIG_KVM=yes" >> $config_mak
1668 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1669 echo "#define CONFIG_KVM 1" >> $config_h
1670 fi
aurel322408a522008-04-20 20:19:44 +00001671 ;;
1672 alpha)
1673 echo "TARGET_ARCH=alpha" >> $config_mak
1674 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1675 echo "#define TARGET_ALPHA 1" >> $config_h
1676 ;;
1677 arm|armeb)
1678 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001679 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1680 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001681 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001682 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001683 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001684 ;;
1685 cris)
1686 echo "TARGET_ARCH=cris" >> $config_mak
1687 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1688 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001689 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001690 ;;
1691 m68k)
1692 echo "TARGET_ARCH=m68k" >> $config_mak
1693 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1694 echo "#define TARGET_M68K 1" >> $config_h
1695 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001696 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001697 ;;
1698 mips|mipsel)
1699 echo "TARGET_ARCH=mips" >> $config_mak
1700 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1701 echo "#define TARGET_MIPS 1" >> $config_h
1702 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1703 ;;
1704 mipsn32|mipsn32el)
1705 echo "TARGET_ARCH=mipsn32" >> $config_mak
1706 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1707 echo "#define TARGET_MIPS 1" >> $config_h
1708 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1709 ;;
1710 mips64|mips64el)
1711 echo "TARGET_ARCH=mips64" >> $config_mak
1712 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1713 echo "#define TARGET_MIPS 1" >> $config_h
1714 echo "#define TARGET_MIPS64 1" >> $config_h
1715 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1716 ;;
1717 ppc)
1718 echo "TARGET_ARCH=ppc" >> $config_mak
1719 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1720 echo "#define TARGET_PPC 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001721 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001722 ;;
1723 ppcemb)
1724 echo "TARGET_ARCH=ppcemb" >> $config_mak
1725 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1726 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1727 echo "#define TARGET_PPC 1" >> $config_h
1728 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001729 if test "$kvm" = "yes" ; then
1730 echo "CONFIG_KVM=yes" >> $config_mak
1731 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1732 echo "#define CONFIG_KVM 1" >> $config_h
1733 fi
aurel32c8b35322009-01-24 15:07:34 +00001734 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001735 ;;
1736 ppc64)
1737 echo "TARGET_ARCH=ppc64" >> $config_mak
1738 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1739 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1740 echo "#define TARGET_PPC 1" >> $config_h
1741 echo "#define TARGET_PPC64 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001742 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001743 ;;
1744 ppc64abi32)
1745 echo "TARGET_ARCH=ppc64" >> $config_mak
1746 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1747 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1748 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1749 echo "#define TARGET_PPC 1" >> $config_h
1750 echo "#define TARGET_PPC64 1" >> $config_h
1751 echo "#define TARGET_ABI32 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001752 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001753 ;;
1754 sh4|sh4eb)
1755 echo "TARGET_ARCH=sh4" >> $config_mak
1756 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1757 echo "#define TARGET_SH4 1" >> $config_h
1758 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001759 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001760 ;;
1761 sparc)
1762 echo "TARGET_ARCH=sparc" >> $config_mak
1763 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1764 echo "#define TARGET_SPARC 1" >> $config_h
1765 ;;
1766 sparc64)
1767 echo "TARGET_ARCH=sparc64" >> $config_mak
1768 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1769 echo "#define TARGET_SPARC 1" >> $config_h
1770 echo "#define TARGET_SPARC64 1" >> $config_h
1771 elfload32="yes"
1772 ;;
1773 sparc32plus)
1774 echo "TARGET_ARCH=sparc64" >> $config_mak
1775 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1776 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1777 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1778 echo "#define TARGET_SPARC 1" >> $config_h
1779 echo "#define TARGET_SPARC64 1" >> $config_h
1780 echo "#define TARGET_ABI32 1" >> $config_h
1781 ;;
1782 *)
1783 echo "Unsupported target CPU"
1784 exit 1
1785 ;;
1786esac
bellardde83cd02003-06-15 20:25:43 +00001787if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001788 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1789 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1790fi
1791if test "$target_softmmu" = "yes" ; then
1792 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1793 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001794fi
bellard997344f2003-10-27 21:10:39 +00001795if test "$target_user_only" = "yes" ; then
1796 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1797 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1798fi
ths831b7822007-01-18 20:06:33 +00001799if test "$target_linux_user" = "yes" ; then
1800 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1801 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1802fi
1803if test "$target_darwin_user" = "yes" ; then
1804 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1805 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1806fi
pbrook56aebc82008-10-11 17:55:29 +00001807list=""
1808if test ! -z "$gdb_xml_files" ; then
1809 for x in $gdb_xml_files; do
1810 list="$list $source_path/gdb-xml/$x"
1811 done
1812fi
1813echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001814
aurel320938cda2008-04-11 21:36:06 +00001815if test "$target_cpu" = "arm" \
1816 -o "$target_cpu" = "armeb" \
1817 -o "$target_cpu" = "m68k" \
1818 -o "$target_cpu" = "mips" \
1819 -o "$target_cpu" = "mipsel" \
1820 -o "$target_cpu" = "mipsn32" \
1821 -o "$target_cpu" = "mipsn32el" \
1822 -o "$target_cpu" = "mips64" \
1823 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001824 -o "$target_cpu" = "ppc" \
1825 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001826 -o "$target_cpu" = "ppc64abi32" \
1827 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001828 -o "$target_cpu" = "sparc" \
1829 -o "$target_cpu" = "sparc64" \
1830 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001831 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1832 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1833fi
pbrooke5fe0c52006-06-11 13:32:59 +00001834if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1835 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1836 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1837fi
pbrookbd0c5662008-05-29 14:34:11 +00001838if test "$target_user_only" = "yes" \
1839 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1840 echo "#define USE_NPTL 1" >> $config_h
1841fi
blueswir1cb33da52007-10-09 16:34:29 +00001842# 32 bit ELF loader in addition to native 64 bit loader?
1843if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1844 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1845 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1846fi
blueswir184778502008-10-26 20:33:16 +00001847if test "$target_bsd_user" = "yes" ; then
1848 echo "CONFIG_BSD_USER=yes" >> $config_mak
1849 echo "#define CONFIG_BSD_USER 1" >> $config_h
1850fi
bellard5b0753e2005-03-01 21:37:28 +00001851
ths15d9ca02007-07-31 23:07:32 +00001852test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1853
bellard97a847b2003-08-10 21:36:04 +00001854done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001855
1856# build tree in object directory if source path is different from current one
1857if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001858 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001859 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001860 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001861 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001862 for dir in $DIRS ; do
1863 mkdir -p $dir
1864 done
bellardec530c82006-04-25 22:36:06 +00001865 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001866 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001867 rm -f $f
1868 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001869 done
1870fi