blob: 7fb60fd3fe721c5b61b458fdd0b129d3eead7e74 [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"
ths831b7822007-01-18 20:06:33 +0000246darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000247cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000248audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000249audio_possible_drivers="coreaudio sdl fmod"
ths6f30fa82007-01-05 01:00:47 +0000250OS_CFLAGS="-mdynamic-no-pic"
thsc2c59c32008-01-08 00:00:20 +0000251OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000252;;
bellardec530c82006-04-25 22:36:06 +0000253SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000254 solaris="yes"
255 make="gmake"
256 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000257 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000258 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000259 # have to select again, because `uname -m` returns i86pc
260 # even on an x86_64 box.
261 solariscpu=`isainfo -k`
262 if test "${solariscpu}" = "amd64" ; then
263 cpu="x86_64"
264 fi
thsc2b84fa2007-02-10 23:21:21 +0000265 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000266 if test "$solarisrev" -le 9 ; then
267 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
268 needs_libsunmath="yes"
269 else
270 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
271 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
272 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
273 echo "Studio 11 can be downloaded from www.sun.com."
274 exit 1
275 fi
276 fi
277 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000278 kqemu="yes"
279 fi
ths86b2bd92007-02-11 00:31:33 +0000280 fi
ths6b4d2ba2007-05-13 18:02:43 +0000281 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000282 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000283 fi
malcc2de5c92008-06-28 19:13:06 +0000284 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000285;;
malcb29fe3e2008-11-18 01:42:22 +0000286AIX)
287aix="yes"
288make="gmake"
289;;
bellard1d14ffa2005-10-30 18:58:22 +0000290*)
malc0c58ac12008-06-25 21:04:05 +0000291audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000292audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000293linux="yes"
ths831b7822007-01-18 20:06:33 +0000294linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000295usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000296if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000297 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000298 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000299fi
bellardfb065182004-11-09 23:09:44 +0000300;;
bellard7d132992003-03-06 23:23:54 +0000301esac
302
bellard7d3505c2004-05-12 19:32:15 +0000303if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000304 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000305 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000306 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000307 fi
blueswir184778502008-10-26 20:33:16 +0000308 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000309fi
310
bellard7d132992003-03-06 23:23:54 +0000311# find source path
pbrookad064842006-04-16 12:41:07 +0000312source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000313source_path_used="no"
314workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000315if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000316 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000317else
318 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000319fi
pbrook724db112008-02-03 19:20:13 +0000320[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000321
bellard85aa5182007-11-11 20:17:03 +0000322werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000323# generate compile errors on warnings for development builds
324#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
325#werror="yes";
326#fi
bellard85aa5182007-11-11 20:17:03 +0000327
bellard7d132992003-03-06 23:23:54 +0000328for opt do
pbrooka46e4032006-04-29 23:05:22 +0000329 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000330 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000331 --help|-h) show_help=yes
332 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000333 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000334 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000335 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000336 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000337 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000338 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000339 ;;
aliguoriac0df512008-12-29 17:14:15 +0000340 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000341 ;;
aliguoriac0df512008-12-29 17:14:15 +0000342 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000343 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000344 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000345 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000346 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000347 ;;
pbrook6a882642006-04-17 13:57:12 +0000348 --install=*) install="$optarg"
349 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000350 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000351 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000352 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000353 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000354 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000355 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000356 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000357 ;;
bellard7d132992003-03-06 23:23:54 +0000358 --enable-gprof) gprof="yes"
359 ;;
bellard43ce4df2003-06-09 19:53:12 +0000360 --static) static="yes"
361 ;;
bellard97a847b2003-08-10 21:36:04 +0000362 --disable-sdl) sdl="no"
363 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000364 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000365 ;;
malcc2de5c92008-06-28 19:13:06 +0000366 --fmod-inc=*) fmod_inc="$optarg"
367 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000368 --oss-lib=*) oss_lib="$optarg"
369 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000370 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000371 ;;
372 --audio-drv-list=*) audio_drv_list="$optarg"
373 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000374 --enable-sparse) sparse="yes"
375 ;;
376 --disable-sparse) sparse="no"
377 ;;
ths8d5d2d42007-08-25 01:37:51 +0000378 --disable-vnc-tls) vnc_tls="no"
379 ;;
bellard443f1372004-06-04 11:13:20 +0000380 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000381 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000382 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000383 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000384 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000385 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000386 --disable-brlapi) brlapi="no"
387 ;;
balrogfb599c92008-09-28 23:49:55 +0000388 --disable-bluez) bluez="no"
389 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000390 --disable-kvm) kvm="no"
391 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000392 --enable-profiler) profiler="yes"
393 ;;
malcc2de5c92008-06-28 19:13:06 +0000394 --enable-cocoa)
395 cocoa="yes" ;
396 sdl="no" ;
397 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000398 ;;
bellard97ccc682005-07-02 13:32:17 +0000399 --disable-gfx-check) check_gfx="no"
400 ;;
pbrookcad25d62006-03-19 16:31:11 +0000401 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000402 ;;
pbrookcad25d62006-03-19 16:31:11 +0000403 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000404 ;;
ths831b7822007-01-18 20:06:33 +0000405 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000406 ;;
ths831b7822007-01-18 20:06:33 +0000407 --enable-linux-user) linux_user="yes"
408 ;;
409 --disable-darwin-user) darwin_user="no"
410 ;;
411 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000412 ;;
blueswir184778502008-10-26 20:33:16 +0000413 --disable-bsd-user) bsd_user="no"
414 ;;
415 --enable-bsd-user) bsd_user="yes"
416 ;;
pbrookc5937222006-05-14 11:30:38 +0000417 --enable-uname-release=*) uname_release="$optarg"
418 ;;
blueswir131422552007-04-16 18:27:06 +0000419 --sparc_cpu=*)
420 sparc_cpu="$optarg"
421 case $sparc_cpu in
422 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
423 target_cpu="sparc"; cpu="sparc" ;;
424 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
425 target_cpu="sparc"; cpu="sparc" ;;
426 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
427 target_cpu="sparc64"; cpu="sparc64" ;;
428 *) echo "undefined SPARC architecture. Exiting";exit 1;;
429 esac
430 ;;
bellard85aa5182007-11-11 20:17:03 +0000431 --enable-werror) werror="yes"
432 ;;
433 --disable-werror) werror="no"
434 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000435 --disable-curses) curses="no"
436 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000437 --disable-nptl) nptl="no"
438 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000439 --enable-mixemu) mixemu="yes"
440 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000441 --disable-aio) aio="no"
442 ;;
ths77755342008-11-27 15:45:16 +0000443 --disable-blobs) blobs="no"
444 ;;
aliguorieac30262008-11-05 16:28:56 +0000445 --kerneldir=*) kerneldir="$optarg"
446 ;;
balrog7f1559c2007-11-17 10:24:32 +0000447 *) echo "ERROR: unknown option $opt"; show_help="yes"
448 ;;
bellard7d132992003-03-06 23:23:54 +0000449 esac
450done
451
ths6f30fa82007-01-05 01:00:47 +0000452# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000453CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000454CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000455LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000456if test "$werror" = "yes" ; then
457CFLAGS="$CFLAGS -Werror"
458fi
ths6f30fa82007-01-05 01:00:47 +0000459
blueswir1d2c7c9b2008-11-01 14:50:20 +0000460if test "$solaris" = "no" ; then
461 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
462 LDFLAGS="$LDFLAGS -Wl,--warn-common"
463 fi
blueswir149237ac2008-09-17 19:05:19 +0000464fi
465
blueswir131422552007-04-16 18:27:06 +0000466#
467# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
468# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
469#
bellard40293e52008-01-31 11:32:10 +0000470case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000471 sparc) if test -z "$sparc_cpu" ; then
472 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
473 ARCH_LDFLAGS="-m32"
474 else
475 ARCH_CFLAGS="${SP_CFLAGS}"
476 ARCH_LDFLAGS="${SP_LDFLAGS}"
477 fi
478 ;;
479 sparc64) if test -z "$sparc_cpu" ; then
480 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
481 ARCH_LDFLAGS="-m64"
482 else
483 ARCH_CFLAGS="${SP_CFLAGS}"
484 ARCH_LDFLAGS="${SP_LDFLAGS}"
485 fi
486 ;;
ths76d83bd2007-11-18 21:22:10 +0000487 s390)
488 ARCH_CFLAGS="-march=z900"
489 ;;
bellard40293e52008-01-31 11:32:10 +0000490 i386)
491 ARCH_CFLAGS="-m32"
492 ARCH_LDFLAGS="-m32"
493 ;;
494 x86_64)
495 ARCH_CFLAGS="-m64"
496 ARCH_LDFLAGS="-m64"
497 ;;
blueswir131422552007-04-16 18:27:06 +0000498esac
499
pbrookaf5db582006-04-08 14:26:41 +0000500if test x"$show_help" = x"yes" ; then
501cat << EOF
502
503Usage: configure [options]
504Options: [defaults in brackets after descriptions]
505
506EOF
507echo "Standard options:"
508echo " --help print this message"
509echo " --prefix=PREFIX install in PREFIX [$prefix]"
510echo " --interp-prefix=PREFIX where to find shared libraries, etc."
511echo " use %M for cpu name [$interp_prefix]"
512echo " --target-list=LIST set target list [$target_list]"
513echo ""
514echo "kqemu kernel acceleration support:"
515echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000516echo ""
517echo "Advanced options (experts only):"
518echo " --source-path=PATH path of source code [$source_path]"
519echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
520echo " --cc=CC use C compiler CC [$cc]"
521echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
522echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000523echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000524echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000525echo " --enable-sparse enable sparse checker"
526echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000527echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000528echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000529echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000530echo " --audio-drv-list=LIST set audio drivers list:"
531echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000532echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
533echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000534echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000535echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000536echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000537echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000538echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000539echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000540echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000541echo " --enable-system enable all system emulation targets"
542echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000543echo " --enable-linux-user enable all linux usermode emulation targets"
544echo " --disable-linux-user disable all linux usermode emulation targets"
545echo " --enable-darwin-user enable all darwin usermode emulation targets"
546echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000547echo " --enable-bsd-user enable all BSD usermode emulation targets"
548echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000549echo " --fmod-lib path to FMOD library"
550echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000551echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000552echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000553echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000554echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000555echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000556echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000557echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000558echo ""
ths5bf08932006-12-23 00:33:26 +0000559echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000560exit 1
561fi
562
bellard67b915a2004-03-31 23:37:16 +0000563if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000564 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000565 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000566 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000567 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000568 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000569fi
570
aliguori03b4fe72008-10-07 19:16:17 +0000571if test ! -x "$(which cgcc 2>/dev/null)"; then
572 sparse="no"
573fi
574
bellardec530c82006-04-25 22:36:06 +0000575#
576# Solaris specific configure tool chain decisions
577#
578if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000579 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
580 if test -z "$solinst" ; then
581 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
582 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
583 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
584 exit 1
585 fi
586 if test "$solinst" = "/usr/sbin/install" ; then
587 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
588 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
589 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
590 exit 1
591 fi
bellardec530c82006-04-25 22:36:06 +0000592 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
593 if test -z "$sol_ar" ; then
594 echo "Error: No path includes ar"
595 if test -f /usr/ccs/bin/ar ; then
596 echo "Add /usr/ccs/bin to your path and rerun configure"
597 fi
598 exit 1
599 fi
ths5fafdf22007-09-16 21:08:06 +0000600fi
bellardec530c82006-04-25 22:36:06 +0000601
602
bellard5327cf42005-01-10 23:18:50 +0000603if test -z "$target_list" ; then
604# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000605 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000606 target_list="\
607i386-softmmu \
608x86_64-softmmu \
609arm-softmmu \
610cris-softmmu \
611m68k-softmmu \
612mips-softmmu \
613mipsel-softmmu \
614mips64-softmmu \
615mips64el-softmmu \
616ppc-softmmu \
617ppcemb-softmmu \
618ppc64-softmmu \
619sh4-softmmu \
620sh4eb-softmmu \
621sparc-softmmu \
622"
pbrook0a8e90f2006-03-19 14:54:16 +0000623 fi
bellard5327cf42005-01-10 23:18:50 +0000624# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000625 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000626 target_list="${target_list}\
627i386-linux-user \
628x86_64-linux-user \
629alpha-linux-user \
630arm-linux-user \
631armeb-linux-user \
632cris-linux-user \
633m68k-linux-user \
634mips-linux-user \
635mipsel-linux-user \
636ppc-linux-user \
637ppc64-linux-user \
638ppc64abi32-linux-user \
639sh4-linux-user \
640sh4eb-linux-user \
641sparc-linux-user \
642sparc64-linux-user \
643sparc32plus-linux-user \
644"
ths831b7822007-01-18 20:06:33 +0000645 fi
646# the following are Darwin specific
647 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000648 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000649 fi
blueswir184778502008-10-26 20:33:16 +0000650# the following are BSD specific
651 if [ "$bsd_user" = "yes" ] ; then
652 target_list="${target_list}\
653sparc64-bsd-user \
654"
655 fi
bellard6e20a452005-06-05 15:56:02 +0000656else
pbrookb1a550a2006-04-16 13:28:56 +0000657 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000658fi
pbrook0a8e90f2006-03-19 14:54:16 +0000659if test -z "$target_list" ; then
660 echo "No targets enabled"
661 exit 1
662fi
bellard5327cf42005-01-10 23:18:50 +0000663
bellard7d132992003-03-06 23:23:54 +0000664if test -z "$cross_prefix" ; then
665
666# ---
667# big/little endian test
668cat > $TMPC << EOF
669#include <inttypes.h>
670int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000671 volatile uint32_t i=0x01234567;
672 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000673}
674EOF
675
aurel32178baee2008-12-08 18:11:57 +0000676if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000677$TMPE && bigendian="yes"
678else
679echo big/little test failed
680fi
681
682else
683
684# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000685if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000686 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000687 -o "$cpu" = "m68k" \
688 -o "$cpu" = "mips" \
689 -o "$cpu" = "mips64" \
malcfdf7ed92009-01-14 18:39:52 +0000690 -o "$cpu" = "ppc" \
691 -o "$cpu" = "ppc64" \
aurel320938cda2008-04-11 21:36:06 +0000692 -o "$cpu" = "s390" \
693 -o "$cpu" = "sparc" \
694 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000695 bigendian="yes"
696fi
697
698fi
699
bellardb6853692005-06-05 17:10:39 +0000700# host long bits test
701hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000702if test "$cpu" = "x86_64" \
703 -o "$cpu" = "alpha" \
704 -o "$cpu" = "ia64" \
malcfdf7ed92009-01-14 18:39:52 +0000705 -o "$cpu" = "sparc64" \
706 -o "$cpu" = "ppc64"; then
bellardb6853692005-06-05 17:10:39 +0000707 hostlongbits="64"
708fi
709
bellarde8cd23d2003-06-25 16:08:13 +0000710# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000711cat > $TMPC <<EOF
712int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000713}
714EOF
715
pbrookbd0c5662008-05-29 14:34:11 +0000716# Check host NPTL support
717cat > $TMPC <<EOF
718#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000719#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000720void foo()
721{
722#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
723#error bork
724#endif
725}
726EOF
727
balrog8c7f7572008-12-15 03:15:36 +0000728if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000729 :
730else
731 nptl="no"
732fi
733
bellard11d9f692004-04-02 20:55:59 +0000734##########################################
balrogac629222008-10-11 09:56:04 +0000735# zlib check
736
737cat > $TMPC << EOF
738#include <zlib.h>
739int main(void) { zlibVersion(); return 0; }
740EOF
balrog8c7f7572008-12-15 03:15:36 +0000741if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000742 :
743else
744 echo
745 echo "Error: zlib check failed"
746 echo "Make sure to have the zlib libs and headers installed."
747 echo
748 exit 1
749fi
750
751##########################################
bellard11d9f692004-04-02 20:55:59 +0000752# SDL probe
753
754sdl_too_old=no
755
756if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000757 sdl_config="sdl-config"
758 sdl=no
759 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000760
761cat > $TMPC << EOF
762#include <SDL.h>
763#undef main /* We don't want SDL to override our main() */
764int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
765EOF
balrog8c7f7572008-12-15 03:15:36 +0000766 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 +0000767 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
768 if test "$_sdlversion" -lt 121 ; then
769 sdl_too_old=yes
770 else
771 if test "$cocoa" = "no" ; then
772 sdl=yes
773 fi
774 fi
775
776 # static link with sdl ?
777 if test "$sdl" = "yes" ; then
778 aa="no"
779 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
780 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
781 if [ "$aa" = "yes" ] ; then
782 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000783 fi
bellard11d9f692004-04-02 20:55:59 +0000784
balrog8c7f7572008-12-15 03:15:36 +0000785 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 +0000786 sdl_static=yes
787 fi
788 fi # static link
789 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000790else
ths069b0bd2007-07-12 00:27:15 +0000791 # Make sure to disable cocoa if sdl was set
792 if test "$sdl" = "yes" ; then
793 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000794 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000795 fi
bellarda6e022a2004-04-02 21:55:47 +0000796fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000797
ths8f28f3f2007-01-05 21:25:54 +0000798##########################################
ths8d5d2d42007-08-25 01:37:51 +0000799# VNC TLS detection
800if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000801cat > $TMPC <<EOF
802#include <gnutls/gnutls.h>
803int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
804EOF
805 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
806 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
807 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000808 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000809 :
810 else
811 vnc_tls="no"
812 fi
ths8d5d2d42007-08-25 01:37:51 +0000813fi
814
815##########################################
ths8a16d272008-07-19 09:56:24 +0000816# vde libraries probe
817if test "$vde" = "yes" ; then
818 cat > $TMPC << EOF
819#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000820int main(void)
821{
822 struct vde_open_args a = {0, 0, 0};
823 vde_open("", "", &a);
824 return 0;
825}
ths8a16d272008-07-19 09:56:24 +0000826EOF
balrog8c7f7572008-12-15 03:15:36 +0000827 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000828 :
829 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000830 vde="no"
ths8a16d272008-07-19 09:56:24 +0000831 fi
832fi
833
834##########################################
malcc2de5c92008-06-28 19:13:06 +0000835# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000836
malcc2de5c92008-06-28 19:13:06 +0000837audio_drv_probe()
838{
839 drv=$1
840 hdr=$2
841 lib=$3
842 exp=$4
843 cfl=$5
844 cat > $TMPC << EOF
845#include <$hdr>
846int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000847EOF
balrog8c7f7572008-12-15 03:15:36 +0000848 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000849 :
850 else
851 echo
852 echo "Error: $drv check failed"
853 echo "Make sure to have the $drv libs and headers installed."
854 echo
855 exit 1
856 fi
857}
858
malc2fa7d3b2008-07-29 12:58:44 +0000859audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000860for drv in $audio_drv_list; do
861 case $drv in
862 alsa)
863 audio_drv_probe $drv alsa/asoundlib.h -lasound \
864 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
865 ;;
866
867 fmod)
868 if test -z $fmod_lib || test -z $fmod_inc; then
869 echo
870 echo "Error: You must specify path to FMOD library and headers"
871 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
872 echo
873 exit 1
874 fi
875 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
876 ;;
877
878 esd)
879 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
880 ;;
malcb8e59f12008-07-02 21:03:08 +0000881
882 pa)
883 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
884 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
885 ;;
886
blueswir12f6a1ab2008-08-21 18:00:53 +0000887 oss|sdl|core|wav|dsound)
888 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
889 ;;
890
malce4c63a62008-07-19 16:15:16 +0000891 *)
malc1c9b2a52008-07-19 16:57:30 +0000892 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000893 echo
894 echo "Error: Unknown driver '$drv' selected"
895 echo "Possible drivers are: $audio_possible_drivers"
896 echo
897 exit 1
898 }
899 ;;
malcc2de5c92008-06-28 19:13:06 +0000900 esac
901done
ths8f28f3f2007-01-05 21:25:54 +0000902
balrog4d3b6f62008-02-10 16:33:14 +0000903##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000904# BrlAPI probe
905
906if test -z "$brlapi" ; then
907 brlapi=no
908cat > $TMPC << EOF
909#include <brlapi.h>
910int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
911EOF
aurel32178baee2008-12-08 18:11:57 +0000912 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000913 brlapi=yes
914 fi # brlapi compile test
915fi # -z $brlapi
916
917##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000918# curses probe
919
920if test "$curses" = "yes" ; then
921 curses=no
922 cat > $TMPC << EOF
923#include <curses.h>
924int main(void) { return curses_version(); }
925EOF
aurel32178baee2008-12-08 18:11:57 +0000926 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000927 curses=yes
928 fi
929fi # test "$curses"
930
blueswir1414f0da2008-08-15 18:20:52 +0000931##########################################
balrogfb599c92008-09-28 23:49:55 +0000932# bluez support probe
933if test "$bluez" = "yes" ; then
934 `pkg-config bluez` || bluez="no"
935fi
936if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000937 cat > $TMPC << EOF
938#include <bluetooth/bluetooth.h>
939int main(void) { return bt_error(0); }
940EOF
balrogfb599c92008-09-28 23:49:55 +0000941 bluez_cflags=`pkg-config --cflags bluez`
942 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000943 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000944 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +0000945 :
946 else
947 bluez="no"
948 fi
balrogfb599c92008-09-28 23:49:55 +0000949fi
950
951##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000952# kvm probe
953if test "$kvm" = "yes" ; then
954 cat > $TMPC <<EOF
955#include <linux/kvm.h>
956#if !defined(KVM_API_VERSION) || \
957 KVM_API_VERSION < 12 || \
958 KVM_API_VERSION > 12 || \
959 !defined(KVM_CAP_USER_MEMORY) || \
aliguorid85dc282008-12-09 19:59:09 +0000960 !defined(KVM_CAP_SET_TSS_ADDR) || \
961 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
aliguori7ba1e612008-11-05 16:04:33 +0000962#error Invalid KVM version
963#endif
964int main(void) { return 0; }
965EOF
aliguorieac30262008-11-05 16:28:56 +0000966 if test "$kerneldir" != "" ; then
967 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +0000968 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
969 -a -d "$kerneldir/arch/x86/include" ; then
970 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
aliguori406b4302009-01-15 21:13:33 +0000971 elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
972 kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
aliguori8444eb62009-01-09 20:05:10 +0000973 elif test -d "$kerneldir/arch/$cpu/include" ; then
974 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
975 fi
aliguorieac30262008-11-05 16:28:56 +0000976 else
977 kvm_cflags=""
978 fi
aliguori7ba1e612008-11-05 16:04:33 +0000979 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000980 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +0000981 :
982 else
983 kvm="no"
984 fi
985fi
986
987##########################################
blueswir1414f0da2008-08-15 18:20:52 +0000988# AIO probe
aliguori3c529d92008-12-12 16:41:40 +0000989AIOLIBS=""
990
blueswir1414f0da2008-08-15 18:20:52 +0000991if test "$aio" = "yes" ; then
992 aio=no
993 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +0000994#include <pthread.h>
995int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +0000996EOF
997 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
998 aio=yes
aliguori3c529d92008-12-12 16:41:40 +0000999 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +00001000 fi
1001fi
1002
aliguoribf9298b2008-12-05 20:05:26 +00001003##########################################
1004# iovec probe
1005cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001006#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001007#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001008#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001009int main(void) { struct iovec iov; return 0; }
1010EOF
1011iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001012if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001013 iovec=yes
1014fi
1015
aurel32f652e6a2008-12-16 10:43:48 +00001016##########################################
1017# fdt probe
1018if test "$fdt" = "yes" ; then
1019 fdt=no
1020 cat > $TMPC << EOF
1021int main(void) { return 0; }
1022EOF
1023 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1024 fdt=yes
1025 fi
1026fi
1027
pbrookcc8ae6d2006-04-23 17:57:59 +00001028# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001029if [ -x "`which texi2html 2>/dev/null`" ] && \
1030 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001031 build_docs="yes"
1032fi
1033
aliguorida93a1f2008-12-12 20:02:52 +00001034##########################################
1035# Do we need librt
1036cat > $TMPC <<EOF
1037#include <signal.h>
1038#include <time.h>
1039int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1040EOF
1041
1042rt=no
balrog8c7f7572008-12-15 03:15:36 +00001043if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001044 :
balrog8c7f7572008-12-15 03:15:36 +00001045elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001046 rt=yes
1047fi
1048
1049if test "$rt" = "yes" ; then
1050 # Hack, we should have a general purpose LIBS for this sort of thing
1051 AIOLIBS="$AIOLIBS -lrt"
1052fi
1053
bellard11d9f692004-04-02 20:55:59 +00001054if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001055 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001056 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001057 fi
1058 mansuffix=""
1059 datasuffix=""
1060 docsuffix=""
1061 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001062else
pbrook308c3592007-02-27 00:52:01 +00001063 if test -z "$prefix" ; then
1064 prefix="/usr/local"
1065 fi
1066 mansuffix="/share/man"
1067 datasuffix="/share/qemu"
1068 docsuffix="/share/doc/qemu"
1069 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001070fi
bellard5a671352003-10-01 00:13:48 +00001071
bellard43ce4df2003-06-09 19:53:12 +00001072echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001073echo "BIOS directory $prefix$datasuffix"
1074echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001075if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001076echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001077echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001078fi
bellard5a671352003-10-01 00:13:48 +00001079echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001080echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001081echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001082echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001083echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001084echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001085echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001086echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001087echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001088echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001089echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001090echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001091echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001092echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001093if test "$darwin" = "yes" ; then
1094 echo "Cocoa support $cocoa"
1095fi
bellard97a847b2003-08-10 21:36:04 +00001096echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001097if test "$sdl" != "no" ; then
1098 echo "SDL static link $sdl_static"
1099fi
balrog4d3b6f62008-02-10 16:33:14 +00001100echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001101echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001102echo "Audio drivers $audio_drv_list"
1103echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001104echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001105echo "VNC TLS support $vnc_tls"
1106if test "$vnc_tls" = "yes" ; then
1107 echo " TLS CFLAGS $vnc_tls_cflags"
1108 echo " TLS LIBS $vnc_tls_libs"
1109fi
blueswir131422552007-04-16 18:27:06 +00001110if test -n "$sparc_cpu"; then
1111 echo "Target Sparc Arch $sparc_cpu"
1112fi
bellard07f4ddb2005-04-23 17:44:28 +00001113echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001114echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001115echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001116[ ! -z "$uname_release" ] && \
1117echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001118echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001119echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001120echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001121echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001122echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001123echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001124
bellard97a847b2003-08-10 21:36:04 +00001125if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001126echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001127fi
malcd4742de2008-11-29 22:04:31 +00001128if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001129 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001130 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001131fi
bellard24b55b92005-03-01 22:30:41 +00001132#if test "$sdl_static" = "no"; then
1133# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1134#fi
bellard97a847b2003-08-10 21:36:04 +00001135config_mak="config-host.mak"
1136config_h="config-host.h"
1137
bellard7c1f25b2004-04-22 00:02:08 +00001138#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001139
ths15d9ca02007-07-31 23:07:32 +00001140test -f $config_h && mv $config_h ${config_h}~
1141
bellard97a847b2003-08-10 21:36:04 +00001142echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001143printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001144printf " '%s'" "$0" "$@" >> $config_mak
1145echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001146echo "/* Automatically generated by configure - do not modify */" > $config_h
1147
1148echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001149echo "bindir=\${prefix}$binsuffix" >> $config_mak
1150echo "mandir=\${prefix}$mansuffix" >> $config_mak
1151echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001152echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001153echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001154echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001155echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001156echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001157echo "HOST_CC=$host_cc" >> $config_mak
1158echo "AR=$ar" >> $config_mak
1159echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001160# XXX: only use CFLAGS and LDFLAGS ?
1161# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1162# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001163echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001164echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1165echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1166echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001167echo "CFLAGS=$CFLAGS" >> $config_mak
1168echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001169echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001170echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001171case "$cpu" in
1172 i386)
1173 echo "ARCH=i386" >> $config_mak
1174 echo "#define HOST_I386 1" >> $config_h
1175 ;;
1176 x86_64)
1177 echo "ARCH=x86_64" >> $config_mak
1178 echo "#define HOST_X86_64 1" >> $config_h
1179 ;;
1180 alpha)
1181 echo "ARCH=alpha" >> $config_mak
1182 echo "#define HOST_ALPHA 1" >> $config_h
1183 ;;
1184 armv4b)
1185 echo "ARCH=arm" >> $config_mak
1186 echo "#define HOST_ARM 1" >> $config_h
1187 ;;
1188 armv4l)
1189 echo "ARCH=arm" >> $config_mak
1190 echo "#define HOST_ARM 1" >> $config_h
1191 ;;
1192 cris)
1193 echo "ARCH=cris" >> $config_mak
1194 echo "#define HOST_CRIS 1" >> $config_h
1195 ;;
1196 hppa)
1197 echo "ARCH=hppa" >> $config_mak
1198 echo "#define HOST_HPPA 1" >> $config_h
1199 ;;
1200 ia64)
1201 echo "ARCH=ia64" >> $config_mak
1202 echo "#define HOST_IA64 1" >> $config_h
1203 ;;
1204 m68k)
1205 echo "ARCH=m68k" >> $config_mak
1206 echo "#define HOST_M68K 1" >> $config_h
1207 ;;
1208 mips)
1209 echo "ARCH=mips" >> $config_mak
1210 echo "#define HOST_MIPS 1" >> $config_h
1211 ;;
1212 mips64)
1213 echo "ARCH=mips64" >> $config_mak
1214 echo "#define HOST_MIPS64 1" >> $config_h
1215 ;;
malcfdf7ed92009-01-14 18:39:52 +00001216 ppc)
1217 echo "ARCH=ppc" >> $config_mak
1218 echo "#define HOST_PPC 1" >> $config_h
1219 ;;
1220 ppc64)
1221 echo "ARCH=ppc64" >> $config_mak
1222 echo "#define HOST_PPC64 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001223 ;;
1224 s390)
1225 echo "ARCH=s390" >> $config_mak
1226 echo "#define HOST_S390 1" >> $config_h
1227 ;;
1228 sparc)
1229 echo "ARCH=sparc" >> $config_mak
1230 echo "#define HOST_SPARC 1" >> $config_h
1231 ;;
1232 sparc64)
1233 echo "ARCH=sparc64" >> $config_mak
1234 echo "#define HOST_SPARC64 1" >> $config_h
1235 ;;
1236 *)
1237 echo "Unsupported CPU = $cpu"
1238 exit 1
1239 ;;
1240esac
aliguori03b4fe72008-10-07 19:16:17 +00001241if test "$sparse" = "yes" ; then
1242 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1243 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1244 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1245fi
bellard7d132992003-03-06 23:23:54 +00001246if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001247 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1248 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1249fi
bellardb6853692005-06-05 17:10:39 +00001250echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001251if test "$mingw32" = "yes" ; then
1252 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001253 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001254else
1255 cat > $TMPC << EOF
1256#include <byteswap.h>
1257int main(void) { return bswap_32(0); }
1258EOF
aurel32178baee2008-12-08 18:11:57 +00001259 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001260 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1261 fi
blueswir113606772008-12-05 17:54:09 +00001262 cat > $TMPC << EOF
1263#include <sys/endian.h>
1264#include <sys/types.h>
1265#include <machine/bswap.h>
1266int main(void) { return bswap32(0); }
1267EOF
aurel32178baee2008-12-08 18:11:57 +00001268 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001269 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1270 fi
bellard67b915a2004-03-31 23:37:16 +00001271fi
blueswir1128ab2f2008-08-15 18:33:42 +00001272
1273if [ "$openbsd" = "yes" ] ; then
1274 echo "#define ENOTSUP 4096" >> $config_h
1275fi
1276
bellard83fb7ad2004-07-05 21:25:26 +00001277if test "$darwin" = "yes" ; then
1278 echo "CONFIG_DARWIN=yes" >> $config_mak
1279 echo "#define CONFIG_DARWIN 1" >> $config_h
1280fi
malcb29fe3e2008-11-18 01:42:22 +00001281
1282if test "$aix" = "yes" ; then
1283 echo "CONFIG_AIX=yes" >> $config_mak
1284 echo "#define CONFIG_AIX 1" >> $config_h
1285fi
1286
bellardec530c82006-04-25 22:36:06 +00001287if test "$solaris" = "yes" ; then
1288 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001289 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001290 if test "$needs_libsunmath" = "yes" ; then
1291 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1292 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1293 fi
bellardec530c82006-04-25 22:36:06 +00001294fi
blueswir131422552007-04-16 18:27:06 +00001295if test -n "$sparc_cpu"; then
1296 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1297 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1298fi
bellard67b915a2004-03-31 23:37:16 +00001299if test "$gdbstub" = "yes" ; then
1300 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1301 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1302fi
bellard97a847b2003-08-10 21:36:04 +00001303if test "$gprof" = "yes" ; then
1304 echo "TARGET_GPROF=yes" >> $config_mak
1305 echo "#define HAVE_GPROF 1" >> $config_h
1306fi
1307if test "$static" = "yes" ; then
1308 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001309 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001310fi
bellard05c2a3e2006-02-08 22:39:17 +00001311if test $profiler = "yes" ; then
1312 echo "#define CONFIG_PROFILER 1" >> $config_h
1313fi
bellardc20709a2004-04-21 23:27:19 +00001314if test "$slirp" = "yes" ; then
1315 echo "CONFIG_SLIRP=yes" >> $config_mak
1316 echo "#define CONFIG_SLIRP 1" >> $config_h
1317fi
ths8a16d272008-07-19 09:56:24 +00001318if test "$vde" = "yes" ; then
1319 echo "CONFIG_VDE=yes" >> $config_mak
1320 echo "#define CONFIG_VDE 1" >> $config_h
1321 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1322fi
malc0c58ac12008-06-25 21:04:05 +00001323for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001324 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001325 echo "$def=yes" >> $config_mak
1326 echo "#define $def 1" >> $config_h
1327done
1328echo "#define AUDIO_DRIVERS \\" >> $config_h
1329for drv in $audio_drv_list; do
1330 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001331 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001332 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001333 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001334 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1335 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001336 elif test "$drv" = "oss"; then
1337 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001338 fi
1339done
1340echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001341if test "$mixemu" = "yes" ; then
1342 echo "CONFIG_MIXEMU=yes" >> $config_mak
1343 echo "#define CONFIG_MIXEMU 1" >> $config_h
1344fi
ths8d5d2d42007-08-25 01:37:51 +00001345if test "$vnc_tls" = "yes" ; then
1346 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1347 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1348 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1349 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1350fi
pbrookb1a550a2006-04-16 13:28:56 +00001351qemu_version=`head $source_path/VERSION`
1352echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001353echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001354
1355echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001356if [ "$source_path_used" = "yes" ]; then
1357 echo "VPATH=$source_path" >> $config_mak
1358fi
bellard97a847b2003-08-10 21:36:04 +00001359echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001360if [ "$build_docs" = "yes" ] ; then
1361 echo "BUILD_DOCS=yes" >> $config_mak
1362fi
bellard49ecc3f2007-11-07 19:25:15 +00001363if test "$static" = "yes"; then
1364 sdl1=$sdl_static
1365else
1366 sdl1=$sdl
1367fi
1368if test "$sdl1" = "yes" ; then
1369 echo "#define CONFIG_SDL 1" >> $config_h
1370 echo "CONFIG_SDL=yes" >> $config_mak
1371 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1372 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1373 else
1374 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1375 fi
1376 if [ "${aa}" = "yes" ] ; then
1377 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1378 else
1379 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1380 fi
1381fi
1382if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001383 echo "#define CONFIG_COCOA 1" >> $config_h
1384 echo "CONFIG_COCOA=yes" >> $config_mak
1385fi
1386if test "$curses" = "yes" ; then
1387 echo "#define CONFIG_CURSES 1" >> $config_h
1388 echo "CONFIG_CURSES=yes" >> $config_mak
1389 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001390fi
aurel322e4d9fb2008-04-08 06:01:02 +00001391if test "$brlapi" = "yes" ; then
1392 echo "CONFIG_BRLAPI=yes" >> $config_mak
1393 echo "#define CONFIG_BRLAPI 1" >> $config_h
1394 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1395fi
balrogfb599c92008-09-28 23:49:55 +00001396if test "$bluez" = "yes" ; then
1397 echo "CONFIG_BLUEZ=yes" >> $config_mak
1398 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1399 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1400 echo "#define CONFIG_BLUEZ 1" >> $config_h
1401fi
blueswir1414f0da2008-08-15 18:20:52 +00001402if test "$aio" = "yes" ; then
1403 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001404 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001405fi
ths77755342008-11-27 15:45:16 +00001406if test "$blobs" = "yes" ; then
1407 echo "INSTALL_BLOBS=yes" >> $config_mak
1408fi
aliguoribf9298b2008-12-05 20:05:26 +00001409if test "$iovec" = "yes" ; then
1410 echo "#define HAVE_IOVEC 1" >> $config_h
1411fi
aurel32f652e6a2008-12-16 10:43:48 +00001412if test "$fdt" = "yes" ; then
1413 echo "#define HAVE_FDT 1" >> $config_h
1414 echo "FDT_LIBS=-lfdt" >> $config_mak
1415fi
bellard97a847b2003-08-10 21:36:04 +00001416
bellard83fb7ad2004-07-05 21:25:26 +00001417# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001418if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001419 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001420 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001421 echo "#define _BSD 1" >> $config_h
1422fi
1423
pbrookc5937222006-05-14 11:30:38 +00001424echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1425
blueswir168063642008-11-22 21:03:55 +00001426# USB host support
1427case "$usb" in
1428linux)
1429 echo "HOST_USB=linux" >> $config_mak
1430;;
1431bsd)
1432 echo "HOST_USB=bsd" >> $config_mak
1433;;
1434*)
1435 echo "HOST_USB=stub" >> $config_mak
1436;;
1437esac
1438
pbrookc39e3332007-09-22 16:49:14 +00001439tools=
1440if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1441 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001442 if [ "$linux" = "yes" ] ; then
1443 tools="qemu-nbd\$(EXESUF) $tools"
1444 fi
pbrookc39e3332007-09-22 16:49:14 +00001445fi
1446echo "TOOLS=$tools" >> $config_mak
1447
ths15d9ca02007-07-31 23:07:32 +00001448test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1449
bellard1d14ffa2005-10-30 18:58:22 +00001450for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001451target_dir="$target"
1452config_mak=$target_dir/config.mak
1453config_h=$target_dir/config.h
1454target_cpu=`echo $target | cut -d '-' -f 1`
1455target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001456[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001457[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1458[ "$target_cpu" = "mips" ] && target_bigendian=yes
1459[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1460[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001461[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001462[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001463[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001464[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001465[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001466[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1467[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1468[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001469target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001470target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001471target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001472target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001473target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001474case "$target" in
1475 ${target_cpu}-softmmu)
1476 target_softmmu="yes"
1477 ;;
1478 ${target_cpu}-linux-user)
1479 target_user_only="yes"
1480 target_linux_user="yes"
1481 ;;
1482 ${target_cpu}-darwin-user)
1483 target_user_only="yes"
1484 target_darwin_user="yes"
1485 ;;
blueswir184778502008-10-26 20:33:16 +00001486 ${target_cpu}-bsd-user)
1487 target_user_only="yes"
1488 target_bsd_user="yes"
1489 ;;
pbrook9e407a82007-05-26 16:38:53 +00001490 *)
1491 echo "ERROR: Target '$target' not recognised"
1492 exit 1
1493 ;;
1494esac
ths831b7822007-01-18 20:06:33 +00001495
bellard97ccc682005-07-02 13:32:17 +00001496if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001497 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001498 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001499 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001500 echo "Note that this will disable all output from the virtual graphics card"
1501 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001502 exit 1;
1503fi
1504
bellard7c1f25b2004-04-22 00:02:08 +00001505#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001506
ths15d9ca02007-07-31 23:07:32 +00001507test -f $config_h && mv $config_h ${config_h}~
1508
bellard97a847b2003-08-10 21:36:04 +00001509mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001510mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001511mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001512if 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 +00001513 mkdir -p $target_dir/nwfpe
1514fi
1515
bellardec530c82006-04-25 22:36:06 +00001516#
1517# don't use ln -sf as not all "ln -sf" over write the file/link
1518#
1519rm -f $target_dir/Makefile
1520ln -s $source_path/Makefile.target $target_dir/Makefile
1521
bellard97a847b2003-08-10 21:36:04 +00001522
1523echo "# Automatically generated by configure - do not modify" > $config_mak
1524echo "/* Automatically generated by configure - do not modify */" > $config_h
1525
1526
1527echo "include ../config-host.mak" >> $config_mak
1528echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001529
pbrooke5fe0c52006-06-11 13:32:59 +00001530bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001531elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001532target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001533interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1534echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001535gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001536
aliguori5985ece2008-11-05 19:59:25 +00001537# Make sure the target and host cpus are compatible
1538if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
malcfdf7ed92009-01-14 18:39:52 +00001539 \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001540 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1541 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001542 kvm="no"
1543fi
1544# Disable KVM for linux-user
1545if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1546 kvm="no"
1547fi
1548
aurel322408a522008-04-20 20:19:44 +00001549case "$target_cpu" in
1550 i386)
1551 echo "TARGET_ARCH=i386" >> $config_mak
1552 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1553 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001554 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001555 then
1556 echo "#define USE_KQEMU 1" >> $config_h
1557 fi
aliguori7ba1e612008-11-05 16:04:33 +00001558 if test "$kvm" = "yes" ; then
1559 echo "CONFIG_KVM=yes" >> $config_mak
1560 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001561 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001562 fi
aurel322408a522008-04-20 20:19:44 +00001563 ;;
1564 x86_64)
1565 echo "TARGET_ARCH=x86_64" >> $config_mak
1566 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1567 echo "#define TARGET_I386 1" >> $config_h
1568 echo "#define TARGET_X86_64 1" >> $config_h
1569 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1570 then
1571 echo "#define USE_KQEMU 1" >> $config_h
1572 fi
aliguori7ba1e612008-11-05 16:04:33 +00001573 if test "$kvm" = "yes" ; then
1574 echo "CONFIG_KVM=yes" >> $config_mak
1575 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1576 echo "#define CONFIG_KVM 1" >> $config_h
1577 fi
aurel322408a522008-04-20 20:19:44 +00001578 ;;
1579 alpha)
1580 echo "TARGET_ARCH=alpha" >> $config_mak
1581 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1582 echo "#define TARGET_ALPHA 1" >> $config_h
1583 ;;
1584 arm|armeb)
1585 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001586 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1587 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001588 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001589 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001590 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001591 ;;
1592 cris)
1593 echo "TARGET_ARCH=cris" >> $config_mak
1594 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1595 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001596 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001597 ;;
1598 m68k)
1599 echo "TARGET_ARCH=m68k" >> $config_mak
1600 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1601 echo "#define TARGET_M68K 1" >> $config_h
1602 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001603 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001604 ;;
1605 mips|mipsel)
1606 echo "TARGET_ARCH=mips" >> $config_mak
1607 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1608 echo "#define TARGET_MIPS 1" >> $config_h
1609 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1610 ;;
1611 mipsn32|mipsn32el)
1612 echo "TARGET_ARCH=mipsn32" >> $config_mak
1613 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1614 echo "#define TARGET_MIPS 1" >> $config_h
1615 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1616 ;;
1617 mips64|mips64el)
1618 echo "TARGET_ARCH=mips64" >> $config_mak
1619 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1620 echo "#define TARGET_MIPS 1" >> $config_h
1621 echo "#define TARGET_MIPS64 1" >> $config_h
1622 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1623 ;;
1624 ppc)
1625 echo "TARGET_ARCH=ppc" >> $config_mak
1626 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1627 echo "#define TARGET_PPC 1" >> $config_h
1628 ;;
1629 ppcemb)
1630 echo "TARGET_ARCH=ppcemb" >> $config_mak
1631 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1632 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1633 echo "#define TARGET_PPC 1" >> $config_h
1634 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001635 if test "$kvm" = "yes" ; then
1636 echo "CONFIG_KVM=yes" >> $config_mak
1637 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1638 echo "#define CONFIG_KVM 1" >> $config_h
1639 fi
aurel322408a522008-04-20 20:19:44 +00001640 ;;
1641 ppc64)
1642 echo "TARGET_ARCH=ppc64" >> $config_mak
1643 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1644 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1645 echo "#define TARGET_PPC 1" >> $config_h
1646 echo "#define TARGET_PPC64 1" >> $config_h
1647 ;;
1648 ppc64abi32)
1649 echo "TARGET_ARCH=ppc64" >> $config_mak
1650 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1651 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1652 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1653 echo "#define TARGET_PPC 1" >> $config_h
1654 echo "#define TARGET_PPC64 1" >> $config_h
1655 echo "#define TARGET_ABI32 1" >> $config_h
1656 ;;
1657 sh4|sh4eb)
1658 echo "TARGET_ARCH=sh4" >> $config_mak
1659 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1660 echo "#define TARGET_SH4 1" >> $config_h
1661 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001662 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001663 ;;
1664 sparc)
1665 echo "TARGET_ARCH=sparc" >> $config_mak
1666 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1667 echo "#define TARGET_SPARC 1" >> $config_h
1668 ;;
1669 sparc64)
1670 echo "TARGET_ARCH=sparc64" >> $config_mak
1671 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1672 echo "#define TARGET_SPARC 1" >> $config_h
1673 echo "#define TARGET_SPARC64 1" >> $config_h
1674 elfload32="yes"
1675 ;;
1676 sparc32plus)
1677 echo "TARGET_ARCH=sparc64" >> $config_mak
1678 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1679 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1680 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1681 echo "#define TARGET_SPARC 1" >> $config_h
1682 echo "#define TARGET_SPARC64 1" >> $config_h
1683 echo "#define TARGET_ABI32 1" >> $config_h
1684 ;;
1685 *)
1686 echo "Unsupported target CPU"
1687 exit 1
1688 ;;
1689esac
bellardde83cd02003-06-15 20:25:43 +00001690if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001691 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1692 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1693fi
1694if test "$target_softmmu" = "yes" ; then
1695 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1696 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001697fi
bellard997344f2003-10-27 21:10:39 +00001698if test "$target_user_only" = "yes" ; then
1699 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1700 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1701fi
ths831b7822007-01-18 20:06:33 +00001702if test "$target_linux_user" = "yes" ; then
1703 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1704 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1705fi
1706if test "$target_darwin_user" = "yes" ; then
1707 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1708 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1709fi
pbrook56aebc82008-10-11 17:55:29 +00001710list=""
1711if test ! -z "$gdb_xml_files" ; then
1712 for x in $gdb_xml_files; do
1713 list="$list $source_path/gdb-xml/$x"
1714 done
1715fi
1716echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001717
aurel320938cda2008-04-11 21:36:06 +00001718if test "$target_cpu" = "arm" \
1719 -o "$target_cpu" = "armeb" \
1720 -o "$target_cpu" = "m68k" \
1721 -o "$target_cpu" = "mips" \
1722 -o "$target_cpu" = "mipsel" \
1723 -o "$target_cpu" = "mipsn32" \
1724 -o "$target_cpu" = "mipsn32el" \
1725 -o "$target_cpu" = "mips64" \
1726 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001727 -o "$target_cpu" = "ppc" \
1728 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001729 -o "$target_cpu" = "ppc64abi32" \
1730 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001731 -o "$target_cpu" = "sparc" \
1732 -o "$target_cpu" = "sparc64" \
1733 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001734 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1735 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1736fi
pbrooke5fe0c52006-06-11 13:32:59 +00001737if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1738 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1739 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1740fi
pbrookbd0c5662008-05-29 14:34:11 +00001741if test "$target_user_only" = "yes" \
1742 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1743 echo "#define USE_NPTL 1" >> $config_h
1744fi
blueswir1cb33da52007-10-09 16:34:29 +00001745# 32 bit ELF loader in addition to native 64 bit loader?
1746if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1747 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1748 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1749fi
blueswir184778502008-10-26 20:33:16 +00001750if test "$target_bsd_user" = "yes" ; then
1751 echo "CONFIG_BSD_USER=yes" >> $config_mak
1752 echo "#define CONFIG_BSD_USER 1" >> $config_h
1753fi
bellard5b0753e2005-03-01 21:37:28 +00001754
ths15d9ca02007-07-31 23:07:32 +00001755test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1756
bellard97a847b2003-08-10 21:36:04 +00001757done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001758
1759# build tree in object directory if source path is different from current one
1760if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001761 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001762 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001763 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001764 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001765 for dir in $DIRS ; do
1766 mkdir -p $dir
1767 done
bellardec530c82006-04-25 22:36:06 +00001768 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001769 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001770 rm -f $f
1771 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001772 done
1773fi