blob: 0c3c27d33168738a0cc2869903ab0ef32525e608 [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"
Anthony Liguori7aa486f2009-07-11 08:48:29 -050037objcopy="objcopy"
38ld="ld"
aliguoriac0df512008-12-29 17:14:15 +000039
40# parse CC options first
41for opt do
42 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
43 case "$opt" in
44 --cross-prefix=*) cross_prefix="$optarg"
45 ;;
46 --cc=*) cc="$optarg"
47 ;;
48 esac
49done
50
51# OS specific
52# Using uname is really, really broken. Once we have the right set of checks
53# we can eliminate it's usage altogether
54
55cc="${cross_prefix}${cc}"
56ar="${cross_prefix}${ar}"
57strip="${cross_prefix}${strip}"
Anthony Liguori7aa486f2009-07-11 08:48:29 -050058objcopy="${cross_prefix}${objcopy}"
59ld="${cross_prefix}${ld}"
aliguoriac0df512008-12-29 17:14:15 +000060
61# check that the C compiler works.
62cat > $TMPC <<EOF
63int main(void) {}
64EOF
65
66if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
67 : C compiler works ok
68else
69 echo "ERROR: \"$cc\" either does not exist or does not work"
70 exit 1
71fi
72
73check_define() {
74cat > $TMPC <<EOF
75#if !defined($1)
76#error Not defined
77#endif
78int main(void) { return 0; }
79EOF
80 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
81}
82
83if check_define __i386__ ; then
84 cpu="i386"
85elif check_define __x86_64__ ; then
86 cpu="x86_64"
blueswir13aa9bd62008-12-31 16:55:26 +000087elif check_define __sparc__ ; then
88 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
89 # They must be specified using --sparc_cpu
90 if check_define __arch64__ ; then
91 cpu="sparc64"
92 else
93 cpu="sparc"
94 fi
malcfdf7ed92009-01-14 18:39:52 +000095elif check_define _ARCH_PPC ; then
96 if check_define _ARCH_PPC64 ; then
97 cpu="ppc64"
98 else
99 cpu="ppc"
100 fi
aliguoriac0df512008-12-29 17:14:15 +0000101else
malcfdf7ed92009-01-14 18:39:52 +0000102 cpu=`uname -m`
aliguoriac0df512008-12-29 17:14:15 +0000103fi
104
bellard5327cf42005-01-10 23:18:50 +0000105target_list=""
bellard7d132992003-03-06 23:23:54 +0000106case "$cpu" in
107 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +0000108 cpu="i386"
bellard7d132992003-03-06 23:23:54 +0000109 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000110 x86_64|amd64)
111 cpu="x86_64"
112 ;;
113 alpha)
114 cpu="alpha"
115 ;;
bellardba680552005-03-13 09:49:52 +0000116 armv*b)
bellard808c4952004-12-19 23:33:47 +0000117 cpu="armv4b"
118 ;;
bellardba680552005-03-13 09:49:52 +0000119 armv*l)
bellard7d132992003-03-06 23:23:54 +0000120 cpu="armv4l"
121 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000122 cris)
123 cpu="cris"
bellard7d132992003-03-06 23:23:54 +0000124 ;;
aurel32f54b3f92008-04-12 20:14:54 +0000125 parisc|parisc64)
126 cpu="hppa"
127 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000128 ia64)
129 cpu="ia64"
130 ;;
131 m68k)
132 cpu="m68k"
bellard7d132992003-03-06 23:23:54 +0000133 ;;
Edgar E. Iglesias72b675c2009-05-20 21:17:31 +0200134 microblaze)
135 cpu="microblaze"
136 ;;
bellard7d132992003-03-06 23:23:54 +0000137 mips)
138 cpu="mips"
139 ;;
thsfbe4f652007-04-01 11:16:48 +0000140 mips64)
141 cpu="mips64"
142 ;;
malcfdf7ed92009-01-14 18:39:52 +0000143 ppc)
144 cpu="ppc"
145 ;;
146 ppc64)
147 cpu="ppc64"
thse7daa602007-10-08 13:38:27 +0000148 ;;
ths0e7b8a92007-08-01 00:09:31 +0000149 s390*)
bellardfb3e5842003-03-29 17:32:36 +0000150 cpu="s390"
151 ;;
blueswir131422552007-04-16 18:27:06 +0000152 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000153 cpu="sparc"
154 ;;
155 sparc64)
156 cpu="sparc64"
157 ;;
bellard7d132992003-03-06 23:23:54 +0000158 *)
159 cpu="unknown"
160 ;;
161esac
162gprof="no"
aurel32f8393942009-04-13 18:45:38 +0000163debug_tcg="no"
Paul Brookf3d08ee2009-06-04 11:39:04 +0100164debug="no"
aliguori03b4fe72008-10-07 19:16:17 +0000165sparse="no"
aliguori1625af82009-04-05 17:41:02 +0000166strip_opt="yes"
bellard7d132992003-03-06 23:23:54 +0000167bigendian="no"
bellard67b915a2004-03-31 23:37:16 +0000168mingw32="no"
169EXESUF=""
bellard443f1372004-06-04 11:13:20 +0000170slirp="yes"
aliguorie0e6c8c02008-07-23 18:14:33 +0000171vde="yes"
bellard102a52e2004-11-14 19:57:29 +0000172fmod_lib=""
173fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +0000174oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +0000175vnc_tls="yes"
aliguori2f9606b2009-03-06 20:27:28 +0000176vnc_sasl="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000177bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000178linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000179solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000180kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000181profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000182cocoa="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000183softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000184linux_user="no"
185darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000186bsd_user="no"
Anthony Liguori70ec5dc2009-05-14 08:25:04 -0500187build_docs="yes"
pbrookc5937222006-05-14 11:30:38 +0000188uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000189curses="yes"
Alexander Graf769ce762009-05-11 17:41:42 +0200190curl="yes"
aliguorie5d355d2009-04-24 18:03:15 +0000191pthread="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000192aio="yes"
aliguorie5d355d2009-04-24 18:03:15 +0000193io_thread="no"
pbrookbd0c5662008-05-29 14:34:11 +0000194nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000195mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000196bluez="yes"
Jan Kiszkadff840342009-06-14 20:05:02 +0200197kvm="no"
aliguorieac30262008-11-05 16:28:56 +0000198kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000199aix="no"
ths77755342008-11-27 15:45:16 +0000200blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000201fdt="yes"
Anthony Liguorif92f8af2009-05-20 13:01:02 -0500202sdl="yes"
aliguori5368a422009-03-03 17:37:21 +0000203sdl_x11="no"
aliguorie37630c2009-04-22 15:19:10 +0000204xen="yes"
pbrook4a19f1e2009-04-07 23:17:49 +0000205pkgversion=""
bellard7d132992003-03-06 23:23:54 +0000206
207# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000208if check_define __linux__ ; then
209 targetos="Linux"
210elif check_define _WIN32 ; then
211 targetos='MINGW32'
blueswir1169dc5d2009-04-13 17:19:26 +0000212elif check_define __OpenBSD__ ; then
213 targetos='OpenBSD'
214elif check_define __sun__ ; then
215 targetos='SunOS'
aliguoriac0df512008-12-29 17:14:15 +0000216else
217 targetos=`uname -s`
218fi
bellard7d132992003-03-06 23:23:54 +0000219case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000220CYGWIN*)
221mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000222OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000223if [ "$cpu" = "i386" ] ; then
224 kqemu="yes"
225fi
malcc2de5c92008-06-28 19:13:06 +0000226audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000227;;
bellard67b915a2004-03-31 23:37:16 +0000228MINGW32*)
229mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000230if [ "$cpu" = "i386" ] ; then
231 kqemu="yes"
232fi
malcc2de5c92008-06-28 19:13:06 +0000233audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000234;;
ths5c40d2b2007-06-23 16:03:36 +0000235GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000236audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000237audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000238if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
239 kqemu="yes"
240fi
241;;
bellard7d3505c2004-05-12 19:32:15 +0000242FreeBSD)
243bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000244audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000245audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000246if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000247 kqemu="yes"
248fi
bellard7d3505c2004-05-12 19:32:15 +0000249;;
blueswir1c5e97232009-03-07 20:06:23 +0000250DragonFly)
251bsd="yes"
252audio_drv_list="oss"
253audio_possible_drivers="oss sdl esd pa"
254if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
255 kqemu="yes"
256fi
257aio="no"
258;;
bellard7d3505c2004-05-12 19:32:15 +0000259NetBSD)
260bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000261audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000262audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000263oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000264;;
265OpenBSD)
266bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000267openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000268audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000269audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000270oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000271;;
bellard83fb7ad2004-07-05 21:25:26 +0000272Darwin)
273bsd="yes"
274darwin="yes"
aliguori1b0f9cc2009-01-26 15:37:40 +0000275# 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 +0000276if [ "$cpu" = "i386" ] ; then
277 is_x86_64=`sysctl -n hw.optional.x86_64`
278 [ "$is_x86_64" = "1" ] && cpu=x86_64
aliguori1b0f9cc2009-01-26 15:37:40 +0000279fi
280if [ "$cpu" = "x86_64" ] ; then
281 OS_CFLAGS="-arch x86_64"
282 LDFLAGS="-arch x86_64"
283else
284 OS_CFLAGS="-mdynamic-no-pic"
285fi
ths831b7822007-01-18 20:06:33 +0000286darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000287cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000288audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000289audio_possible_drivers="coreaudio sdl fmod"
thsc2c59c32008-01-08 00:00:20 +0000290OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000291;;
bellardec530c82006-04-25 22:36:06 +0000292SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000293 solaris="yes"
294 make="gmake"
295 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000296 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000297 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000298 # have to select again, because `uname -m` returns i86pc
299 # even on an x86_64 box.
300 solariscpu=`isainfo -k`
301 if test "${solariscpu}" = "amd64" ; then
302 cpu="x86_64"
303 fi
thsc2b84fa2007-02-10 23:21:21 +0000304 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000305 if test "$solarisrev" -le 9 ; then
306 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
307 needs_libsunmath="yes"
308 else
309 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
310 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
311 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
312 echo "Studio 11 can be downloaded from www.sun.com."
313 exit 1
314 fi
315 fi
316 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000317 kqemu="yes"
318 fi
ths86b2bd92007-02-11 00:31:33 +0000319 fi
ths6b4d2ba2007-05-13 18:02:43 +0000320 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000321 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000322 fi
malcc2de5c92008-06-28 19:13:06 +0000323 audio_possible_drivers="oss sdl"
blueswir114d483e2009-04-13 16:27:08 +0000324 OS_CFLAGS=-std=gnu99
ths86b2bd92007-02-11 00:31:33 +0000325;;
malcb29fe3e2008-11-18 01:42:22 +0000326AIX)
327aix="yes"
328make="gmake"
329;;
bellard1d14ffa2005-10-30 18:58:22 +0000330*)
malc0c58ac12008-06-25 21:04:05 +0000331audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000332audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000333linux="yes"
ths831b7822007-01-18 20:06:33 +0000334linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000335usb="linux"
Jan Kiszkadff840342009-06-14 20:05:02 +0200336kvm="yes"
bellard07f4ddb2005-04-23 17:44:28 +0000337if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000338 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000339 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000340fi
bellardfb065182004-11-09 23:09:44 +0000341;;
bellard7d132992003-03-06 23:23:54 +0000342esac
343
bellard7d3505c2004-05-12 19:32:15 +0000344if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000345 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000346 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000347 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000348 fi
blueswir184778502008-10-26 20:33:16 +0000349 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000350fi
351
bellard7d132992003-03-06 23:23:54 +0000352# find source path
pbrookad064842006-04-16 12:41:07 +0000353source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000354source_path_used="no"
355workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000356if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000357 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000358else
359 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000360fi
pbrook724db112008-02-03 19:20:13 +0000361[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000362
Anthony Liguori487fefd2009-06-11 13:28:25 -0500363werror=""
bellard85aa5182007-11-11 20:17:03 +0000364
bellard7d132992003-03-06 23:23:54 +0000365for opt do
pbrooka46e4032006-04-29 23:05:22 +0000366 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000367 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000368 --help|-h) show_help=yes
369 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000370 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000371 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000372 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000373 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000374 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000375 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000376 ;;
aliguoriac0df512008-12-29 17:14:15 +0000377 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000378 ;;
aliguoriac0df512008-12-29 17:14:15 +0000379 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000380 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000381 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000382 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000383 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000384 ;;
pbrook6a882642006-04-17 13:57:12 +0000385 --install=*) install="$optarg"
386 ;;
Jan Kiszkae3fc14c2009-06-30 21:29:03 +0200387 --extra-cflags=*) EXTRA_CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000388 ;;
Jan Kiszkae3fc14c2009-06-30 21:29:03 +0200389 --extra-ldflags=*) EXTRA_LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000390 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000391 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000392 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000393 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000394 ;;
bellard7d132992003-03-06 23:23:54 +0000395 --enable-gprof) gprof="yes"
396 ;;
bellard43ce4df2003-06-09 19:53:12 +0000397 --static) static="yes"
398 ;;
bellard97a847b2003-08-10 21:36:04 +0000399 --disable-sdl) sdl="no"
400 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000401 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000402 ;;
malcc2de5c92008-06-28 19:13:06 +0000403 --fmod-inc=*) fmod_inc="$optarg"
404 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000405 --oss-lib=*) oss_lib="$optarg"
406 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000407 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000408 ;;
409 --audio-drv-list=*) audio_drv_list="$optarg"
410 ;;
aurel32f8393942009-04-13 18:45:38 +0000411 --enable-debug-tcg) debug_tcg="yes"
412 ;;
413 --disable-debug-tcg) debug_tcg="no"
414 ;;
Paul Brookf3d08ee2009-06-04 11:39:04 +0100415 --enable-debug)
416 # Enable debugging options that aren't excessively noisy
417 debug_tcg="yes"
418 debug="yes"
419 strip_opt="no"
420 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000421 --enable-sparse) sparse="yes"
422 ;;
423 --disable-sparse) sparse="no"
424 ;;
aliguori1625af82009-04-05 17:41:02 +0000425 --disable-strip) strip_opt="no"
426 ;;
ths8d5d2d42007-08-25 01:37:51 +0000427 --disable-vnc-tls) vnc_tls="no"
428 ;;
aliguori2f9606b2009-03-06 20:27:28 +0000429 --disable-vnc-sasl) vnc_sasl="no"
430 ;;
bellard443f1372004-06-04 11:13:20 +0000431 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000432 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000433 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000434 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000435 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000436 ;;
aliguorie37630c2009-04-22 15:19:10 +0000437 --disable-xen) xen="no"
438 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000439 --disable-brlapi) brlapi="no"
440 ;;
balrogfb599c92008-09-28 23:49:55 +0000441 --disable-bluez) bluez="no"
442 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000443 --disable-kvm) kvm="no"
444 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000445 --enable-profiler) profiler="yes"
446 ;;
malcc2de5c92008-06-28 19:13:06 +0000447 --enable-cocoa)
448 cocoa="yes" ;
449 sdl="no" ;
450 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000451 ;;
pbrookcad25d62006-03-19 16:31:11 +0000452 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000453 ;;
pbrookcad25d62006-03-19 16:31:11 +0000454 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000455 ;;
ths831b7822007-01-18 20:06:33 +0000456 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000457 ;;
ths831b7822007-01-18 20:06:33 +0000458 --enable-linux-user) linux_user="yes"
459 ;;
460 --disable-darwin-user) darwin_user="no"
461 ;;
462 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000463 ;;
blueswir184778502008-10-26 20:33:16 +0000464 --disable-bsd-user) bsd_user="no"
465 ;;
466 --enable-bsd-user) bsd_user="yes"
467 ;;
pbrookc5937222006-05-14 11:30:38 +0000468 --enable-uname-release=*) uname_release="$optarg"
469 ;;
blueswir131422552007-04-16 18:27:06 +0000470 --sparc_cpu=*)
471 sparc_cpu="$optarg"
472 case $sparc_cpu in
473 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
Blue Swirl600309b2009-07-03 17:44:00 +0000474 target_arch2="sparc"; cpu="sparc" ;;
blueswir131422552007-04-16 18:27:06 +0000475 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
Blue Swirl600309b2009-07-03 17:44:00 +0000476 target_arch2="sparc"; cpu="sparc" ;;
blueswir131422552007-04-16 18:27:06 +0000477 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
Blue Swirl600309b2009-07-03 17:44:00 +0000478 target_arch2="sparc64"; cpu="sparc64" ;;
blueswir131422552007-04-16 18:27:06 +0000479 *) echo "undefined SPARC architecture. Exiting";exit 1;;
480 esac
481 ;;
bellard85aa5182007-11-11 20:17:03 +0000482 --enable-werror) werror="yes"
483 ;;
484 --disable-werror) werror="no"
485 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000486 --disable-curses) curses="no"
487 ;;
Alexander Graf769ce762009-05-11 17:41:42 +0200488 --disable-curl) curl="no"
489 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000490 --disable-nptl) nptl="no"
491 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000492 --enable-mixemu) mixemu="yes"
493 ;;
aliguorie5d355d2009-04-24 18:03:15 +0000494 --disable-pthread) pthread="no"
495 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000496 --disable-aio) aio="no"
497 ;;
aliguorie5d355d2009-04-24 18:03:15 +0000498 --enable-io-thread) io_thread="yes"
499 ;;
ths77755342008-11-27 15:45:16 +0000500 --disable-blobs) blobs="no"
501 ;;
aliguorieac30262008-11-05 16:28:56 +0000502 --kerneldir=*) kerneldir="$optarg"
503 ;;
pbrook4a19f1e2009-04-07 23:17:49 +0000504 --with-pkgversion=*) pkgversion=" ($optarg)"
505 ;;
Anthony Liguori70ec5dc2009-05-14 08:25:04 -0500506 --disable-docs) build_docs="no"
507 ;;
balrog7f1559c2007-11-17 10:24:32 +0000508 *) echo "ERROR: unknown option $opt"; show_help="yes"
509 ;;
bellard7d132992003-03-06 23:23:54 +0000510 esac
511done
512
ths6f30fa82007-01-05 01:00:47 +0000513# default flags for all hosts
Paul Brookf3d08ee2009-06-04 11:39:04 +0100514CFLAGS="$CFLAGS -g -fno-strict-aliasing"
515if test "$debug" = "no" ; then
516 CFLAGS="$CFLAGS -O2"
517fi
blueswir1e0e36fe2008-12-07 19:16:27 +0000518CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000519LDFLAGS="$LDFLAGS -g"
Blue Swirl1172f652009-06-13 15:37:55 +0000520
521# Consult white-list to determine whether to enable werror
522# by default. Only enable by default for git builds
523if test -z "$werror" ; then
524 z_version=`cut -f3 -d. $source_path/VERSION`
525 if test "$z_version" = "50" -a \
526 "$linux" = "yes" ; then
527 werror="yes"
528 else
529 werror="no"
530 fi
531fi
532
bellard85aa5182007-11-11 20:17:03 +0000533if test "$werror" = "yes" ; then
Blue Swirl1172f652009-06-13 15:37:55 +0000534 CFLAGS="$CFLAGS -Werror"
bellard85aa5182007-11-11 20:17:03 +0000535fi
ths6f30fa82007-01-05 01:00:47 +0000536
blueswir1d2c7c9b2008-11-01 14:50:20 +0000537if test "$solaris" = "no" ; then
538 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
539 LDFLAGS="$LDFLAGS -Wl,--warn-common"
540 fi
blueswir149237ac2008-09-17 19:05:19 +0000541fi
542
blueswir131422552007-04-16 18:27:06 +0000543#
544# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
545# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
546#
bellard40293e52008-01-31 11:32:10 +0000547case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000548 sparc) if test -z "$sparc_cpu" ; then
549 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
550 ARCH_LDFLAGS="-m32"
551 else
552 ARCH_CFLAGS="${SP_CFLAGS}"
553 ARCH_LDFLAGS="${SP_LDFLAGS}"
554 fi
blueswir1762e8232009-04-04 09:21:28 +0000555 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3"
556 if test "$solaris" = "no" ; then
557 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6"
558 fi
blueswir131422552007-04-16 18:27:06 +0000559 ;;
560 sparc64) if test -z "$sparc_cpu" ; then
561 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
562 ARCH_LDFLAGS="-m64"
563 else
564 ARCH_CFLAGS="${SP_CFLAGS}"
565 ARCH_LDFLAGS="${SP_LDFLAGS}"
566 fi
blueswir1762e8232009-04-04 09:21:28 +0000567 if test "$solaris" = "no" ; then
568 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7"
569 else
570 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7"
571 fi
blueswir131422552007-04-16 18:27:06 +0000572 ;;
ths76d83bd2007-11-18 21:22:10 +0000573 s390)
574 ARCH_CFLAGS="-march=z900"
575 ;;
bellard40293e52008-01-31 11:32:10 +0000576 i386)
577 ARCH_CFLAGS="-m32"
578 ARCH_LDFLAGS="-m32"
579 ;;
580 x86_64)
581 ARCH_CFLAGS="-m64"
582 ARCH_LDFLAGS="-m64"
583 ;;
blueswir131422552007-04-16 18:27:06 +0000584esac
585
pbrookaf5db582006-04-08 14:26:41 +0000586if test x"$show_help" = x"yes" ; then
587cat << EOF
588
589Usage: configure [options]
590Options: [defaults in brackets after descriptions]
591
592EOF
593echo "Standard options:"
594echo " --help print this message"
595echo " --prefix=PREFIX install in PREFIX [$prefix]"
596echo " --interp-prefix=PREFIX where to find shared libraries, etc."
597echo " use %M for cpu name [$interp_prefix]"
598echo " --target-list=LIST set target list [$target_list]"
599echo ""
600echo "kqemu kernel acceleration support:"
601echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000602echo ""
603echo "Advanced options (experts only):"
604echo " --source-path=PATH path of source code [$source_path]"
605echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
606echo " --cc=CC use C compiler CC [$cc]"
607echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
Jan Kiszkae3fc14c2009-06-30 21:29:03 +0200608echo " --extra-cflags=CFLAGS append extra C compiler flags CFLAGS"
609echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS"
pbrookaf5db582006-04-08 14:26:41 +0000610echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000611echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000612echo " --static enable static build [$static]"
aurel32f8393942009-04-13 18:45:38 +0000613echo " --enable-debug-tcg enable TCG debugging"
614echo " --disable-debug-tcg disable TCG debugging (default)"
Stefan Weil09695a42009-06-06 16:51:30 +0200615echo " --enable-debug enable common debug build options"
aliguori890b1652008-10-07 21:22:41 +0000616echo " --enable-sparse enable sparse checker"
617echo " --disable-sparse disable sparse checker (default)"
aliguori1625af82009-04-05 17:41:02 +0000618echo " --disable-strip disable stripping binaries"
bellard85aa5182007-11-11 20:17:03 +0000619echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000620echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000621echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000622echo " --audio-drv-list=LIST set audio drivers list:"
623echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000624echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
625echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000626echo " --enable-mixemu enable mixer emulation"
aliguorie37630c2009-04-22 15:19:10 +0000627echo " --disable-xen disable xen backend driver support"
aurel322e4d9fb2008-04-08 06:01:02 +0000628echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000629echo " --disable-vnc-tls disable TLS encryption for VNC server"
aliguori2f9606b2009-03-06 20:27:28 +0000630echo " --disable-vnc-sasl disable SASL encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000631echo " --disable-curses disable curses output"
Alexander Graf769ce762009-05-11 17:41:42 +0200632echo " --disable-curl disable curl connectivity"
balrogfb599c92008-09-28 23:49:55 +0000633echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000634echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000635echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000636echo " --enable-system enable all system emulation targets"
637echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000638echo " --enable-linux-user enable all linux usermode emulation targets"
639echo " --disable-linux-user disable all linux usermode emulation targets"
640echo " --enable-darwin-user enable all darwin usermode emulation targets"
641echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000642echo " --enable-bsd-user enable all BSD usermode emulation targets"
643echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000644echo " --fmod-lib path to FMOD library"
645echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000646echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000647echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000648echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000649echo " --disable-vde disable support for vde network"
aliguorie5d355d2009-04-24 18:03:15 +0000650echo " --disable-pthread disable pthread support"
blueswir1414f0da2008-08-15 18:20:52 +0000651echo " --disable-aio disable AIO support"
aliguorie5d355d2009-04-24 18:03:15 +0000652echo " --enable-io-thread enable IO thread"
ths77755342008-11-27 15:45:16 +0000653echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000654echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000655echo ""
ths5bf08932006-12-23 00:33:26 +0000656echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000657exit 1
658fi
659
bellard67b915a2004-03-31 23:37:16 +0000660if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000661 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000662 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000663 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000664 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000665 bsd_user="no"
aliguori49dc7682009-03-08 16:26:59 +0000666 OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501"
aliguoricd01b4a2008-08-21 19:25:45 +0000667fi
668
aliguori03b4fe72008-10-07 19:16:17 +0000669if test ! -x "$(which cgcc 2>/dev/null)"; then
670 sparse="no"
671fi
672
bellardec530c82006-04-25 22:36:06 +0000673#
674# Solaris specific configure tool chain decisions
675#
676if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000677 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
678 if test -z "$solinst" ; then
679 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
680 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
681 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
682 exit 1
683 fi
684 if test "$solinst" = "/usr/sbin/install" ; then
685 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
686 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
687 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
688 exit 1
689 fi
bellardec530c82006-04-25 22:36:06 +0000690 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
691 if test -z "$sol_ar" ; then
692 echo "Error: No path includes ar"
693 if test -f /usr/ccs/bin/ar ; then
694 echo "Add /usr/ccs/bin to your path and rerun configure"
695 fi
696 exit 1
697 fi
ths5fafdf22007-09-16 21:08:06 +0000698fi
bellardec530c82006-04-25 22:36:06 +0000699
700
bellard5327cf42005-01-10 23:18:50 +0000701if test -z "$target_list" ; then
702# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000703 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000704 target_list="\
705i386-softmmu \
706x86_64-softmmu \
707arm-softmmu \
708cris-softmmu \
709m68k-softmmu \
Edgar E. Iglesias72b675c2009-05-20 21:17:31 +0200710microblaze-softmmu \
aurel322408a522008-04-20 20:19:44 +0000711mips-softmmu \
712mipsel-softmmu \
713mips64-softmmu \
714mips64el-softmmu \
715ppc-softmmu \
716ppcemb-softmmu \
717ppc64-softmmu \
718sh4-softmmu \
719sh4eb-softmmu \
720sparc-softmmu \
Igor V. Kovalenko1b64fca2009-06-23 18:04:16 +0000721sparc64-softmmu \
aurel322408a522008-04-20 20:19:44 +0000722"
pbrook0a8e90f2006-03-19 14:54:16 +0000723 fi
bellard5327cf42005-01-10 23:18:50 +0000724# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000725 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000726 target_list="${target_list}\
727i386-linux-user \
728x86_64-linux-user \
729alpha-linux-user \
730arm-linux-user \
731armeb-linux-user \
732cris-linux-user \
733m68k-linux-user \
Edgar E. Iglesias72b675c2009-05-20 21:17:31 +0200734microblaze-linux-user \
aurel322408a522008-04-20 20:19:44 +0000735mips-linux-user \
736mipsel-linux-user \
737ppc-linux-user \
738ppc64-linux-user \
739ppc64abi32-linux-user \
740sh4-linux-user \
741sh4eb-linux-user \
742sparc-linux-user \
743sparc64-linux-user \
744sparc32plus-linux-user \
745"
ths831b7822007-01-18 20:06:33 +0000746 fi
747# the following are Darwin specific
748 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000749 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000750 fi
blueswir184778502008-10-26 20:33:16 +0000751# the following are BSD specific
752 if [ "$bsd_user" = "yes" ] ; then
753 target_list="${target_list}\
blueswir131fc12d2009-04-11 11:09:31 +0000754i386-bsd-user \
755x86_64-bsd-user \
756sparc-bsd-user \
blueswir184778502008-10-26 20:33:16 +0000757sparc64-bsd-user \
758"
759 fi
bellard6e20a452005-06-05 15:56:02 +0000760else
pbrookb1a550a2006-04-16 13:28:56 +0000761 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000762fi
pbrook0a8e90f2006-03-19 14:54:16 +0000763if test -z "$target_list" ; then
764 echo "No targets enabled"
765 exit 1
766fi
bellard5327cf42005-01-10 23:18:50 +0000767
bellard7d132992003-03-06 23:23:54 +0000768if test -z "$cross_prefix" ; then
769
770# ---
771# big/little endian test
772cat > $TMPC << EOF
773#include <inttypes.h>
774int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000775 volatile uint32_t i=0x01234567;
776 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000777}
778EOF
779
aurel32178baee2008-12-08 18:11:57 +0000780if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000781$TMPE && bigendian="yes"
782else
783echo big/little test failed
784fi
785
786else
787
788# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000789if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000790 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000791 -o "$cpu" = "m68k" \
792 -o "$cpu" = "mips" \
793 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000794 -o "$cpu" = "ppc" \
795 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000796 -o "$cpu" = "s390" \
797 -o "$cpu" = "sparc" \
798 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000799 bigendian="yes"
800fi
801
802fi
803
bellardb6853692005-06-05 17:10:39 +0000804# host long bits test
805hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000806if test "$cpu" = "x86_64" \
807 -o "$cpu" = "alpha" \
808 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000809 -o "$cpu" = "sparc64" \
810 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000811 hostlongbits="64"
812fi
813
pbrookbd0c5662008-05-29 14:34:11 +0000814# Check host NPTL support
815cat > $TMPC <<EOF
816#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000817#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000818void foo()
819{
820#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
821#error bork
822#endif
823}
824EOF
825
balrog8c7f7572008-12-15 03:15:36 +0000826if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000827 :
828else
829 nptl="no"
830fi
831
bellard11d9f692004-04-02 20:55:59 +0000832##########################################
balrogac629222008-10-11 09:56:04 +0000833# zlib check
834
835cat > $TMPC << EOF
836#include <zlib.h>
837int main(void) { zlibVersion(); return 0; }
838EOF
balrog8c7f7572008-12-15 03:15:36 +0000839if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000840 :
841else
842 echo
843 echo "Error: zlib check failed"
844 echo "Make sure to have the zlib libs and headers installed."
845 echo
846 exit 1
847fi
848
849##########################################
aliguorie37630c2009-04-22 15:19:10 +0000850# xen probe
851
852if test "$xen" = "yes" ; then
853cat > $TMPC <<EOF
854#include <xenctrl.h>
855#include <xs.h>
Christoph Eggerdf7a6072009-06-30 14:59:38 +0200856int main(void) { xs_daemon_open(); xc_interface_open(); return 0; }
aliguorie37630c2009-04-22 15:19:10 +0000857EOF
Christoph Eggerdf7a6072009-06-30 14:59:38 +0200858 if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then
aliguorie37630c2009-04-22 15:19:10 +0000859 :
860 else
861 xen="no"
862 fi
863fi
864
865##########################################
bellard11d9f692004-04-02 20:55:59 +0000866# SDL probe
867
868sdl_too_old=no
869
Anthony Liguorif92f8af2009-05-20 13:01:02 -0500870if test "$sdl" = "yes" ; then
ths069b0bd2007-07-12 00:27:15 +0000871 sdl_config="sdl-config"
872 sdl=no
873 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000874
875cat > $TMPC << EOF
876#include <SDL.h>
877#undef main /* We don't want SDL to override our main() */
878int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
879EOF
balrog8c7f7572008-12-15 03:15:36 +0000880 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 +0000881 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
882 if test "$_sdlversion" -lt 121 ; then
883 sdl_too_old=yes
884 else
885 if test "$cocoa" = "no" ; then
886 sdl=yes
887 fi
888 fi
889
890 # static link with sdl ?
891 if test "$sdl" = "yes" ; then
892 aa="no"
893 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
894 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
895 if [ "$aa" = "yes" ] ; then
896 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000897 fi
bellard11d9f692004-04-02 20:55:59 +0000898
balrog8c7f7572008-12-15 03:15:36 +0000899 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 +0000900 sdl_static=yes
901 fi
902 fi # static link
903 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000904else
ths069b0bd2007-07-12 00:27:15 +0000905 # Make sure to disable cocoa if sdl was set
906 if test "$sdl" = "yes" ; then
907 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000908 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000909 fi
bellarda6e022a2004-04-02 21:55:47 +0000910fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000911
aliguori5368a422009-03-03 17:37:21 +0000912if test "$sdl" = "yes" ; then
913cat > $TMPC <<EOF
914#include <SDL.h>
915#if defined(SDL_VIDEO_DRIVER_X11)
916#include <X11/XKBlib.h>
917#else
918#error No x11 support
919#endif
920int main(void) { return 0; }
921EOF
922 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
923 sdl_x11="yes"
924 fi
925fi
926
ths8f28f3f2007-01-05 21:25:54 +0000927##########################################
ths8d5d2d42007-08-25 01:37:51 +0000928# VNC TLS detection
929if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000930cat > $TMPC <<EOF
931#include <gnutls/gnutls.h>
932int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
933EOF
934 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
935 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
936 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000937 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000938 :
939 else
940 vnc_tls="no"
941 fi
ths8d5d2d42007-08-25 01:37:51 +0000942fi
943
944##########################################
aliguori2f9606b2009-03-06 20:27:28 +0000945# VNC SASL detection
946if test "$vnc_sasl" = "yes" ; then
947cat > $TMPC <<EOF
948#include <sasl/sasl.h>
949#include <stdio.h>
950int main(void) { sasl_server_init(NULL, "qemu"); return 0; }
951EOF
952 # Assuming Cyrus-SASL installed in /usr prefix
953 vnc_sasl_cflags=""
954 vnc_sasl_libs="-lsasl2"
955 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \
Jan Kiszka918a6082009-04-27 17:16:55 +0000956 $vnc_sasl_libs 2> /dev/null > /dev/null ; then
aliguori2f9606b2009-03-06 20:27:28 +0000957 :
958 else
959 vnc_sasl="no"
960 fi
961fi
962
963##########################################
aliguori76655d62009-03-06 20:27:37 +0000964# fnmatch() probe, used for ACL routines
965fnmatch="no"
966cat > $TMPC << EOF
967#include <fnmatch.h>
968int main(void)
969{
970 fnmatch("foo", "foo", 0);
971 return 0;
972}
973EOF
974if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
975 fnmatch="yes"
976fi
977
978##########################################
ths8a16d272008-07-19 09:56:24 +0000979# vde libraries probe
980if test "$vde" = "yes" ; then
981 cat > $TMPC << EOF
982#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000983int main(void)
984{
985 struct vde_open_args a = {0, 0, 0};
986 vde_open("", "", &a);
987 return 0;
988}
ths8a16d272008-07-19 09:56:24 +0000989EOF
balrog8c7f7572008-12-15 03:15:36 +0000990 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000991 :
992 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000993 vde="no"
ths8a16d272008-07-19 09:56:24 +0000994 fi
995fi
996
997##########################################
malcc2de5c92008-06-28 19:13:06 +0000998# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000999
malcc2de5c92008-06-28 19:13:06 +00001000audio_drv_probe()
1001{
1002 drv=$1
1003 hdr=$2
1004 lib=$3
1005 exp=$4
1006 cfl=$5
1007 cat > $TMPC << EOF
1008#include <$hdr>
1009int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +00001010EOF
balrog8c7f7572008-12-15 03:15:36 +00001011 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +00001012 :
1013 else
1014 echo
1015 echo "Error: $drv check failed"
1016 echo "Make sure to have the $drv libs and headers installed."
1017 echo
1018 exit 1
1019 fi
1020}
1021
malc2fa7d3b2008-07-29 12:58:44 +00001022audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +00001023for drv in $audio_drv_list; do
1024 case $drv in
1025 alsa)
1026 audio_drv_probe $drv alsa/asoundlib.h -lasound \
1027 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1028 ;;
1029
1030 fmod)
1031 if test -z $fmod_lib || test -z $fmod_inc; then
1032 echo
1033 echo "Error: You must specify path to FMOD library and headers"
1034 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1035 echo
1036 exit 1
1037 fi
1038 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1039 ;;
1040
1041 esd)
1042 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1043 ;;
malcb8e59f12008-07-02 21:03:08 +00001044
1045 pa)
1046 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
1047 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
1048 ;;
1049
blueswir12f6a1ab2008-08-21 18:00:53 +00001050 oss|sdl|core|wav|dsound)
1051 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
1052 ;;
1053
malce4c63a62008-07-19 16:15:16 +00001054 *)
malc1c9b2a52008-07-19 16:57:30 +00001055 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +00001056 echo
1057 echo "Error: Unknown driver '$drv' selected"
1058 echo "Possible drivers are: $audio_possible_drivers"
1059 echo
1060 exit 1
1061 }
1062 ;;
malcc2de5c92008-06-28 19:13:06 +00001063 esac
1064done
ths8f28f3f2007-01-05 21:25:54 +00001065
balrog4d3b6f62008-02-10 16:33:14 +00001066##########################################
aurel322e4d9fb2008-04-08 06:01:02 +00001067# BrlAPI probe
1068
1069if test -z "$brlapi" ; then
1070 brlapi=no
1071cat > $TMPC << EOF
1072#include <brlapi.h>
1073int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
1074EOF
aurel32178baee2008-12-08 18:11:57 +00001075 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +00001076 brlapi=yes
1077 fi # brlapi compile test
1078fi # -z $brlapi
1079
1080##########################################
balrog4d3b6f62008-02-10 16:33:14 +00001081# curses probe
1082
1083if test "$curses" = "yes" ; then
1084 curses=no
Jan Kiszkaab4e5602009-06-24 12:29:11 +02001085 ncurses=no
balrog4d3b6f62008-02-10 16:33:14 +00001086 cat > $TMPC << EOF
1087#include <curses.h>
blueswir15a8ff3a2009-04-13 16:18:34 +00001088#ifdef __OpenBSD__
1089#define resize_term resizeterm
1090#endif
1091int main(void) { resize_term(0, 0); return curses_version(); }
balrog4d3b6f62008-02-10 16:33:14 +00001092EOF
Jan Kiszkaab4e5602009-06-24 12:29:11 +02001093 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev/null 2> /dev/null ; then
1094 curses=yes
1095 ncurses=yes
1096 elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +00001097 curses=yes
1098 fi
1099fi # test "$curses"
1100
blueswir1414f0da2008-08-15 18:20:52 +00001101##########################################
Alexander Graf769ce762009-05-11 17:41:42 +02001102# curl probe
1103
1104if test "$curl" = "yes" ; then
1105 curl=no
1106 cat > $TMPC << EOF
1107#include <curl/curl.h>
1108int main(void) { return curl_easy_init(); }
1109EOF
Paul Brook52368552009-05-22 17:22:38 +01001110 curl_libs=`curl-config --libs 2>/dev/null`
Alexander Graf769ce762009-05-11 17:41:42 +02001111 if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1112 curl=yes
1113 fi
1114fi # test "$curl"
1115
1116##########################################
balrogfb599c92008-09-28 23:49:55 +00001117# bluez support probe
1118if test "$bluez" = "yes" ; then
Blue Swirlefcfd0c2009-04-28 17:05:24 +00001119 `pkg-config bluez 2> /dev/null` || bluez="no"
balrogfb599c92008-09-28 23:49:55 +00001120fi
1121if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +00001122 cat > $TMPC << EOF
1123#include <bluetooth/bluetooth.h>
1124int main(void) { return bt_error(0); }
1125EOF
Blue Swirlefcfd0c2009-04-28 17:05:24 +00001126 bluez_cflags=`pkg-config --cflags bluez 2> /dev/null`
1127 bluez_libs=`pkg-config --libs bluez 2> /dev/null`
balrog17e15922008-10-11 12:00:42 +00001128 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001129 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +00001130 :
1131 else
1132 bluez="no"
1133 fi
balrogfb599c92008-09-28 23:49:55 +00001134fi
1135
1136##########################################
aliguori7ba1e612008-11-05 16:04:33 +00001137# kvm probe
1138if test "$kvm" = "yes" ; then
1139 cat > $TMPC <<EOF
1140#include <linux/kvm.h>
aliguori9fd8d8d2009-01-15 21:57:30 +00001141#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
aliguori7ba1e612008-11-05 16:04:33 +00001142#error Invalid KVM version
1143#endif
aliguori9fd8d8d2009-01-15 21:57:30 +00001144#if !defined(KVM_CAP_USER_MEMORY)
1145#error Missing KVM capability KVM_CAP_USER_MEMORY
1146#endif
1147#if !defined(KVM_CAP_SET_TSS_ADDR)
1148#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
1149#endif
1150#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
1151#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
1152#endif
aliguori7ba1e612008-11-05 16:04:33 +00001153int main(void) { return 0; }
1154EOF
aliguorieac30262008-11-05 16:28:56 +00001155 if test "$kerneldir" != "" ; then
1156 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +00001157 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
1158 -a -d "$kerneldir/arch/x86/include" ; then
1159 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +00001160 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
1161 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +00001162 elif test -d "$kerneldir/arch/$cpu/include" ; then
1163 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
1164 fi
aliguorieac30262008-11-05 16:28:56 +00001165 else
1166 kvm_cflags=""
1167 fi
aliguori7ba1e612008-11-05 16:04:33 +00001168 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +00001169 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +00001170 :
1171 else
aliguori9fd8d8d2009-01-15 21:57:30 +00001172 kvm="no";
1173 if [ -x "`which awk 2>/dev/null`" ] && \
1174 [ -x "`which grep 2>/dev/null`" ]; then
blueswir1e4f51002009-03-09 17:36:50 +00001175 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
aliguori9fd8d8d2009-01-15 21:57:30 +00001176 | grep "error: " \
1177 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1178 if test "$kvmerr" != "" ; then
Jan Kiszka168ccc12009-06-07 11:30:25 +02001179 kvm="no - (${kvmerr})\n\
1180 NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \
1181recent kvm-kmod from http://sourceforge.net/projects/kvm."
aliguori9fd8d8d2009-01-15 21:57:30 +00001182 fi
1183 fi
aliguori7ba1e612008-11-05 16:04:33 +00001184 fi
1185fi
1186
1187##########################################
aliguorie5d355d2009-04-24 18:03:15 +00001188# pthread probe
Sebastian Herbsztde65fe02009-05-24 22:07:53 +02001189PTHREADLIBS_LIST="-lpthread -lpthreadGC2"
aliguorie5d355d2009-04-24 18:03:15 +00001190PTHREADLIBS=""
aliguori3c529d92008-12-12 16:41:40 +00001191
aliguorie5d355d2009-04-24 18:03:15 +00001192if test "$pthread" = yes; then
1193 pthread=no
1194cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +00001195#include <pthread.h>
Sebastian Herbsztde65fe02009-05-24 22:07:53 +02001196int main(void) { pthread_create(0,0,0,0); return 0; }
blueswir1414f0da2008-08-15 18:20:52 +00001197EOF
Sebastian Herbsztde65fe02009-05-24 22:07:53 +02001198 for pthread_lib in $PTHREADLIBS_LIST; do
1199 if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev/null > /dev/null ; then
1200 pthread=yes
1201 PTHREADLIBS="$pthread_lib"
1202 break
1203 fi
1204 done
blueswir1414f0da2008-08-15 18:20:52 +00001205fi
1206
aliguorie5d355d2009-04-24 18:03:15 +00001207if test "$pthread" = no; then
1208 aio=no
1209 io_thread=no
1210fi
1211
aliguoribf9298b2008-12-05 20:05:26 +00001212##########################################
1213# iovec probe
1214cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001215#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001216#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001217#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001218int main(void) { struct iovec iov; return 0; }
1219EOF
1220iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001221if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001222 iovec=yes
1223fi
1224
aurel32f652e6a2008-12-16 10:43:48 +00001225##########################################
aliguoriceb42de2009-04-07 18:43:28 +00001226# preadv probe
1227cat > $TMPC <<EOF
1228#include <sys/types.h>
1229#include <sys/uio.h>
1230#include <unistd.h>
1231int main(void) { preadv; }
1232EOF
1233preadv=no
1234if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1235 preadv=yes
1236fi
1237
1238##########################################
aurel32f652e6a2008-12-16 10:43:48 +00001239# fdt probe
1240if test "$fdt" = "yes" ; then
1241 fdt=no
1242 cat > $TMPC << EOF
1243int main(void) { return 0; }
1244EOF
Jan Kiszka918a6082009-04-27 17:16:55 +00001245 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then
aurel32f652e6a2008-12-16 10:43:48 +00001246 fdt=yes
1247 fi
1248fi
1249
aurel323b3f24a2009-04-15 16:12:13 +00001250#
1251# Check for xxxat() functions when we are building linux-user
1252# emulator. This is done because older glibc versions don't
1253# have syscall stubs for these implemented.
1254#
1255atfile=no
Riku Voipio67ba57f2009-06-29 17:26:11 +03001256cat > $TMPC << EOF
aurel323b3f24a2009-04-15 16:12:13 +00001257#define _ATFILE_SOURCE
1258#include <sys/types.h>
1259#include <fcntl.h>
1260#include <unistd.h>
1261
1262int
1263main(void)
1264{
1265 /* try to unlink nonexisting file */
1266 return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
1267}
1268EOF
Riku Voipio67ba57f2009-06-29 17:26:11 +03001269if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1270 atfile=yes
aurel323b3f24a2009-04-15 16:12:13 +00001271fi
1272
aurel3239386ac2009-04-15 19:48:17 +00001273# Check for inotify functions when we are building linux-user
aurel323b3f24a2009-04-15 16:12:13 +00001274# emulator. This is done because older glibc versions don't
1275# have syscall stubs for these implemented. In that case we
1276# don't provide them even if kernel supports them.
1277#
1278inotify=no
Riku Voipio67ba57f2009-06-29 17:26:11 +03001279cat > $TMPC << EOF
aurel323b3f24a2009-04-15 16:12:13 +00001280#include <sys/inotify.h>
1281
1282int
1283main(void)
1284{
1285 /* try to start inotify */
aurel328690e422009-04-17 13:50:32 +00001286 return inotify_init();
aurel323b3f24a2009-04-15 16:12:13 +00001287}
1288EOF
Riku Voipio67ba57f2009-06-29 17:26:11 +03001289if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then
1290 inotify=yes
aurel323b3f24a2009-04-15 16:12:13 +00001291fi
1292
Riku Voipioebc996f2009-04-21 15:01:51 +03001293# check if utimensat and futimens are supported
1294utimens=no
1295cat > $TMPC << EOF
1296#define _ATFILE_SOURCE
1297#define _GNU_SOURCE
1298#include <stddef.h>
1299#include <fcntl.h>
1300
1301int main(void)
1302{
1303 utimensat(AT_FDCWD, "foo", NULL, 0);
1304 futimens(0, NULL);
1305 return 0;
1306}
1307EOF
1308if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1309 utimens=yes
1310fi
1311
Riku Voipio099d6b02009-05-05 12:10:04 +03001312# check if pipe2 is there
1313pipe2=no
1314cat > $TMPC << EOF
1315#define _GNU_SOURCE
1316#include <unistd.h>
1317#include <fcntl.h>
1318
1319int main(void)
1320{
1321 int pipefd[2];
1322 pipe2(pipefd, O_CLOEXEC);
1323 return 0;
1324}
1325EOF
1326if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1327 pipe2=yes
1328fi
1329
vibisreenivasan3ce34df2009-05-16 18:32:41 +05301330# check if tee/splice is there. vmsplice was added same time.
1331splice=no
1332cat > $TMPC << EOF
1333#define _GNU_SOURCE
1334#include <unistd.h>
1335#include <fcntl.h>
1336#include <limits.h>
1337
1338int main(void)
1339{
1340 int len, fd;
1341 len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
1342 splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
1343 return 0;
1344}
1345EOF
1346if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
1347 splice=yes
1348fi
1349
pbrookcc8ae6d2006-04-23 17:57:59 +00001350# Check if tools are available to build documentation.
Anthony Liguori70ec5dc2009-05-14 08:25:04 -05001351if test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then
1352 build_docs="no"
pbrookcc8ae6d2006-04-23 17:57:59 +00001353fi
1354
aliguorida93a1f2008-12-12 20:02:52 +00001355##########################################
1356# Do we need librt
aliguorie5d355d2009-04-24 18:03:15 +00001357CLOCKLIBS=""
aliguorida93a1f2008-12-12 20:02:52 +00001358cat > $TMPC <<EOF
1359#include <signal.h>
1360#include <time.h>
1361int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1362EOF
1363
1364rt=no
balrog8c7f7572008-12-15 03:15:36 +00001365if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001366 :
balrog8c7f7572008-12-15 03:15:36 +00001367elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001368 rt=yes
1369fi
1370
1371if test "$rt" = "yes" ; then
aliguorie5d355d2009-04-24 18:03:15 +00001372 CLOCKLIBS="-lrt"
aliguorida93a1f2008-12-12 20:02:52 +00001373fi
1374
bellard11d9f692004-04-02 20:55:59 +00001375if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001376 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001377 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001378 fi
1379 mansuffix=""
1380 datasuffix=""
1381 docsuffix=""
1382 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001383else
pbrook308c3592007-02-27 00:52:01 +00001384 if test -z "$prefix" ; then
1385 prefix="/usr/local"
1386 fi
1387 mansuffix="/share/man"
1388 datasuffix="/share/qemu"
1389 docsuffix="/share/doc/qemu"
1390 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001391fi
bellard5a671352003-10-01 00:13:48 +00001392
bellard43ce4df2003-06-09 19:53:12 +00001393echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001394echo "BIOS directory $prefix$datasuffix"
1395echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001396if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001397echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001398echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001399fi
bellard5a671352003-10-01 00:13:48 +00001400echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001401echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001402echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001403echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001404echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001405echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001406echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001407echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001408echo "target list $target_list"
aurel32ade25b02009-04-16 09:58:41 +00001409echo "tcg debug enabled $debug_tcg"
bellard43ce4df2003-06-09 19:53:12 +00001410echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001411echo "sparse enabled $sparse"
aliguori1625af82009-04-05 17:41:02 +00001412echo "strip binaries $strip_opt"
bellard05c2a3e2006-02-08 22:39:17 +00001413echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001414echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001415echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001416if test "$darwin" = "yes" ; then
1417 echo "Cocoa support $cocoa"
1418fi
bellard97a847b2003-08-10 21:36:04 +00001419echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001420if test "$sdl" != "no" ; then
1421 echo "SDL static link $sdl_static"
1422fi
balrog4d3b6f62008-02-10 16:33:14 +00001423echo "curses support $curses"
Alexander Graf769ce762009-05-11 17:41:42 +02001424echo "curl support $curl"
bellard67b915a2004-03-31 23:37:16 +00001425echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001426echo "Audio drivers $audio_drv_list"
1427echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001428echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001429echo "VNC TLS support $vnc_tls"
1430if test "$vnc_tls" = "yes" ; then
1431 echo " TLS CFLAGS $vnc_tls_cflags"
1432 echo " TLS LIBS $vnc_tls_libs"
1433fi
aliguori2f9606b2009-03-06 20:27:28 +00001434echo "VNC SASL support $vnc_sasl"
1435if test "$vnc_sasl" = "yes" ; then
1436 echo " SASL CFLAGS $vnc_sasl_cflags"
1437 echo " SASL LIBS $vnc_sasl_libs"
1438fi
blueswir131422552007-04-16 18:27:06 +00001439if test -n "$sparc_cpu"; then
1440 echo "Target Sparc Arch $sparc_cpu"
1441fi
bellard07f4ddb2005-04-23 17:44:28 +00001442echo "kqemu support $kqemu"
aliguorie37630c2009-04-22 15:19:10 +00001443echo "xen support $xen"
aurel322e4d9fb2008-04-08 06:01:02 +00001444echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001445echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001446[ ! -z "$uname_release" ] && \
1447echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001448echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001449echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001450echo "AIO support $aio"
aliguorie5d355d2009-04-24 18:03:15 +00001451echo "IO thread $io_thread"
ths77755342008-11-27 15:45:16 +00001452echo "Install blobs $blobs"
Jan Kiszka168ccc12009-06-07 11:30:25 +02001453echo -e "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001454echo "fdt support $fdt"
aliguoriceb42de2009-04-07 18:43:28 +00001455echo "preadv support $preadv"
bellard67b915a2004-03-31 23:37:16 +00001456
bellard97a847b2003-08-10 21:36:04 +00001457if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001458echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001459fi
bellard24b55b92005-03-01 22:30:41 +00001460#if test "$sdl_static" = "no"; then
1461# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1462#fi
bellard97a847b2003-08-10 21:36:04 +00001463config_mak="config-host.mak"
1464config_h="config-host.h"
1465
bellard7c1f25b2004-04-22 00:02:08 +00001466#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001467
ths15d9ca02007-07-31 23:07:32 +00001468test -f $config_h && mv $config_h ${config_h}~
1469
bellard97a847b2003-08-10 21:36:04 +00001470echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001471printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001472printf " '%s'" "$0" "$@" >> $config_mak
1473echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001474echo "/* Automatically generated by configure - do not modify */" > $config_h
1475
1476echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001477echo "bindir=\${prefix}$binsuffix" >> $config_mak
1478echo "mandir=\${prefix}$mansuffix" >> $config_mak
1479echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001480echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001481echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001482echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001483echo "INSTALL=$install" >> $config_mak
aliguori58f8aea2009-04-18 15:36:02 +00001484echo "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak
1485echo "INSTALL_DATA=$install -m0644 -p" >> $config_mak
1486echo "INSTALL_PROG=$install -m0755 -p" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001487echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001488echo "HOST_CC=$host_cc" >> $config_mak
1489echo "AR=$ar" >> $config_mak
Anthony Liguori7aa486f2009-07-11 08:48:29 -05001490echo "OBJCOPY=$objcopy" >> $config_mak
1491echo "LD=$ld" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001492# XXX: only use CFLAGS and LDFLAGS ?
1493# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1494# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001495echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001496echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1497echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1498echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
Jan Kiszkae3fc14c2009-06-30 21:29:03 +02001499echo "CFLAGS=$CFLAGS $EXTRA_CFLAGS" >> $config_mak
1500echo "LDFLAGS=$LDFLAGS $EXTRA_LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001501echo "EXESUF=$EXESUF" >> $config_mak
aliguorie5d355d2009-04-24 18:03:15 +00001502echo "PTHREADLIBS=$PTHREADLIBS" >> $config_mak
1503echo "CLOCKLIBS=$CLOCKLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001504case "$cpu" in
1505 i386)
1506 echo "ARCH=i386" >> $config_mak
1507 echo "#define HOST_I386 1" >> $config_h
1508 ;;
1509 x86_64)
1510 echo "ARCH=x86_64" >> $config_mak
1511 echo "#define HOST_X86_64 1" >> $config_h
1512 ;;
1513 alpha)
1514 echo "ARCH=alpha" >> $config_mak
1515 echo "#define HOST_ALPHA 1" >> $config_h
1516 ;;
1517 armv4b)
1518 echo "ARCH=arm" >> $config_mak
1519 echo "#define HOST_ARM 1" >> $config_h
1520 ;;
1521 armv4l)
1522 echo "ARCH=arm" >> $config_mak
1523 echo "#define HOST_ARM 1" >> $config_h
1524 ;;
1525 cris)
1526 echo "ARCH=cris" >> $config_mak
1527 echo "#define HOST_CRIS 1" >> $config_h
1528 ;;
1529 hppa)
1530 echo "ARCH=hppa" >> $config_mak
1531 echo "#define HOST_HPPA 1" >> $config_h
1532 ;;
1533 ia64)
1534 echo "ARCH=ia64" >> $config_mak
1535 echo "#define HOST_IA64 1" >> $config_h
1536 ;;
1537 m68k)
1538 echo "ARCH=m68k" >> $config_mak
1539 echo "#define HOST_M68K 1" >> $config_h
1540 ;;
Edgar E. Iglesias72b675c2009-05-20 21:17:31 +02001541 microblaze)
1542 echo "ARCH=microblaze" >> $config_mak
1543 echo "#define HOST_MICROBLAZE 1" >> $config_h
1544 ;;
aurel322408a522008-04-20 20:19:44 +00001545 mips)
1546 echo "ARCH=mips" >> $config_mak
1547 echo "#define HOST_MIPS 1" >> $config_h
1548 ;;
1549 mips64)
1550 echo "ARCH=mips64" >> $config_mak
1551 echo "#define HOST_MIPS64 1" >> $config_h
1552 ;;
malcfdf7ed92009-01-14 18:39:52 +00001553 ppc)
1554 echo "ARCH=ppc" >> $config_mak
1555 echo "#define HOST_PPC 1" >> $config_h
1556 ;;
1557 ppc64)
1558 echo "ARCH=ppc64" >> $config_mak
1559 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001560 ;;
1561 s390)
1562 echo "ARCH=s390" >> $config_mak
1563 echo "#define HOST_S390 1" >> $config_h
1564 ;;
1565 sparc)
1566 echo "ARCH=sparc" >> $config_mak
1567 echo "#define HOST_SPARC 1" >> $config_h
1568 ;;
1569 sparc64)
1570 echo "ARCH=sparc64" >> $config_mak
1571 echo "#define HOST_SPARC64 1" >> $config_h
1572 ;;
1573 *)
1574 echo "Unsupported CPU = $cpu"
1575 exit 1
1576 ;;
1577esac
aurel32f8393942009-04-13 18:45:38 +00001578if test "$debug_tcg" = "yes" ; then
1579 echo "#define DEBUG_TCG 1" >> $config_h
1580fi
Paul Brookf3d08ee2009-06-04 11:39:04 +01001581if test "$debug" = "yes" ; then
1582 echo "#define DEBUG_EXEC 1" >> $config_h
1583fi
aliguori03b4fe72008-10-07 19:16:17 +00001584if test "$sparse" = "yes" ; then
1585 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1586 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1587 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1588fi
aliguori1625af82009-04-05 17:41:02 +00001589if test "$strip_opt" = "yes" ; then
1590 echo "STRIP_OPT=-s" >> $config_mak
1591fi
bellard7d132992003-03-06 23:23:54 +00001592if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001593 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1594 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1595fi
bellardb6853692005-06-05 17:10:39 +00001596echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001597if test "$mingw32" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001598 echo "CONFIG_WIN32=y" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001599 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001600else
1601 cat > $TMPC << EOF
1602#include <byteswap.h>
1603int main(void) { return bswap_32(0); }
1604EOF
aurel32178baee2008-12-08 18:11:57 +00001605 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001606 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1607 fi
blueswir113606772008-12-05 17:54:09 +00001608 cat > $TMPC << EOF
1609#include <sys/endian.h>
1610#include <sys/types.h>
1611#include <machine/bswap.h>
1612int main(void) { return bswap32(0); }
1613EOF
aurel32178baee2008-12-08 18:11:57 +00001614 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001615 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1616 fi
bellard67b915a2004-03-31 23:37:16 +00001617fi
blueswir1128ab2f2008-08-15 18:33:42 +00001618
1619if [ "$openbsd" = "yes" ] ; then
1620 echo "#define ENOTSUP 4096" >> $config_h
1621fi
1622
bellard83fb7ad2004-07-05 21:25:26 +00001623if test "$darwin" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001624 echo "CONFIG_DARWIN=y" >> $config_mak
bellard83fb7ad2004-07-05 21:25:26 +00001625 echo "#define CONFIG_DARWIN 1" >> $config_h
1626fi
malcb29fe3e2008-11-18 01:42:22 +00001627
1628if test "$aix" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001629 echo "CONFIG_AIX=y" >> $config_mak
malcb29fe3e2008-11-18 01:42:22 +00001630 echo "#define CONFIG_AIX 1" >> $config_h
1631fi
1632
bellardec530c82006-04-25 22:36:06 +00001633if test "$solaris" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001634 echo "CONFIG_SOLARIS=y" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001635 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001636 if test "$needs_libsunmath" = "yes" ; then
1637 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1638 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1639 fi
bellardec530c82006-04-25 22:36:06 +00001640fi
blueswir131422552007-04-16 18:27:06 +00001641if test -n "$sparc_cpu"; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001642 echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001643 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1644fi
bellard97a847b2003-08-10 21:36:04 +00001645if test "$gprof" = "yes" ; then
1646 echo "TARGET_GPROF=yes" >> $config_mak
1647 echo "#define HAVE_GPROF 1" >> $config_h
1648fi
1649if test "$static" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001650 echo "CONFIG_STATIC=y" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001651 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001652fi
bellard05c2a3e2006-02-08 22:39:17 +00001653if test $profiler = "yes" ; then
1654 echo "#define CONFIG_PROFILER 1" >> $config_h
1655fi
bellardc20709a2004-04-21 23:27:19 +00001656if test "$slirp" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001657 echo "CONFIG_SLIRP=y" >> $config_mak
bellardc20709a2004-04-21 23:27:19 +00001658 echo "#define CONFIG_SLIRP 1" >> $config_h
1659fi
ths8a16d272008-07-19 09:56:24 +00001660if test "$vde" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001661 echo "CONFIG_VDE=y" >> $config_mak
ths8a16d272008-07-19 09:56:24 +00001662 echo "#define CONFIG_VDE 1" >> $config_h
1663 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1664fi
malc0c58ac12008-06-25 21:04:05 +00001665for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001666 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
Juan Quintelae34af2c2009-06-25 00:08:08 +02001667 echo "$def=y" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001668 echo "#define $def 1" >> $config_h
1669done
1670echo "#define AUDIO_DRIVERS \\" >> $config_h
1671for drv in $audio_drv_list; do
1672 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001673 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
Juan Quintelae34af2c2009-06-25 00:08:08 +02001674 echo "$def=y" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001675 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001676 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1677 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001678 elif test "$drv" = "oss"; then
1679 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001680 fi
1681done
1682echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001683if test "$mixemu" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001684 echo "CONFIG_MIXEMU=y" >> $config_mak
malc8ff9cbf2008-06-23 18:33:30 +00001685 echo "#define CONFIG_MIXEMU 1" >> $config_h
1686fi
ths8d5d2d42007-08-25 01:37:51 +00001687if test "$vnc_tls" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001688 echo "CONFIG_VNC_TLS=y" >> $config_mak
ths8d5d2d42007-08-25 01:37:51 +00001689 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1690 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1691 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1692fi
aliguori2f9606b2009-03-06 20:27:28 +00001693if test "$vnc_sasl" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001694 echo "CONFIG_VNC_SASL=y" >> $config_mak
aliguori2f9606b2009-03-06 20:27:28 +00001695 echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak
1696 echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak
1697 echo "#define CONFIG_VNC_SASL 1" >> $config_h
1698fi
aliguori76655d62009-03-06 20:27:37 +00001699if test "$fnmatch" = "yes" ; then
1700 echo "#define HAVE_FNMATCH_H 1" >> $config_h
1701fi
pbrookb1a550a2006-04-16 13:28:56 +00001702qemu_version=`head $source_path/VERSION`
1703echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001704echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001705
pbrook4a19f1e2009-04-07 23:17:49 +00001706echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h
1707
bellard97a847b2003-08-10 21:36:04 +00001708echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001709if [ "$source_path_used" = "yes" ]; then
1710 echo "VPATH=$source_path" >> $config_mak
1711fi
bellard97a847b2003-08-10 21:36:04 +00001712echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001713if [ "$build_docs" = "yes" ] ; then
1714 echo "BUILD_DOCS=yes" >> $config_mak
1715fi
bellard49ecc3f2007-11-07 19:25:15 +00001716if test "$static" = "yes"; then
1717 sdl1=$sdl_static
1718else
1719 sdl1=$sdl
1720fi
1721if test "$sdl1" = "yes" ; then
1722 echo "#define CONFIG_SDL 1" >> $config_h
Juan Quintelae34af2c2009-06-25 00:08:08 +02001723 echo "CONFIG_SDL=y" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001724 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1725 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
aliguori5368a422009-03-03 17:37:21 +00001726 elif test "$sdl_x11" = "yes" ; then
1727 echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001728 else
1729 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1730 fi
1731 if [ "${aa}" = "yes" ] ; then
1732 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1733 else
1734 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1735 fi
1736fi
1737if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001738 echo "#define CONFIG_COCOA 1" >> $config_h
Juan Quintelae34af2c2009-06-25 00:08:08 +02001739 echo "CONFIG_COCOA=y" >> $config_mak
balrog4d3b6f62008-02-10 16:33:14 +00001740fi
1741if test "$curses" = "yes" ; then
1742 echo "#define CONFIG_CURSES 1" >> $config_h
Juan Quintelae34af2c2009-06-25 00:08:08 +02001743 echo "CONFIG_CURSES=y" >> $config_mak
Jan Kiszkaab4e5602009-06-24 12:29:11 +02001744 if test "$ncurses" = "yes" ; then
1745 echo "CURSES_LIBS=-lncurses" >> $config_mak
1746 else
1747 echo "CURSES_LIBS=-lcurses" >> $config_mak
1748 fi
bellard49ecc3f2007-11-07 19:25:15 +00001749fi
aurel323b3f24a2009-04-15 16:12:13 +00001750if test "$atfile" = "yes" ; then
1751 echo "#define CONFIG_ATFILE 1" >> $config_h
1752fi
Riku Voipioebc996f2009-04-21 15:01:51 +03001753if test "$utimens" = "yes" ; then
1754 echo "#define CONFIG_UTIMENSAT 1" >> $config_h
1755fi
Riku Voipio099d6b02009-05-05 12:10:04 +03001756if test "$pipe2" = "yes" ; then
1757 echo "#define CONFIG_PIPE2 1" >> $config_h
1758fi
vibisreenivasan3ce34df2009-05-16 18:32:41 +05301759if test "$splice" = "yes" ; then
1760 echo "#define CONFIG_SPLICE 1" >> $config_h
1761fi
aurel323b3f24a2009-04-15 16:12:13 +00001762if test "$inotify" = "yes" ; then
1763 echo "#define CONFIG_INOTIFY 1" >> $config_h
1764fi
Alexander Graf769ce762009-05-11 17:41:42 +02001765if test "$curl" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001766 echo "CONFIG_CURL=y" >> $config_mak
Alexander Graf769ce762009-05-11 17:41:42 +02001767 echo "CURL_LIBS=$curl_libs" >> $config_mak
1768 echo "#define CONFIG_CURL 1" >> $config_h
1769fi
aurel322e4d9fb2008-04-08 06:01:02 +00001770if test "$brlapi" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001771 echo "CONFIG_BRLAPI=y" >> $config_mak
aurel322e4d9fb2008-04-08 06:01:02 +00001772 echo "#define CONFIG_BRLAPI 1" >> $config_h
1773 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1774fi
balrogfb599c92008-09-28 23:49:55 +00001775if test "$bluez" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001776 echo "CONFIG_BLUEZ=y" >> $config_mak
balrogfb599c92008-09-28 23:49:55 +00001777 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1778 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1779 echo "#define CONFIG_BLUEZ 1" >> $config_h
1780fi
aliguorie37630c2009-04-22 15:19:10 +00001781if test "$xen" = "yes" ; then
aliguori9306acb2009-04-22 15:19:44 +00001782 echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak
aliguorie37630c2009-04-22 15:19:10 +00001783fi
blueswir1414f0da2008-08-15 18:20:52 +00001784if test "$aio" = "yes" ; then
1785 echo "#define CONFIG_AIO 1" >> $config_h
Juan Quintelae34af2c2009-06-25 00:08:08 +02001786 echo "CONFIG_AIO=y" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001787fi
aliguorie5d355d2009-04-24 18:03:15 +00001788if test "$io_thread" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001789 echo "CONFIG_IOTHREAD=y" >> $config_mak
aliguorie5d355d2009-04-24 18:03:15 +00001790 echo "#define CONFIG_IOTHREAD 1" >> $config_h
1791fi
ths77755342008-11-27 15:45:16 +00001792if test "$blobs" = "yes" ; then
1793 echo "INSTALL_BLOBS=yes" >> $config_mak
1794fi
aliguoribf9298b2008-12-05 20:05:26 +00001795if test "$iovec" = "yes" ; then
1796 echo "#define HAVE_IOVEC 1" >> $config_h
1797fi
aliguoriceb42de2009-04-07 18:43:28 +00001798if test "$preadv" = "yes" ; then
1799 echo "#define HAVE_PREADV 1" >> $config_h
1800fi
aurel32f652e6a2008-12-16 10:43:48 +00001801if test "$fdt" = "yes" ; then
1802 echo "#define HAVE_FDT 1" >> $config_h
1803 echo "FDT_LIBS=-lfdt" >> $config_mak
1804fi
bellard97a847b2003-08-10 21:36:04 +00001805
bellard83fb7ad2004-07-05 21:25:26 +00001806# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001807if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001808 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001809 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
blueswir1179a2c12009-03-08 08:23:32 +00001810 echo "#define HOST_BSD 1" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001811fi
1812
pbrookc5937222006-05-14 11:30:38 +00001813echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1814
blueswir168063642008-11-22 21:03:55 +00001815# USB host support
1816case "$usb" in
1817linux)
1818 echo "HOST_USB=linux" >> $config_mak
1819;;
1820bsd)
1821 echo "HOST_USB=bsd" >> $config_mak
1822;;
1823*)
1824 echo "HOST_USB=stub" >> $config_mak
1825;;
1826esac
1827
Anthony Liguori9abbdbf2009-05-12 09:55:27 -05001828# Determine what linker flags to use to force archive inclusion
1829check_linker_flags()
1830{
Anthony Liguori08b9d662009-06-18 13:31:51 -05001831 w2=
1832 if test "$2" ; then
1833 w2=-Wl,$2
1834 fi
1835 $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev/null 2>/dev/null
Anthony Liguori9abbdbf2009-05-12 09:55:27 -05001836}
1837
1838cat > $TMPC << EOF
1839int main(void) { }
1840EOF
1841if check_linker_flags --whole-archive --no-whole-archive ; then
1842 # GNU ld
1843 echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_mak
1844 echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_mak
1845elif check_linker_flags -z,allextract -z,defaultextract ; then
1846 # Solaris ld
1847 echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak
1848 echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak
Anthony Liguori08b9d662009-06-18 13:31:51 -05001849elif check_linker_flags -all_load ; then
1850 # Mac OS X
1851 echo "ARLIBS_BEGIN=-all_load" >> $config_mak
1852 echo "ARLIBS_END=" >> $config_mak
Anthony Liguori9abbdbf2009-05-12 09:55:27 -05001853else
1854 echo "Error: your linker does not support --whole-archive or -z."
1855 echo "Please report to qemu-devel@nongnu.org"
1856 exit 1
1857fi
1858
Blue Swirl2567f572009-05-21 15:54:48 +00001859if test "$xen" = "yes" ;
1860 then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001861 echo "CONFIG_XEN=y" >> $config_mak
Blue Swirl2567f572009-05-21 15:54:48 +00001862fi
1863
pbrookc39e3332007-09-22 16:49:14 +00001864tools=
1865if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
aliguori3dd1f8e2009-04-05 19:29:26 +00001866 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001867 if [ "$linux" = "yes" ] ; then
aliguori3dd1f8e2009-04-05 19:29:26 +00001868 tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001869 fi
pbrookc39e3332007-09-22 16:49:14 +00001870fi
1871echo "TOOLS=$tools" >> $config_mak
1872
Alexander Graf253d0942009-06-29 15:37:40 +02001873roms=
1874if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then
1875 roms="pc-bios/optionrom"
1876fi
1877echo "ROMS=$roms" >> $config_mak
1878
Paul Brook370ab982009-05-26 15:07:56 +01001879if test -f ${config_h}~ ; then
1880 if cmp -s $config_h ${config_h}~ ; then
1881 mv ${config_h}~ $config_h
1882 else
1883 rm ${config_h}~
1884 fi
1885fi
1886
Paul Brook1ad21342009-05-19 16:17:58 +01001887config_host_mak=${config_mak}
ths15d9ca02007-07-31 23:07:32 +00001888
bellard1d14ffa2005-10-30 18:58:22 +00001889for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001890target_dir="$target"
1891config_mak=$target_dir/config.mak
1892config_h=$target_dir/config.h
Blue Swirl600309b2009-07-03 17:44:00 +00001893target_arch2=`echo $target | cut -d '-' -f 1`
bellard97a847b2003-08-10 21:36:04 +00001894target_bigendian="no"
Blue Swirl600309b2009-07-03 17:44:00 +00001895[ "$target_arch2" = "armeb" ] && target_bigendian=yes
1896[ "$target_arch2" = "m68k" ] && target_bigendian=yes
1897[ "$target_arch2" = "microblaze" ] && target_bigendian=yes
1898[ "$target_arch2" = "mips" ] && target_bigendian=yes
1899[ "$target_arch2" = "mipsn32" ] && target_bigendian=yes
1900[ "$target_arch2" = "mips64" ] && target_bigendian=yes
1901[ "$target_arch2" = "ppc" ] && target_bigendian=yes
1902[ "$target_arch2" = "ppcemb" ] && target_bigendian=yes
1903[ "$target_arch2" = "ppc64" ] && target_bigendian=yes
1904[ "$target_arch2" = "ppc64abi32" ] && target_bigendian=yes
1905[ "$target_arch2" = "sh4eb" ] && target_bigendian=yes
1906[ "$target_arch2" = "sparc" ] && target_bigendian=yes
1907[ "$target_arch2" = "sparc64" ] && target_bigendian=yes
1908[ "$target_arch2" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001909target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001910target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001911target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001912target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001913target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001914case "$target" in
Blue Swirl600309b2009-07-03 17:44:00 +00001915 ${target_arch2}-softmmu)
pbrook9e407a82007-05-26 16:38:53 +00001916 target_softmmu="yes"
1917 ;;
Blue Swirl600309b2009-07-03 17:44:00 +00001918 ${target_arch2}-linux-user)
pbrook9e407a82007-05-26 16:38:53 +00001919 target_user_only="yes"
1920 target_linux_user="yes"
1921 ;;
Blue Swirl600309b2009-07-03 17:44:00 +00001922 ${target_arch2}-darwin-user)
pbrook9e407a82007-05-26 16:38:53 +00001923 target_user_only="yes"
1924 target_darwin_user="yes"
1925 ;;
Blue Swirl600309b2009-07-03 17:44:00 +00001926 ${target_arch2}-bsd-user)
blueswir184778502008-10-26 20:33:16 +00001927 target_user_only="yes"
1928 target_bsd_user="yes"
1929 ;;
pbrook9e407a82007-05-26 16:38:53 +00001930 *)
1931 echo "ERROR: Target '$target' not recognised"
1932 exit 1
1933 ;;
1934esac
ths831b7822007-01-18 20:06:33 +00001935
bellard7c1f25b2004-04-22 00:02:08 +00001936#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001937
ths15d9ca02007-07-31 23:07:32 +00001938test -f $config_h && mv $config_h ${config_h}~
1939
bellard97a847b2003-08-10 21:36:04 +00001940mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001941mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001942mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001943if 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 +00001944 mkdir -p $target_dir/nwfpe
1945fi
1946
bellardec530c82006-04-25 22:36:06 +00001947#
1948# don't use ln -sf as not all "ln -sf" over write the file/link
1949#
1950rm -f $target_dir/Makefile
1951ln -s $source_path/Makefile.target $target_dir/Makefile
1952
bellard97a847b2003-08-10 21:36:04 +00001953
1954echo "# Automatically generated by configure - do not modify" > $config_mak
1955echo "/* Automatically generated by configure - do not modify */" > $config_h
1956
1957
1958echo "include ../config-host.mak" >> $config_mak
1959echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001960
pbrooke5fe0c52006-06-11 13:32:59 +00001961bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001962elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001963target_nptl="no"
Blue Swirl600309b2009-07-03 17:44:00 +00001964interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
bellard1e43adf2003-09-30 20:54:24 +00001965echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001966gdb_xml_files=""
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00001967target_kvm="$kvm"
bellard97a847b2003-08-10 21:36:04 +00001968
aliguori5985ece2008-11-05 19:59:25 +00001969# Make sure the target and host cpus are compatible
Blue Swirl600309b2009-07-03 17:44:00 +00001970if test ! \( "$target_arch2" = "$cpu" -o \
1971 \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1972 \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \
1973 \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00001974 target_kvm="no"
aliguori7ba1e612008-11-05 16:04:33 +00001975fi
1976# Disable KVM for linux-user
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00001977if test "$target_softmmu" = "no" ; then
1978 target_kvm="no"
aliguori7ba1e612008-11-05 16:04:33 +00001979fi
1980
Blue Swirl600309b2009-07-03 17:44:00 +00001981case "$target_arch2" in
aurel322408a522008-04-20 20:19:44 +00001982 i386)
1983 echo "TARGET_ARCH=i386" >> $config_mak
1984 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1985 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001986 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001987 then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001988 echo "CONFIG_KQEMU=y" >> $config_mak
blueswir1640f42e2009-04-19 10:18:01 +00001989 echo "#define CONFIG_KQEMU 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001990 fi
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00001991 if test "$target_kvm" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001992 echo "CONFIG_KVM=y" >> $config_mak
aliguori7ba1e612008-11-05 16:04:33 +00001993 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001994 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001995 fi
aliguorie37630c2009-04-22 15:19:10 +00001996 if test "$xen" = "yes" -a "$target_softmmu" = "yes";
1997 then
Juan Quintelae34af2c2009-06-25 00:08:08 +02001998 echo "CONFIG_XEN=y" >> $config_mak
aliguorie37630c2009-04-22 15:19:10 +00001999 echo "#define CONFIG_XEN 1" >> $config_h
2000 fi
Paul Brook1ad21342009-05-19 16:17:58 +01002001 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002002 ;;
2003 x86_64)
2004 echo "TARGET_ARCH=x86_64" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002005 echo "TARGET_BASE_ARCH=i386" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002006 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
2007 echo "#define TARGET_I386 1" >> $config_h
2008 echo "#define TARGET_X86_64 1" >> $config_h
2009 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
2010 then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002011 echo "CONFIG_KQEMU=y" >> $config_mak
blueswir1640f42e2009-04-19 10:18:01 +00002012 echo "#define CONFIG_KQEMU 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00002013 fi
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00002014 if test "$target_kvm" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002015 echo "CONFIG_KVM=y" >> $config_mak
aliguori7ba1e612008-11-05 16:04:33 +00002016 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2017 echo "#define CONFIG_KVM 1" >> $config_h
2018 fi
aliguorie37630c2009-04-22 15:19:10 +00002019 if test "$xen" = "yes" -a "$target_softmmu" = "yes"
2020 then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002021 echo "CONFIG_XEN=y" >> $config_mak
aliguorie37630c2009-04-22 15:19:10 +00002022 echo "#define CONFIG_XEN 1" >> $config_h
2023 fi
Paul Brook1ad21342009-05-19 16:17:58 +01002024 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002025 ;;
2026 alpha)
2027 echo "TARGET_ARCH=alpha" >> $config_mak
2028 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
2029 echo "#define TARGET_ALPHA 1" >> $config_h
Paul Brook1ad21342009-05-19 16:17:58 +01002030 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002031 ;;
2032 arm|armeb)
2033 echo "TARGET_ARCH=arm" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002034 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002035 echo "#define TARGET_ARCH \"arm\"" >> $config_h
2036 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00002037 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00002038 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00002039 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002040 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002041 ;;
2042 cris)
2043 echo "TARGET_ARCH=cris" >> $config_mak
2044 echo "#define TARGET_ARCH \"cris\"" >> $config_h
2045 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00002046 target_nptl="yes"
Paul Brook1ad21342009-05-19 16:17:58 +01002047 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002048 ;;
2049 m68k)
2050 echo "TARGET_ARCH=m68k" >> $config_mak
2051 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
2052 echo "#define TARGET_M68K 1" >> $config_h
2053 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00002054 gdb_xml_files="cf-core.xml cf-fp.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002055 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002056 ;;
Edgar E. Iglesias72b675c2009-05-20 21:17:31 +02002057 microblaze)
2058 echo "TARGET_ARCH=microblaze" >> $config_mak
2059 echo "#define TARGET_ARCH \"microblaze\"" >> $config_h
2060 echo "#define TARGET_MICROBLAZE 1" >> $config_h
2061 bflt="yes"
2062 target_nptl="yes"
2063 target_phys_bits=32
2064 ;;
2065 mips|mipsel)
aurel322408a522008-04-20 20:19:44 +00002066 echo "TARGET_ARCH=mips" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002067 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002068 echo "#define TARGET_ARCH \"mips\"" >> $config_h
2069 echo "#define TARGET_MIPS 1" >> $config_h
2070 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
Paul Brookf04dc722009-07-09 17:56:24 +01002071 target_nptl="yes"
Paul Brook1ad21342009-05-19 16:17:58 +01002072 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002073 ;;
2074 mipsn32|mipsn32el)
2075 echo "TARGET_ARCH=mipsn32" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002076 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002077 echo "TARGET_BASE_ARCH=mips" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002078 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
2079 echo "#define TARGET_MIPS 1" >> $config_h
2080 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
Paul Brook1ad21342009-05-19 16:17:58 +01002081 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002082 ;;
2083 mips64|mips64el)
2084 echo "TARGET_ARCH=mips64" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002085 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002086 echo "TARGET_BASE_ARCH=mips" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002087 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
2088 echo "#define TARGET_MIPS 1" >> $config_h
2089 echo "#define TARGET_MIPS64 1" >> $config_h
2090 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
Paul Brook1ad21342009-05-19 16:17:58 +01002091 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002092 ;;
2093 ppc)
2094 echo "TARGET_ARCH=ppc" >> $config_mak
2095 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
2096 echo "#define TARGET_PPC 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00002097 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002098 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002099 ;;
2100 ppcemb)
2101 echo "TARGET_ARCH=ppcemb" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002102 echo "TARGET_BASE_ARCH=ppc" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002103 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2104 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
2105 echo "#define TARGET_PPC 1" >> $config_h
2106 echo "#define TARGET_PPCEMB 1" >> $config_h
Blue Swirl4ca1a9c2009-06-07 13:29:26 +00002107 if test "$target_kvm" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002108 echo "CONFIG_KVM=y" >> $config_mak
aurel32d76d1652008-12-16 10:43:58 +00002109 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
2110 echo "#define CONFIG_KVM 1" >> $config_h
2111 fi
aurel32c8b35322009-01-24 15:07:34 +00002112 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002113 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002114 ;;
2115 ppc64)
2116 echo "TARGET_ARCH=ppc64" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002117 echo "TARGET_BASE_ARCH=ppc" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002118 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2119 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2120 echo "#define TARGET_PPC 1" >> $config_h
2121 echo "#define TARGET_PPC64 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00002122 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002123 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002124 ;;
2125 ppc64abi32)
2126 echo "TARGET_ARCH=ppc64" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002127 echo "TARGET_BASE_ARCH=ppc" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002128 echo "TARGET_ABI_DIR=ppc" >> $config_mak
2129 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
2130 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
2131 echo "#define TARGET_PPC 1" >> $config_h
2132 echo "#define TARGET_PPC64 1" >> $config_h
2133 echo "#define TARGET_ABI32 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00002134 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
Paul Brook1ad21342009-05-19 16:17:58 +01002135 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002136 ;;
2137 sh4|sh4eb)
2138 echo "TARGET_ARCH=sh4" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002139 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002140 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
2141 echo "#define TARGET_SH4 1" >> $config_h
2142 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00002143 target_nptl="yes"
Paul Brook1ad21342009-05-19 16:17:58 +01002144 target_phys_bits=32
aurel322408a522008-04-20 20:19:44 +00002145 ;;
2146 sparc)
2147 echo "TARGET_ARCH=sparc" >> $config_mak
2148 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
2149 echo "#define TARGET_SPARC 1" >> $config_h
Paul Brook1ad21342009-05-19 16:17:58 +01002150 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002151 ;;
2152 sparc64)
2153 echo "TARGET_ARCH=sparc64" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002154 echo "TARGET_BASE_ARCH=sparc" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002155 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2156 echo "#define TARGET_SPARC 1" >> $config_h
2157 echo "#define TARGET_SPARC64 1" >> $config_h
2158 elfload32="yes"
Paul Brook1ad21342009-05-19 16:17:58 +01002159 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002160 ;;
2161 sparc32plus)
2162 echo "TARGET_ARCH=sparc64" >> $config_mak
Juan Quintela0ba99fc2009-07-16 17:57:07 +02002163 echo "TARGET_BASE_ARCH=sparc" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002164 echo "TARGET_ABI_DIR=sparc" >> $config_mak
Juan Quintelad2917a42009-07-16 17:57:08 +02002165 echo "TARGET_ARCH2=$target_arch2" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00002166 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
2167 echo "#define TARGET_SPARC 1" >> $config_h
2168 echo "#define TARGET_SPARC64 1" >> $config_h
2169 echo "#define TARGET_ABI32 1" >> $config_h
Paul Brook1ad21342009-05-19 16:17:58 +01002170 target_phys_bits=64
aurel322408a522008-04-20 20:19:44 +00002171 ;;
2172 *)
2173 echo "Unsupported target CPU"
2174 exit 1
2175 ;;
2176esac
Paul Brook1ad21342009-05-19 16:17:58 +01002177if [ $target_phys_bits -lt $hostlongbits ] ; then
2178 target_phys_bits=$hostlongbits
2179fi
2180echo "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak
2181echo "#define TARGET_PHYS_ADDR_BITS $target_phys_bits" >> $config_h
2182echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
bellardde83cd02003-06-15 20:25:43 +00002183if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00002184 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
2185 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
2186fi
2187if test "$target_softmmu" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002188 echo "CONFIG_SOFTMMU=y" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00002189 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00002190fi
bellard997344f2003-10-27 21:10:39 +00002191if test "$target_user_only" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002192 echo "CONFIG_USER_ONLY=y" >> $config_mak
bellard997344f2003-10-27 21:10:39 +00002193 echo "#define CONFIG_USER_ONLY 1" >> $config_h
2194fi
ths831b7822007-01-18 20:06:33 +00002195if test "$target_linux_user" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002196 echo "CONFIG_LINUX_USER=y" >> $config_mak
ths831b7822007-01-18 20:06:33 +00002197 echo "#define CONFIG_LINUX_USER 1" >> $config_h
2198fi
2199if test "$target_darwin_user" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002200 echo "CONFIG_DARWIN_USER=y" >> $config_mak
ths831b7822007-01-18 20:06:33 +00002201 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
2202fi
pbrook56aebc82008-10-11 17:55:29 +00002203list=""
2204if test ! -z "$gdb_xml_files" ; then
2205 for x in $gdb_xml_files; do
2206 list="$list $source_path/gdb-xml/$x"
2207 done
2208fi
2209echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00002210
Blue Swirl600309b2009-07-03 17:44:00 +00002211if test "$target_arch2" = "arm" \
2212 -o "$target_arch2" = "armeb" \
2213 -o "$target_arch2" = "m68k" \
2214 -o "$target_arch2" = "microblaze" \
2215 -o "$target_arch2" = "mips" \
2216 -o "$target_arch2" = "mipsel" \
2217 -o "$target_arch2" = "mipsn32" \
2218 -o "$target_arch2" = "mipsn32el" \
2219 -o "$target_arch2" = "mips64" \
2220 -o "$target_arch2" = "mips64el" \
2221 -o "$target_arch2" = "ppc" \
2222 -o "$target_arch2" = "ppc64" \
2223 -o "$target_arch2" = "ppc64abi32" \
2224 -o "$target_arch2" = "ppcemb" \
2225 -o "$target_arch2" = "sparc" \
2226 -o "$target_arch2" = "sparc64" \
2227 -o "$target_arch2" = "sparc32plus"; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002228 echo "CONFIG_SOFTFLOAT=y" >> $config_mak
bellard158142c2005-03-13 16:54:06 +00002229 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
2230fi
pbrooke5fe0c52006-06-11 13:32:59 +00002231if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002232 echo "TARGET_HAS_BFLT=y" >> $config_mak
pbrooke5fe0c52006-06-11 13:32:59 +00002233 echo "#define TARGET_HAS_BFLT 1" >> $config_h
2234fi
pbrookbd0c5662008-05-29 14:34:11 +00002235if test "$target_user_only" = "yes" \
2236 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
2237 echo "#define USE_NPTL 1" >> $config_h
2238fi
blueswir1cb33da52007-10-09 16:34:29 +00002239# 32 bit ELF loader in addition to native 64 bit loader?
2240if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002241 echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak
blueswir1cb33da52007-10-09 16:34:29 +00002242 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
2243fi
blueswir184778502008-10-26 20:33:16 +00002244if test "$target_bsd_user" = "yes" ; then
Juan Quintelae34af2c2009-06-25 00:08:08 +02002245 echo "CONFIG_BSD_USER=y" >> $config_mak
blueswir184778502008-10-26 20:33:16 +00002246 echo "#define CONFIG_BSD_USER 1" >> $config_h
2247fi
bellard5b0753e2005-03-01 21:37:28 +00002248
ths15d9ca02007-07-31 23:07:32 +00002249test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
2250
bellard97a847b2003-08-10 21:36:04 +00002251done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00002252
2253# build tree in object directory if source path is different from current one
2254if test "$source_path_used" = "yes" ; then
Alexander Graf253d0942009-06-29 15:37:40 +02002255 DIRS="tests tests/cris slirp audio block pc-bios/optionrom"
bellard7d132992003-03-06 23:23:54 +00002256 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00002257 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00002258 FILES="$FILES tests/test-mmap.c"
Alexander Graf253d0942009-06-29 15:37:40 +02002259 FILES="$FILES pc-bios/optionrom/Makefile"
bellard7d132992003-03-06 23:23:54 +00002260 for dir in $DIRS ; do
2261 mkdir -p $dir
2262 done
bellardec530c82006-04-25 22:36:06 +00002263 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00002264 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00002265 rm -f $f
2266 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00002267 done
2268fi
Paul Brook1ad21342009-05-19 16:17:58 +01002269
2270for hwlib in 32 64; do
2271 d=libhw$hwlib
2272 mkdir -p $d
2273 rm -f $d/Makefile
2274 ln -s $source_path/Makefile.hw $d/Makefile
2275 echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak
2276 echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak
2277done