blob: 62925d895d56cdf4dd169905a392ceec5270701b [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001#!/bin/sh
2#
bellard3ef693a2003-03-23 20:17:16 +00003# qemu configure script (c) 2003 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00004#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
bellard3ef693a2003-03-23 20:17:16 +000014TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
malc9d56d2d2008-09-30 19:44:32 +000018TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
malcd4742de2008-11-29 22:04:31 +000019TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
bellard7d132992003-03-06 23:23:54 +000020
malcd4742de2008-11-29 22:04:31 +000021trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
malc9ac81bb2008-11-29 20:09:56 +000022
bellard7d132992003-03-06 23:23:54 +000023# default parameters
bellard11d9f692004-04-02 20:55:59 +000024prefix=""
bellard1e43adf2003-09-30 20:54:24 +000025interp_prefix="/usr/gnemul/qemu-%M"
bellard43ce4df2003-06-09 19:53:12 +000026static="no"
bellard7d132992003-03-06 23:23:54 +000027cross_prefix=""
28cc="gcc"
malc0c58ac12008-06-25 21:04:05 +000029audio_drv_list=""
malc4c9b53e2009-01-09 10:46:34 +000030audio_card_list="ac97 es1370 sb16"
31audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
bellard7d132992003-03-06 23:23:54 +000032host_cc="gcc"
33ar="ar"
34make="make"
pbrook6a882642006-04-17 13:57:12 +000035install="install"
bellard7d132992003-03-06 23:23:54 +000036strip="strip"
aliguoriac0df512008-12-29 17:14:15 +000037
38# parse CC options first
39for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --cross-prefix=*) cross_prefix="$optarg"
43 ;;
44 --cc=*) cc="$optarg"
45 ;;
46 esac
47done
48
49# OS specific
50# Using uname is really, really broken. Once we have the right set of checks
51# we can eliminate it's usage altogether
52
53cc="${cross_prefix}${cc}"
54ar="${cross_prefix}${ar}"
55strip="${cross_prefix}${strip}"
56
57# check that the C compiler works.
58cat > $TMPC <<EOF
59int main(void) {}
60EOF
61
62if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63 : C compiler works ok
64else
65 echo "ERROR: \"$cc\" either does not exist or does not work"
66 exit 1
67fi
68
69check_define() {
70cat > $TMPC <<EOF
71#if !defined($1)
72#error Not defined
73#endif
74int main(void) { return 0; }
75EOF
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
77}
78
79if check_define __i386__ ; then
80 cpu="i386"
81elif check_define __x86_64__ ; then
82 cpu="x86_64"
blueswir13aa9bd62008-12-31 16:55:26 +000083elif check_define __sparc__ ; then
84 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
85 # They must be specified using --sparc_cpu
86 if check_define __arch64__ ; then
87 cpu="sparc64"
88 else
89 cpu="sparc"
90 fi
malcfdf7ed92009-01-14 18:39:52 +000091elif check_define _ARCH_PPC ; then
92 if check_define _ARCH_PPC64 ; then
93 cpu="ppc64"
94 else
95 cpu="ppc"
96 fi
aliguoriac0df512008-12-29 17:14:15 +000097else
malcfdf7ed92009-01-14 18:39:52 +000098 cpu=`uname -m`
aliguoriac0df512008-12-29 17:14:15 +000099fi
100
bellard5327cf42005-01-10 23:18:50 +0000101target_list=""
bellard7d132992003-03-06 23:23:54 +0000102case "$cpu" in
103 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +0000104 cpu="i386"
bellard7d132992003-03-06 23:23:54 +0000105 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000106 x86_64|amd64)
107 cpu="x86_64"
108 ;;
109 alpha)
110 cpu="alpha"
111 ;;
bellardba680552005-03-13 09:49:52 +0000112 armv*b)
bellard808c4952004-12-19 23:33:47 +0000113 cpu="armv4b"
114 ;;
bellardba680552005-03-13 09:49:52 +0000115 armv*l)
bellard7d132992003-03-06 23:23:54 +0000116 cpu="armv4l"
117 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000118 cris)
119 cpu="cris"
bellard7d132992003-03-06 23:23:54 +0000120 ;;
aurel32f54b3f92008-04-12 20:14:54 +0000121 parisc|parisc64)
122 cpu="hppa"
123 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000124 ia64)
125 cpu="ia64"
126 ;;
127 m68k)
128 cpu="m68k"
bellard7d132992003-03-06 23:23:54 +0000129 ;;
130 mips)
131 cpu="mips"
132 ;;
thsfbe4f652007-04-01 11:16:48 +0000133 mips64)
134 cpu="mips64"
135 ;;
malcfdf7ed92009-01-14 18:39:52 +0000136 ppc)
137 cpu="ppc"
138 ;;
139 ppc64)
140 cpu="ppc64"
thse7daa602007-10-08 13:38:27 +0000141 ;;
ths0e7b8a92007-08-01 00:09:31 +0000142 s390*)
bellardfb3e5842003-03-29 17:32:36 +0000143 cpu="s390"
144 ;;
blueswir131422552007-04-16 18:27:06 +0000145 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000146 cpu="sparc"
147 ;;
148 sparc64)
149 cpu="sparc64"
150 ;;
bellard7d132992003-03-06 23:23:54 +0000151 *)
152 cpu="unknown"
153 ;;
154esac
155gprof="no"
aliguori03b4fe72008-10-07 19:16:17 +0000156sparse="no"
bellard7d132992003-03-06 23:23:54 +0000157bigendian="no"
bellard67b915a2004-03-31 23:37:16 +0000158mingw32="no"
159EXESUF=""
160gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +0000161slirp="yes"
aliguorie0e6c8c02008-07-23 18:14:33 +0000162vde="yes"
bellard102a52e2004-11-14 19:57:29 +0000163fmod_lib=""
164fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +0000165oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +0000166vnc_tls="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000167bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000168linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000169solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000170kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000171profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000172cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000173check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000174softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000175linux_user="no"
176darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000177bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000178build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000179uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000180curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000181aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000182nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000183mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000184bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000185kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000186kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000187aix="no"
ths77755342008-11-27 15:45:16 +0000188blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000189fdt="yes"
bellard7d132992003-03-06 23:23:54 +0000190
191# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000192if check_define __linux__ ; then
193 targetos="Linux"
194elif check_define _WIN32 ; then
195 targetos='MINGW32'
196else
197 targetos=`uname -s`
198fi
bellard7d132992003-03-06 23:23:54 +0000199case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000200CYGWIN*)
201mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000202OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000203if [ "$cpu" = "i386" ] ; then
204 kqemu="yes"
205fi
malcc2de5c92008-06-28 19:13:06 +0000206audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000207;;
bellard67b915a2004-03-31 23:37:16 +0000208MINGW32*)
209mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000210if [ "$cpu" = "i386" ] ; then
211 kqemu="yes"
212fi
malcc2de5c92008-06-28 19:13:06 +0000213audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000214;;
ths5c40d2b2007-06-23 16:03:36 +0000215GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000216audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000217audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000218if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
219 kqemu="yes"
220fi
221;;
bellard7d3505c2004-05-12 19:32:15 +0000222FreeBSD)
223bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000224audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000225audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000226if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000227 kqemu="yes"
228fi
bellard7d3505c2004-05-12 19:32:15 +0000229;;
230NetBSD)
231bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000232audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000233audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000234oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000235;;
236OpenBSD)
237bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000238openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000239audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000240audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000241oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000242;;
bellard83fb7ad2004-07-05 21:25:26 +0000243Darwin)
244bsd="yes"
245darwin="yes"
aliguori1b0f9cc2009-01-26 15:37:40 +0000246# 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 +0000247if [ "$cpu" = "i386" ] ; then
248 is_x86_64=`sysctl -n hw.optional.x86_64`
249 [ "$is_x86_64" = "1" ] && cpu=x86_64
aliguori1b0f9cc2009-01-26 15:37:40 +0000250fi
251if [ "$cpu" = "x86_64" ] ; then
252 OS_CFLAGS="-arch x86_64"
253 LDFLAGS="-arch x86_64"
254else
255 OS_CFLAGS="-mdynamic-no-pic"
256fi
ths831b7822007-01-18 20:06:33 +0000257darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000258cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000259audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000260audio_possible_drivers="coreaudio sdl fmod"
thsc2c59c32008-01-08 00:00:20 +0000261OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000262;;
bellardec530c82006-04-25 22:36:06 +0000263SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000264 solaris="yes"
265 make="gmake"
266 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000267 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000268 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000269 # have to select again, because `uname -m` returns i86pc
270 # even on an x86_64 box.
271 solariscpu=`isainfo -k`
272 if test "${solariscpu}" = "amd64" ; then
273 cpu="x86_64"
274 fi
thsc2b84fa2007-02-10 23:21:21 +0000275 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000276 if test "$solarisrev" -le 9 ; then
277 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
278 needs_libsunmath="yes"
279 else
280 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
281 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
282 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
283 echo "Studio 11 can be downloaded from www.sun.com."
284 exit 1
285 fi
286 fi
287 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000288 kqemu="yes"
289 fi
ths86b2bd92007-02-11 00:31:33 +0000290 fi
ths6b4d2ba2007-05-13 18:02:43 +0000291 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000292 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000293 fi
malcc2de5c92008-06-28 19:13:06 +0000294 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000295;;
malcb29fe3e2008-11-18 01:42:22 +0000296AIX)
297aix="yes"
298make="gmake"
299;;
bellard1d14ffa2005-10-30 18:58:22 +0000300*)
malc0c58ac12008-06-25 21:04:05 +0000301audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000302audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000303linux="yes"
ths831b7822007-01-18 20:06:33 +0000304linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000305usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000306if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000307 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000308 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000309fi
bellardfb065182004-11-09 23:09:44 +0000310;;
bellard7d132992003-03-06 23:23:54 +0000311esac
312
bellard7d3505c2004-05-12 19:32:15 +0000313if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000314 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000315 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000316 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000317 fi
blueswir184778502008-10-26 20:33:16 +0000318 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000319fi
320
bellard7d132992003-03-06 23:23:54 +0000321# find source path
pbrookad064842006-04-16 12:41:07 +0000322source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000323source_path_used="no"
324workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000325if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000326 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000327else
328 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000329fi
pbrook724db112008-02-03 19:20:13 +0000330[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000331
bellard85aa5182007-11-11 20:17:03 +0000332werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000333# generate compile errors on warnings for development builds
334#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
335#werror="yes";
336#fi
bellard85aa5182007-11-11 20:17:03 +0000337
bellard7d132992003-03-06 23:23:54 +0000338for opt do
pbrooka46e4032006-04-29 23:05:22 +0000339 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000340 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000341 --help|-h) show_help=yes
342 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000343 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000344 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000345 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000346 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000347 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000348 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000349 ;;
aliguoriac0df512008-12-29 17:14:15 +0000350 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000351 ;;
aliguoriac0df512008-12-29 17:14:15 +0000352 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000353 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000354 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000355 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000356 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000357 ;;
pbrook6a882642006-04-17 13:57:12 +0000358 --install=*) install="$optarg"
359 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000360 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000361 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000362 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000363 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000364 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000365 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000366 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000367 ;;
bellard7d132992003-03-06 23:23:54 +0000368 --enable-gprof) gprof="yes"
369 ;;
bellard43ce4df2003-06-09 19:53:12 +0000370 --static) static="yes"
371 ;;
bellard97a847b2003-08-10 21:36:04 +0000372 --disable-sdl) sdl="no"
373 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000374 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000375 ;;
malcc2de5c92008-06-28 19:13:06 +0000376 --fmod-inc=*) fmod_inc="$optarg"
377 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000378 --oss-lib=*) oss_lib="$optarg"
379 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000380 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000381 ;;
382 --audio-drv-list=*) audio_drv_list="$optarg"
383 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000384 --enable-sparse) sparse="yes"
385 ;;
386 --disable-sparse) sparse="no"
387 ;;
ths8d5d2d42007-08-25 01:37:51 +0000388 --disable-vnc-tls) vnc_tls="no"
389 ;;
bellard443f1372004-06-04 11:13:20 +0000390 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000391 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000392 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000393 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000394 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000395 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000396 --disable-brlapi) brlapi="no"
397 ;;
balrogfb599c92008-09-28 23:49:55 +0000398 --disable-bluez) bluez="no"
399 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000400 --disable-kvm) kvm="no"
401 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000402 --enable-profiler) profiler="yes"
403 ;;
malcc2de5c92008-06-28 19:13:06 +0000404 --enable-cocoa)
405 cocoa="yes" ;
406 sdl="no" ;
407 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000408 ;;
bellard97ccc682005-07-02 13:32:17 +0000409 --disable-gfx-check) check_gfx="no"
410 ;;
pbrookcad25d62006-03-19 16:31:11 +0000411 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000412 ;;
pbrookcad25d62006-03-19 16:31:11 +0000413 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000414 ;;
ths831b7822007-01-18 20:06:33 +0000415 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000416 ;;
ths831b7822007-01-18 20:06:33 +0000417 --enable-linux-user) linux_user="yes"
418 ;;
419 --disable-darwin-user) darwin_user="no"
420 ;;
421 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000422 ;;
blueswir184778502008-10-26 20:33:16 +0000423 --disable-bsd-user) bsd_user="no"
424 ;;
425 --enable-bsd-user) bsd_user="yes"
426 ;;
pbrookc5937222006-05-14 11:30:38 +0000427 --enable-uname-release=*) uname_release="$optarg"
428 ;;
blueswir131422552007-04-16 18:27:06 +0000429 --sparc_cpu=*)
430 sparc_cpu="$optarg"
431 case $sparc_cpu in
432 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
433 target_cpu="sparc"; cpu="sparc" ;;
434 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
435 target_cpu="sparc"; cpu="sparc" ;;
436 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
437 target_cpu="sparc64"; cpu="sparc64" ;;
438 *) echo "undefined SPARC architecture. Exiting";exit 1;;
439 esac
440 ;;
bellard85aa5182007-11-11 20:17:03 +0000441 --enable-werror) werror="yes"
442 ;;
443 --disable-werror) werror="no"
444 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000445 --disable-curses) curses="no"
446 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000447 --disable-nptl) nptl="no"
448 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000449 --enable-mixemu) mixemu="yes"
450 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000451 --disable-aio) aio="no"
452 ;;
ths77755342008-11-27 15:45:16 +0000453 --disable-blobs) blobs="no"
454 ;;
aliguorieac30262008-11-05 16:28:56 +0000455 --kerneldir=*) kerneldir="$optarg"
456 ;;
balrog7f1559c2007-11-17 10:24:32 +0000457 *) echo "ERROR: unknown option $opt"; show_help="yes"
458 ;;
bellard7d132992003-03-06 23:23:54 +0000459 esac
460done
461
ths6f30fa82007-01-05 01:00:47 +0000462# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000463CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000464CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000465LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000466if test "$werror" = "yes" ; then
467CFLAGS="$CFLAGS -Werror"
468fi
ths6f30fa82007-01-05 01:00:47 +0000469
blueswir1d2c7c9b2008-11-01 14:50:20 +0000470if test "$solaris" = "no" ; then
471 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
472 LDFLAGS="$LDFLAGS -Wl,--warn-common"
473 fi
blueswir149237ac2008-09-17 19:05:19 +0000474fi
475
blueswir131422552007-04-16 18:27:06 +0000476#
477# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
478# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
479#
bellard40293e52008-01-31 11:32:10 +0000480case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000481 sparc) if test -z "$sparc_cpu" ; then
482 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
483 ARCH_LDFLAGS="-m32"
484 else
485 ARCH_CFLAGS="${SP_CFLAGS}"
486 ARCH_LDFLAGS="${SP_LDFLAGS}"
487 fi
488 ;;
489 sparc64) if test -z "$sparc_cpu" ; then
490 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
491 ARCH_LDFLAGS="-m64"
492 else
493 ARCH_CFLAGS="${SP_CFLAGS}"
494 ARCH_LDFLAGS="${SP_LDFLAGS}"
495 fi
496 ;;
ths76d83bd2007-11-18 21:22:10 +0000497 s390)
498 ARCH_CFLAGS="-march=z900"
499 ;;
bellard40293e52008-01-31 11:32:10 +0000500 i386)
501 ARCH_CFLAGS="-m32"
502 ARCH_LDFLAGS="-m32"
503 ;;
504 x86_64)
505 ARCH_CFLAGS="-m64"
506 ARCH_LDFLAGS="-m64"
507 ;;
blueswir131422552007-04-16 18:27:06 +0000508esac
509
pbrookaf5db582006-04-08 14:26:41 +0000510if test x"$show_help" = x"yes" ; then
511cat << EOF
512
513Usage: configure [options]
514Options: [defaults in brackets after descriptions]
515
516EOF
517echo "Standard options:"
518echo " --help print this message"
519echo " --prefix=PREFIX install in PREFIX [$prefix]"
520echo " --interp-prefix=PREFIX where to find shared libraries, etc."
521echo " use %M for cpu name [$interp_prefix]"
522echo " --target-list=LIST set target list [$target_list]"
523echo ""
524echo "kqemu kernel acceleration support:"
525echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000526echo ""
527echo "Advanced options (experts only):"
528echo " --source-path=PATH path of source code [$source_path]"
529echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
530echo " --cc=CC use C compiler CC [$cc]"
531echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
532echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000533echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000534echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000535echo " --enable-sparse enable sparse checker"
536echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000537echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000538echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000539echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000540echo " --audio-drv-list=LIST set audio drivers list:"
541echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000542echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
543echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000544echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000545echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000546echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000547echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000548echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000549echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000550echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000551echo " --enable-system enable all system emulation targets"
552echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000553echo " --enable-linux-user enable all linux usermode emulation targets"
554echo " --disable-linux-user disable all linux usermode emulation targets"
555echo " --enable-darwin-user enable all darwin usermode emulation targets"
556echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000557echo " --enable-bsd-user enable all BSD usermode emulation targets"
558echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000559echo " --fmod-lib path to FMOD library"
560echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000561echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000562echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000563echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000564echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000565echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000566echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000567echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000568echo ""
ths5bf08932006-12-23 00:33:26 +0000569echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000570exit 1
571fi
572
bellard67b915a2004-03-31 23:37:16 +0000573if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000574 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000575 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000576 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000577 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000578 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000579fi
580
aliguori03b4fe72008-10-07 19:16:17 +0000581if test ! -x "$(which cgcc 2>/dev/null)"; then
582 sparse="no"
583fi
584
bellardec530c82006-04-25 22:36:06 +0000585#
586# Solaris specific configure tool chain decisions
587#
588if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000589 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
590 if test -z "$solinst" ; then
591 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
592 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
593 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
594 exit 1
595 fi
596 if test "$solinst" = "/usr/sbin/install" ; then
597 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
598 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
599 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
600 exit 1
601 fi
bellardec530c82006-04-25 22:36:06 +0000602 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
603 if test -z "$sol_ar" ; then
604 echo "Error: No path includes ar"
605 if test -f /usr/ccs/bin/ar ; then
606 echo "Add /usr/ccs/bin to your path and rerun configure"
607 fi
608 exit 1
609 fi
ths5fafdf22007-09-16 21:08:06 +0000610fi
bellardec530c82006-04-25 22:36:06 +0000611
612
bellard5327cf42005-01-10 23:18:50 +0000613if test -z "$target_list" ; then
614# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000615 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000616 target_list="\
617i386-softmmu \
618x86_64-softmmu \
619arm-softmmu \
620cris-softmmu \
621m68k-softmmu \
622mips-softmmu \
623mipsel-softmmu \
624mips64-softmmu \
625mips64el-softmmu \
626ppc-softmmu \
627ppcemb-softmmu \
628ppc64-softmmu \
629sh4-softmmu \
630sh4eb-softmmu \
631sparc-softmmu \
632"
pbrook0a8e90f2006-03-19 14:54:16 +0000633 fi
bellard5327cf42005-01-10 23:18:50 +0000634# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000635 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000636 target_list="${target_list}\
637i386-linux-user \
638x86_64-linux-user \
639alpha-linux-user \
640arm-linux-user \
641armeb-linux-user \
642cris-linux-user \
643m68k-linux-user \
644mips-linux-user \
645mipsel-linux-user \
646ppc-linux-user \
647ppc64-linux-user \
648ppc64abi32-linux-user \
649sh4-linux-user \
650sh4eb-linux-user \
651sparc-linux-user \
652sparc64-linux-user \
653sparc32plus-linux-user \
654"
ths831b7822007-01-18 20:06:33 +0000655 fi
656# the following are Darwin specific
657 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000658 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000659 fi
blueswir184778502008-10-26 20:33:16 +0000660# the following are BSD specific
661 if [ "$bsd_user" = "yes" ] ; then
662 target_list="${target_list}\
663sparc64-bsd-user \
664"
665 fi
bellard6e20a452005-06-05 15:56:02 +0000666else
pbrookb1a550a2006-04-16 13:28:56 +0000667 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000668fi
pbrook0a8e90f2006-03-19 14:54:16 +0000669if test -z "$target_list" ; then
670 echo "No targets enabled"
671 exit 1
672fi
bellard5327cf42005-01-10 23:18:50 +0000673
bellard7d132992003-03-06 23:23:54 +0000674if test -z "$cross_prefix" ; then
675
676# ---
677# big/little endian test
678cat > $TMPC << EOF
679#include <inttypes.h>
680int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000681 volatile uint32_t i=0x01234567;
682 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000683}
684EOF
685
aurel32178baee2008-12-08 18:11:57 +0000686if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000687$TMPE && bigendian="yes"
688else
689echo big/little test failed
690fi
691
692else
693
694# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000695if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000696 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000697 -o "$cpu" = "m68k" \
698 -o "$cpu" = "mips" \
699 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000700 -o "$cpu" = "ppc" \
701 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000702 -o "$cpu" = "s390" \
703 -o "$cpu" = "sparc" \
704 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000705 bigendian="yes"
706fi
707
708fi
709
bellardb6853692005-06-05 17:10:39 +0000710# host long bits test
711hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000712if test "$cpu" = "x86_64" \
713 -o "$cpu" = "alpha" \
714 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000715 -o "$cpu" = "sparc64" \
716 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000717 hostlongbits="64"
718fi
719
bellarde8cd23d2003-06-25 16:08:13 +0000720# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000721cat > $TMPC <<EOF
722int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000723}
724EOF
725
pbrookbd0c5662008-05-29 14:34:11 +0000726# Check host NPTL support
727cat > $TMPC <<EOF
728#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000729#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000730void foo()
731{
732#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
733#error bork
734#endif
735}
736EOF
737
balrog8c7f7572008-12-15 03:15:36 +0000738if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000739 :
740else
741 nptl="no"
742fi
743
bellard11d9f692004-04-02 20:55:59 +0000744##########################################
balrogac629222008-10-11 09:56:04 +0000745# zlib check
746
747cat > $TMPC << EOF
748#include <zlib.h>
749int main(void) { zlibVersion(); return 0; }
750EOF
balrog8c7f7572008-12-15 03:15:36 +0000751if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000752 :
753else
754 echo
755 echo "Error: zlib check failed"
756 echo "Make sure to have the zlib libs and headers installed."
757 echo
758 exit 1
759fi
760
761##########################################
bellard11d9f692004-04-02 20:55:59 +0000762# SDL probe
763
764sdl_too_old=no
765
766if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000767 sdl_config="sdl-config"
768 sdl=no
769 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000770
771cat > $TMPC << EOF
772#include <SDL.h>
773#undef main /* We don't want SDL to override our main() */
774int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
775EOF
balrog8c7f7572008-12-15 03:15:36 +0000776 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 +0000777 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
778 if test "$_sdlversion" -lt 121 ; then
779 sdl_too_old=yes
780 else
781 if test "$cocoa" = "no" ; then
782 sdl=yes
783 fi
784 fi
785
786 # static link with sdl ?
787 if test "$sdl" = "yes" ; then
788 aa="no"
789 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
790 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
791 if [ "$aa" = "yes" ] ; then
792 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000793 fi
bellard11d9f692004-04-02 20:55:59 +0000794
balrog8c7f7572008-12-15 03:15:36 +0000795 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 +0000796 sdl_static=yes
797 fi
798 fi # static link
799 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000800else
ths069b0bd2007-07-12 00:27:15 +0000801 # Make sure to disable cocoa if sdl was set
802 if test "$sdl" = "yes" ; then
803 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000804 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000805 fi
bellarda6e022a2004-04-02 21:55:47 +0000806fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000807
ths8f28f3f2007-01-05 21:25:54 +0000808##########################################
ths8d5d2d42007-08-25 01:37:51 +0000809# VNC TLS detection
810if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000811cat > $TMPC <<EOF
812#include <gnutls/gnutls.h>
813int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
814EOF
815 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
816 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
817 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000818 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000819 :
820 else
821 vnc_tls="no"
822 fi
ths8d5d2d42007-08-25 01:37:51 +0000823fi
824
825##########################################
ths8a16d272008-07-19 09:56:24 +0000826# vde libraries probe
827if test "$vde" = "yes" ; then
828 cat > $TMPC << EOF
829#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000830int main(void)
831{
832 struct vde_open_args a = {0, 0, 0};
833 vde_open("", "", &a);
834 return 0;
835}
ths8a16d272008-07-19 09:56:24 +0000836EOF
balrog8c7f7572008-12-15 03:15:36 +0000837 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000838 :
839 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000840 vde="no"
ths8a16d272008-07-19 09:56:24 +0000841 fi
842fi
843
844##########################################
malcc2de5c92008-06-28 19:13:06 +0000845# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000846
malcc2de5c92008-06-28 19:13:06 +0000847audio_drv_probe()
848{
849 drv=$1
850 hdr=$2
851 lib=$3
852 exp=$4
853 cfl=$5
854 cat > $TMPC << EOF
855#include <$hdr>
856int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000857EOF
balrog8c7f7572008-12-15 03:15:36 +0000858 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000859 :
860 else
861 echo
862 echo "Error: $drv check failed"
863 echo "Make sure to have the $drv libs and headers installed."
864 echo
865 exit 1
866 fi
867}
868
malc2fa7d3b2008-07-29 12:58:44 +0000869audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000870for drv in $audio_drv_list; do
871 case $drv in
872 alsa)
873 audio_drv_probe $drv alsa/asoundlib.h -lasound \
874 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
875 ;;
876
877 fmod)
878 if test -z $fmod_lib || test -z $fmod_inc; then
879 echo
880 echo "Error: You must specify path to FMOD library and headers"
881 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
882 echo
883 exit 1
884 fi
885 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
886 ;;
887
888 esd)
889 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
890 ;;
malcb8e59f12008-07-02 21:03:08 +0000891
892 pa)
893 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
894 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
895 ;;
896
blueswir12f6a1ab2008-08-21 18:00:53 +0000897 oss|sdl|core|wav|dsound)
898 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
899 ;;
900
malce4c63a62008-07-19 16:15:16 +0000901 *)
malc1c9b2a52008-07-19 16:57:30 +0000902 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000903 echo
904 echo "Error: Unknown driver '$drv' selected"
905 echo "Possible drivers are: $audio_possible_drivers"
906 echo
907 exit 1
908 }
909 ;;
malcc2de5c92008-06-28 19:13:06 +0000910 esac
911done
ths8f28f3f2007-01-05 21:25:54 +0000912
balrog4d3b6f62008-02-10 16:33:14 +0000913##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000914# BrlAPI probe
915
916if test -z "$brlapi" ; then
917 brlapi=no
918cat > $TMPC << EOF
919#include <brlapi.h>
920int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
921EOF
aurel32178baee2008-12-08 18:11:57 +0000922 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000923 brlapi=yes
924 fi # brlapi compile test
925fi # -z $brlapi
926
927##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000928# curses probe
929
930if test "$curses" = "yes" ; then
931 curses=no
932 cat > $TMPC << EOF
933#include <curses.h>
934int main(void) { return curses_version(); }
935EOF
aurel32178baee2008-12-08 18:11:57 +0000936 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000937 curses=yes
938 fi
939fi # test "$curses"
940
blueswir1414f0da2008-08-15 18:20:52 +0000941##########################################
balrogfb599c92008-09-28 23:49:55 +0000942# bluez support probe
943if test "$bluez" = "yes" ; then
944 `pkg-config bluez` || bluez="no"
945fi
946if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000947 cat > $TMPC << EOF
948#include <bluetooth/bluetooth.h>
949int main(void) { return bt_error(0); }
950EOF
balrogfb599c92008-09-28 23:49:55 +0000951 bluez_cflags=`pkg-config --cflags bluez`
952 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000953 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000954 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +0000955 :
956 else
957 bluez="no"
958 fi
balrogfb599c92008-09-28 23:49:55 +0000959fi
960
961##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000962# kvm probe
963if test "$kvm" = "yes" ; then
964 cat > $TMPC <<EOF
965#include <linux/kvm.h>
aliguori9fd8d8d2009-01-15 21:57:30 +0000966#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
aliguori7ba1e612008-11-05 16:04:33 +0000967#error Invalid KVM version
968#endif
aliguori9fd8d8d2009-01-15 21:57:30 +0000969#if !defined(KVM_CAP_USER_MEMORY)
970#error Missing KVM capability KVM_CAP_USER_MEMORY
971#endif
972#if !defined(KVM_CAP_SET_TSS_ADDR)
973#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
974#endif
975#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
976#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
977#endif
aliguori7ba1e612008-11-05 16:04:33 +0000978int main(void) { return 0; }
979EOF
aliguorieac30262008-11-05 16:28:56 +0000980 if test "$kerneldir" != "" ; then
981 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +0000982 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
983 -a -d "$kerneldir/arch/x86/include" ; then
984 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +0000985 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
986 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +0000987 elif test -d "$kerneldir/arch/$cpu/include" ; then
988 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
989 fi
aliguorieac30262008-11-05 16:28:56 +0000990 else
991 kvm_cflags=""
992 fi
aliguori7ba1e612008-11-05 16:04:33 +0000993 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000994 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +0000995 :
996 else
aliguori9fd8d8d2009-01-15 21:57:30 +0000997 kvm="no";
998 if [ -x "`which awk 2>/dev/null`" ] && \
999 [ -x "`which grep 2>/dev/null`" ]; then
1000 kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
1001 | grep "error: " \
1002 | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
1003 if test "$kvmerr" != "" ; then
1004 kvm="no - (${kvmerr})"
1005 fi
1006 fi
aliguori7ba1e612008-11-05 16:04:33 +00001007 fi
1008fi
1009
1010##########################################
blueswir1414f0da2008-08-15 18:20:52 +00001011# AIO probe
aliguori3c529d92008-12-12 16:41:40 +00001012AIOLIBS=""
1013
blueswir1414f0da2008-08-15 18:20:52 +00001014if test "$aio" = "yes" ; then
1015 aio=no
1016 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +00001017#include <pthread.h>
blueswir1c9db92f2009-01-17 06:49:15 +00001018int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +00001019EOF
1020 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1021 aio=yes
aliguori3c529d92008-12-12 16:41:40 +00001022 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +00001023 fi
1024fi
1025
aliguoribf9298b2008-12-05 20:05:26 +00001026##########################################
1027# iovec probe
1028cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001029#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001030#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001031#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001032int main(void) { struct iovec iov; return 0; }
1033EOF
1034iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001035if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001036 iovec=yes
1037fi
1038
aurel32f652e6a2008-12-16 10:43:48 +00001039##########################################
1040# fdt probe
1041if test "$fdt" = "yes" ; then
1042 fdt=no
1043 cat > $TMPC << EOF
1044int main(void) { return 0; }
1045EOF
1046 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1047 fdt=yes
1048 fi
1049fi
1050
pbrookcc8ae6d2006-04-23 17:57:59 +00001051# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001052if [ -x "`which texi2html 2>/dev/null`" ] && \
1053 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001054 build_docs="yes"
1055fi
1056
aliguorida93a1f2008-12-12 20:02:52 +00001057##########################################
1058# Do we need librt
1059cat > $TMPC <<EOF
1060#include <signal.h>
1061#include <time.h>
1062int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1063EOF
1064
1065rt=no
balrog8c7f7572008-12-15 03:15:36 +00001066if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001067 :
balrog8c7f7572008-12-15 03:15:36 +00001068elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001069 rt=yes
1070fi
1071
1072if test "$rt" = "yes" ; then
1073 # Hack, we should have a general purpose LIBS for this sort of thing
1074 AIOLIBS="$AIOLIBS -lrt"
1075fi
1076
bellard11d9f692004-04-02 20:55:59 +00001077if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001078 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001079 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001080 fi
1081 mansuffix=""
1082 datasuffix=""
1083 docsuffix=""
1084 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001085else
pbrook308c3592007-02-27 00:52:01 +00001086 if test -z "$prefix" ; then
1087 prefix="/usr/local"
1088 fi
1089 mansuffix="/share/man"
1090 datasuffix="/share/qemu"
1091 docsuffix="/share/doc/qemu"
1092 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001093fi
bellard5a671352003-10-01 00:13:48 +00001094
bellard43ce4df2003-06-09 19:53:12 +00001095echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001096echo "BIOS directory $prefix$datasuffix"
1097echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001098if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001099echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001100echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001101fi
bellard5a671352003-10-01 00:13:48 +00001102echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001103echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001104echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001105echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001106echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001107echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001108echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001109echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001110echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001111echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001112echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001113echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001114echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001115echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001116if test "$darwin" = "yes" ; then
1117 echo "Cocoa support $cocoa"
1118fi
bellard97a847b2003-08-10 21:36:04 +00001119echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001120if test "$sdl" != "no" ; then
1121 echo "SDL static link $sdl_static"
1122fi
balrog4d3b6f62008-02-10 16:33:14 +00001123echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001124echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001125echo "Audio drivers $audio_drv_list"
1126echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001127echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001128echo "VNC TLS support $vnc_tls"
1129if test "$vnc_tls" = "yes" ; then
1130 echo " TLS CFLAGS $vnc_tls_cflags"
1131 echo " TLS LIBS $vnc_tls_libs"
1132fi
blueswir131422552007-04-16 18:27:06 +00001133if test -n "$sparc_cpu"; then
1134 echo "Target Sparc Arch $sparc_cpu"
1135fi
bellard07f4ddb2005-04-23 17:44:28 +00001136echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001137echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001138echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001139[ ! -z "$uname_release" ] && \
1140echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001141echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001142echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001143echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001144echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001145echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001146echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001147
bellard97a847b2003-08-10 21:36:04 +00001148if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001149echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001150fi
malcd4742de2008-11-29 22:04:31 +00001151if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001152 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001153 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001154fi
bellard24b55b92005-03-01 22:30:41 +00001155#if test "$sdl_static" = "no"; then
1156# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1157#fi
bellard97a847b2003-08-10 21:36:04 +00001158config_mak="config-host.mak"
1159config_h="config-host.h"
1160
bellard7c1f25b2004-04-22 00:02:08 +00001161#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001162
ths15d9ca02007-07-31 23:07:32 +00001163test -f $config_h && mv $config_h ${config_h}~
1164
bellard97a847b2003-08-10 21:36:04 +00001165echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001166printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001167printf " '%s'" "$0" "$@" >> $config_mak
1168echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001169echo "/* Automatically generated by configure - do not modify */" > $config_h
1170
1171echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001172echo "bindir=\${prefix}$binsuffix" >> $config_mak
1173echo "mandir=\${prefix}$mansuffix" >> $config_mak
1174echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001175echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001176echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001177echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001178echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001179echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001180echo "HOST_CC=$host_cc" >> $config_mak
1181echo "AR=$ar" >> $config_mak
1182echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001183# XXX: only use CFLAGS and LDFLAGS ?
1184# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1185# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001186echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001187echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1188echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1189echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001190echo "CFLAGS=$CFLAGS" >> $config_mak
1191echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001192echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001193echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001194case "$cpu" in
1195 i386)
1196 echo "ARCH=i386" >> $config_mak
1197 echo "#define HOST_I386 1" >> $config_h
1198 ;;
1199 x86_64)
1200 echo "ARCH=x86_64" >> $config_mak
1201 echo "#define HOST_X86_64 1" >> $config_h
1202 ;;
1203 alpha)
1204 echo "ARCH=alpha" >> $config_mak
1205 echo "#define HOST_ALPHA 1" >> $config_h
1206 ;;
1207 armv4b)
1208 echo "ARCH=arm" >> $config_mak
1209 echo "#define HOST_ARM 1" >> $config_h
1210 ;;
1211 armv4l)
1212 echo "ARCH=arm" >> $config_mak
1213 echo "#define HOST_ARM 1" >> $config_h
1214 ;;
1215 cris)
1216 echo "ARCH=cris" >> $config_mak
1217 echo "#define HOST_CRIS 1" >> $config_h
1218 ;;
1219 hppa)
1220 echo "ARCH=hppa" >> $config_mak
1221 echo "#define HOST_HPPA 1" >> $config_h
1222 ;;
1223 ia64)
1224 echo "ARCH=ia64" >> $config_mak
1225 echo "#define HOST_IA64 1" >> $config_h
1226 ;;
1227 m68k)
1228 echo "ARCH=m68k" >> $config_mak
1229 echo "#define HOST_M68K 1" >> $config_h
1230 ;;
1231 mips)
1232 echo "ARCH=mips" >> $config_mak
1233 echo "#define HOST_MIPS 1" >> $config_h
1234 ;;
1235 mips64)
1236 echo "ARCH=mips64" >> $config_mak
1237 echo "#define HOST_MIPS64 1" >> $config_h
1238 ;;
malcfdf7ed92009-01-14 18:39:52 +00001239 ppc)
1240 echo "ARCH=ppc" >> $config_mak
1241 echo "#define HOST_PPC 1" >> $config_h
1242 ;;
1243 ppc64)
1244 echo "ARCH=ppc64" >> $config_mak
1245 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001246 ;;
1247 s390)
1248 echo "ARCH=s390" >> $config_mak
1249 echo "#define HOST_S390 1" >> $config_h
1250 ;;
1251 sparc)
1252 echo "ARCH=sparc" >> $config_mak
1253 echo "#define HOST_SPARC 1" >> $config_h
1254 ;;
1255 sparc64)
1256 echo "ARCH=sparc64" >> $config_mak
1257 echo "#define HOST_SPARC64 1" >> $config_h
1258 ;;
1259 *)
1260 echo "Unsupported CPU = $cpu"
1261 exit 1
1262 ;;
1263esac
aliguori03b4fe72008-10-07 19:16:17 +00001264if test "$sparse" = "yes" ; then
1265 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1266 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1267 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1268fi
bellard7d132992003-03-06 23:23:54 +00001269if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001270 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1271 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1272fi
bellardb6853692005-06-05 17:10:39 +00001273echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001274if test "$mingw32" = "yes" ; then
1275 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001276 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001277else
1278 cat > $TMPC << EOF
1279#include <byteswap.h>
1280int main(void) { return bswap_32(0); }
1281EOF
aurel32178baee2008-12-08 18:11:57 +00001282 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001283 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1284 fi
blueswir113606772008-12-05 17:54:09 +00001285 cat > $TMPC << EOF
1286#include <sys/endian.h>
1287#include <sys/types.h>
1288#include <machine/bswap.h>
1289int main(void) { return bswap32(0); }
1290EOF
aurel32178baee2008-12-08 18:11:57 +00001291 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001292 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1293 fi
bellard67b915a2004-03-31 23:37:16 +00001294fi
blueswir1128ab2f2008-08-15 18:33:42 +00001295
1296if [ "$openbsd" = "yes" ] ; then
1297 echo "#define ENOTSUP 4096" >> $config_h
1298fi
1299
bellard83fb7ad2004-07-05 21:25:26 +00001300if test "$darwin" = "yes" ; then
1301 echo "CONFIG_DARWIN=yes" >> $config_mak
1302 echo "#define CONFIG_DARWIN 1" >> $config_h
1303fi
malcb29fe3e2008-11-18 01:42:22 +00001304
1305if test "$aix" = "yes" ; then
1306 echo "CONFIG_AIX=yes" >> $config_mak
1307 echo "#define CONFIG_AIX 1" >> $config_h
1308fi
1309
bellardec530c82006-04-25 22:36:06 +00001310if test "$solaris" = "yes" ; then
1311 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001312 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001313 if test "$needs_libsunmath" = "yes" ; then
1314 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1315 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1316 fi
bellardec530c82006-04-25 22:36:06 +00001317fi
blueswir131422552007-04-16 18:27:06 +00001318if test -n "$sparc_cpu"; then
1319 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1320 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1321fi
bellard67b915a2004-03-31 23:37:16 +00001322if test "$gdbstub" = "yes" ; then
1323 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1324 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1325fi
bellard97a847b2003-08-10 21:36:04 +00001326if test "$gprof" = "yes" ; then
1327 echo "TARGET_GPROF=yes" >> $config_mak
1328 echo "#define HAVE_GPROF 1" >> $config_h
1329fi
1330if test "$static" = "yes" ; then
1331 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001332 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001333fi
bellard05c2a3e2006-02-08 22:39:17 +00001334if test $profiler = "yes" ; then
1335 echo "#define CONFIG_PROFILER 1" >> $config_h
1336fi
bellardc20709a2004-04-21 23:27:19 +00001337if test "$slirp" = "yes" ; then
1338 echo "CONFIG_SLIRP=yes" >> $config_mak
1339 echo "#define CONFIG_SLIRP 1" >> $config_h
1340fi
ths8a16d272008-07-19 09:56:24 +00001341if test "$vde" = "yes" ; then
1342 echo "CONFIG_VDE=yes" >> $config_mak
1343 echo "#define CONFIG_VDE 1" >> $config_h
1344 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1345fi
malc0c58ac12008-06-25 21:04:05 +00001346for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001347 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001348 echo "$def=yes" >> $config_mak
1349 echo "#define $def 1" >> $config_h
1350done
1351echo "#define AUDIO_DRIVERS \\" >> $config_h
1352for drv in $audio_drv_list; do
1353 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001354 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001355 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001356 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001357 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1358 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001359 elif test "$drv" = "oss"; then
1360 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001361 fi
1362done
1363echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001364if test "$mixemu" = "yes" ; then
1365 echo "CONFIG_MIXEMU=yes" >> $config_mak
1366 echo "#define CONFIG_MIXEMU 1" >> $config_h
1367fi
ths8d5d2d42007-08-25 01:37:51 +00001368if test "$vnc_tls" = "yes" ; then
1369 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1370 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1371 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1372 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1373fi
pbrookb1a550a2006-04-16 13:28:56 +00001374qemu_version=`head $source_path/VERSION`
1375echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001376echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001377
1378echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001379if [ "$source_path_used" = "yes" ]; then
1380 echo "VPATH=$source_path" >> $config_mak
1381fi
bellard97a847b2003-08-10 21:36:04 +00001382echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001383if [ "$build_docs" = "yes" ] ; then
1384 echo "BUILD_DOCS=yes" >> $config_mak
1385fi
bellard49ecc3f2007-11-07 19:25:15 +00001386if test "$static" = "yes"; then
1387 sdl1=$sdl_static
1388else
1389 sdl1=$sdl
1390fi
1391if test "$sdl1" = "yes" ; then
1392 echo "#define CONFIG_SDL 1" >> $config_h
1393 echo "CONFIG_SDL=yes" >> $config_mak
1394 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1395 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1396 else
1397 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1398 fi
1399 if [ "${aa}" = "yes" ] ; then
1400 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1401 else
1402 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1403 fi
1404fi
1405if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001406 echo "#define CONFIG_COCOA 1" >> $config_h
1407 echo "CONFIG_COCOA=yes" >> $config_mak
1408fi
1409if test "$curses" = "yes" ; then
1410 echo "#define CONFIG_CURSES 1" >> $config_h
1411 echo "CONFIG_CURSES=yes" >> $config_mak
1412 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001413fi
aurel322e4d9fb2008-04-08 06:01:02 +00001414if test "$brlapi" = "yes" ; then
1415 echo "CONFIG_BRLAPI=yes" >> $config_mak
1416 echo "#define CONFIG_BRLAPI 1" >> $config_h
1417 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1418fi
balrogfb599c92008-09-28 23:49:55 +00001419if test "$bluez" = "yes" ; then
1420 echo "CONFIG_BLUEZ=yes" >> $config_mak
1421 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1422 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1423 echo "#define CONFIG_BLUEZ 1" >> $config_h
1424fi
blueswir1414f0da2008-08-15 18:20:52 +00001425if test "$aio" = "yes" ; then
1426 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001427 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001428fi
ths77755342008-11-27 15:45:16 +00001429if test "$blobs" = "yes" ; then
1430 echo "INSTALL_BLOBS=yes" >> $config_mak
1431fi
aliguoribf9298b2008-12-05 20:05:26 +00001432if test "$iovec" = "yes" ; then
1433 echo "#define HAVE_IOVEC 1" >> $config_h
1434fi
aurel32f652e6a2008-12-16 10:43:48 +00001435if test "$fdt" = "yes" ; then
1436 echo "#define HAVE_FDT 1" >> $config_h
1437 echo "FDT_LIBS=-lfdt" >> $config_mak
1438fi
bellard97a847b2003-08-10 21:36:04 +00001439
bellard83fb7ad2004-07-05 21:25:26 +00001440# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001441if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001442 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001443 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001444 echo "#define _BSD 1" >> $config_h
1445fi
1446
pbrookc5937222006-05-14 11:30:38 +00001447echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1448
blueswir168063642008-11-22 21:03:55 +00001449# USB host support
1450case "$usb" in
1451linux)
1452 echo "HOST_USB=linux" >> $config_mak
1453;;
1454bsd)
1455 echo "HOST_USB=bsd" >> $config_mak
1456;;
1457*)
1458 echo "HOST_USB=stub" >> $config_mak
1459;;
1460esac
1461
pbrookc39e3332007-09-22 16:49:14 +00001462tools=
1463if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1464 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001465 if [ "$linux" = "yes" ] ; then
1466 tools="qemu-nbd\$(EXESUF) $tools"
1467 fi
pbrookc39e3332007-09-22 16:49:14 +00001468fi
1469echo "TOOLS=$tools" >> $config_mak
1470
ths15d9ca02007-07-31 23:07:32 +00001471test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1472
bellard1d14ffa2005-10-30 18:58:22 +00001473for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001474target_dir="$target"
1475config_mak=$target_dir/config.mak
1476config_h=$target_dir/config.h
1477target_cpu=`echo $target | cut -d '-' -f 1`
1478target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001479[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001480[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1481[ "$target_cpu" = "mips" ] && target_bigendian=yes
1482[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1483[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001484[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001485[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001486[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001487[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001488[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001489[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1490[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1491[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001492target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001493target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001494target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001495target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001496target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001497case "$target" in
1498 ${target_cpu}-softmmu)
1499 target_softmmu="yes"
1500 ;;
1501 ${target_cpu}-linux-user)
1502 target_user_only="yes"
1503 target_linux_user="yes"
1504 ;;
1505 ${target_cpu}-darwin-user)
1506 target_user_only="yes"
1507 target_darwin_user="yes"
1508 ;;
blueswir184778502008-10-26 20:33:16 +00001509 ${target_cpu}-bsd-user)
1510 target_user_only="yes"
1511 target_bsd_user="yes"
1512 ;;
pbrook9e407a82007-05-26 16:38:53 +00001513 *)
1514 echo "ERROR: Target '$target' not recognised"
1515 exit 1
1516 ;;
1517esac
ths831b7822007-01-18 20:06:33 +00001518
bellard97ccc682005-07-02 13:32:17 +00001519if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001520 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001521 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001522 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001523 echo "Note that this will disable all output from the virtual graphics card"
1524 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001525 exit 1;
1526fi
1527
bellard7c1f25b2004-04-22 00:02:08 +00001528#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001529
ths15d9ca02007-07-31 23:07:32 +00001530test -f $config_h && mv $config_h ${config_h}~
1531
bellard97a847b2003-08-10 21:36:04 +00001532mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001533mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001534mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001535if 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 +00001536 mkdir -p $target_dir/nwfpe
1537fi
1538
bellardec530c82006-04-25 22:36:06 +00001539#
1540# don't use ln -sf as not all "ln -sf" over write the file/link
1541#
1542rm -f $target_dir/Makefile
1543ln -s $source_path/Makefile.target $target_dir/Makefile
1544
bellard97a847b2003-08-10 21:36:04 +00001545
1546echo "# Automatically generated by configure - do not modify" > $config_mak
1547echo "/* Automatically generated by configure - do not modify */" > $config_h
1548
1549
1550echo "include ../config-host.mak" >> $config_mak
1551echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001552
pbrooke5fe0c52006-06-11 13:32:59 +00001553bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001554elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001555target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001556interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1557echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001558gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001559
aliguori5985ece2008-11-05 19:59:25 +00001560# Make sure the target and host cpus are compatible
1561if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
malcfdf7ed92009-01-14 18:39:52 +00001562 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001563 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1564 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001565 kvm="no"
1566fi
1567# Disable KVM for linux-user
1568if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1569 kvm="no"
1570fi
1571
aurel322408a522008-04-20 20:19:44 +00001572case "$target_cpu" in
1573 i386)
1574 echo "TARGET_ARCH=i386" >> $config_mak
1575 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1576 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001577 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001578 then
1579 echo "#define USE_KQEMU 1" >> $config_h
1580 fi
aliguori7ba1e612008-11-05 16:04:33 +00001581 if test "$kvm" = "yes" ; then
1582 echo "CONFIG_KVM=yes" >> $config_mak
1583 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001584 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001585 fi
aurel322408a522008-04-20 20:19:44 +00001586 ;;
1587 x86_64)
1588 echo "TARGET_ARCH=x86_64" >> $config_mak
1589 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1590 echo "#define TARGET_I386 1" >> $config_h
1591 echo "#define TARGET_X86_64 1" >> $config_h
1592 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1593 then
1594 echo "#define USE_KQEMU 1" >> $config_h
1595 fi
aliguori7ba1e612008-11-05 16:04:33 +00001596 if test "$kvm" = "yes" ; then
1597 echo "CONFIG_KVM=yes" >> $config_mak
1598 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1599 echo "#define CONFIG_KVM 1" >> $config_h
1600 fi
aurel322408a522008-04-20 20:19:44 +00001601 ;;
1602 alpha)
1603 echo "TARGET_ARCH=alpha" >> $config_mak
1604 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1605 echo "#define TARGET_ALPHA 1" >> $config_h
1606 ;;
1607 arm|armeb)
1608 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001609 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1610 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001611 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001612 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001613 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001614 ;;
1615 cris)
1616 echo "TARGET_ARCH=cris" >> $config_mak
1617 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1618 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001619 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001620 ;;
1621 m68k)
1622 echo "TARGET_ARCH=m68k" >> $config_mak
1623 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1624 echo "#define TARGET_M68K 1" >> $config_h
1625 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001626 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001627 ;;
1628 mips|mipsel)
1629 echo "TARGET_ARCH=mips" >> $config_mak
1630 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1631 echo "#define TARGET_MIPS 1" >> $config_h
1632 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1633 ;;
1634 mipsn32|mipsn32el)
1635 echo "TARGET_ARCH=mipsn32" >> $config_mak
1636 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1637 echo "#define TARGET_MIPS 1" >> $config_h
1638 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1639 ;;
1640 mips64|mips64el)
1641 echo "TARGET_ARCH=mips64" >> $config_mak
1642 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1643 echo "#define TARGET_MIPS 1" >> $config_h
1644 echo "#define TARGET_MIPS64 1" >> $config_h
1645 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1646 ;;
1647 ppc)
1648 echo "TARGET_ARCH=ppc" >> $config_mak
1649 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1650 echo "#define TARGET_PPC 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001651 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001652 ;;
1653 ppcemb)
1654 echo "TARGET_ARCH=ppcemb" >> $config_mak
1655 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1656 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1657 echo "#define TARGET_PPC 1" >> $config_h
1658 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001659 if test "$kvm" = "yes" ; then
1660 echo "CONFIG_KVM=yes" >> $config_mak
1661 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1662 echo "#define CONFIG_KVM 1" >> $config_h
1663 fi
aurel32c8b35322009-01-24 15:07:34 +00001664 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001665 ;;
1666 ppc64)
1667 echo "TARGET_ARCH=ppc64" >> $config_mak
1668 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1669 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1670 echo "#define TARGET_PPC 1" >> $config_h
1671 echo "#define TARGET_PPC64 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001672 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001673 ;;
1674 ppc64abi32)
1675 echo "TARGET_ARCH=ppc64" >> $config_mak
1676 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1677 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1678 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1679 echo "#define TARGET_PPC 1" >> $config_h
1680 echo "#define TARGET_PPC64 1" >> $config_h
1681 echo "#define TARGET_ABI32 1" >> $config_h
aurel32c8b35322009-01-24 15:07:34 +00001682 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
aurel322408a522008-04-20 20:19:44 +00001683 ;;
1684 sh4|sh4eb)
1685 echo "TARGET_ARCH=sh4" >> $config_mak
1686 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1687 echo "#define TARGET_SH4 1" >> $config_h
1688 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001689 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001690 ;;
1691 sparc)
1692 echo "TARGET_ARCH=sparc" >> $config_mak
1693 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1694 echo "#define TARGET_SPARC 1" >> $config_h
1695 ;;
1696 sparc64)
1697 echo "TARGET_ARCH=sparc64" >> $config_mak
1698 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1699 echo "#define TARGET_SPARC 1" >> $config_h
1700 echo "#define TARGET_SPARC64 1" >> $config_h
1701 elfload32="yes"
1702 ;;
1703 sparc32plus)
1704 echo "TARGET_ARCH=sparc64" >> $config_mak
1705 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1706 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1707 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1708 echo "#define TARGET_SPARC 1" >> $config_h
1709 echo "#define TARGET_SPARC64 1" >> $config_h
1710 echo "#define TARGET_ABI32 1" >> $config_h
1711 ;;
1712 *)
1713 echo "Unsupported target CPU"
1714 exit 1
1715 ;;
1716esac
bellardde83cd02003-06-15 20:25:43 +00001717if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001718 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1719 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1720fi
1721if test "$target_softmmu" = "yes" ; then
1722 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1723 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001724fi
bellard997344f2003-10-27 21:10:39 +00001725if test "$target_user_only" = "yes" ; then
1726 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1727 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1728fi
ths831b7822007-01-18 20:06:33 +00001729if test "$target_linux_user" = "yes" ; then
1730 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1731 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1732fi
1733if test "$target_darwin_user" = "yes" ; then
1734 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1735 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1736fi
pbrook56aebc82008-10-11 17:55:29 +00001737list=""
1738if test ! -z "$gdb_xml_files" ; then
1739 for x in $gdb_xml_files; do
1740 list="$list $source_path/gdb-xml/$x"
1741 done
1742fi
1743echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001744
aurel320938cda2008-04-11 21:36:06 +00001745if test "$target_cpu" = "arm" \
1746 -o "$target_cpu" = "armeb" \
1747 -o "$target_cpu" = "m68k" \
1748 -o "$target_cpu" = "mips" \
1749 -o "$target_cpu" = "mipsel" \
1750 -o "$target_cpu" = "mipsn32" \
1751 -o "$target_cpu" = "mipsn32el" \
1752 -o "$target_cpu" = "mips64" \
1753 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001754 -o "$target_cpu" = "ppc" \
1755 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001756 -o "$target_cpu" = "ppc64abi32" \
1757 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001758 -o "$target_cpu" = "sparc" \
1759 -o "$target_cpu" = "sparc64" \
1760 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001761 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1762 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1763fi
pbrooke5fe0c52006-06-11 13:32:59 +00001764if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1765 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1766 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1767fi
pbrookbd0c5662008-05-29 14:34:11 +00001768if test "$target_user_only" = "yes" \
1769 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1770 echo "#define USE_NPTL 1" >> $config_h
1771fi
blueswir1cb33da52007-10-09 16:34:29 +00001772# 32 bit ELF loader in addition to native 64 bit loader?
1773if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1774 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1775 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1776fi
blueswir184778502008-10-26 20:33:16 +00001777if test "$target_bsd_user" = "yes" ; then
1778 echo "CONFIG_BSD_USER=yes" >> $config_mak
1779 echo "#define CONFIG_BSD_USER 1" >> $config_h
1780fi
bellard5b0753e2005-03-01 21:37:28 +00001781
ths15d9ca02007-07-31 23:07:32 +00001782test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1783
bellard97a847b2003-08-10 21:36:04 +00001784done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001785
1786# build tree in object directory if source path is different from current one
1787if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001788 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001789 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001790 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001791 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001792 for dir in $DIRS ; do
1793 mkdir -p $dir
1794 done
bellardec530c82006-04-25 22:36:06 +00001795 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001796 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001797 rm -f $f
1798 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001799 done
1800fi