blob: 13f6358d4ca8cb096fab1d6b13a0ea3be38e8f06 [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=""
30audio_card_list=""
bellard7d132992003-03-06 23:23:54 +000031host_cc="gcc"
32ar="ar"
33make="make"
pbrook6a882642006-04-17 13:57:12 +000034install="install"
bellard7d132992003-03-06 23:23:54 +000035strip="strip"
malcb29fe3e2008-11-18 01:42:22 +000036cpu=`test $(uname -s) = AIX && uname -p || uname -m`
bellard5327cf42005-01-10 23:18:50 +000037target_list=""
bellard7d132992003-03-06 23:23:54 +000038case "$cpu" in
39 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +000040 cpu="i386"
bellard7d132992003-03-06 23:23:54 +000041 ;;
aurel32aaa5fa12008-04-11 22:04:22 +000042 x86_64|amd64)
43 cpu="x86_64"
44 ;;
45 alpha)
46 cpu="alpha"
47 ;;
bellardba680552005-03-13 09:49:52 +000048 armv*b)
bellard808c4952004-12-19 23:33:47 +000049 cpu="armv4b"
50 ;;
bellardba680552005-03-13 09:49:52 +000051 armv*l)
bellard7d132992003-03-06 23:23:54 +000052 cpu="armv4l"
53 ;;
aurel32aaa5fa12008-04-11 22:04:22 +000054 cris)
55 cpu="cris"
bellard7d132992003-03-06 23:23:54 +000056 ;;
aurel32f54b3f92008-04-12 20:14:54 +000057 parisc|parisc64)
58 cpu="hppa"
59 ;;
aurel32aaa5fa12008-04-11 22:04:22 +000060 ia64)
61 cpu="ia64"
62 ;;
63 m68k)
64 cpu="m68k"
bellard7d132992003-03-06 23:23:54 +000065 ;;
66 mips)
67 cpu="mips"
68 ;;
thsfbe4f652007-04-01 11:16:48 +000069 mips64)
70 cpu="mips64"
71 ;;
malcb29fe3e2008-11-18 01:42:22 +000072 "Power Macintosh"|ppc|ppc64|powerpc)
aurel32aaa5fa12008-04-11 22:04:22 +000073 cpu="powerpc"
thse7daa602007-10-08 13:38:27 +000074 ;;
ths0e7b8a92007-08-01 00:09:31 +000075 s390*)
bellardfb3e5842003-03-29 17:32:36 +000076 cpu="s390"
77 ;;
blueswir131422552007-04-16 18:27:06 +000078 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +000079 cpu="sparc"
80 ;;
81 sparc64)
82 cpu="sparc64"
83 ;;
bellard7d132992003-03-06 23:23:54 +000084 *)
85 cpu="unknown"
86 ;;
87esac
88gprof="no"
aliguori03b4fe72008-10-07 19:16:17 +000089sparse="no"
bellard7d132992003-03-06 23:23:54 +000090bigendian="no"
bellard67b915a2004-03-31 23:37:16 +000091mingw32="no"
92EXESUF=""
93gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +000094slirp="yes"
aliguorie0e6c8c02008-07-23 18:14:33 +000095vde="yes"
bellard102a52e2004-11-14 19:57:29 +000096fmod_lib=""
97fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +000098oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +000099vnc_tls="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000100bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000101linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000102solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000103kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000104profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000105cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000106check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000107softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000108linux_user="no"
109darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000110bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000111build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000112uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000113curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000114aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000115nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000116mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000117bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000118kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000119kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000120aix="no"
ths77755342008-11-27 15:45:16 +0000121blobs="yes"
bellard7d132992003-03-06 23:23:54 +0000122
123# OS specific
124targetos=`uname -s`
125case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000126CYGWIN*)
127mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000128OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000129if [ "$cpu" = "i386" ] ; then
130 kqemu="yes"
131fi
malcc2de5c92008-06-28 19:13:06 +0000132audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000133;;
bellard67b915a2004-03-31 23:37:16 +0000134MINGW32*)
135mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000136if [ "$cpu" = "i386" ] ; then
137 kqemu="yes"
138fi
malcc2de5c92008-06-28 19:13:06 +0000139audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000140;;
ths5c40d2b2007-06-23 16:03:36 +0000141GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000142audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000143audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000144if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
145 kqemu="yes"
146fi
147;;
bellard7d3505c2004-05-12 19:32:15 +0000148FreeBSD)
149bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000150audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000151audio_possible_drivers="oss sdl esd pa"
blueswir1f4887912008-11-23 07:27:59 +0000152aio_lib="-lpthread"
bellarde99f9062005-07-28 21:45:38 +0000153if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000154 kqemu="yes"
155fi
bellard7d3505c2004-05-12 19:32:15 +0000156;;
157NetBSD)
158bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000159audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000160audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000161oss_lib="-lossaudio"
162aio_lib="-lrt -lpthread"
bellard7d3505c2004-05-12 19:32:15 +0000163;;
164OpenBSD)
165bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000166openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000167audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000168audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000169oss_lib="-lossaudio"
blueswir18ef92a82008-11-22 20:24:29 +0000170aio_lib="-lpthread"
bellard7d3505c2004-05-12 19:32:15 +0000171;;
bellard83fb7ad2004-07-05 21:25:26 +0000172Darwin)
173bsd="yes"
174darwin="yes"
ths831b7822007-01-18 20:06:33 +0000175darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000176cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000177audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000178audio_possible_drivers="coreaudio sdl fmod"
ths6f30fa82007-01-05 01:00:47 +0000179OS_CFLAGS="-mdynamic-no-pic"
thsc2c59c32008-01-08 00:00:20 +0000180OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
blueswir18ef92a82008-11-22 20:24:29 +0000181aio_lib="-lpthread"
bellard83fb7ad2004-07-05 21:25:26 +0000182;;
bellardec530c82006-04-25 22:36:06 +0000183SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000184 solaris="yes"
185 make="gmake"
186 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000187 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000188 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000189 # have to select again, because `uname -m` returns i86pc
190 # even on an x86_64 box.
191 solariscpu=`isainfo -k`
192 if test "${solariscpu}" = "amd64" ; then
193 cpu="x86_64"
194 fi
thsc2b84fa2007-02-10 23:21:21 +0000195 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000196 if test "$solarisrev" -le 9 ; then
197 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
198 needs_libsunmath="yes"
199 else
200 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
201 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
202 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
203 echo "Studio 11 can be downloaded from www.sun.com."
204 exit 1
205 fi
206 fi
207 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000208 kqemu="yes"
209 fi
ths86b2bd92007-02-11 00:31:33 +0000210 fi
ths6b4d2ba2007-05-13 18:02:43 +0000211 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000212 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000213 fi
malcc2de5c92008-06-28 19:13:06 +0000214 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000215;;
malcb29fe3e2008-11-18 01:42:22 +0000216AIX)
217aix="yes"
218make="gmake"
219;;
bellard1d14ffa2005-10-30 18:58:22 +0000220*)
malc0c58ac12008-06-25 21:04:05 +0000221audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000222audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000223linux="yes"
ths831b7822007-01-18 20:06:33 +0000224linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000225usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000226if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000227 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000228 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000229fi
bellardfb065182004-11-09 23:09:44 +0000230;;
bellard7d132992003-03-06 23:23:54 +0000231esac
232
bellard7d3505c2004-05-12 19:32:15 +0000233if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000234 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000235 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000236 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000237 fi
blueswir184778502008-10-26 20:33:16 +0000238 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000239fi
240
bellard7d132992003-03-06 23:23:54 +0000241# find source path
pbrookad064842006-04-16 12:41:07 +0000242source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000243source_path_used="no"
244workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000245if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000246 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000247else
248 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000249fi
pbrook724db112008-02-03 19:20:13 +0000250[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000251
bellard85aa5182007-11-11 20:17:03 +0000252werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000253# generate compile errors on warnings for development builds
254#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
255#werror="yes";
256#fi
bellard85aa5182007-11-11 20:17:03 +0000257
bellard7d132992003-03-06 23:23:54 +0000258for opt do
pbrooka46e4032006-04-29 23:05:22 +0000259 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000260 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000261 --help|-h) show_help=yes
262 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000263 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000264 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000265 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000266 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000267 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000268 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000269 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000270 --cross-prefix=*) cross_prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000271 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000272 --cc=*) cc="$optarg"
bellard7d132992003-03-06 23:23:54 +0000273 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000274 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000275 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000276 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000277 ;;
pbrook6a882642006-04-17 13:57:12 +0000278 --install=*) install="$optarg"
279 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000280 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000281 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000282 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000283 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000284 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000285 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000286 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000287 ;;
bellard7d132992003-03-06 23:23:54 +0000288 --enable-gprof) gprof="yes"
289 ;;
bellard43ce4df2003-06-09 19:53:12 +0000290 --static) static="yes"
291 ;;
bellard97a847b2003-08-10 21:36:04 +0000292 --disable-sdl) sdl="no"
293 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000294 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000295 ;;
malcc2de5c92008-06-28 19:13:06 +0000296 --fmod-inc=*) fmod_inc="$optarg"
297 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000298 --oss-lib=*) oss_lib="$optarg"
299 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000300 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000301 ;;
302 --audio-drv-list=*) audio_drv_list="$optarg"
303 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000304 --enable-sparse) sparse="yes"
305 ;;
306 --disable-sparse) sparse="no"
307 ;;
ths8d5d2d42007-08-25 01:37:51 +0000308 --disable-vnc-tls) vnc_tls="no"
309 ;;
bellard443f1372004-06-04 11:13:20 +0000310 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000311 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000312 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000313 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000314 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000315 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000316 --disable-brlapi) brlapi="no"
317 ;;
balrogfb599c92008-09-28 23:49:55 +0000318 --disable-bluez) bluez="no"
319 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000320 --disable-kvm) kvm="no"
321 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000322 --enable-profiler) profiler="yes"
323 ;;
malcc2de5c92008-06-28 19:13:06 +0000324 --enable-cocoa)
325 cocoa="yes" ;
326 sdl="no" ;
327 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000328 ;;
bellard97ccc682005-07-02 13:32:17 +0000329 --disable-gfx-check) check_gfx="no"
330 ;;
pbrookcad25d62006-03-19 16:31:11 +0000331 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000332 ;;
pbrookcad25d62006-03-19 16:31:11 +0000333 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000334 ;;
ths831b7822007-01-18 20:06:33 +0000335 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000336 ;;
ths831b7822007-01-18 20:06:33 +0000337 --enable-linux-user) linux_user="yes"
338 ;;
339 --disable-darwin-user) darwin_user="no"
340 ;;
341 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000342 ;;
blueswir184778502008-10-26 20:33:16 +0000343 --disable-bsd-user) bsd_user="no"
344 ;;
345 --enable-bsd-user) bsd_user="yes"
346 ;;
pbrookc5937222006-05-14 11:30:38 +0000347 --enable-uname-release=*) uname_release="$optarg"
348 ;;
blueswir131422552007-04-16 18:27:06 +0000349 --sparc_cpu=*)
350 sparc_cpu="$optarg"
351 case $sparc_cpu in
352 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
353 target_cpu="sparc"; cpu="sparc" ;;
354 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
355 target_cpu="sparc"; cpu="sparc" ;;
356 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
357 target_cpu="sparc64"; cpu="sparc64" ;;
358 *) echo "undefined SPARC architecture. Exiting";exit 1;;
359 esac
360 ;;
bellard85aa5182007-11-11 20:17:03 +0000361 --enable-werror) werror="yes"
362 ;;
363 --disable-werror) werror="no"
364 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000365 --disable-curses) curses="no"
366 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000367 --disable-nptl) nptl="no"
368 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000369 --enable-mixemu) mixemu="yes"
370 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000371 --disable-aio) aio="no"
372 ;;
ths77755342008-11-27 15:45:16 +0000373 --disable-blobs) blobs="no"
374 ;;
aliguorieac30262008-11-05 16:28:56 +0000375 --kerneldir=*) kerneldir="$optarg"
376 ;;
balrog7f1559c2007-11-17 10:24:32 +0000377 *) echo "ERROR: unknown option $opt"; show_help="yes"
378 ;;
bellard7d132992003-03-06 23:23:54 +0000379 esac
380done
381
ths6f30fa82007-01-05 01:00:47 +0000382# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000383CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000384CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000385LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000386if test "$werror" = "yes" ; then
387CFLAGS="$CFLAGS -Werror"
388fi
ths6f30fa82007-01-05 01:00:47 +0000389
blueswir1d2c7c9b2008-11-01 14:50:20 +0000390if test "$solaris" = "no" ; then
391 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
392 LDFLAGS="$LDFLAGS -Wl,--warn-common"
393 fi
blueswir149237ac2008-09-17 19:05:19 +0000394fi
395
blueswir131422552007-04-16 18:27:06 +0000396#
397# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
398# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
399#
bellard40293e52008-01-31 11:32:10 +0000400case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000401 sparc) if test -z "$sparc_cpu" ; then
402 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
403 ARCH_LDFLAGS="-m32"
404 else
405 ARCH_CFLAGS="${SP_CFLAGS}"
406 ARCH_LDFLAGS="${SP_LDFLAGS}"
407 fi
408 ;;
409 sparc64) if test -z "$sparc_cpu" ; then
410 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
411 ARCH_LDFLAGS="-m64"
412 else
413 ARCH_CFLAGS="${SP_CFLAGS}"
414 ARCH_LDFLAGS="${SP_LDFLAGS}"
415 fi
416 ;;
ths76d83bd2007-11-18 21:22:10 +0000417 s390)
418 ARCH_CFLAGS="-march=z900"
419 ;;
bellard40293e52008-01-31 11:32:10 +0000420 i386)
421 ARCH_CFLAGS="-m32"
422 ARCH_LDFLAGS="-m32"
423 ;;
424 x86_64)
425 ARCH_CFLAGS="-m64"
426 ARCH_LDFLAGS="-m64"
427 ;;
blueswir131422552007-04-16 18:27:06 +0000428esac
429
pbrookaf5db582006-04-08 14:26:41 +0000430if test x"$show_help" = x"yes" ; then
431cat << EOF
432
433Usage: configure [options]
434Options: [defaults in brackets after descriptions]
435
436EOF
437echo "Standard options:"
438echo " --help print this message"
439echo " --prefix=PREFIX install in PREFIX [$prefix]"
440echo " --interp-prefix=PREFIX where to find shared libraries, etc."
441echo " use %M for cpu name [$interp_prefix]"
442echo " --target-list=LIST set target list [$target_list]"
443echo ""
444echo "kqemu kernel acceleration support:"
445echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000446echo ""
447echo "Advanced options (experts only):"
448echo " --source-path=PATH path of source code [$source_path]"
449echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
450echo " --cc=CC use C compiler CC [$cc]"
451echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
452echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000453echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000454echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000455echo " --enable-sparse enable sparse checker"
456echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000457echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000458echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000459echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000460echo " --audio-drv-list=LIST set audio drivers list:"
461echo " Available drivers: $audio_possible_drivers"
462echo " --audio-card-list=LIST set list of additional emulated audio cards"
463echo " Available cards: ac97 adlib cs4231a gus"
malc8ff9cbf2008-06-23 18:33:30 +0000464echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000465echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000466echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000467echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000468echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000469echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000470echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000471echo " --enable-system enable all system emulation targets"
472echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000473echo " --enable-linux-user enable all linux usermode emulation targets"
474echo " --disable-linux-user disable all linux usermode emulation targets"
475echo " --enable-darwin-user enable all darwin usermode emulation targets"
476echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000477echo " --enable-bsd-user enable all BSD usermode emulation targets"
478echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000479echo " --fmod-lib path to FMOD library"
480echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000481echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000482echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000483echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000484echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000485echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000486echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000487echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000488echo ""
ths5bf08932006-12-23 00:33:26 +0000489echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000490exit 1
491fi
492
bellard7d132992003-03-06 23:23:54 +0000493cc="${cross_prefix}${cc}"
494ar="${cross_prefix}${ar}"
495strip="${cross_prefix}${strip}"
496
pbrook064aae12006-05-08 00:51:44 +0000497# check that the C compiler works.
498cat > $TMPC <<EOF
499int main(void) {}
500EOF
501
aurel32178baee2008-12-08 18:11:57 +0000502if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrook064aae12006-05-08 00:51:44 +0000503 : C compiler works ok
504else
505 echo "ERROR: \"$cc\" either does not exist or does not work"
506 exit 1
bellarda7350fa2006-04-23 14:35:23 +0000507fi
508
aliguoricd01b4a2008-08-21 19:25:45 +0000509# check compiler to see if we're on mingw32
510cat > $TMPC <<EOF
511#include <windows.h>
512#ifndef _WIN32
513#error not windows
514#endif
515int main(void) {}
516EOF
517
aurel32178baee2008-12-08 18:11:57 +0000518if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000519 mingw32="yes"
520fi
521
bellard67b915a2004-03-31 23:37:16 +0000522if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000523 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000524 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000525 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000526 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000527 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000528fi
529
aliguori997306f2008-09-26 15:52:17 +0000530if [ "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000531 AIOLIBS=
aliguori997306f2008-09-26 15:52:17 +0000532elif [ "$bsd" = "yes" ]; then
blueswir18ef92a82008-11-22 20:24:29 +0000533 AIOLIBS="$aio_lib"
aliguoricd01b4a2008-08-21 19:25:45 +0000534else
535 # Some Linux architectures (e.g. s390) don't imply -lpthread automatically.
536 AIOLIBS="-lrt -lpthread"
bellard67b915a2004-03-31 23:37:16 +0000537fi
538
aliguori03b4fe72008-10-07 19:16:17 +0000539if test ! -x "$(which cgcc 2>/dev/null)"; then
540 sparse="no"
541fi
542
bellardec530c82006-04-25 22:36:06 +0000543#
544# Solaris specific configure tool chain decisions
545#
546if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000547 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
548 if test -z "$solinst" ; then
549 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
550 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
551 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
552 exit 1
553 fi
554 if test "$solinst" = "/usr/sbin/install" ; then
555 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
556 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
557 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
558 exit 1
559 fi
bellardec530c82006-04-25 22:36:06 +0000560 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
561 if test -z "$sol_ar" ; then
562 echo "Error: No path includes ar"
563 if test -f /usr/ccs/bin/ar ; then
564 echo "Add /usr/ccs/bin to your path and rerun configure"
565 fi
566 exit 1
567 fi
ths5fafdf22007-09-16 21:08:06 +0000568fi
bellardec530c82006-04-25 22:36:06 +0000569
570
bellard5327cf42005-01-10 23:18:50 +0000571if test -z "$target_list" ; then
572# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000573 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000574 target_list="\
575i386-softmmu \
576x86_64-softmmu \
577arm-softmmu \
578cris-softmmu \
579m68k-softmmu \
580mips-softmmu \
581mipsel-softmmu \
582mips64-softmmu \
583mips64el-softmmu \
584ppc-softmmu \
585ppcemb-softmmu \
586ppc64-softmmu \
587sh4-softmmu \
588sh4eb-softmmu \
589sparc-softmmu \
590"
pbrook0a8e90f2006-03-19 14:54:16 +0000591 fi
bellard5327cf42005-01-10 23:18:50 +0000592# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000593 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000594 target_list="${target_list}\
595i386-linux-user \
596x86_64-linux-user \
597alpha-linux-user \
598arm-linux-user \
599armeb-linux-user \
600cris-linux-user \
601m68k-linux-user \
602mips-linux-user \
603mipsel-linux-user \
604ppc-linux-user \
605ppc64-linux-user \
606ppc64abi32-linux-user \
607sh4-linux-user \
608sh4eb-linux-user \
609sparc-linux-user \
610sparc64-linux-user \
611sparc32plus-linux-user \
612"
ths831b7822007-01-18 20:06:33 +0000613 fi
614# the following are Darwin specific
615 if [ "$darwin_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000616 target_list="$target_list i386-darwin-user ppc-darwin-user"
bellard5327cf42005-01-10 23:18:50 +0000617 fi
blueswir184778502008-10-26 20:33:16 +0000618# the following are BSD specific
619 if [ "$bsd_user" = "yes" ] ; then
620 target_list="${target_list}\
621sparc64-bsd-user \
622"
623 fi
bellard6e20a452005-06-05 15:56:02 +0000624else
pbrookb1a550a2006-04-16 13:28:56 +0000625 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000626fi
pbrook0a8e90f2006-03-19 14:54:16 +0000627if test -z "$target_list" ; then
628 echo "No targets enabled"
629 exit 1
630fi
bellard5327cf42005-01-10 23:18:50 +0000631
bellard7d132992003-03-06 23:23:54 +0000632if test -z "$cross_prefix" ; then
633
634# ---
635# big/little endian test
636cat > $TMPC << EOF
637#include <inttypes.h>
638int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000639 volatile uint32_t i=0x01234567;
640 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000641}
642EOF
643
aurel32178baee2008-12-08 18:11:57 +0000644if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000645$TMPE && bigendian="yes"
646else
647echo big/little test failed
648fi
649
650else
651
652# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000653if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000654 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000655 -o "$cpu" = "m68k" \
656 -o "$cpu" = "mips" \
657 -o "$cpu" = "mips64" \
658 -o "$cpu" = "powerpc" \
659 -o "$cpu" = "s390" \
660 -o "$cpu" = "sparc" \
661 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000662 bigendian="yes"
663fi
664
665fi
666
bellardb6853692005-06-05 17:10:39 +0000667# host long bits test
668hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000669if test "$cpu" = "x86_64" \
670 -o "$cpu" = "alpha" \
671 -o "$cpu" = "ia64" \
672 -o "$cpu" = "sparc64"; then
bellardb6853692005-06-05 17:10:39 +0000673 hostlongbits="64"
674fi
675
malc810260a2008-07-23 19:17:46 +0000676# ppc specific hostlongbits selection
677if test "$cpu" = "powerpc" ; then
malc9d56d2d2008-09-30 19:44:32 +0000678 if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
679 grep -q __powerpc64__ $TMPI && hostlongbits=64
malc810260a2008-07-23 19:17:46 +0000680 else
681 echo hostlongbits test failed
malcba69a082008-07-24 17:51:36 +0000682 exit 1
malc810260a2008-07-23 19:17:46 +0000683 fi
684fi
685
bellarde8cd23d2003-06-25 16:08:13 +0000686# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000687cat > $TMPC <<EOF
688int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000689}
690EOF
691
pbrookbd0c5662008-05-29 14:34:11 +0000692# Check host NPTL support
693cat > $TMPC <<EOF
694#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000695#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000696void foo()
697{
698#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
699#error bork
700#endif
701}
702EOF
703
704if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then
705 :
706else
707 nptl="no"
708fi
709
bellard11d9f692004-04-02 20:55:59 +0000710##########################################
balrogac629222008-10-11 09:56:04 +0000711# zlib check
712
713cat > $TMPC << EOF
714#include <zlib.h>
715int main(void) { zlibVersion(); return 0; }
716EOF
balrog17e15922008-10-11 12:00:42 +0000717if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000718 :
719else
720 echo
721 echo "Error: zlib check failed"
722 echo "Make sure to have the zlib libs and headers installed."
723 echo
724 exit 1
725fi
726
727##########################################
bellard11d9f692004-04-02 20:55:59 +0000728# SDL probe
729
730sdl_too_old=no
731
732if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000733 sdl_config="sdl-config"
734 sdl=no
735 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000736
737cat > $TMPC << EOF
738#include <SDL.h>
739#undef main /* We don't want SDL to override our main() */
740int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
741EOF
malcd4742de2008-11-29 22:04:31 +0000742 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> $TMPSDLLOG ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000743 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
744 if test "$_sdlversion" -lt 121 ; then
745 sdl_too_old=yes
746 else
747 if test "$cocoa" = "no" ; then
748 sdl=yes
749 fi
750 fi
751
752 # static link with sdl ?
753 if test "$sdl" = "yes" ; then
754 aa="no"
755 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
756 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
757 if [ "$aa" = "yes" ] ; then
758 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000759 fi
bellard11d9f692004-04-02 20:55:59 +0000760
aliguoricd01b4a2008-08-21 19:25:45 +0000761 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
762 sdl_static=yes
763 fi
764 fi # static link
765 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000766else
ths069b0bd2007-07-12 00:27:15 +0000767 # Make sure to disable cocoa if sdl was set
768 if test "$sdl" = "yes" ; then
769 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000770 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000771 fi
bellarda6e022a2004-04-02 21:55:47 +0000772fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000773
ths8f28f3f2007-01-05 21:25:54 +0000774##########################################
ths8d5d2d42007-08-25 01:37:51 +0000775# VNC TLS detection
776if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000777cat > $TMPC <<EOF
778#include <gnutls/gnutls.h>
779int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
780EOF
781 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
782 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
783 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
784 $vnc_tls_libs 2> /dev/null ; then
785 :
786 else
787 vnc_tls="no"
788 fi
ths8d5d2d42007-08-25 01:37:51 +0000789fi
790
791##########################################
ths8a16d272008-07-19 09:56:24 +0000792# vde libraries probe
793if test "$vde" = "yes" ; then
794 cat > $TMPC << EOF
795#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000796int main(void)
797{
798 struct vde_open_args a = {0, 0, 0};
799 vde_open("", "", &a);
800 return 0;
801}
ths8a16d272008-07-19 09:56:24 +0000802EOF
pbrook4a7f0e02008-09-07 16:42:53 +0000803 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000804 :
805 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000806 vde="no"
ths8a16d272008-07-19 09:56:24 +0000807 fi
808fi
809
810##########################################
malcc2de5c92008-06-28 19:13:06 +0000811# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000812
malcc2de5c92008-06-28 19:13:06 +0000813audio_drv_probe()
814{
815 drv=$1
816 hdr=$2
817 lib=$3
818 exp=$4
819 cfl=$5
820 cat > $TMPC << EOF
821#include <$hdr>
822int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000823EOF
malcc2de5c92008-06-28 19:13:06 +0000824 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then
825 :
826 else
827 echo
828 echo "Error: $drv check failed"
829 echo "Make sure to have the $drv libs and headers installed."
830 echo
831 exit 1
832 fi
833}
834
malc2fa7d3b2008-07-29 12:58:44 +0000835audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000836for drv in $audio_drv_list; do
837 case $drv in
838 alsa)
839 audio_drv_probe $drv alsa/asoundlib.h -lasound \
840 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
841 ;;
842
843 fmod)
844 if test -z $fmod_lib || test -z $fmod_inc; then
845 echo
846 echo "Error: You must specify path to FMOD library and headers"
847 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
848 echo
849 exit 1
850 fi
851 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
852 ;;
853
854 esd)
855 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
856 ;;
malcb8e59f12008-07-02 21:03:08 +0000857
858 pa)
859 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
860 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
861 ;;
862
blueswir12f6a1ab2008-08-21 18:00:53 +0000863 oss|sdl|core|wav|dsound)
864 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
865 ;;
866
malce4c63a62008-07-19 16:15:16 +0000867 *)
malc1c9b2a52008-07-19 16:57:30 +0000868 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000869 echo
870 echo "Error: Unknown driver '$drv' selected"
871 echo "Possible drivers are: $audio_possible_drivers"
872 echo
873 exit 1
874 }
875 ;;
malcc2de5c92008-06-28 19:13:06 +0000876 esac
877done
ths8f28f3f2007-01-05 21:25:54 +0000878
balrog4d3b6f62008-02-10 16:33:14 +0000879##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000880# BrlAPI probe
881
882if test -z "$brlapi" ; then
883 brlapi=no
884cat > $TMPC << EOF
885#include <brlapi.h>
886int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
887EOF
aurel32178baee2008-12-08 18:11:57 +0000888 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000889 brlapi=yes
890 fi # brlapi compile test
891fi # -z $brlapi
892
893##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000894# curses probe
895
896if test "$curses" = "yes" ; then
897 curses=no
898 cat > $TMPC << EOF
899#include <curses.h>
900int main(void) { return curses_version(); }
901EOF
aurel32178baee2008-12-08 18:11:57 +0000902 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000903 curses=yes
904 fi
905fi # test "$curses"
906
blueswir1414f0da2008-08-15 18:20:52 +0000907##########################################
balrogfb599c92008-09-28 23:49:55 +0000908# bluez support probe
909if test "$bluez" = "yes" ; then
910 `pkg-config bluez` || bluez="no"
911fi
912if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000913 cat > $TMPC << EOF
914#include <bluetooth/bluetooth.h>
915int main(void) { return bt_error(0); }
916EOF
balrogfb599c92008-09-28 23:49:55 +0000917 bluez_cflags=`pkg-config --cflags bluez`
918 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000919 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balroge820e3f2008-09-30 02:27:44 +0000920 $bluez_libs 2> /dev/null ; then
921 :
922 else
923 bluez="no"
924 fi
balrogfb599c92008-09-28 23:49:55 +0000925fi
926
927##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000928# kvm probe
929if test "$kvm" = "yes" ; then
930 cat > $TMPC <<EOF
931#include <linux/kvm.h>
932#if !defined(KVM_API_VERSION) || \
933 KVM_API_VERSION < 12 || \
934 KVM_API_VERSION > 12 || \
935 !defined(KVM_CAP_USER_MEMORY) || \
aliguorid85dc282008-12-09 19:59:09 +0000936 !defined(KVM_CAP_SET_TSS_ADDR) || \
937 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
aliguori7ba1e612008-11-05 16:04:33 +0000938#error Invalid KVM version
939#endif
940int main(void) { return 0; }
941EOF
aliguorieac30262008-11-05 16:28:56 +0000942 if test "$kerneldir" != "" ; then
943 kvm_cflags=-I"$kerneldir"/include
944 else
945 kvm_cflags=""
946 fi
aliguori7ba1e612008-11-05 16:04:33 +0000947 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
948 2>/dev/null ; then
949 :
950 else
951 kvm="no"
952 fi
953fi
954
955##########################################
blueswir1414f0da2008-08-15 18:20:52 +0000956# AIO probe
957if test "$aio" = "yes" ; then
958 aio=no
959 cat > $TMPC << EOF
960#include <aio.h>
961int main(void) { return aio_write(NULL); }
962EOF
963 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
964 aio=yes
965 fi
966fi
967
aliguoribf9298b2008-12-05 20:05:26 +0000968##########################################
969# iovec probe
970cat > $TMPC <<EOF
971#include <sys/uio.h>
972int main(void) { struct iovec iov; return 0; }
973EOF
974iovec=no
975if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
976 iovec=yes
977fi
978
pbrookcc8ae6d2006-04-23 17:57:59 +0000979# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +0000980if [ -x "`which texi2html 2>/dev/null`" ] && \
981 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +0000982 build_docs="yes"
983fi
984
bellard11d9f692004-04-02 20:55:59 +0000985if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +0000986 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +0000987 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +0000988 fi
989 mansuffix=""
990 datasuffix=""
991 docsuffix=""
992 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +0000993else
pbrook308c3592007-02-27 00:52:01 +0000994 if test -z "$prefix" ; then
995 prefix="/usr/local"
996 fi
997 mansuffix="/share/man"
998 datasuffix="/share/qemu"
999 docsuffix="/share/doc/qemu"
1000 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001001fi
bellard5a671352003-10-01 00:13:48 +00001002
bellard43ce4df2003-06-09 19:53:12 +00001003echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001004echo "BIOS directory $prefix$datasuffix"
1005echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001006if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001007echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001008echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001009fi
bellard5a671352003-10-01 00:13:48 +00001010echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001011echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001012echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001013echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001014echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001015echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001016echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001017echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001018echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001019echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001020echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001021echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001022echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001023echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001024if test "$darwin" = "yes" ; then
1025 echo "Cocoa support $cocoa"
1026fi
bellard97a847b2003-08-10 21:36:04 +00001027echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001028if test "$sdl" != "no" ; then
1029 echo "SDL static link $sdl_static"
1030fi
balrog4d3b6f62008-02-10 16:33:14 +00001031echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001032echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001033echo "Audio drivers $audio_drv_list"
1034echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001035echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001036echo "VNC TLS support $vnc_tls"
1037if test "$vnc_tls" = "yes" ; then
1038 echo " TLS CFLAGS $vnc_tls_cflags"
1039 echo " TLS LIBS $vnc_tls_libs"
1040fi
blueswir131422552007-04-16 18:27:06 +00001041if test -n "$sparc_cpu"; then
1042 echo "Target Sparc Arch $sparc_cpu"
1043fi
bellard07f4ddb2005-04-23 17:44:28 +00001044echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001045echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001046echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001047[ ! -z "$uname_release" ] && \
1048echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001049echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001050echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001051echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001052echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001053echo "KVM support $kvm"
bellard67b915a2004-03-31 23:37:16 +00001054
bellard97a847b2003-08-10 21:36:04 +00001055if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001056echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001057fi
malcd4742de2008-11-29 22:04:31 +00001058if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001059 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001060 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001061fi
bellard24b55b92005-03-01 22:30:41 +00001062#if test "$sdl_static" = "no"; then
1063# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1064#fi
bellard97a847b2003-08-10 21:36:04 +00001065config_mak="config-host.mak"
1066config_h="config-host.h"
1067
bellard7c1f25b2004-04-22 00:02:08 +00001068#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001069
ths15d9ca02007-07-31 23:07:32 +00001070test -f $config_h && mv $config_h ${config_h}~
1071
bellard97a847b2003-08-10 21:36:04 +00001072echo "# Automatically generated by configure - do not modify" > $config_mak
malcfd69fe22008-12-07 22:50:16 +00001073echo -n "# Configured with:" >> $config_mak
1074printf " '%s'" "$0" "$@" >> $config_mak
1075echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001076echo "/* Automatically generated by configure - do not modify */" > $config_h
1077
1078echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001079echo "bindir=\${prefix}$binsuffix" >> $config_mak
1080echo "mandir=\${prefix}$mansuffix" >> $config_mak
1081echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001082echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001083echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001084echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001085echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001086echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001087echo "HOST_CC=$host_cc" >> $config_mak
1088echo "AR=$ar" >> $config_mak
1089echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001090# XXX: only use CFLAGS and LDFLAGS ?
1091# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1092# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001093echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001094echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1095echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1096echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001097echo "CFLAGS=$CFLAGS" >> $config_mak
1098echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001099echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001100echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001101case "$cpu" in
1102 i386)
1103 echo "ARCH=i386" >> $config_mak
1104 echo "#define HOST_I386 1" >> $config_h
1105 ;;
1106 x86_64)
1107 echo "ARCH=x86_64" >> $config_mak
1108 echo "#define HOST_X86_64 1" >> $config_h
1109 ;;
1110 alpha)
1111 echo "ARCH=alpha" >> $config_mak
1112 echo "#define HOST_ALPHA 1" >> $config_h
1113 ;;
1114 armv4b)
1115 echo "ARCH=arm" >> $config_mak
1116 echo "#define HOST_ARM 1" >> $config_h
1117 ;;
1118 armv4l)
1119 echo "ARCH=arm" >> $config_mak
1120 echo "#define HOST_ARM 1" >> $config_h
1121 ;;
1122 cris)
1123 echo "ARCH=cris" >> $config_mak
1124 echo "#define HOST_CRIS 1" >> $config_h
1125 ;;
1126 hppa)
1127 echo "ARCH=hppa" >> $config_mak
1128 echo "#define HOST_HPPA 1" >> $config_h
1129 ;;
1130 ia64)
1131 echo "ARCH=ia64" >> $config_mak
1132 echo "#define HOST_IA64 1" >> $config_h
1133 ;;
1134 m68k)
1135 echo "ARCH=m68k" >> $config_mak
1136 echo "#define HOST_M68K 1" >> $config_h
1137 ;;
1138 mips)
1139 echo "ARCH=mips" >> $config_mak
1140 echo "#define HOST_MIPS 1" >> $config_h
1141 ;;
1142 mips64)
1143 echo "ARCH=mips64" >> $config_mak
1144 echo "#define HOST_MIPS64 1" >> $config_h
1145 ;;
1146 powerpc)
malc810260a2008-07-23 19:17:46 +00001147 if test "$hostlongbits" = "32"; then
1148 echo "ARCH=ppc" >> $config_mak
1149 echo "#define HOST_PPC 1" >> $config_h
1150 else
1151 echo "ARCH=ppc64" >> $config_mak
1152 echo "#define HOST_PPC64 1" >> $config_h
1153 fi
aurel322408a522008-04-20 20:19:44 +00001154 ;;
1155 s390)
1156 echo "ARCH=s390" >> $config_mak
1157 echo "#define HOST_S390 1" >> $config_h
1158 ;;
1159 sparc)
1160 echo "ARCH=sparc" >> $config_mak
1161 echo "#define HOST_SPARC 1" >> $config_h
1162 ;;
1163 sparc64)
1164 echo "ARCH=sparc64" >> $config_mak
1165 echo "#define HOST_SPARC64 1" >> $config_h
1166 ;;
1167 *)
1168 echo "Unsupported CPU = $cpu"
1169 exit 1
1170 ;;
1171esac
aliguori03b4fe72008-10-07 19:16:17 +00001172if test "$sparse" = "yes" ; then
1173 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1174 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1175 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1176fi
bellard7d132992003-03-06 23:23:54 +00001177if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001178 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1179 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1180fi
bellardb6853692005-06-05 17:10:39 +00001181echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001182if test "$mingw32" = "yes" ; then
1183 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001184 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001185else
1186 cat > $TMPC << EOF
1187#include <byteswap.h>
1188int main(void) { return bswap_32(0); }
1189EOF
aurel32178baee2008-12-08 18:11:57 +00001190 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001191 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1192 fi
blueswir113606772008-12-05 17:54:09 +00001193 cat > $TMPC << EOF
1194#include <sys/endian.h>
1195#include <sys/types.h>
1196#include <machine/bswap.h>
1197int main(void) { return bswap32(0); }
1198EOF
aurel32178baee2008-12-08 18:11:57 +00001199 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001200 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1201 fi
bellard67b915a2004-03-31 23:37:16 +00001202fi
blueswir1128ab2f2008-08-15 18:33:42 +00001203
1204if [ "$openbsd" = "yes" ] ; then
1205 echo "#define ENOTSUP 4096" >> $config_h
1206fi
1207
bellard83fb7ad2004-07-05 21:25:26 +00001208if test "$darwin" = "yes" ; then
1209 echo "CONFIG_DARWIN=yes" >> $config_mak
1210 echo "#define CONFIG_DARWIN 1" >> $config_h
1211fi
malcb29fe3e2008-11-18 01:42:22 +00001212
1213if test "$aix" = "yes" ; then
1214 echo "CONFIG_AIX=yes" >> $config_mak
1215 echo "#define CONFIG_AIX 1" >> $config_h
1216fi
1217
bellardec530c82006-04-25 22:36:06 +00001218if test "$solaris" = "yes" ; then
1219 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001220 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001221 if test "$needs_libsunmath" = "yes" ; then
1222 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1223 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1224 fi
bellardec530c82006-04-25 22:36:06 +00001225fi
blueswir131422552007-04-16 18:27:06 +00001226if test -n "$sparc_cpu"; then
1227 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1228 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1229fi
bellard67b915a2004-03-31 23:37:16 +00001230if test "$gdbstub" = "yes" ; then
1231 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1232 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1233fi
bellard97a847b2003-08-10 21:36:04 +00001234if test "$gprof" = "yes" ; then
1235 echo "TARGET_GPROF=yes" >> $config_mak
1236 echo "#define HAVE_GPROF 1" >> $config_h
1237fi
1238if test "$static" = "yes" ; then
1239 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001240 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001241fi
bellard05c2a3e2006-02-08 22:39:17 +00001242if test $profiler = "yes" ; then
1243 echo "#define CONFIG_PROFILER 1" >> $config_h
1244fi
bellardc20709a2004-04-21 23:27:19 +00001245if test "$slirp" = "yes" ; then
1246 echo "CONFIG_SLIRP=yes" >> $config_mak
1247 echo "#define CONFIG_SLIRP 1" >> $config_h
1248fi
ths8a16d272008-07-19 09:56:24 +00001249if test "$vde" = "yes" ; then
1250 echo "CONFIG_VDE=yes" >> $config_mak
1251 echo "#define CONFIG_VDE 1" >> $config_h
1252 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1253fi
malc0c58ac12008-06-25 21:04:05 +00001254for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001255 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001256 echo "$def=yes" >> $config_mak
1257 echo "#define $def 1" >> $config_h
1258done
1259echo "#define AUDIO_DRIVERS \\" >> $config_h
1260for drv in $audio_drv_list; do
1261 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001262 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001263 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001264 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001265 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1266 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001267 elif test "$drv" = "oss"; then
1268 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001269 fi
1270done
1271echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001272if test "$mixemu" = "yes" ; then
1273 echo "CONFIG_MIXEMU=yes" >> $config_mak
1274 echo "#define CONFIG_MIXEMU 1" >> $config_h
1275fi
ths8d5d2d42007-08-25 01:37:51 +00001276if test "$vnc_tls" = "yes" ; then
1277 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1278 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1279 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1280 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1281fi
pbrookb1a550a2006-04-16 13:28:56 +00001282qemu_version=`head $source_path/VERSION`
1283echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001284echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001285
1286echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001287if [ "$source_path_used" = "yes" ]; then
1288 echo "VPATH=$source_path" >> $config_mak
1289fi
bellard97a847b2003-08-10 21:36:04 +00001290echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001291if [ "$build_docs" = "yes" ] ; then
1292 echo "BUILD_DOCS=yes" >> $config_mak
1293fi
bellard49ecc3f2007-11-07 19:25:15 +00001294if test "$static" = "yes"; then
1295 sdl1=$sdl_static
1296else
1297 sdl1=$sdl
1298fi
1299if test "$sdl1" = "yes" ; then
1300 echo "#define CONFIG_SDL 1" >> $config_h
1301 echo "CONFIG_SDL=yes" >> $config_mak
1302 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1303 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1304 else
1305 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1306 fi
1307 if [ "${aa}" = "yes" ] ; then
1308 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1309 else
1310 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1311 fi
1312fi
1313if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001314 echo "#define CONFIG_COCOA 1" >> $config_h
1315 echo "CONFIG_COCOA=yes" >> $config_mak
1316fi
1317if test "$curses" = "yes" ; then
1318 echo "#define CONFIG_CURSES 1" >> $config_h
1319 echo "CONFIG_CURSES=yes" >> $config_mak
1320 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001321fi
aurel322e4d9fb2008-04-08 06:01:02 +00001322if test "$brlapi" = "yes" ; then
1323 echo "CONFIG_BRLAPI=yes" >> $config_mak
1324 echo "#define CONFIG_BRLAPI 1" >> $config_h
1325 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1326fi
balrogfb599c92008-09-28 23:49:55 +00001327if test "$bluez" = "yes" ; then
1328 echo "CONFIG_BLUEZ=yes" >> $config_mak
1329 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1330 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1331 echo "#define CONFIG_BLUEZ 1" >> $config_h
1332fi
blueswir1414f0da2008-08-15 18:20:52 +00001333if test "$aio" = "yes" ; then
1334 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001335 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001336fi
ths77755342008-11-27 15:45:16 +00001337if test "$blobs" = "yes" ; then
1338 echo "INSTALL_BLOBS=yes" >> $config_mak
1339fi
aliguoribf9298b2008-12-05 20:05:26 +00001340if test "$iovec" = "yes" ; then
1341 echo "#define HAVE_IOVEC 1" >> $config_h
1342fi
bellard97a847b2003-08-10 21:36:04 +00001343
bellard83fb7ad2004-07-05 21:25:26 +00001344# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001345if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001346 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001347 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001348 echo "#define _BSD 1" >> $config_h
1349fi
1350
pbrookc5937222006-05-14 11:30:38 +00001351echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1352
blueswir168063642008-11-22 21:03:55 +00001353# USB host support
1354case "$usb" in
1355linux)
1356 echo "HOST_USB=linux" >> $config_mak
1357;;
1358bsd)
1359 echo "HOST_USB=bsd" >> $config_mak
1360;;
1361*)
1362 echo "HOST_USB=stub" >> $config_mak
1363;;
1364esac
1365
pbrookc39e3332007-09-22 16:49:14 +00001366tools=
1367if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1368 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001369 if [ "$linux" = "yes" ] ; then
1370 tools="qemu-nbd\$(EXESUF) $tools"
1371 fi
pbrookc39e3332007-09-22 16:49:14 +00001372fi
1373echo "TOOLS=$tools" >> $config_mak
1374
ths15d9ca02007-07-31 23:07:32 +00001375test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1376
bellard1d14ffa2005-10-30 18:58:22 +00001377for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001378target_dir="$target"
1379config_mak=$target_dir/config.mak
1380config_h=$target_dir/config.h
1381target_cpu=`echo $target | cut -d '-' -f 1`
1382target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001383[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001384[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1385[ "$target_cpu" = "mips" ] && target_bigendian=yes
1386[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1387[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001388[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001389[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001390[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001391[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001392[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001393[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1394[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1395[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001396target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001397target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001398target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001399target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001400target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001401case "$target" in
1402 ${target_cpu}-softmmu)
1403 target_softmmu="yes"
1404 ;;
1405 ${target_cpu}-linux-user)
1406 target_user_only="yes"
1407 target_linux_user="yes"
1408 ;;
1409 ${target_cpu}-darwin-user)
1410 target_user_only="yes"
1411 target_darwin_user="yes"
1412 ;;
blueswir184778502008-10-26 20:33:16 +00001413 ${target_cpu}-bsd-user)
1414 target_user_only="yes"
1415 target_bsd_user="yes"
1416 ;;
pbrook9e407a82007-05-26 16:38:53 +00001417 *)
1418 echo "ERROR: Target '$target' not recognised"
1419 exit 1
1420 ;;
1421esac
ths831b7822007-01-18 20:06:33 +00001422
bellard97ccc682005-07-02 13:32:17 +00001423if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001424 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001425 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001426 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001427 echo "Note that this will disable all output from the virtual graphics card"
1428 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001429 exit 1;
1430fi
1431
bellard7c1f25b2004-04-22 00:02:08 +00001432#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001433
ths15d9ca02007-07-31 23:07:32 +00001434test -f $config_h && mv $config_h ${config_h}~
1435
bellard97a847b2003-08-10 21:36:04 +00001436mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001437mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001438mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001439if 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 +00001440 mkdir -p $target_dir/nwfpe
1441fi
1442
bellardec530c82006-04-25 22:36:06 +00001443#
1444# don't use ln -sf as not all "ln -sf" over write the file/link
1445#
1446rm -f $target_dir/Makefile
1447ln -s $source_path/Makefile.target $target_dir/Makefile
1448
bellard97a847b2003-08-10 21:36:04 +00001449
1450echo "# Automatically generated by configure - do not modify" > $config_mak
1451echo "/* Automatically generated by configure - do not modify */" > $config_h
1452
1453
1454echo "include ../config-host.mak" >> $config_mak
1455echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001456
pbrooke5fe0c52006-06-11 13:32:59 +00001457bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001458elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001459target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001460interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1461echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001462gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001463
aliguori5985ece2008-11-05 19:59:25 +00001464# Make sure the target and host cpus are compatible
1465if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1466 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1467 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001468 kvm="no"
1469fi
1470# Disable KVM for linux-user
1471if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1472 kvm="no"
1473fi
1474
aurel322408a522008-04-20 20:19:44 +00001475case "$target_cpu" in
1476 i386)
1477 echo "TARGET_ARCH=i386" >> $config_mak
1478 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1479 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001480 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001481 then
1482 echo "#define USE_KQEMU 1" >> $config_h
1483 fi
aliguori7ba1e612008-11-05 16:04:33 +00001484 if test "$kvm" = "yes" ; then
1485 echo "CONFIG_KVM=yes" >> $config_mak
1486 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001487 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001488 fi
aurel322408a522008-04-20 20:19:44 +00001489 ;;
1490 x86_64)
1491 echo "TARGET_ARCH=x86_64" >> $config_mak
1492 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1493 echo "#define TARGET_I386 1" >> $config_h
1494 echo "#define TARGET_X86_64 1" >> $config_h
1495 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1496 then
1497 echo "#define USE_KQEMU 1" >> $config_h
1498 fi
aliguori7ba1e612008-11-05 16:04:33 +00001499 if test "$kvm" = "yes" ; then
1500 echo "CONFIG_KVM=yes" >> $config_mak
1501 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1502 echo "#define CONFIG_KVM 1" >> $config_h
1503 fi
aurel322408a522008-04-20 20:19:44 +00001504 ;;
1505 alpha)
1506 echo "TARGET_ARCH=alpha" >> $config_mak
1507 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1508 echo "#define TARGET_ALPHA 1" >> $config_h
1509 ;;
1510 arm|armeb)
1511 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001512 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1513 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001514 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001515 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001516 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001517 ;;
1518 cris)
1519 echo "TARGET_ARCH=cris" >> $config_mak
1520 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1521 echo "#define TARGET_CRIS 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001522 ;;
1523 m68k)
1524 echo "TARGET_ARCH=m68k" >> $config_mak
1525 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1526 echo "#define TARGET_M68K 1" >> $config_h
1527 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001528 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001529 ;;
1530 mips|mipsel)
1531 echo "TARGET_ARCH=mips" >> $config_mak
1532 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1533 echo "#define TARGET_MIPS 1" >> $config_h
1534 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1535 ;;
1536 mipsn32|mipsn32el)
1537 echo "TARGET_ARCH=mipsn32" >> $config_mak
1538 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1539 echo "#define TARGET_MIPS 1" >> $config_h
1540 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1541 ;;
1542 mips64|mips64el)
1543 echo "TARGET_ARCH=mips64" >> $config_mak
1544 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1545 echo "#define TARGET_MIPS 1" >> $config_h
1546 echo "#define TARGET_MIPS64 1" >> $config_h
1547 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1548 ;;
1549 ppc)
1550 echo "TARGET_ARCH=ppc" >> $config_mak
1551 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1552 echo "#define TARGET_PPC 1" >> $config_h
1553 ;;
1554 ppcemb)
1555 echo "TARGET_ARCH=ppcemb" >> $config_mak
1556 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1557 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1558 echo "#define TARGET_PPC 1" >> $config_h
1559 echo "#define TARGET_PPCEMB 1" >> $config_h
1560 ;;
1561 ppc64)
1562 echo "TARGET_ARCH=ppc64" >> $config_mak
1563 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1564 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1565 echo "#define TARGET_PPC 1" >> $config_h
1566 echo "#define TARGET_PPC64 1" >> $config_h
1567 ;;
1568 ppc64abi32)
1569 echo "TARGET_ARCH=ppc64" >> $config_mak
1570 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1571 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1572 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1573 echo "#define TARGET_PPC 1" >> $config_h
1574 echo "#define TARGET_PPC64 1" >> $config_h
1575 echo "#define TARGET_ABI32 1" >> $config_h
1576 ;;
1577 sh4|sh4eb)
1578 echo "TARGET_ARCH=sh4" >> $config_mak
1579 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1580 echo "#define TARGET_SH4 1" >> $config_h
1581 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001582 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001583 ;;
1584 sparc)
1585 echo "TARGET_ARCH=sparc" >> $config_mak
1586 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1587 echo "#define TARGET_SPARC 1" >> $config_h
1588 ;;
1589 sparc64)
1590 echo "TARGET_ARCH=sparc64" >> $config_mak
1591 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1592 echo "#define TARGET_SPARC 1" >> $config_h
1593 echo "#define TARGET_SPARC64 1" >> $config_h
1594 elfload32="yes"
1595 ;;
1596 sparc32plus)
1597 echo "TARGET_ARCH=sparc64" >> $config_mak
1598 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1599 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1600 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1601 echo "#define TARGET_SPARC 1" >> $config_h
1602 echo "#define TARGET_SPARC64 1" >> $config_h
1603 echo "#define TARGET_ABI32 1" >> $config_h
1604 ;;
1605 *)
1606 echo "Unsupported target CPU"
1607 exit 1
1608 ;;
1609esac
bellardde83cd02003-06-15 20:25:43 +00001610if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001611 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1612 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1613fi
1614if test "$target_softmmu" = "yes" ; then
1615 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1616 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001617fi
bellard997344f2003-10-27 21:10:39 +00001618if test "$target_user_only" = "yes" ; then
1619 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1620 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1621fi
ths831b7822007-01-18 20:06:33 +00001622if test "$target_linux_user" = "yes" ; then
1623 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1624 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1625fi
1626if test "$target_darwin_user" = "yes" ; then
1627 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1628 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1629fi
pbrook56aebc82008-10-11 17:55:29 +00001630list=""
1631if test ! -z "$gdb_xml_files" ; then
1632 for x in $gdb_xml_files; do
1633 list="$list $source_path/gdb-xml/$x"
1634 done
1635fi
1636echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001637
aurel320938cda2008-04-11 21:36:06 +00001638if test "$target_cpu" = "arm" \
1639 -o "$target_cpu" = "armeb" \
1640 -o "$target_cpu" = "m68k" \
1641 -o "$target_cpu" = "mips" \
1642 -o "$target_cpu" = "mipsel" \
1643 -o "$target_cpu" = "mipsn32" \
1644 -o "$target_cpu" = "mipsn32el" \
1645 -o "$target_cpu" = "mips64" \
1646 -o "$target_cpu" = "mips64el" \
1647 -o "$target_cpu" = "sparc" \
1648 -o "$target_cpu" = "sparc64" \
1649 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001650 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1651 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1652fi
pbrooke5fe0c52006-06-11 13:32:59 +00001653if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1654 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1655 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1656fi
pbrookbd0c5662008-05-29 14:34:11 +00001657if test "$target_user_only" = "yes" \
1658 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1659 echo "#define USE_NPTL 1" >> $config_h
1660fi
blueswir1cb33da52007-10-09 16:34:29 +00001661# 32 bit ELF loader in addition to native 64 bit loader?
1662if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1663 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1664 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1665fi
blueswir184778502008-10-26 20:33:16 +00001666if test "$target_bsd_user" = "yes" ; then
1667 echo "CONFIG_BSD_USER=yes" >> $config_mak
1668 echo "#define CONFIG_BSD_USER 1" >> $config_h
1669fi
bellard5b0753e2005-03-01 21:37:28 +00001670
ths15d9ca02007-07-31 23:07:32 +00001671test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1672
bellard97a847b2003-08-10 21:36:04 +00001673done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001674
1675# build tree in object directory if source path is different from current one
1676if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001677 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001678 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001679 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001680 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001681 for dir in $DIRS ; do
1682 mkdir -p $dir
1683 done
bellardec530c82006-04-25 22:36:06 +00001684 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001685 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001686 rm -f $f
1687 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001688 done
1689fi