blob: af357132c4681a655a455bae3f85ea9b348a86cf [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"
aurel32f8393942009-04-13 18:45:38 +0000156debug_tcg="no"
aliguori03b4fe72008-10-07 19:16:17 +0000157sparse="no"
aliguori1625af82009-04-05 17:41:02 +0000158strip_opt="yes"
bellard7d132992003-03-06 23:23:54 +0000159bigendian="no"
bellard67b915a2004-03-31 23:37:16 +0000160mingw32="no"
161EXESUF=""
162gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +0000163slirp="yes"
aliguorie0e6c8c02008-07-23 18:14:33 +0000164vde="yes"
bellard102a52e2004-11-14 19:57:29 +0000165fmod_lib=""
166fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +0000167oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +0000168vnc_tls="yes"
aliguori2f9606b2009-03-06 20:27:28 +0000169vnc_sasl="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000170bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000171linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000172solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000173kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000174profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000175cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000176check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000177softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000178linux_user="no"
179darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000180bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000181build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000182uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000183curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000184aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000185nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000186mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000187bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000188kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000189kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000190aix="no"
ths77755342008-11-27 15:45:16 +0000191blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000192fdt="yes"
aliguori5368a422009-03-03 17:37:21 +0000193sdl_x11="no"
pbrook4a19f1e2009-04-07 23:17:49 +0000194pkgversion=""
bellard7d132992003-03-06 23:23:54 +0000195
196# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000197if check_define __linux__ ; then
198 targetos="Linux"
199elif check_define _WIN32 ; then
200 targetos='MINGW32'
blueswir1169dc5d2009-04-13 17:19:26 +0000201elif check_define __OpenBSD__ ; then
202 targetos='OpenBSD'
203elif check_define __sun__ ; then
204 targetos='SunOS'
aliguoriac0df512008-12-29 17:14:15 +0000205else
206 targetos=`uname -s`
207fi
bellard7d132992003-03-06 23:23:54 +0000208case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000209CYGWIN*)
210mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000211OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000212if [ "$cpu" = "i386" ] ; then
213 kqemu="yes"
214fi
malcc2de5c92008-06-28 19:13:06 +0000215audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000216;;
bellard67b915a2004-03-31 23:37:16 +0000217MINGW32*)
218mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000219if [ "$cpu" = "i386" ] ; then
220 kqemu="yes"
221fi
malcc2de5c92008-06-28 19:13:06 +0000222audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000223;;
ths5c40d2b2007-06-23 16:03:36 +0000224GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000225audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000226audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000227if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
228 kqemu="yes"
229fi
230;;
bellard7d3505c2004-05-12 19:32:15 +0000231FreeBSD)
232bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000233audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000234audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000235if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000236 kqemu="yes"
237fi
bellard7d3505c2004-05-12 19:32:15 +0000238;;
blueswir1c5e97232009-03-07 20:06:23 +0000239DragonFly)
240bsd="yes"
241audio_drv_list="oss"
242audio_possible_drivers="oss sdl esd pa"
243if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
244 kqemu="yes"
245fi
246aio="no"
247;;
bellard7d3505c2004-05-12 19:32:15 +0000248NetBSD)
249bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000250audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000251audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000252oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000253;;
254OpenBSD)
255bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000256openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000257audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000258audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000259oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000260;;
bellard83fb7ad2004-07-05 21:25:26 +0000261Darwin)
262bsd="yes"
263darwin="yes"
aliguori1b0f9cc2009-01-26 15:37:40 +0000264# 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 +0000265if [ "$cpu" = "i386" ] ; then
266 is_x86_64=`sysctl -n hw.optional.x86_64`
267 [ "$is_x86_64" = "1" ] && cpu=x86_64
aliguori1b0f9cc2009-01-26 15:37:40 +0000268fi
269if [ "$cpu" = "x86_64" ] ; then
270 OS_CFLAGS="-arch x86_64"
271 LDFLAGS="-arch x86_64"
272else
273 OS_CFLAGS="-mdynamic-no-pic"
274fi
ths831b7822007-01-18 20:06:33 +0000275darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000276cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000277audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000278audio_possible_drivers="coreaudio sdl fmod"
thsc2c59c32008-01-08 00:00:20 +0000279OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000280;;
bellardec530c82006-04-25 22:36:06 +0000281SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000282 solaris="yes"
283 make="gmake"
284 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000285 needs_libsunmath="no"
blueswir1acda94b2009-04-13 16:23:22 +0000286 kvm="no"
thsc2b84fa2007-02-10 23:21:21 +0000287 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000288 # have to select again, because `uname -m` returns i86pc
289 # even on an x86_64 box.
290 solariscpu=`isainfo -k`
291 if test "${solariscpu}" = "amd64" ; then
292 cpu="x86_64"
293 fi
thsc2b84fa2007-02-10 23:21:21 +0000294 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000295 if test "$solarisrev" -le 9 ; then
296 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
297 needs_libsunmath="yes"
298 else
299 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
300 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
301 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
302 echo "Studio 11 can be downloaded from www.sun.com."
303 exit 1
304 fi
305 fi
306 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000307 kqemu="yes"
308 fi
ths86b2bd92007-02-11 00:31:33 +0000309 fi
ths6b4d2ba2007-05-13 18:02:43 +0000310 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000311 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000312 fi
malcc2de5c92008-06-28 19:13:06 +0000313 audio_possible_drivers="oss sdl"
blueswir114d483e2009-04-13 16:27:08 +0000314 OS_CFLAGS=-std=gnu99
ths86b2bd92007-02-11 00:31:33 +0000315;;
malcb29fe3e2008-11-18 01:42:22 +0000316AIX)
317aix="yes"
318make="gmake"
319;;
bellard1d14ffa2005-10-30 18:58:22 +0000320*)
malc0c58ac12008-06-25 21:04:05 +0000321audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000322audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000323linux="yes"
ths831b7822007-01-18 20:06:33 +0000324linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000325usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000326if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000327 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000328 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000329fi
bellardfb065182004-11-09 23:09:44 +0000330;;
bellard7d132992003-03-06 23:23:54 +0000331esac
332
bellard7d3505c2004-05-12 19:32:15 +0000333if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000334 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000335 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000336 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000337 fi
blueswir184778502008-10-26 20:33:16 +0000338 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000339fi
340
bellard7d132992003-03-06 23:23:54 +0000341# find source path
pbrookad064842006-04-16 12:41:07 +0000342source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000343source_path_used="no"
344workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000345if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000346 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000347else
348 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000349fi
pbrook724db112008-02-03 19:20:13 +0000350[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000351
bellard85aa5182007-11-11 20:17:03 +0000352werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000353# generate compile errors on warnings for development builds
354#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
355#werror="yes";
356#fi
bellard85aa5182007-11-11 20:17:03 +0000357
bellard7d132992003-03-06 23:23:54 +0000358for opt do
pbrooka46e4032006-04-29 23:05:22 +0000359 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000360 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000361 --help|-h) show_help=yes
362 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000363 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000364 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000365 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000366 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000367 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000368 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000369 ;;
aliguoriac0df512008-12-29 17:14:15 +0000370 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000371 ;;
aliguoriac0df512008-12-29 17:14:15 +0000372 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000373 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000374 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000375 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000376 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000377 ;;
pbrook6a882642006-04-17 13:57:12 +0000378 --install=*) install="$optarg"
379 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000380 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000381 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000382 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000383 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000384 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000385 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000386 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000387 ;;
bellard7d132992003-03-06 23:23:54 +0000388 --enable-gprof) gprof="yes"
389 ;;
bellard43ce4df2003-06-09 19:53:12 +0000390 --static) static="yes"
391 ;;
bellard97a847b2003-08-10 21:36:04 +0000392 --disable-sdl) sdl="no"
393 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000394 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000395 ;;
malcc2de5c92008-06-28 19:13:06 +0000396 --fmod-inc=*) fmod_inc="$optarg"
397 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000398 --oss-lib=*) oss_lib="$optarg"
399 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000400 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000401 ;;
402 --audio-drv-list=*) audio_drv_list="$optarg"
403 ;;
aurel32f8393942009-04-13 18:45:38 +0000404 --enable-debug-tcg) debug_tcg="yes"
405 ;;
406 --disable-debug-tcg) debug_tcg="no"
407 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000408 --enable-sparse) sparse="yes"
409 ;;
410 --disable-sparse) sparse="no"
411 ;;
aliguori1625af82009-04-05 17:41:02 +0000412 --disable-strip) strip_opt="no"
413 ;;
ths8d5d2d42007-08-25 01:37:51 +0000414 --disable-vnc-tls) vnc_tls="no"
415 ;;
aliguori2f9606b2009-03-06 20:27:28 +0000416 --disable-vnc-sasl) vnc_sasl="no"
417 ;;
bellard443f1372004-06-04 11:13:20 +0000418 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000419 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000420 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000421 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000422 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000423 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000424 --disable-brlapi) brlapi="no"
425 ;;
balrogfb599c92008-09-28 23:49:55 +0000426 --disable-bluez) bluez="no"
427 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000428 --disable-kvm) kvm="no"
429 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000430 --enable-profiler) profiler="yes"
431 ;;
malcc2de5c92008-06-28 19:13:06 +0000432 --enable-cocoa)
433 cocoa="yes" ;
434 sdl="no" ;
435 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000436 ;;
bellard97ccc682005-07-02 13:32:17 +0000437 --disable-gfx-check) check_gfx="no"
438 ;;
pbrookcad25d62006-03-19 16:31:11 +0000439 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000440 ;;
pbrookcad25d62006-03-19 16:31:11 +0000441 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000442 ;;
ths831b7822007-01-18 20:06:33 +0000443 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000444 ;;
ths831b7822007-01-18 20:06:33 +0000445 --enable-linux-user) linux_user="yes"
446 ;;
447 --disable-darwin-user) darwin_user="no"
448 ;;
449 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000450 ;;
blueswir184778502008-10-26 20:33:16 +0000451 --disable-bsd-user) bsd_user="no"
452 ;;
453 --enable-bsd-user) bsd_user="yes"
454 ;;
pbrookc5937222006-05-14 11:30:38 +0000455 --enable-uname-release=*) uname_release="$optarg"
456 ;;
blueswir131422552007-04-16 18:27:06 +0000457 --sparc_cpu=*)
458 sparc_cpu="$optarg"
459 case $sparc_cpu in
460 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
461 target_cpu="sparc"; cpu="sparc" ;;
462 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
463 target_cpu="sparc"; cpu="sparc" ;;
464 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
465 target_cpu="sparc64"; cpu="sparc64" ;;
466 *) echo "undefined SPARC architecture. Exiting";exit 1;;
467 esac
468 ;;
bellard85aa5182007-11-11 20:17:03 +0000469 --enable-werror) werror="yes"
470 ;;
471 --disable-werror) werror="no"
472 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000473 --disable-curses) curses="no"
474 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000475 --disable-nptl) nptl="no"
476 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000477 --enable-mixemu) mixemu="yes"
478 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000479 --disable-aio) aio="no"
480 ;;
ths77755342008-11-27 15:45:16 +0000481 --disable-blobs) blobs="no"
482 ;;
aliguorieac30262008-11-05 16:28:56 +0000483 --kerneldir=*) kerneldir="$optarg"
484 ;;
pbrook4a19f1e2009-04-07 23:17:49 +0000485 --with-pkgversion=*) pkgversion=" ($optarg)"
486 ;;
balrog7f1559c2007-11-17 10:24:32 +0000487 *) echo "ERROR: unknown option $opt"; show_help="yes"
488 ;;
bellard7d132992003-03-06 23:23:54 +0000489 esac
490done
491
ths6f30fa82007-01-05 01:00:47 +0000492# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000493CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000494CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000495LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000496if test "$werror" = "yes" ; then
497CFLAGS="$CFLAGS -Werror"
498fi
ths6f30fa82007-01-05 01:00:47 +0000499
blueswir1d2c7c9b2008-11-01 14:50:20 +0000500if test "$solaris" = "no" ; then
501 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
502 LDFLAGS="$LDFLAGS -Wl,--warn-common"
503 fi
blueswir149237ac2008-09-17 19:05:19 +0000504fi
505
blueswir131422552007-04-16 18:27:06 +0000506#
507# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
508# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
509#
bellard40293e52008-01-31 11:32:10 +0000510case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000511 sparc) if test -z "$sparc_cpu" ; then
512 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
513 ARCH_LDFLAGS="-m32"
514 else
515 ARCH_CFLAGS="${SP_CFLAGS}"
516 ARCH_LDFLAGS="${SP_LDFLAGS}"
517 fi
blueswir1762e8232009-04-04 09:21:28 +0000518 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
519 if test "$solaris" = "no" ; then
520 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
521 fi
blueswir131422552007-04-16 18:27:06 +0000522 ;;
523 sparc64) if test -z "$sparc_cpu" ; then
524 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
525 ARCH_LDFLAGS="-m64"
526 else
527 ARCH_CFLAGS="${SP_CFLAGS}"
528 ARCH_LDFLAGS="${SP_LDFLAGS}"
529 fi
blueswir1762e8232009-04-04 09:21:28 +0000530 if test "$solaris" = "no" ; then
531 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
532 else
533 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
534 fi
blueswir131422552007-04-16 18:27:06 +0000535 ;;
ths76d83bd2007-11-18 21:22:10 +0000536 s390)
537 ARCH_CFLAGS="-march=z900"
538 ;;
bellard40293e52008-01-31 11:32:10 +0000539 i386)
540 ARCH_CFLAGS="-m32"
541 ARCH_LDFLAGS="-m32"
542 ;;
543 x86_64)
544 ARCH_CFLAGS="-m64"
545 ARCH_LDFLAGS="-m64"
546 ;;
blueswir131422552007-04-16 18:27:06 +0000547esac
548
pbrookaf5db582006-04-08 14:26:41 +0000549if test x"$show_help" = x"yes" ; then
550cat << EOF
551
552Usage: configure [options]
553Options: [defaults in brackets after descriptions]
554
555EOF
556echo "Standard options:"
557echo " --help print this message"
558echo " --prefix=PREFIX install in PREFIX [$prefix]"
559echo " --interp-prefix=PREFIX where to find shared libraries, etc."
560echo " use %M for cpu name [$interp_prefix]"
561echo " --target-list=LIST set target list [$target_list]"
562echo ""
563echo "kqemu kernel acceleration support:"
564echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000565echo ""
566echo "Advanced options (experts only):"
567echo " --source-path=PATH path of source code [$source_path]"
568echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
569echo " --cc=CC use C compiler CC [$cc]"
570echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
aurel322981fa92009-04-07 19:57:17 +0000571echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS"
572echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS"
pbrookaf5db582006-04-08 14:26:41 +0000573echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000574echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000575echo " --static enable static build [$static]"
aurel32f8393942009-04-13 18:45:38 +0000576echo " --enable-debug-tcg enable TCG debugging"
577echo " --disable-debug-tcg disable TCG debugging (default)"
aliguori890b1652008-10-07 21:22:41 +0000578echo " --enable-sparse enable sparse checker"
579echo " --disable-sparse disable sparse checker (default)"
aliguori1625af82009-04-05 17:41:02 +0000580echo " --disable-strip disable stripping binaries"
bellard85aa5182007-11-11 20:17:03 +0000581echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000582echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000583echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000584echo " --audio-drv-list=LIST set audio drivers list:"
585echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000586echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
587echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000588echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000589echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000590echo " --disable-vnc-tls disable TLS encryption for VNC server"
aliguori2f9606b2009-03-06 20:27:28 +0000591echo " --disable-vnc-sasl disable SASL encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000592echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000593echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000594echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000595echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000596echo " --enable-system enable all system emulation targets"
597echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000598echo " --enable-linux-user enable all linux usermode emulation targets"
599echo " --disable-linux-user disable all linux usermode emulation targets"
600echo " --enable-darwin-user enable all darwin usermode emulation targets"
601echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000602echo " --enable-bsd-user enable all BSD usermode emulation targets"
603echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000604echo " --fmod-lib path to FMOD library"
605echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000606echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000607echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000608echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000609echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000610echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000611echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000612echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000613echo ""
ths5bf08932006-12-23 00:33:26 +0000614echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000615exit 1
616fi
617
bellard67b915a2004-03-31 23:37:16 +0000618if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000619 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000620 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000621 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000622 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000623 bsd_user="no"
aliguori49dc7682009-03-08 16:26:59 +0000624 OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
aliguoricd01b4a2008-08-21 19:25:45 +0000625fi
626
aliguori03b4fe72008-10-07 19:16:17 +0000627if test ! -x "$(which cgcc 2>/dev/null)"; then
628 sparse="no"
629fi
630
bellardec530c82006-04-25 22:36:06 +0000631#
632# Solaris specific configure tool chain decisions
633#
634if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000635 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
636 if test -z "$solinst" ; then
637 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
638 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
639 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
640 exit 1
641 fi
642 if test "$solinst" = "/usr/sbin/install" ; then
643 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
644 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
645 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
646 exit 1
647 fi
bellardec530c82006-04-25 22:36:06 +0000648 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
649 if test -z "$sol_ar" ; then
650 echo "Error: No path includes ar"
651 if test -f /usr/ccs/bin/ar ; then
652 echo "Add /usr/ccs/bin to your path and rerun configure"
653 fi
654 exit 1
655 fi
ths5fafdf22007-09-16 21:08:06 +0000656fi
bellardec530c82006-04-25 22:36:06 +0000657
658
bellard5327cf42005-01-10 23:18:50 +0000659if test -z "$target_list" ; then
660# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000661 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000662 target_list="\
663i386-softmmu \
664x86_64-softmmu \
665arm-softmmu \
666cris-softmmu \
667m68k-softmmu \
668mips-softmmu \
669mipsel-softmmu \
670mips64-softmmu \
671mips64el-softmmu \
672ppc-softmmu \
673ppcemb-softmmu \
674ppc64-softmmu \
675sh4-softmmu \
676sh4eb-softmmu \
677sparc-softmmu \
678"
pbrook0a8e90f2006-03-19 14:54:16 +0000679 fi
bellard5327cf42005-01-10 23:18:50 +0000680# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000681 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000682 target_list="${target_list}\
683i386-linux-user \
684x86_64-linux-user \
685alpha-linux-user \
686arm-linux-user \
687armeb-linux-user \
688cris-linux-user \
689m68k-linux-user \
690mips-linux-user \
691mipsel-linux-user \
692ppc-linux-user \
693ppc64-linux-user \
694ppc64abi32-linux-user \
695sh4-linux-user \
696sh4eb-linux-user \
697sparc-linux-user \
698sparc64-linux-user \
699sparc32plus-linux-user \
700"
ths831b7822007-01-18 20:06:33 +0000701 fi
702# the following are Darwin specific
703 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000704 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000705 fi
blueswir184778502008-10-26 20:33:16 +0000706# the following are BSD specific
707 if [ "$bsd_user" = "yes" ] ; then
708 target_list="${target_list}\
blueswir131fc12d2009-04-11 11:09:31 +0000709i386-bsd-user \
710x86_64-bsd-user \
711sparc-bsd-user \
blueswir184778502008-10-26 20:33:16 +0000712sparc64-bsd-user \
713"
714 fi
bellard6e20a452005-06-05 15:56:02 +0000715else
pbrookb1a550a2006-04-16 13:28:56 +0000716 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000717fi
pbrook0a8e90f2006-03-19 14:54:16 +0000718if test -z "$target_list" ; then
719 echo "No targets enabled"
720 exit 1
721fi
bellard5327cf42005-01-10 23:18:50 +0000722
bellard7d132992003-03-06 23:23:54 +0000723if test -z "$cross_prefix" ; then
724
725# ---
726# big/little endian test
727cat > $TMPC << EOF
728#include <inttypes.h>
729int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000730 volatile uint32_t i=0x01234567;
731 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000732}
733EOF
734
aurel32178baee2008-12-08 18:11:57 +0000735if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000736$TMPE && bigendian="yes"
737else
738echo big/little test failed
739fi
740
741else
742
743# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000744if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000745 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000746 -o "$cpu" = "m68k" \
747 -o "$cpu" = "mips" \
748 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000749 -o "$cpu" = "ppc" \
750 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000751 -o "$cpu" = "s390" \
752 -o "$cpu" = "sparc" \
753 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000754 bigendian="yes"
755fi
756
757fi
758
bellardb6853692005-06-05 17:10:39 +0000759# host long bits test
760hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000761if test "$cpu" = "x86_64" \
762 -o "$cpu" = "alpha" \
763 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000764 -o "$cpu" = "sparc64" \
765 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000766 hostlongbits="64"
767fi
768
pbrookbd0c5662008-05-29 14:34:11 +0000769# Check host NPTL support
770cat > $TMPC <<EOF
771#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000772#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000773void foo()
774{
775#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
776#error bork
777#endif
778}
779EOF
780
balrog8c7f7572008-12-15 03:15:36 +0000781if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000782 :
783else
784 nptl="no"
785fi
786
bellard11d9f692004-04-02 20:55:59 +0000787##########################################
balrogac629222008-10-11 09:56:04 +0000788# zlib check
789
790cat > $TMPC << EOF
791#include <zlib.h>
792int main(void) { zlibVersion(); return 0; }
793EOF
balrog8c7f7572008-12-15 03:15:36 +0000794if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000795 :
796else
797 echo
798 echo "Error: zlib check failed"
799 echo "Make sure to have the zlib libs and headers installed."
800 echo
801 exit 1
802fi
803
804##########################################
bellard11d9f692004-04-02 20:55:59 +0000805# SDL probe
806
807sdl_too_old=no
808
809if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000810 sdl_config="sdl-config"
811 sdl=no
812 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000813
814cat > $TMPC << EOF
815#include <SDL.h>
816#undef main /* We don't want SDL to override our main() */
817int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
818EOF
balrog8c7f7572008-12-15 03:15:36 +0000819 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 +0000820 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
821 if test "$_sdlversion" -lt 121 ; then
822 sdl_too_old=yes
823 else
824 if test "$cocoa" = "no" ; then
825 sdl=yes
826 fi
827 fi
828
829 # static link with sdl ?
830 if test "$sdl" = "yes" ; then
831 aa="no"
832 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
833 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
834 if [ "$aa" = "yes" ] ; then
835 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000836 fi
bellard11d9f692004-04-02 20:55:59 +0000837
balrog8c7f7572008-12-15 03:15:36 +0000838 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 +0000839 sdl_static=yes
840 fi
841 fi # static link
842 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000843else
ths069b0bd2007-07-12 00:27:15 +0000844 # Make sure to disable cocoa if sdl was set
845 if test "$sdl" = "yes" ; then
846 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000847 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000848 fi
bellarda6e022a2004-04-02 21:55:47 +0000849fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000850
aliguori5368a422009-03-03 17:37:21 +0000851if test "$sdl" = "yes" ; then
852cat > $TMPC <<EOF
853#include <SDL.h>
854#if defined(SDL_VIDEO_DRIVER_X11)
855#include <X11/XKBlib.h>
856#else
857#error No x11 support
858#endif
859int main(void) { return 0; }
860EOF
861 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
862 sdl_x11="yes"
863 fi
864fi
865
ths8f28f3f2007-01-05 21:25:54 +0000866##########################################
ths8d5d2d42007-08-25 01:37:51 +0000867# VNC TLS detection
868if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000869cat > $TMPC <<EOF
870#include <gnutls/gnutls.h>
871int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
872EOF
873 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
874 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
875 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000876 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000877 :
878 else
879 vnc_tls="no"
880 fi
ths8d5d2d42007-08-25 01:37:51 +0000881fi
882
883##########################################
aliguori2f9606b2009-03-06 20:27:28 +0000884# VNC SASL detection
885if test "$vnc_sasl" = "yes" ; then
886cat > $TMPC <<EOF
887#include <sasl/sasl.h>
888#include <stdio.h>
889int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
890EOF
891 # Assuming Cyrus-SASL installed in /usr prefix
892 vnc_sasl_cflags=""
893 vnc_sasl_libs="-lsasl2"
894 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
895 $vnc_sasl_libs 2> /dev/null ; then
896 :
897 else
898 vnc_sasl="no"
899 fi
900fi
901
902##########################################
aliguori76655d62009-03-06 20:27:37 +0000903# fnmatch() probe, used for ACL routines
904fnmatch="no"
905cat > $TMPC << EOF
906#include <fnmatch.h>
907int main(void)
908{
909 fnmatch("foo", "foo", 0);
910 return 0;
911}
912EOF
913if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
914 fnmatch="yes"
915fi
916
917##########################################
ths8a16d272008-07-19 09:56:24 +0000918# vde libraries probe
919if test "$vde" = "yes" ; then
920 cat > $TMPC << EOF
921#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000922int main(void)
923{
924 struct vde_open_args a = {0, 0, 0};
925 vde_open("", "", &a);
926 return 0;
927}
ths8a16d272008-07-19 09:56:24 +0000928EOF
balrog8c7f7572008-12-15 03:15:36 +0000929 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000930 :
931 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000932 vde="no"
ths8a16d272008-07-19 09:56:24 +0000933 fi
934fi
935
936##########################################
malcc2de5c92008-06-28 19:13:06 +0000937# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000938
malcc2de5c92008-06-28 19:13:06 +0000939audio_drv_probe()
940{
941 drv=$1
942 hdr=$2
943 lib=$3
944 exp=$4
945 cfl=$5
946 cat > $TMPC << EOF
947#include <$hdr>
948int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000949EOF
balrog8c7f7572008-12-15 03:15:36 +0000950 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000951 :
952 else
953 echo
954 echo "Error: $drv check failed"
955 echo "Make sure to have the $drv libs and headers installed."
956 echo
957 exit 1
958 fi
959}
960
malc2fa7d3b2008-07-29 12:58:44 +0000961audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000962for drv in $audio_drv_list; do
963 case $drv in
964 alsa)
965 audio_drv_probe $drv alsa/asoundlib.h -lasound \
966 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
967 ;;
968
969 fmod)
970 if test -z $fmod_lib || test -z $fmod_inc; then
971 echo
972 echo "Error: You must specify path to FMOD library and headers"
973 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
974 echo
975 exit 1
976 fi
977 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
978 ;;
979
980 esd)
981 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
982 ;;
malcb8e59f12008-07-02 21:03:08 +0000983
984 pa)
985 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
986 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
987 ;;
988
blueswir12f6a1ab2008-08-21 18:00:53 +0000989 oss|sdl|core|wav|dsound)
990 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
991 ;;
992
malce4c63a62008-07-19 16:15:16 +0000993 *)
malc1c9b2a52008-07-19 16:57:30 +0000994 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000995 echo
996 echo "Error: Unknown driver '$drv' selected"
997 echo "Possible drivers are: $audio_possible_drivers"
998 echo
999 exit 1
1000 }
1001 ;;
malcc2de5c92008-06-28 19:13:06 +00001002 esac
1003done
ths8f28f3f2007-01-05 21:25:54 +00001004
balrog4d3b6f62008-02-10 16:33:14 +00001005##########################################
aurel322e4d9fb2008-04-08 06:01:02 +00001006# BrlAPI probe
1007
1008if test -z "$brlapi" ; then
1009 brlapi=no
1010cat > $TMPC << EOF
1011#include <brlapi.h>
1012int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1013EOF
aurel32178baee2008-12-08 18:11:57 +00001014 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +00001015 brlapi=yes
1016 fi # brlapi compile test
1017fi # -z $brlapi
1018
1019##########################################
balrog4d3b6f62008-02-10 16:33:14 +00001020# curses probe
1021
1022if test "$curses" = "yes" ; then
1023 curses=no
1024 cat > $TMPC << EOF
1025#include <curses.h>
blueswir15a8ff3a2009-04-13 16:18:34 +00001026#ifdef __OpenBSD__
1027#define resize_term resizeterm
1028#endif
1029int main(void) { resize_term(0, 0); return curses_version(); }
balrog4d3b6f62008-02-10 16:33:14 +00001030EOF
aurel32178baee2008-12-08 18:11:57 +00001031 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +00001032 curses=yes
1033 fi
1034fi # test "$curses"
1035
blueswir1414f0da2008-08-15 18:20:52 +00001036##########################################
balrogfb599c92008-09-28 23:49:55 +00001037# bluez support probe
1038if test "$bluez" = "yes" ; then
1039 `pkg-config bluez` || bluez="no"
1040fi
1041if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +00001042 cat > $TMPC << EOF
1043#include <bluetooth/bluetooth.h>
1044int main(void) { return bt_error(0); }
1045EOF
balrogfb599c92008-09-28 23:49:55 +00001046 bluez_cflags=`pkg-config --cflags bluez`
1047 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +00001048 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001049 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +00001050 :
1051 else
1052 bluez="no"
1053 fi
balrogfb599c92008-09-28 23:49:55 +00001054fi
1055
1056##########################################
aliguori7ba1e612008-11-05 16:04:33 +00001057# kvm probe
1058if test "$kvm" = "yes" ; then
1059 cat > $TMPC <<EOF
1060#include <linux/kvm.h>
aliguori9fd8d8d2009-01-15 21:57:30 +00001061#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
aliguori7ba1e612008-11-05 16:04:33 +00001062#error Invalid KVM version
1063#endif
aliguori9fd8d8d2009-01-15 21:57:30 +00001064#if !defined(KVM_CAP_USER_MEMORY)
1065#error Missing KVM capability KVM_CAP_USER_MEMORY
1066#endif
1067#if !defined(KVM_CAP_SET_TSS_ADDR)
1068#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1069#endif
1070#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1071#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1072#endif
aliguori7ba1e612008-11-05 16:04:33 +00001073int main(void) { return 0; }
1074EOF
aliguorieac30262008-11-05 16:28:56 +00001075 if test "$kerneldir" != "" ; then
1076 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +00001077 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1078 -a -d "$kerneldir/arch/x86/include" ; then
1079 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +00001080 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1081 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +00001082 elif test -d "$kerneldir/arch/$cpu/include" ; then
1083 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1084 fi
aliguorieac30262008-11-05 16:28:56 +00001085 else
1086 kvm_cflags=""
1087 fi
aliguori7ba1e612008-11-05 16:04:33 +00001088 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001089 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +00001090 :
1091 else
aliguori9fd8d8d2009-01-15 21:57:30 +00001092 kvm="no";
1093 if [ -x "`which awk 2>/dev/null`" ] && \
1094 [ -x "`which grep 2>/dev/null`" ]; then
blueswir1e4f51002009-03-09 17:36:50 +00001095 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
aliguori9fd8d8d2009-01-15 21:57:30 +00001096 | grep "error: " \
1097 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1098 if test "$kvmerr" != "" ; then
1099 kvm="no - (${kvmerr})"
1100 fi
1101 fi
aliguori7ba1e612008-11-05 16:04:33 +00001102 fi
1103fi
1104
1105##########################################
blueswir1414f0da2008-08-15 18:20:52 +00001106# AIO probe
aliguori3c529d92008-12-12 16:41:40 +00001107AIOLIBS=""
1108
blueswir1414f0da2008-08-15 18:20:52 +00001109if test "$aio" = "yes" ; then
1110 aio=no
1111 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +00001112#include <pthread.h>
blueswir1c9db92f2009-01-17 06:49:15 +00001113int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +00001114EOF
1115 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1116 aio=yes
aliguori3c529d92008-12-12 16:41:40 +00001117 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +00001118 fi
1119fi
1120
aliguoribf9298b2008-12-05 20:05:26 +00001121##########################################
1122# iovec probe
1123cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001124#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001125#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001126#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001127int main(void) { struct iovec iov; return 0; }
1128EOF
1129iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001130if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001131 iovec=yes
1132fi
1133
aurel32f652e6a2008-12-16 10:43:48 +00001134##########################################
aliguoriceb42de2009-04-07 18:43:28 +00001135# preadv probe
1136cat > $TMPC <<EOF
1137#include <sys/types.h>
1138#include <sys/uio.h>
1139#include <unistd.h>
1140int main(void) { preadv; }
1141EOF
1142preadv=no
1143if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1144 preadv=yes
1145fi
1146
1147##########################################
aurel32f652e6a2008-12-16 10:43:48 +00001148# fdt probe
1149if test "$fdt" = "yes" ; then
1150 fdt=no
1151 cat > $TMPC << EOF
1152int main(void) { return 0; }
1153EOF
1154 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1155 fdt=yes
1156 fi
1157fi
1158
aurel323b3f24a2009-04-15 16:12:13 +00001159#
1160# Check for xxxat() functions when we are building linux-user
1161# emulator. This is done because older glibc versions don't
1162# have syscall stubs for these implemented.
1163#
1164atfile=no
1165if [ "$linux_user" = "yes" ] ; then
1166 cat > $TMPC << EOF
1167#define _ATFILE_SOURCE
1168#include <sys/types.h>
1169#include <fcntl.h>
1170#include <unistd.h>
1171
1172int
1173main(void)
1174{
1175 /* try to unlink nonexisting file */
1176 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1177}
1178EOF
1179 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1180 atfile=yes
1181 fi
1182fi
1183
aurel3239386ac2009-04-15 19:48:17 +00001184# Check for inotify functions when we are building linux-user
aurel323b3f24a2009-04-15 16:12:13 +00001185# emulator. This is done because older glibc versions don't
1186# have syscall stubs for these implemented. In that case we
1187# don't provide them even if kernel supports them.
1188#
1189inotify=no
1190if [ "$linux_user" = "yes" ] ; then
1191 cat > $TMPC << EOF
1192#include <sys/inotify.h>
1193
1194int
1195main(void)
1196{
1197 /* try to start inotify */
aurel328690e422009-04-17 13:50:32 +00001198 return inotify_init();
aurel323b3f24a2009-04-15 16:12:13 +00001199}
1200EOF
1201 if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1202 inotify=yes
1203 fi
1204fi
1205
pbrookcc8ae6d2006-04-23 17:57:59 +00001206# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001207if [ -x "`which texi2html 2>/dev/null`" ] && \
1208 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001209 build_docs="yes"
1210fi
1211
aliguorida93a1f2008-12-12 20:02:52 +00001212##########################################
1213# Do we need librt
1214cat > $TMPC <<EOF
1215#include <signal.h>
1216#include <time.h>
1217int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1218EOF
1219
1220rt=no
balrog8c7f7572008-12-15 03:15:36 +00001221if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001222 :
balrog8c7f7572008-12-15 03:15:36 +00001223elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001224 rt=yes
1225fi
1226
1227if test "$rt" = "yes" ; then
1228 # Hack, we should have a general purpose LIBS for this sort of thing
1229 AIOLIBS="$AIOLIBS -lrt"
1230fi
1231
bellard11d9f692004-04-02 20:55:59 +00001232if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001233 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001234 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001235 fi
1236 mansuffix=""
1237 datasuffix=""
1238 docsuffix=""
1239 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001240else
pbrook308c3592007-02-27 00:52:01 +00001241 if test -z "$prefix" ; then
1242 prefix="/usr/local"
1243 fi
1244 mansuffix="/share/man"
1245 datasuffix="/share/qemu"
1246 docsuffix="/share/doc/qemu"
1247 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001248fi
bellard5a671352003-10-01 00:13:48 +00001249
bellard43ce4df2003-06-09 19:53:12 +00001250echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001251echo "BIOS directory $prefix$datasuffix"
1252echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001253if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001254echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001255echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001256fi
bellard5a671352003-10-01 00:13:48 +00001257echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001258echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001259echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001260echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001261echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001262echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001263echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001264echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001265echo "target list $target_list"
aurel32ade25b02009-04-16 09:58:41 +00001266echo "tcg debug enabled $debug_tcg"
bellard43ce4df2003-06-09 19:53:12 +00001267echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001268echo "sparse enabled $sparse"
aliguori1625af82009-04-05 17:41:02 +00001269echo "strip binaries $strip_opt"
bellard05c2a3e2006-02-08 22:39:17 +00001270echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001271echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001272echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001273if test "$darwin" = "yes" ; then
1274 echo "Cocoa support $cocoa"
1275fi
bellard97a847b2003-08-10 21:36:04 +00001276echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001277if test "$sdl" != "no" ; then
1278 echo "SDL static link $sdl_static"
1279fi
balrog4d3b6f62008-02-10 16:33:14 +00001280echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001281echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001282echo "Audio drivers $audio_drv_list"
1283echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001284echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001285echo "VNC TLS support $vnc_tls"
1286if test "$vnc_tls" = "yes" ; then
1287 echo " TLS CFLAGS $vnc_tls_cflags"
1288 echo " TLS LIBS $vnc_tls_libs"
1289fi
aliguori2f9606b2009-03-06 20:27:28 +00001290echo "VNC SASL support $vnc_sasl"
1291if test "$vnc_sasl" = "yes" ; then
1292 echo " SASL CFLAGS $vnc_sasl_cflags"
1293 echo " SASL LIBS $vnc_sasl_libs"
1294fi
blueswir131422552007-04-16 18:27:06 +00001295if test -n "$sparc_cpu"; then
1296 echo "Target Sparc Arch $sparc_cpu"
1297fi
bellard07f4ddb2005-04-23 17:44:28 +00001298echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001299echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001300echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001301[ ! -z "$uname_release" ] && \
1302echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001303echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001304echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001305echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001306echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001307echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001308echo "fdt support $fdt"
aliguoriceb42de2009-04-07 18:43:28 +00001309echo "preadv support $preadv"
bellard67b915a2004-03-31 23:37:16 +00001310
bellard97a847b2003-08-10 21:36:04 +00001311if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001312echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001313fi
malcd4742de2008-11-29 22:04:31 +00001314if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001315 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001316 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001317fi
bellard24b55b92005-03-01 22:30:41 +00001318#if test "$sdl_static" = "no"; then
1319# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1320#fi
bellard97a847b2003-08-10 21:36:04 +00001321config_mak="config-host.mak"
1322config_h="config-host.h"
1323
bellard7c1f25b2004-04-22 00:02:08 +00001324#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001325
ths15d9ca02007-07-31 23:07:32 +00001326test -f $config_h && mv $config_h ${config_h}~
1327
bellard97a847b2003-08-10 21:36:04 +00001328echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001329printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001330printf " '%s'" "$0" "$@" >> $config_mak
1331echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001332echo "/* Automatically generated by configure - do not modify */" > $config_h
1333
1334echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001335echo "bindir=\${prefix}$binsuffix" >> $config_mak
1336echo "mandir=\${prefix}$mansuffix" >> $config_mak
1337echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001338echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001339echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001340echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001341echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001342echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001343echo "HOST_CC=$host_cc" >> $config_mak
1344echo "AR=$ar" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001345# XXX: only use CFLAGS and LDFLAGS ?
1346# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1347# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001348echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001349echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1350echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1351echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001352echo "CFLAGS=$CFLAGS" >> $config_mak
1353echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001354echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001355echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001356case "$cpu" in
1357 i386)
1358 echo "ARCH=i386" >> $config_mak
1359 echo "#define HOST_I386 1" >> $config_h
1360 ;;
1361 x86_64)
1362 echo "ARCH=x86_64" >> $config_mak
1363 echo "#define HOST_X86_64 1" >> $config_h
1364 ;;
1365 alpha)
1366 echo "ARCH=alpha" >> $config_mak
1367 echo "#define HOST_ALPHA 1" >> $config_h
1368 ;;
1369 armv4b)
1370 echo "ARCH=arm" >> $config_mak
1371 echo "#define HOST_ARM 1" >> $config_h
1372 ;;
1373 armv4l)
1374 echo "ARCH=arm" >> $config_mak
1375 echo "#define HOST_ARM 1" >> $config_h
1376 ;;
1377 cris)
1378 echo "ARCH=cris" >> $config_mak
1379 echo "#define HOST_CRIS 1" >> $config_h
1380 ;;
1381 hppa)
1382 echo "ARCH=hppa" >> $config_mak
1383 echo "#define HOST_HPPA 1" >> $config_h
1384 ;;
1385 ia64)
1386 echo "ARCH=ia64" >> $config_mak
1387 echo "#define HOST_IA64 1" >> $config_h
1388 ;;
1389 m68k)
1390 echo "ARCH=m68k" >> $config_mak
1391 echo "#define HOST_M68K 1" >> $config_h
1392 ;;
1393 mips)
1394 echo "ARCH=mips" >> $config_mak
1395 echo "#define HOST_MIPS 1" >> $config_h
1396 ;;
1397 mips64)
1398 echo "ARCH=mips64" >> $config_mak
1399 echo "#define HOST_MIPS64 1" >> $config_h
1400 ;;
malcfdf7ed92009-01-14 18:39:52 +00001401 ppc)
1402 echo "ARCH=ppc" >> $config_mak
1403 echo "#define HOST_PPC 1" >> $config_h
1404 ;;
1405 ppc64)
1406 echo "ARCH=ppc64" >> $config_mak
1407 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001408 ;;
1409 s390)
1410 echo "ARCH=s390" >> $config_mak
1411 echo "#define HOST_S390 1" >> $config_h
1412 ;;
1413 sparc)
1414 echo "ARCH=sparc" >> $config_mak
1415 echo "#define HOST_SPARC 1" >> $config_h
1416 ;;
1417 sparc64)
1418 echo "ARCH=sparc64" >> $config_mak
1419 echo "#define HOST_SPARC64 1" >> $config_h
1420 ;;
1421 *)
1422 echo "Unsupported CPU = $cpu"
1423 exit 1
1424 ;;
1425esac
aurel32f8393942009-04-13 18:45:38 +00001426if test "$debug_tcg" = "yes" ; then
1427 echo "#define DEBUG_TCG 1" >> $config_h
1428fi
aliguori03b4fe72008-10-07 19:16:17 +00001429if test "$sparse" = "yes" ; then
1430 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1431 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1432 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1433fi
aliguori1625af82009-04-05 17:41:02 +00001434if test "$strip_opt" = "yes" ; then
1435 echo "STRIP_OPT=-s" >> $config_mak
1436fi
bellard7d132992003-03-06 23:23:54 +00001437if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001438 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1439 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1440fi
bellardb6853692005-06-05 17:10:39 +00001441echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001442if test "$mingw32" = "yes" ; then
1443 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001444 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001445else
1446 cat > $TMPC << EOF
1447#include <byteswap.h>
1448int main(void) { return bswap_32(0); }
1449EOF
aurel32178baee2008-12-08 18:11:57 +00001450 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001451 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1452 fi
blueswir113606772008-12-05 17:54:09 +00001453 cat > $TMPC << EOF
1454#include <sys/endian.h>
1455#include <sys/types.h>
1456#include <machine/bswap.h>
1457int main(void) { return bswap32(0); }
1458EOF
aurel32178baee2008-12-08 18:11:57 +00001459 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001460 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1461 fi
bellard67b915a2004-03-31 23:37:16 +00001462fi
blueswir1128ab2f2008-08-15 18:33:42 +00001463
1464if [ "$openbsd" = "yes" ] ; then
1465 echo "#define ENOTSUP 4096" >> $config_h
1466fi
1467
bellard83fb7ad2004-07-05 21:25:26 +00001468if test "$darwin" = "yes" ; then
1469 echo "CONFIG_DARWIN=yes" >> $config_mak
1470 echo "#define CONFIG_DARWIN 1" >> $config_h
1471fi
malcb29fe3e2008-11-18 01:42:22 +00001472
1473if test "$aix" = "yes" ; then
1474 echo "CONFIG_AIX=yes" >> $config_mak
1475 echo "#define CONFIG_AIX 1" >> $config_h
1476fi
1477
bellardec530c82006-04-25 22:36:06 +00001478if test "$solaris" = "yes" ; then
1479 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001480 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001481 if test "$needs_libsunmath" = "yes" ; then
1482 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1483 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1484 fi
bellardec530c82006-04-25 22:36:06 +00001485fi
blueswir131422552007-04-16 18:27:06 +00001486if test -n "$sparc_cpu"; then
1487 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1488 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1489fi
bellard67b915a2004-03-31 23:37:16 +00001490if test "$gdbstub" = "yes" ; then
1491 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1492 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1493fi
bellard97a847b2003-08-10 21:36:04 +00001494if test "$gprof" = "yes" ; then
1495 echo "TARGET_GPROF=yes" >> $config_mak
1496 echo "#define HAVE_GPROF 1" >> $config_h
1497fi
1498if test "$static" = "yes" ; then
1499 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001500 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001501fi
bellard05c2a3e2006-02-08 22:39:17 +00001502if test $profiler = "yes" ; then
1503 echo "#define CONFIG_PROFILER 1" >> $config_h
1504fi
bellardc20709a2004-04-21 23:27:19 +00001505if test "$slirp" = "yes" ; then
1506 echo "CONFIG_SLIRP=yes" >> $config_mak
1507 echo "#define CONFIG_SLIRP 1" >> $config_h
1508fi
ths8a16d272008-07-19 09:56:24 +00001509if test "$vde" = "yes" ; then
1510 echo "CONFIG_VDE=yes" >> $config_mak
1511 echo "#define CONFIG_VDE 1" >> $config_h
1512 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1513fi
malc0c58ac12008-06-25 21:04:05 +00001514for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001515 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001516 echo "$def=yes" >> $config_mak
1517 echo "#define $def 1" >> $config_h
1518done
1519echo "#define AUDIO_DRIVERS \\" >> $config_h
1520for drv in $audio_drv_list; do
1521 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001522 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001523 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001524 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001525 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1526 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001527 elif test "$drv" = "oss"; then
1528 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001529 fi
1530done
1531echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001532if test "$mixemu" = "yes" ; then
1533 echo "CONFIG_MIXEMU=yes" >> $config_mak
1534 echo "#define CONFIG_MIXEMU 1" >> $config_h
1535fi
ths8d5d2d42007-08-25 01:37:51 +00001536if test "$vnc_tls" = "yes" ; then
1537 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1538 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1539 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1540 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1541fi
aliguori2f9606b2009-03-06 20:27:28 +00001542if test "$vnc_sasl" = "yes" ; then
1543 echo "CONFIG_VNC_SASL=yes" >> $config_mak
1544 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1545 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1546 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1547fi
aliguori76655d62009-03-06 20:27:37 +00001548if test "$fnmatch" = "yes" ; then
1549 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1550fi
pbrookb1a550a2006-04-16 13:28:56 +00001551qemu_version=`head $source_path/VERSION`
1552echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001553echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001554
pbrook4a19f1e2009-04-07 23:17:49 +00001555echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1556
bellard97a847b2003-08-10 21:36:04 +00001557echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001558if [ "$source_path_used" = "yes" ]; then
1559 echo "VPATH=$source_path" >> $config_mak
1560fi
bellard97a847b2003-08-10 21:36:04 +00001561echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001562if [ "$build_docs" = "yes" ] ; then
1563 echo "BUILD_DOCS=yes" >> $config_mak
1564fi
bellard49ecc3f2007-11-07 19:25:15 +00001565if test "$static" = "yes"; then
1566 sdl1=$sdl_static
1567else
1568 sdl1=$sdl
1569fi
1570if test "$sdl1" = "yes" ; then
1571 echo "#define CONFIG_SDL 1" >> $config_h
1572 echo "CONFIG_SDL=yes" >> $config_mak
1573 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1574 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
aliguori5368a422009-03-03 17:37:21 +00001575 elif test "$sdl_x11" = "yes" ; then
1576 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001577 else
1578 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1579 fi
1580 if [ "${aa}" = "yes" ] ; then
1581 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1582 else
1583 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1584 fi
1585fi
1586if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001587 echo "#define CONFIG_COCOA 1" >> $config_h
1588 echo "CONFIG_COCOA=yes" >> $config_mak
1589fi
1590if test "$curses" = "yes" ; then
1591 echo "#define CONFIG_CURSES 1" >> $config_h
1592 echo "CONFIG_CURSES=yes" >> $config_mak
1593 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001594fi
aurel323b3f24a2009-04-15 16:12:13 +00001595if test "$atfile" = "yes" ; then
1596 echo "#define CONFIG_ATFILE 1" >> $config_h
1597fi
1598if test "$inotify" = "yes" ; then
1599 echo "#define CONFIG_INOTIFY 1" >> $config_h
1600fi
aurel322e4d9fb2008-04-08 06:01:02 +00001601if test "$brlapi" = "yes" ; then
1602 echo "CONFIG_BRLAPI=yes" >> $config_mak
1603 echo "#define CONFIG_BRLAPI 1" >> $config_h
1604 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1605fi
balrogfb599c92008-09-28 23:49:55 +00001606if test "$bluez" = "yes" ; then
1607 echo "CONFIG_BLUEZ=yes" >> $config_mak
1608 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1609 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1610 echo "#define CONFIG_BLUEZ 1" >> $config_h
1611fi
blueswir1414f0da2008-08-15 18:20:52 +00001612if test "$aio" = "yes" ; then
1613 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001614 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001615fi
ths77755342008-11-27 15:45:16 +00001616if test "$blobs" = "yes" ; then
1617 echo "INSTALL_BLOBS=yes" >> $config_mak
1618fi
aliguoribf9298b2008-12-05 20:05:26 +00001619if test "$iovec" = "yes" ; then
1620 echo "#define HAVE_IOVEC 1" >> $config_h
1621fi
aliguoriceb42de2009-04-07 18:43:28 +00001622if test "$preadv" = "yes" ; then
1623 echo "#define HAVE_PREADV 1" >> $config_h
1624fi
aurel32f652e6a2008-12-16 10:43:48 +00001625if test "$fdt" = "yes" ; then
1626 echo "#define HAVE_FDT 1" >> $config_h
1627 echo "FDT_LIBS=-lfdt" >> $config_mak
1628fi
bellard97a847b2003-08-10 21:36:04 +00001629
bellard83fb7ad2004-07-05 21:25:26 +00001630# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001631if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001632 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001633 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
blueswir1179a2c12009-03-08 08:23:32 +00001634 echo "#define HOST_BSD 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001635fi
1636
pbrookc5937222006-05-14 11:30:38 +00001637echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1638
blueswir168063642008-11-22 21:03:55 +00001639# USB host support
1640case "$usb" in
1641linux)
1642 echo "HOST_USB=linux" >> $config_mak
1643;;
1644bsd)
1645 echo "HOST_USB=bsd" >> $config_mak
1646;;
1647*)
1648 echo "HOST_USB=stub" >> $config_mak
1649;;
1650esac
1651
pbrookc39e3332007-09-22 16:49:14 +00001652tools=
1653if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
aliguori3dd1f8e2009-04-05 19:29:26 +00001654 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001655 if [ "$linux" = "yes" ] ; then
aliguori3dd1f8e2009-04-05 19:29:26 +00001656 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001657 fi
pbrookc39e3332007-09-22 16:49:14 +00001658fi
1659echo "TOOLS=$tools" >> $config_mak
1660
ths15d9ca02007-07-31 23:07:32 +00001661test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1662
bellard1d14ffa2005-10-30 18:58:22 +00001663for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001664target_dir="$target"
1665config_mak=$target_dir/config.mak
1666config_h=$target_dir/config.h
1667target_cpu=`echo $target | cut -d '-' -f 1`
1668target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001669[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001670[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1671[ "$target_cpu" = "mips" ] && target_bigendian=yes
1672[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1673[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001674[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001675[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001676[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001677[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001678[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001679[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1680[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1681[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001682target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001683target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001684target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001685target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001686target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001687case "$target" in
1688 ${target_cpu}-softmmu)
1689 target_softmmu="yes"
1690 ;;
1691 ${target_cpu}-linux-user)
1692 target_user_only="yes"
1693 target_linux_user="yes"
1694 ;;
1695 ${target_cpu}-darwin-user)
1696 target_user_only="yes"
1697 target_darwin_user="yes"
1698 ;;
blueswir184778502008-10-26 20:33:16 +00001699 ${target_cpu}-bsd-user)
1700 target_user_only="yes"
1701 target_bsd_user="yes"
1702 ;;
pbrook9e407a82007-05-26 16:38:53 +00001703 *)
1704 echo "ERROR: Target '$target' not recognised"
1705 exit 1
1706 ;;
1707esac
ths831b7822007-01-18 20:06:33 +00001708
bellard97ccc682005-07-02 13:32:17 +00001709if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001710 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001711 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001712 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001713 echo "Note that this will disable all output from the virtual graphics card"
1714 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001715 exit 1;
1716fi
1717
bellard7c1f25b2004-04-22 00:02:08 +00001718#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001719
ths15d9ca02007-07-31 23:07:32 +00001720test -f $config_h && mv $config_h ${config_h}~
1721
bellard97a847b2003-08-10 21:36:04 +00001722mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001723mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001724mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001725if 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 +00001726 mkdir -p $target_dir/nwfpe
1727fi
1728
bellardec530c82006-04-25 22:36:06 +00001729#
1730# don't use ln -sf as not all "ln -sf" over write the file/link
1731#
1732rm -f $target_dir/Makefile
1733ln -s $source_path/Makefile.target $target_dir/Makefile
1734
bellard97a847b2003-08-10 21:36:04 +00001735
1736echo "# Automatically generated by configure - do not modify" > $config_mak
1737echo "/* Automatically generated by configure - do not modify */" > $config_h
1738
1739
1740echo "include ../config-host.mak" >> $config_mak
1741echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001742
pbrooke5fe0c52006-06-11 13:32:59 +00001743bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001744elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001745target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001746interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1747echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001748gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001749
aliguori5985ece2008-11-05 19:59:25 +00001750# Make sure the target and host cpus are compatible
1751if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
malcfdf7ed92009-01-14 18:39:52 +00001752 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001753 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1754 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001755 kvm="no"
1756fi
1757# Disable KVM for linux-user
1758if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1759 kvm="no"
1760fi
1761
aurel322408a522008-04-20 20:19:44 +00001762case "$target_cpu" in
1763 i386)
1764 echo "TARGET_ARCH=i386" >> $config_mak
1765 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1766 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001767 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001768 then
1769 echo "#define USE_KQEMU 1" >> $config_h
1770 fi
aliguori7ba1e612008-11-05 16:04:33 +00001771 if test "$kvm" = "yes" ; then
1772 echo "CONFIG_KVM=yes" >> $config_mak
1773 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001774 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001775 fi
aurel322408a522008-04-20 20:19:44 +00001776 ;;
1777 x86_64)
1778 echo "TARGET_ARCH=x86_64" >> $config_mak
1779 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1780 echo "#define TARGET_I386 1" >> $config_h
1781 echo "#define TARGET_X86_64 1" >> $config_h
1782 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1783 then
1784 echo "#define USE_KQEMU 1" >> $config_h
1785 fi
aliguori7ba1e612008-11-05 16:04:33 +00001786 if test "$kvm" = "yes" ; then
1787 echo "CONFIG_KVM=yes" >> $config_mak
1788 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1789 echo "#define CONFIG_KVM 1" >> $config_h
1790 fi
aurel322408a522008-04-20 20:19:44 +00001791 ;;
1792 alpha)
1793 echo "TARGET_ARCH=alpha" >> $config_mak
1794 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1795 echo "#define TARGET_ALPHA 1" >> $config_h
1796 ;;
1797 arm|armeb)
1798 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001799 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1800 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001801 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001802 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001803 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001804 ;;
1805 cris)
1806 echo "TARGET_ARCH=cris" >> $config_mak
1807 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1808 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001809 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001810 ;;
1811 m68k)
1812 echo "TARGET_ARCH=m68k" >> $config_mak
1813 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1814 echo "#define TARGET_M68K 1" >> $config_h
1815 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001816 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001817 ;;
1818 mips|mipsel)
1819 echo "TARGET_ARCH=mips" >> $config_mak
1820 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1821 echo "#define TARGET_MIPS 1" >> $config_h
1822 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1823 ;;
1824 mipsn32|mipsn32el)
1825 echo "TARGET_ARCH=mipsn32" >> $config_mak
1826 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1827 echo "#define TARGET_MIPS 1" >> $config_h
1828 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1829 ;;
1830 mips64|mips64el)
1831 echo "TARGET_ARCH=mips64" >> $config_mak
1832 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1833 echo "#define TARGET_MIPS 1" >> $config_h
1834 echo "#define TARGET_MIPS64 1" >> $config_h
1835 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1836 ;;
1837 ppc)
1838 echo "TARGET_ARCH=ppc" >> $config_mak
1839 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1840 echo "#define TARGET_PPC 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001841 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001842 ;;
1843 ppcemb)
1844 echo "TARGET_ARCH=ppcemb" >> $config_mak
1845 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1846 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1847 echo "#define TARGET_PPC 1" >> $config_h
1848 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001849 if test "$kvm" = "yes" ; then
1850 echo "CONFIG_KVM=yes" >> $config_mak
1851 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1852 echo "#define CONFIG_KVM 1" >> $config_h
1853 fi
aurel32c8b35322009-01-24 15:07:34 +00001854 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001855 ;;
1856 ppc64)
1857 echo "TARGET_ARCH=ppc64" >> $config_mak
1858 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1859 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1860 echo "#define TARGET_PPC 1" >> $config_h
1861 echo "#define TARGET_PPC64 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001862 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001863 ;;
1864 ppc64abi32)
1865 echo "TARGET_ARCH=ppc64" >> $config_mak
1866 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1867 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1868 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1869 echo "#define TARGET_PPC 1" >> $config_h
1870 echo "#define TARGET_PPC64 1" >> $config_h
1871 echo "#define TARGET_ABI32 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001872 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001873 ;;
1874 sh4|sh4eb)
1875 echo "TARGET_ARCH=sh4" >> $config_mak
1876 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1877 echo "#define TARGET_SH4 1" >> $config_h
1878 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001879 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001880 ;;
1881 sparc)
1882 echo "TARGET_ARCH=sparc" >> $config_mak
1883 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1884 echo "#define TARGET_SPARC 1" >> $config_h
1885 ;;
1886 sparc64)
1887 echo "TARGET_ARCH=sparc64" >> $config_mak
1888 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1889 echo "#define TARGET_SPARC 1" >> $config_h
1890 echo "#define TARGET_SPARC64 1" >> $config_h
1891 elfload32="yes"
1892 ;;
1893 sparc32plus)
1894 echo "TARGET_ARCH=sparc64" >> $config_mak
1895 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1896 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1897 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1898 echo "#define TARGET_SPARC 1" >> $config_h
1899 echo "#define TARGET_SPARC64 1" >> $config_h
1900 echo "#define TARGET_ABI32 1" >> $config_h
1901 ;;
1902 *)
1903 echo "Unsupported target CPU"
1904 exit 1
1905 ;;
1906esac
bellardde83cd02003-06-15 20:25:43 +00001907if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001908 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1909 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1910fi
1911if test "$target_softmmu" = "yes" ; then
1912 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1913 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001914fi
bellard997344f2003-10-27 21:10:39 +00001915if test "$target_user_only" = "yes" ; then
1916 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1917 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1918fi
ths831b7822007-01-18 20:06:33 +00001919if test "$target_linux_user" = "yes" ; then
1920 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1921 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1922fi
1923if test "$target_darwin_user" = "yes" ; then
1924 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1925 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1926fi
pbrook56aebc82008-10-11 17:55:29 +00001927list=""
1928if test ! -z "$gdb_xml_files" ; then
1929 for x in $gdb_xml_files; do
1930 list="$list $source_path/gdb-xml/$x"
1931 done
1932fi
1933echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001934
aurel320938cda2008-04-11 21:36:06 +00001935if test "$target_cpu" = "arm" \
1936 -o "$target_cpu" = "armeb" \
1937 -o "$target_cpu" = "m68k" \
1938 -o "$target_cpu" = "mips" \
1939 -o "$target_cpu" = "mipsel" \
1940 -o "$target_cpu" = "mipsn32" \
1941 -o "$target_cpu" = "mipsn32el" \
1942 -o "$target_cpu" = "mips64" \
1943 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001944 -o "$target_cpu" = "ppc" \
1945 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001946 -o "$target_cpu" = "ppc64abi32" \
1947 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001948 -o "$target_cpu" = "sparc" \
1949 -o "$target_cpu" = "sparc64" \
1950 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001951 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1952 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1953fi
pbrooke5fe0c52006-06-11 13:32:59 +00001954if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1955 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1956 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1957fi
pbrookbd0c5662008-05-29 14:34:11 +00001958if test "$target_user_only" = "yes" \
1959 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1960 echo "#define USE_NPTL 1" >> $config_h
1961fi
blueswir1cb33da52007-10-09 16:34:29 +00001962# 32 bit ELF loader in addition to native 64 bit loader?
1963if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1964 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1965 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1966fi
blueswir184778502008-10-26 20:33:16 +00001967if test "$target_bsd_user" = "yes" ; then
1968 echo "CONFIG_BSD_USER=yes" >> $config_mak
1969 echo "#define CONFIG_BSD_USER 1" >> $config_h
1970fi
bellard5b0753e2005-03-01 21:37:28 +00001971
ths15d9ca02007-07-31 23:07:32 +00001972test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1973
bellard97a847b2003-08-10 21:36:04 +00001974done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001975
1976# build tree in object directory if source path is different from current one
1977if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001978 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001979 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001980 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001981 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001982 for dir in $DIRS ; do
1983 mkdir -p $dir
1984 done
bellardec530c82006-04-25 22:36:06 +00001985 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001986 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001987 rm -f $f
1988 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001989 done
1990fi