blob: e997a32d6070a38a47a5478dc7e7c9915f6fa678 [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"
bellarde99f9062005-07-28 21:45:38 +0000152if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000153 kqemu="yes"
154fi
bellard7d3505c2004-05-12 19:32:15 +0000155;;
156NetBSD)
157bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000158audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000159audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000160oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000161;;
162OpenBSD)
163bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000164openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000165audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000166audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000167oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000168;;
bellard83fb7ad2004-07-05 21:25:26 +0000169Darwin)
170bsd="yes"
171darwin="yes"
ths831b7822007-01-18 20:06:33 +0000172darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000173cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000174audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000175audio_possible_drivers="coreaudio sdl fmod"
ths6f30fa82007-01-05 01:00:47 +0000176OS_CFLAGS="-mdynamic-no-pic"
thsc2c59c32008-01-08 00:00:20 +0000177OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000178;;
bellardec530c82006-04-25 22:36:06 +0000179SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000180 solaris="yes"
181 make="gmake"
182 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000183 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000184 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000185 # have to select again, because `uname -m` returns i86pc
186 # even on an x86_64 box.
187 solariscpu=`isainfo -k`
188 if test "${solariscpu}" = "amd64" ; then
189 cpu="x86_64"
190 fi
thsc2b84fa2007-02-10 23:21:21 +0000191 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000192 if test "$solarisrev" -le 9 ; then
193 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
194 needs_libsunmath="yes"
195 else
196 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
197 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
198 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
199 echo "Studio 11 can be downloaded from www.sun.com."
200 exit 1
201 fi
202 fi
203 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000204 kqemu="yes"
205 fi
ths86b2bd92007-02-11 00:31:33 +0000206 fi
ths6b4d2ba2007-05-13 18:02:43 +0000207 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000208 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000209 fi
malcc2de5c92008-06-28 19:13:06 +0000210 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000211;;
malcb29fe3e2008-11-18 01:42:22 +0000212AIX)
213aix="yes"
214make="gmake"
215;;
bellard1d14ffa2005-10-30 18:58:22 +0000216*)
malc0c58ac12008-06-25 21:04:05 +0000217audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000218audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000219linux="yes"
ths831b7822007-01-18 20:06:33 +0000220linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000221usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000222if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000223 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000224 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000225fi
bellardfb065182004-11-09 23:09:44 +0000226;;
bellard7d132992003-03-06 23:23:54 +0000227esac
228
bellard7d3505c2004-05-12 19:32:15 +0000229if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000230 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000231 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000232 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000233 fi
blueswir184778502008-10-26 20:33:16 +0000234 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000235fi
236
bellard7d132992003-03-06 23:23:54 +0000237# find source path
pbrookad064842006-04-16 12:41:07 +0000238source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000239source_path_used="no"
240workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000241if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000242 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000243else
244 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000245fi
pbrook724db112008-02-03 19:20:13 +0000246[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000247
bellard85aa5182007-11-11 20:17:03 +0000248werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000249# generate compile errors on warnings for development builds
250#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
251#werror="yes";
252#fi
bellard85aa5182007-11-11 20:17:03 +0000253
bellard7d132992003-03-06 23:23:54 +0000254for opt do
pbrooka46e4032006-04-29 23:05:22 +0000255 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000256 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000257 --help|-h) show_help=yes
258 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000259 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000260 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000261 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000262 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000263 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000264 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000265 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000266 --cross-prefix=*) cross_prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000267 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000268 --cc=*) cc="$optarg"
bellard7d132992003-03-06 23:23:54 +0000269 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000270 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000271 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000272 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000273 ;;
pbrook6a882642006-04-17 13:57:12 +0000274 --install=*) install="$optarg"
275 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000276 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000277 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000278 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000279 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000280 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000281 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000282 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000283 ;;
bellard7d132992003-03-06 23:23:54 +0000284 --enable-gprof) gprof="yes"
285 ;;
bellard43ce4df2003-06-09 19:53:12 +0000286 --static) static="yes"
287 ;;
bellard97a847b2003-08-10 21:36:04 +0000288 --disable-sdl) sdl="no"
289 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000290 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000291 ;;
malcc2de5c92008-06-28 19:13:06 +0000292 --fmod-inc=*) fmod_inc="$optarg"
293 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000294 --oss-lib=*) oss_lib="$optarg"
295 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000296 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000297 ;;
298 --audio-drv-list=*) audio_drv_list="$optarg"
299 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000300 --enable-sparse) sparse="yes"
301 ;;
302 --disable-sparse) sparse="no"
303 ;;
ths8d5d2d42007-08-25 01:37:51 +0000304 --disable-vnc-tls) vnc_tls="no"
305 ;;
bellard443f1372004-06-04 11:13:20 +0000306 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000307 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000308 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000309 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000310 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000311 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000312 --disable-brlapi) brlapi="no"
313 ;;
balrogfb599c92008-09-28 23:49:55 +0000314 --disable-bluez) bluez="no"
315 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000316 --disable-kvm) kvm="no"
317 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000318 --enable-profiler) profiler="yes"
319 ;;
malcc2de5c92008-06-28 19:13:06 +0000320 --enable-cocoa)
321 cocoa="yes" ;
322 sdl="no" ;
323 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000324 ;;
bellard97ccc682005-07-02 13:32:17 +0000325 --disable-gfx-check) check_gfx="no"
326 ;;
pbrookcad25d62006-03-19 16:31:11 +0000327 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000328 ;;
pbrookcad25d62006-03-19 16:31:11 +0000329 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000330 ;;
ths831b7822007-01-18 20:06:33 +0000331 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000332 ;;
ths831b7822007-01-18 20:06:33 +0000333 --enable-linux-user) linux_user="yes"
334 ;;
335 --disable-darwin-user) darwin_user="no"
336 ;;
337 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000338 ;;
blueswir184778502008-10-26 20:33:16 +0000339 --disable-bsd-user) bsd_user="no"
340 ;;
341 --enable-bsd-user) bsd_user="yes"
342 ;;
pbrookc5937222006-05-14 11:30:38 +0000343 --enable-uname-release=*) uname_release="$optarg"
344 ;;
blueswir131422552007-04-16 18:27:06 +0000345 --sparc_cpu=*)
346 sparc_cpu="$optarg"
347 case $sparc_cpu in
348 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
349 target_cpu="sparc"; cpu="sparc" ;;
350 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
351 target_cpu="sparc"; cpu="sparc" ;;
352 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
353 target_cpu="sparc64"; cpu="sparc64" ;;
354 *) echo "undefined SPARC architecture. Exiting";exit 1;;
355 esac
356 ;;
bellard85aa5182007-11-11 20:17:03 +0000357 --enable-werror) werror="yes"
358 ;;
359 --disable-werror) werror="no"
360 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000361 --disable-curses) curses="no"
362 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000363 --disable-nptl) nptl="no"
364 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000365 --enable-mixemu) mixemu="yes"
366 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000367 --disable-aio) aio="no"
368 ;;
ths77755342008-11-27 15:45:16 +0000369 --disable-blobs) blobs="no"
370 ;;
aliguorieac30262008-11-05 16:28:56 +0000371 --kerneldir=*) kerneldir="$optarg"
372 ;;
balrog7f1559c2007-11-17 10:24:32 +0000373 *) echo "ERROR: unknown option $opt"; show_help="yes"
374 ;;
bellard7d132992003-03-06 23:23:54 +0000375 esac
376done
377
ths6f30fa82007-01-05 01:00:47 +0000378# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000379CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000380CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000381LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000382if test "$werror" = "yes" ; then
383CFLAGS="$CFLAGS -Werror"
384fi
ths6f30fa82007-01-05 01:00:47 +0000385
blueswir1d2c7c9b2008-11-01 14:50:20 +0000386if test "$solaris" = "no" ; then
387 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
388 LDFLAGS="$LDFLAGS -Wl,--warn-common"
389 fi
blueswir149237ac2008-09-17 19:05:19 +0000390fi
391
blueswir131422552007-04-16 18:27:06 +0000392#
393# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
394# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
395#
bellard40293e52008-01-31 11:32:10 +0000396case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000397 sparc) if test -z "$sparc_cpu" ; then
398 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
399 ARCH_LDFLAGS="-m32"
400 else
401 ARCH_CFLAGS="${SP_CFLAGS}"
402 ARCH_LDFLAGS="${SP_LDFLAGS}"
403 fi
404 ;;
405 sparc64) if test -z "$sparc_cpu" ; then
406 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
407 ARCH_LDFLAGS="-m64"
408 else
409 ARCH_CFLAGS="${SP_CFLAGS}"
410 ARCH_LDFLAGS="${SP_LDFLAGS}"
411 fi
412 ;;
ths76d83bd2007-11-18 21:22:10 +0000413 s390)
414 ARCH_CFLAGS="-march=z900"
415 ;;
bellard40293e52008-01-31 11:32:10 +0000416 i386)
417 ARCH_CFLAGS="-m32"
418 ARCH_LDFLAGS="-m32"
419 ;;
420 x86_64)
421 ARCH_CFLAGS="-m64"
422 ARCH_LDFLAGS="-m64"
423 ;;
blueswir131422552007-04-16 18:27:06 +0000424esac
425
pbrookaf5db582006-04-08 14:26:41 +0000426if test x"$show_help" = x"yes" ; then
427cat << EOF
428
429Usage: configure [options]
430Options: [defaults in brackets after descriptions]
431
432EOF
433echo "Standard options:"
434echo " --help print this message"
435echo " --prefix=PREFIX install in PREFIX [$prefix]"
436echo " --interp-prefix=PREFIX where to find shared libraries, etc."
437echo " use %M for cpu name [$interp_prefix]"
438echo " --target-list=LIST set target list [$target_list]"
439echo ""
440echo "kqemu kernel acceleration support:"
441echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000442echo ""
443echo "Advanced options (experts only):"
444echo " --source-path=PATH path of source code [$source_path]"
445echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
446echo " --cc=CC use C compiler CC [$cc]"
447echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
448echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000449echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000450echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000451echo " --enable-sparse enable sparse checker"
452echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000453echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000454echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000455echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000456echo " --audio-drv-list=LIST set audio drivers list:"
457echo " Available drivers: $audio_possible_drivers"
458echo " --audio-card-list=LIST set list of additional emulated audio cards"
459echo " Available cards: ac97 adlib cs4231a gus"
malc8ff9cbf2008-06-23 18:33:30 +0000460echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000461echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000462echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000463echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000464echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000465echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000466echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000467echo " --enable-system enable all system emulation targets"
468echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000469echo " --enable-linux-user enable all linux usermode emulation targets"
470echo " --disable-linux-user disable all linux usermode emulation targets"
471echo " --enable-darwin-user enable all darwin usermode emulation targets"
472echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000473echo " --enable-bsd-user enable all BSD usermode emulation targets"
474echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000475echo " --fmod-lib path to FMOD library"
476echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000477echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000478echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000479echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000480echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000481echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000482echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000483echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000484echo ""
ths5bf08932006-12-23 00:33:26 +0000485echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000486exit 1
487fi
488
bellard7d132992003-03-06 23:23:54 +0000489cc="${cross_prefix}${cc}"
490ar="${cross_prefix}${ar}"
491strip="${cross_prefix}${strip}"
492
pbrook064aae12006-05-08 00:51:44 +0000493# check that the C compiler works.
494cat > $TMPC <<EOF
495int main(void) {}
496EOF
497
aurel32178baee2008-12-08 18:11:57 +0000498if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrook064aae12006-05-08 00:51:44 +0000499 : C compiler works ok
500else
501 echo "ERROR: \"$cc\" either does not exist or does not work"
502 exit 1
bellarda7350fa2006-04-23 14:35:23 +0000503fi
504
aliguoricd01b4a2008-08-21 19:25:45 +0000505# check compiler to see if we're on mingw32
506cat > $TMPC <<EOF
507#include <windows.h>
508#ifndef _WIN32
509#error not windows
510#endif
511int main(void) {}
512EOF
513
aurel32178baee2008-12-08 18:11:57 +0000514if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000515 mingw32="yes"
516fi
517
bellard67b915a2004-03-31 23:37:16 +0000518if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000519 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000520 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000521 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000522 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000523 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000524fi
525
aliguori03b4fe72008-10-07 19:16:17 +0000526if test ! -x "$(which cgcc 2>/dev/null)"; then
527 sparse="no"
528fi
529
bellardec530c82006-04-25 22:36:06 +0000530#
531# Solaris specific configure tool chain decisions
532#
533if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000534 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
535 if test -z "$solinst" ; then
536 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
537 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
538 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
539 exit 1
540 fi
541 if test "$solinst" = "/usr/sbin/install" ; then
542 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
543 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
544 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
545 exit 1
546 fi
bellardec530c82006-04-25 22:36:06 +0000547 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
548 if test -z "$sol_ar" ; then
549 echo "Error: No path includes ar"
550 if test -f /usr/ccs/bin/ar ; then
551 echo "Add /usr/ccs/bin to your path and rerun configure"
552 fi
553 exit 1
554 fi
ths5fafdf22007-09-16 21:08:06 +0000555fi
bellardec530c82006-04-25 22:36:06 +0000556
557
bellard5327cf42005-01-10 23:18:50 +0000558if test -z "$target_list" ; then
559# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000560 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000561 target_list="\
562i386-softmmu \
563x86_64-softmmu \
564arm-softmmu \
565cris-softmmu \
566m68k-softmmu \
567mips-softmmu \
568mipsel-softmmu \
569mips64-softmmu \
570mips64el-softmmu \
571ppc-softmmu \
572ppcemb-softmmu \
573ppc64-softmmu \
574sh4-softmmu \
575sh4eb-softmmu \
576sparc-softmmu \
577"
pbrook0a8e90f2006-03-19 14:54:16 +0000578 fi
bellard5327cf42005-01-10 23:18:50 +0000579# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000580 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000581 target_list="${target_list}\
582i386-linux-user \
583x86_64-linux-user \
584alpha-linux-user \
585arm-linux-user \
586armeb-linux-user \
587cris-linux-user \
588m68k-linux-user \
589mips-linux-user \
590mipsel-linux-user \
591ppc-linux-user \
592ppc64-linux-user \
593ppc64abi32-linux-user \
594sh4-linux-user \
595sh4eb-linux-user \
596sparc-linux-user \
597sparc64-linux-user \
598sparc32plus-linux-user \
599"
ths831b7822007-01-18 20:06:33 +0000600 fi
601# the following are Darwin specific
602 if [ "$darwin_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000603 target_list="$target_list i386-darwin-user ppc-darwin-user"
bellard5327cf42005-01-10 23:18:50 +0000604 fi
blueswir184778502008-10-26 20:33:16 +0000605# the following are BSD specific
606 if [ "$bsd_user" = "yes" ] ; then
607 target_list="${target_list}\
608sparc64-bsd-user \
609"
610 fi
bellard6e20a452005-06-05 15:56:02 +0000611else
pbrookb1a550a2006-04-16 13:28:56 +0000612 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000613fi
pbrook0a8e90f2006-03-19 14:54:16 +0000614if test -z "$target_list" ; then
615 echo "No targets enabled"
616 exit 1
617fi
bellard5327cf42005-01-10 23:18:50 +0000618
bellard7d132992003-03-06 23:23:54 +0000619if test -z "$cross_prefix" ; then
620
621# ---
622# big/little endian test
623cat > $TMPC << EOF
624#include <inttypes.h>
625int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000626 volatile uint32_t i=0x01234567;
627 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000628}
629EOF
630
aurel32178baee2008-12-08 18:11:57 +0000631if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000632$TMPE && bigendian="yes"
633else
634echo big/little test failed
635fi
636
637else
638
639# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000640if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000641 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000642 -o "$cpu" = "m68k" \
643 -o "$cpu" = "mips" \
644 -o "$cpu" = "mips64" \
645 -o "$cpu" = "powerpc" \
646 -o "$cpu" = "s390" \
647 -o "$cpu" = "sparc" \
648 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000649 bigendian="yes"
650fi
651
652fi
653
bellardb6853692005-06-05 17:10:39 +0000654# host long bits test
655hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000656if test "$cpu" = "x86_64" \
657 -o "$cpu" = "alpha" \
658 -o "$cpu" = "ia64" \
659 -o "$cpu" = "sparc64"; then
bellardb6853692005-06-05 17:10:39 +0000660 hostlongbits="64"
661fi
662
malc810260a2008-07-23 19:17:46 +0000663# ppc specific hostlongbits selection
664if test "$cpu" = "powerpc" ; then
malc9d56d2d2008-09-30 19:44:32 +0000665 if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
666 grep -q __powerpc64__ $TMPI && hostlongbits=64
malc810260a2008-07-23 19:17:46 +0000667 else
668 echo hostlongbits test failed
malcba69a082008-07-24 17:51:36 +0000669 exit 1
malc810260a2008-07-23 19:17:46 +0000670 fi
671fi
672
bellarde8cd23d2003-06-25 16:08:13 +0000673# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000674cat > $TMPC <<EOF
675int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000676}
677EOF
678
pbrookbd0c5662008-05-29 14:34:11 +0000679# Check host NPTL support
680cat > $TMPC <<EOF
681#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000682#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000683void foo()
684{
685#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
686#error bork
687#endif
688}
689EOF
690
691if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then
692 :
693else
694 nptl="no"
695fi
696
bellard11d9f692004-04-02 20:55:59 +0000697##########################################
balrogac629222008-10-11 09:56:04 +0000698# zlib check
699
700cat > $TMPC << EOF
701#include <zlib.h>
702int main(void) { zlibVersion(); return 0; }
703EOF
balrog17e15922008-10-11 12:00:42 +0000704if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000705 :
706else
707 echo
708 echo "Error: zlib check failed"
709 echo "Make sure to have the zlib libs and headers installed."
710 echo
711 exit 1
712fi
713
714##########################################
bellard11d9f692004-04-02 20:55:59 +0000715# SDL probe
716
717sdl_too_old=no
718
719if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000720 sdl_config="sdl-config"
721 sdl=no
722 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000723
724cat > $TMPC << EOF
725#include <SDL.h>
726#undef main /* We don't want SDL to override our main() */
727int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
728EOF
malcd4742de2008-11-29 22:04:31 +0000729 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 +0000730 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
731 if test "$_sdlversion" -lt 121 ; then
732 sdl_too_old=yes
733 else
734 if test "$cocoa" = "no" ; then
735 sdl=yes
736 fi
737 fi
738
739 # static link with sdl ?
740 if test "$sdl" = "yes" ; then
741 aa="no"
742 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
743 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
744 if [ "$aa" = "yes" ] ; then
745 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000746 fi
bellard11d9f692004-04-02 20:55:59 +0000747
aliguoricd01b4a2008-08-21 19:25:45 +0000748 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
749 sdl_static=yes
750 fi
751 fi # static link
752 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000753else
ths069b0bd2007-07-12 00:27:15 +0000754 # Make sure to disable cocoa if sdl was set
755 if test "$sdl" = "yes" ; then
756 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000757 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000758 fi
bellarda6e022a2004-04-02 21:55:47 +0000759fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000760
ths8f28f3f2007-01-05 21:25:54 +0000761##########################################
ths8d5d2d42007-08-25 01:37:51 +0000762# VNC TLS detection
763if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000764cat > $TMPC <<EOF
765#include <gnutls/gnutls.h>
766int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
767EOF
768 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
769 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
770 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
771 $vnc_tls_libs 2> /dev/null ; then
772 :
773 else
774 vnc_tls="no"
775 fi
ths8d5d2d42007-08-25 01:37:51 +0000776fi
777
778##########################################
ths8a16d272008-07-19 09:56:24 +0000779# vde libraries probe
780if test "$vde" = "yes" ; then
781 cat > $TMPC << EOF
782#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000783int main(void)
784{
785 struct vde_open_args a = {0, 0, 0};
786 vde_open("", "", &a);
787 return 0;
788}
ths8a16d272008-07-19 09:56:24 +0000789EOF
pbrook4a7f0e02008-09-07 16:42:53 +0000790 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000791 :
792 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000793 vde="no"
ths8a16d272008-07-19 09:56:24 +0000794 fi
795fi
796
797##########################################
malcc2de5c92008-06-28 19:13:06 +0000798# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000799
malcc2de5c92008-06-28 19:13:06 +0000800audio_drv_probe()
801{
802 drv=$1
803 hdr=$2
804 lib=$3
805 exp=$4
806 cfl=$5
807 cat > $TMPC << EOF
808#include <$hdr>
809int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000810EOF
malcc2de5c92008-06-28 19:13:06 +0000811 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then
812 :
813 else
814 echo
815 echo "Error: $drv check failed"
816 echo "Make sure to have the $drv libs and headers installed."
817 echo
818 exit 1
819 fi
820}
821
malc2fa7d3b2008-07-29 12:58:44 +0000822audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000823for drv in $audio_drv_list; do
824 case $drv in
825 alsa)
826 audio_drv_probe $drv alsa/asoundlib.h -lasound \
827 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
828 ;;
829
830 fmod)
831 if test -z $fmod_lib || test -z $fmod_inc; then
832 echo
833 echo "Error: You must specify path to FMOD library and headers"
834 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
835 echo
836 exit 1
837 fi
838 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
839 ;;
840
841 esd)
842 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
843 ;;
malcb8e59f12008-07-02 21:03:08 +0000844
845 pa)
846 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
847 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
848 ;;
849
blueswir12f6a1ab2008-08-21 18:00:53 +0000850 oss|sdl|core|wav|dsound)
851 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
852 ;;
853
malce4c63a62008-07-19 16:15:16 +0000854 *)
malc1c9b2a52008-07-19 16:57:30 +0000855 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000856 echo
857 echo "Error: Unknown driver '$drv' selected"
858 echo "Possible drivers are: $audio_possible_drivers"
859 echo
860 exit 1
861 }
862 ;;
malcc2de5c92008-06-28 19:13:06 +0000863 esac
864done
ths8f28f3f2007-01-05 21:25:54 +0000865
balrog4d3b6f62008-02-10 16:33:14 +0000866##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000867# BrlAPI probe
868
869if test -z "$brlapi" ; then
870 brlapi=no
871cat > $TMPC << EOF
872#include <brlapi.h>
873int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
874EOF
aurel32178baee2008-12-08 18:11:57 +0000875 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000876 brlapi=yes
877 fi # brlapi compile test
878fi # -z $brlapi
879
880##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000881# curses probe
882
883if test "$curses" = "yes" ; then
884 curses=no
885 cat > $TMPC << EOF
886#include <curses.h>
887int main(void) { return curses_version(); }
888EOF
aurel32178baee2008-12-08 18:11:57 +0000889 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000890 curses=yes
891 fi
892fi # test "$curses"
893
blueswir1414f0da2008-08-15 18:20:52 +0000894##########################################
balrogfb599c92008-09-28 23:49:55 +0000895# bluez support probe
896if test "$bluez" = "yes" ; then
897 `pkg-config bluez` || bluez="no"
898fi
899if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000900 cat > $TMPC << EOF
901#include <bluetooth/bluetooth.h>
902int main(void) { return bt_error(0); }
903EOF
balrogfb599c92008-09-28 23:49:55 +0000904 bluez_cflags=`pkg-config --cflags bluez`
905 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000906 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balroge820e3f2008-09-30 02:27:44 +0000907 $bluez_libs 2> /dev/null ; then
908 :
909 else
910 bluez="no"
911 fi
balrogfb599c92008-09-28 23:49:55 +0000912fi
913
914##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000915# kvm probe
916if test "$kvm" = "yes" ; then
917 cat > $TMPC <<EOF
918#include <linux/kvm.h>
919#if !defined(KVM_API_VERSION) || \
920 KVM_API_VERSION < 12 || \
921 KVM_API_VERSION > 12 || \
922 !defined(KVM_CAP_USER_MEMORY) || \
aliguorid85dc282008-12-09 19:59:09 +0000923 !defined(KVM_CAP_SET_TSS_ADDR) || \
924 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
aliguori7ba1e612008-11-05 16:04:33 +0000925#error Invalid KVM version
926#endif
927int main(void) { return 0; }
928EOF
aliguorieac30262008-11-05 16:28:56 +0000929 if test "$kerneldir" != "" ; then
930 kvm_cflags=-I"$kerneldir"/include
931 else
932 kvm_cflags=""
933 fi
aliguori7ba1e612008-11-05 16:04:33 +0000934 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
935 2>/dev/null ; then
936 :
937 else
938 kvm="no"
939 fi
940fi
941
942##########################################
blueswir1414f0da2008-08-15 18:20:52 +0000943# AIO probe
aliguori3c529d92008-12-12 16:41:40 +0000944AIOLIBS=""
945
blueswir1414f0da2008-08-15 18:20:52 +0000946if test "$aio" = "yes" ; then
947 aio=no
948 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +0000949#include <pthread.h>
950int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +0000951EOF
952 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
953 aio=yes
aliguori3c529d92008-12-12 16:41:40 +0000954 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +0000955 fi
956fi
957
aliguoribf9298b2008-12-05 20:05:26 +0000958##########################################
959# iovec probe
960cat > $TMPC <<EOF
961#include <sys/uio.h>
962int main(void) { struct iovec iov; return 0; }
963EOF
964iovec=no
965if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
966 iovec=yes
967fi
968
pbrookcc8ae6d2006-04-23 17:57:59 +0000969# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +0000970if [ -x "`which texi2html 2>/dev/null`" ] && \
971 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +0000972 build_docs="yes"
973fi
974
aliguorida93a1f2008-12-12 20:02:52 +0000975##########################################
976# Do we need librt
977cat > $TMPC <<EOF
978#include <signal.h>
979#include <time.h>
980int main(void) { clockid_t id; return clock_gettime(id, NULL); }
981EOF
982
983rt=no
984if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
985 :
986elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt 2> /dev/null ; then
987 rt=yes
988fi
989
990if test "$rt" = "yes" ; then
991 # Hack, we should have a general purpose LIBS for this sort of thing
992 AIOLIBS="$AIOLIBS -lrt"
993fi
994
bellard11d9f692004-04-02 20:55:59 +0000995if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +0000996 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +0000997 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +0000998 fi
999 mansuffix=""
1000 datasuffix=""
1001 docsuffix=""
1002 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001003else
pbrook308c3592007-02-27 00:52:01 +00001004 if test -z "$prefix" ; then
1005 prefix="/usr/local"
1006 fi
1007 mansuffix="/share/man"
1008 datasuffix="/share/qemu"
1009 docsuffix="/share/doc/qemu"
1010 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001011fi
bellard5a671352003-10-01 00:13:48 +00001012
bellard43ce4df2003-06-09 19:53:12 +00001013echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001014echo "BIOS directory $prefix$datasuffix"
1015echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001016if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001017echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001018echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001019fi
bellard5a671352003-10-01 00:13:48 +00001020echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001021echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001022echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001023echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001024echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001025echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001026echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001027echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001028echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001029echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001030echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001031echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001032echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001033echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001034if test "$darwin" = "yes" ; then
1035 echo "Cocoa support $cocoa"
1036fi
bellard97a847b2003-08-10 21:36:04 +00001037echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001038if test "$sdl" != "no" ; then
1039 echo "SDL static link $sdl_static"
1040fi
balrog4d3b6f62008-02-10 16:33:14 +00001041echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001042echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001043echo "Audio drivers $audio_drv_list"
1044echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001045echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001046echo "VNC TLS support $vnc_tls"
1047if test "$vnc_tls" = "yes" ; then
1048 echo " TLS CFLAGS $vnc_tls_cflags"
1049 echo " TLS LIBS $vnc_tls_libs"
1050fi
blueswir131422552007-04-16 18:27:06 +00001051if test -n "$sparc_cpu"; then
1052 echo "Target Sparc Arch $sparc_cpu"
1053fi
bellard07f4ddb2005-04-23 17:44:28 +00001054echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001055echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001056echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001057[ ! -z "$uname_release" ] && \
1058echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001059echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001060echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001061echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001062echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001063echo "KVM support $kvm"
bellard67b915a2004-03-31 23:37:16 +00001064
bellard97a847b2003-08-10 21:36:04 +00001065if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001066echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001067fi
malcd4742de2008-11-29 22:04:31 +00001068if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001069 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001070 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001071fi
bellard24b55b92005-03-01 22:30:41 +00001072#if test "$sdl_static" = "no"; then
1073# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1074#fi
bellard97a847b2003-08-10 21:36:04 +00001075config_mak="config-host.mak"
1076config_h="config-host.h"
1077
bellard7c1f25b2004-04-22 00:02:08 +00001078#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001079
ths15d9ca02007-07-31 23:07:32 +00001080test -f $config_h && mv $config_h ${config_h}~
1081
bellard97a847b2003-08-10 21:36:04 +00001082echo "# Automatically generated by configure - do not modify" > $config_mak
malcfd69fe22008-12-07 22:50:16 +00001083echo -n "# Configured with:" >> $config_mak
1084printf " '%s'" "$0" "$@" >> $config_mak
1085echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001086echo "/* Automatically generated by configure - do not modify */" > $config_h
1087
1088echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001089echo "bindir=\${prefix}$binsuffix" >> $config_mak
1090echo "mandir=\${prefix}$mansuffix" >> $config_mak
1091echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001092echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001093echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001094echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001095echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001096echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001097echo "HOST_CC=$host_cc" >> $config_mak
1098echo "AR=$ar" >> $config_mak
1099echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001100# XXX: only use CFLAGS and LDFLAGS ?
1101# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1102# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001103echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001104echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1105echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1106echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001107echo "CFLAGS=$CFLAGS" >> $config_mak
1108echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001109echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001110echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001111case "$cpu" in
1112 i386)
1113 echo "ARCH=i386" >> $config_mak
1114 echo "#define HOST_I386 1" >> $config_h
1115 ;;
1116 x86_64)
1117 echo "ARCH=x86_64" >> $config_mak
1118 echo "#define HOST_X86_64 1" >> $config_h
1119 ;;
1120 alpha)
1121 echo "ARCH=alpha" >> $config_mak
1122 echo "#define HOST_ALPHA 1" >> $config_h
1123 ;;
1124 armv4b)
1125 echo "ARCH=arm" >> $config_mak
1126 echo "#define HOST_ARM 1" >> $config_h
1127 ;;
1128 armv4l)
1129 echo "ARCH=arm" >> $config_mak
1130 echo "#define HOST_ARM 1" >> $config_h
1131 ;;
1132 cris)
1133 echo "ARCH=cris" >> $config_mak
1134 echo "#define HOST_CRIS 1" >> $config_h
1135 ;;
1136 hppa)
1137 echo "ARCH=hppa" >> $config_mak
1138 echo "#define HOST_HPPA 1" >> $config_h
1139 ;;
1140 ia64)
1141 echo "ARCH=ia64" >> $config_mak
1142 echo "#define HOST_IA64 1" >> $config_h
1143 ;;
1144 m68k)
1145 echo "ARCH=m68k" >> $config_mak
1146 echo "#define HOST_M68K 1" >> $config_h
1147 ;;
1148 mips)
1149 echo "ARCH=mips" >> $config_mak
1150 echo "#define HOST_MIPS 1" >> $config_h
1151 ;;
1152 mips64)
1153 echo "ARCH=mips64" >> $config_mak
1154 echo "#define HOST_MIPS64 1" >> $config_h
1155 ;;
1156 powerpc)
malc810260a2008-07-23 19:17:46 +00001157 if test "$hostlongbits" = "32"; then
1158 echo "ARCH=ppc" >> $config_mak
1159 echo "#define HOST_PPC 1" >> $config_h
1160 else
1161 echo "ARCH=ppc64" >> $config_mak
1162 echo "#define HOST_PPC64 1" >> $config_h
1163 fi
aurel322408a522008-04-20 20:19:44 +00001164 ;;
1165 s390)
1166 echo "ARCH=s390" >> $config_mak
1167 echo "#define HOST_S390 1" >> $config_h
1168 ;;
1169 sparc)
1170 echo "ARCH=sparc" >> $config_mak
1171 echo "#define HOST_SPARC 1" >> $config_h
1172 ;;
1173 sparc64)
1174 echo "ARCH=sparc64" >> $config_mak
1175 echo "#define HOST_SPARC64 1" >> $config_h
1176 ;;
1177 *)
1178 echo "Unsupported CPU = $cpu"
1179 exit 1
1180 ;;
1181esac
aliguori03b4fe72008-10-07 19:16:17 +00001182if test "$sparse" = "yes" ; then
1183 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1184 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1185 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1186fi
bellard7d132992003-03-06 23:23:54 +00001187if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001188 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1189 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1190fi
bellardb6853692005-06-05 17:10:39 +00001191echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001192if test "$mingw32" = "yes" ; then
1193 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001194 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001195else
1196 cat > $TMPC << EOF
1197#include <byteswap.h>
1198int main(void) { return bswap_32(0); }
1199EOF
aurel32178baee2008-12-08 18:11:57 +00001200 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001201 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1202 fi
blueswir113606772008-12-05 17:54:09 +00001203 cat > $TMPC << EOF
1204#include <sys/endian.h>
1205#include <sys/types.h>
1206#include <machine/bswap.h>
1207int main(void) { return bswap32(0); }
1208EOF
aurel32178baee2008-12-08 18:11:57 +00001209 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001210 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1211 fi
bellard67b915a2004-03-31 23:37:16 +00001212fi
blueswir1128ab2f2008-08-15 18:33:42 +00001213
1214if [ "$openbsd" = "yes" ] ; then
1215 echo "#define ENOTSUP 4096" >> $config_h
1216fi
1217
bellard83fb7ad2004-07-05 21:25:26 +00001218if test "$darwin" = "yes" ; then
1219 echo "CONFIG_DARWIN=yes" >> $config_mak
1220 echo "#define CONFIG_DARWIN 1" >> $config_h
1221fi
malcb29fe3e2008-11-18 01:42:22 +00001222
1223if test "$aix" = "yes" ; then
1224 echo "CONFIG_AIX=yes" >> $config_mak
1225 echo "#define CONFIG_AIX 1" >> $config_h
1226fi
1227
bellardec530c82006-04-25 22:36:06 +00001228if test "$solaris" = "yes" ; then
1229 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001230 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001231 if test "$needs_libsunmath" = "yes" ; then
1232 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1233 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1234 fi
bellardec530c82006-04-25 22:36:06 +00001235fi
blueswir131422552007-04-16 18:27:06 +00001236if test -n "$sparc_cpu"; then
1237 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1238 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1239fi
bellard67b915a2004-03-31 23:37:16 +00001240if test "$gdbstub" = "yes" ; then
1241 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1242 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1243fi
bellard97a847b2003-08-10 21:36:04 +00001244if test "$gprof" = "yes" ; then
1245 echo "TARGET_GPROF=yes" >> $config_mak
1246 echo "#define HAVE_GPROF 1" >> $config_h
1247fi
1248if test "$static" = "yes" ; then
1249 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001250 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001251fi
bellard05c2a3e2006-02-08 22:39:17 +00001252if test $profiler = "yes" ; then
1253 echo "#define CONFIG_PROFILER 1" >> $config_h
1254fi
bellardc20709a2004-04-21 23:27:19 +00001255if test "$slirp" = "yes" ; then
1256 echo "CONFIG_SLIRP=yes" >> $config_mak
1257 echo "#define CONFIG_SLIRP 1" >> $config_h
1258fi
ths8a16d272008-07-19 09:56:24 +00001259if test "$vde" = "yes" ; then
1260 echo "CONFIG_VDE=yes" >> $config_mak
1261 echo "#define CONFIG_VDE 1" >> $config_h
1262 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1263fi
malc0c58ac12008-06-25 21:04:05 +00001264for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001265 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001266 echo "$def=yes" >> $config_mak
1267 echo "#define $def 1" >> $config_h
1268done
1269echo "#define AUDIO_DRIVERS \\" >> $config_h
1270for drv in $audio_drv_list; do
1271 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001272 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001273 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001274 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001275 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1276 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001277 elif test "$drv" = "oss"; then
1278 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001279 fi
1280done
1281echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001282if test "$mixemu" = "yes" ; then
1283 echo "CONFIG_MIXEMU=yes" >> $config_mak
1284 echo "#define CONFIG_MIXEMU 1" >> $config_h
1285fi
ths8d5d2d42007-08-25 01:37:51 +00001286if test "$vnc_tls" = "yes" ; then
1287 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1288 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1289 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1290 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1291fi
pbrookb1a550a2006-04-16 13:28:56 +00001292qemu_version=`head $source_path/VERSION`
1293echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001294echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001295
1296echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001297if [ "$source_path_used" = "yes" ]; then
1298 echo "VPATH=$source_path" >> $config_mak
1299fi
bellard97a847b2003-08-10 21:36:04 +00001300echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001301if [ "$build_docs" = "yes" ] ; then
1302 echo "BUILD_DOCS=yes" >> $config_mak
1303fi
bellard49ecc3f2007-11-07 19:25:15 +00001304if test "$static" = "yes"; then
1305 sdl1=$sdl_static
1306else
1307 sdl1=$sdl
1308fi
1309if test "$sdl1" = "yes" ; then
1310 echo "#define CONFIG_SDL 1" >> $config_h
1311 echo "CONFIG_SDL=yes" >> $config_mak
1312 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1313 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1314 else
1315 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1316 fi
1317 if [ "${aa}" = "yes" ] ; then
1318 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1319 else
1320 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1321 fi
1322fi
1323if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001324 echo "#define CONFIG_COCOA 1" >> $config_h
1325 echo "CONFIG_COCOA=yes" >> $config_mak
1326fi
1327if test "$curses" = "yes" ; then
1328 echo "#define CONFIG_CURSES 1" >> $config_h
1329 echo "CONFIG_CURSES=yes" >> $config_mak
1330 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001331fi
aurel322e4d9fb2008-04-08 06:01:02 +00001332if test "$brlapi" = "yes" ; then
1333 echo "CONFIG_BRLAPI=yes" >> $config_mak
1334 echo "#define CONFIG_BRLAPI 1" >> $config_h
1335 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1336fi
balrogfb599c92008-09-28 23:49:55 +00001337if test "$bluez" = "yes" ; then
1338 echo "CONFIG_BLUEZ=yes" >> $config_mak
1339 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1340 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1341 echo "#define CONFIG_BLUEZ 1" >> $config_h
1342fi
blueswir1414f0da2008-08-15 18:20:52 +00001343if test "$aio" = "yes" ; then
1344 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001345 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001346fi
ths77755342008-11-27 15:45:16 +00001347if test "$blobs" = "yes" ; then
1348 echo "INSTALL_BLOBS=yes" >> $config_mak
1349fi
aliguoribf9298b2008-12-05 20:05:26 +00001350if test "$iovec" = "yes" ; then
1351 echo "#define HAVE_IOVEC 1" >> $config_h
1352fi
bellard97a847b2003-08-10 21:36:04 +00001353
bellard83fb7ad2004-07-05 21:25:26 +00001354# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001355if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001356 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001357 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001358 echo "#define _BSD 1" >> $config_h
1359fi
1360
pbrookc5937222006-05-14 11:30:38 +00001361echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1362
blueswir168063642008-11-22 21:03:55 +00001363# USB host support
1364case "$usb" in
1365linux)
1366 echo "HOST_USB=linux" >> $config_mak
1367;;
1368bsd)
1369 echo "HOST_USB=bsd" >> $config_mak
1370;;
1371*)
1372 echo "HOST_USB=stub" >> $config_mak
1373;;
1374esac
1375
pbrookc39e3332007-09-22 16:49:14 +00001376tools=
1377if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1378 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001379 if [ "$linux" = "yes" ] ; then
1380 tools="qemu-nbd\$(EXESUF) $tools"
1381 fi
pbrookc39e3332007-09-22 16:49:14 +00001382fi
1383echo "TOOLS=$tools" >> $config_mak
1384
ths15d9ca02007-07-31 23:07:32 +00001385test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1386
bellard1d14ffa2005-10-30 18:58:22 +00001387for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001388target_dir="$target"
1389config_mak=$target_dir/config.mak
1390config_h=$target_dir/config.h
1391target_cpu=`echo $target | cut -d '-' -f 1`
1392target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001393[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001394[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1395[ "$target_cpu" = "mips" ] && target_bigendian=yes
1396[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1397[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001398[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001399[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001400[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001401[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001402[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001403[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1404[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1405[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001406target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001407target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001408target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001409target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001410target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001411case "$target" in
1412 ${target_cpu}-softmmu)
1413 target_softmmu="yes"
1414 ;;
1415 ${target_cpu}-linux-user)
1416 target_user_only="yes"
1417 target_linux_user="yes"
1418 ;;
1419 ${target_cpu}-darwin-user)
1420 target_user_only="yes"
1421 target_darwin_user="yes"
1422 ;;
blueswir184778502008-10-26 20:33:16 +00001423 ${target_cpu}-bsd-user)
1424 target_user_only="yes"
1425 target_bsd_user="yes"
1426 ;;
pbrook9e407a82007-05-26 16:38:53 +00001427 *)
1428 echo "ERROR: Target '$target' not recognised"
1429 exit 1
1430 ;;
1431esac
ths831b7822007-01-18 20:06:33 +00001432
bellard97ccc682005-07-02 13:32:17 +00001433if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001434 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001435 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001436 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001437 echo "Note that this will disable all output from the virtual graphics card"
1438 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001439 exit 1;
1440fi
1441
bellard7c1f25b2004-04-22 00:02:08 +00001442#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001443
ths15d9ca02007-07-31 23:07:32 +00001444test -f $config_h && mv $config_h ${config_h}~
1445
bellard97a847b2003-08-10 21:36:04 +00001446mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001447mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001448mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001449if 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 +00001450 mkdir -p $target_dir/nwfpe
1451fi
1452
bellardec530c82006-04-25 22:36:06 +00001453#
1454# don't use ln -sf as not all "ln -sf" over write the file/link
1455#
1456rm -f $target_dir/Makefile
1457ln -s $source_path/Makefile.target $target_dir/Makefile
1458
bellard97a847b2003-08-10 21:36:04 +00001459
1460echo "# Automatically generated by configure - do not modify" > $config_mak
1461echo "/* Automatically generated by configure - do not modify */" > $config_h
1462
1463
1464echo "include ../config-host.mak" >> $config_mak
1465echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001466
pbrooke5fe0c52006-06-11 13:32:59 +00001467bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001468elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001469target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001470interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1471echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001472gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001473
aliguori5985ece2008-11-05 19:59:25 +00001474# Make sure the target and host cpus are compatible
1475if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1476 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1477 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001478 kvm="no"
1479fi
1480# Disable KVM for linux-user
1481if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1482 kvm="no"
1483fi
1484
aurel322408a522008-04-20 20:19:44 +00001485case "$target_cpu" in
1486 i386)
1487 echo "TARGET_ARCH=i386" >> $config_mak
1488 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1489 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001490 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001491 then
1492 echo "#define USE_KQEMU 1" >> $config_h
1493 fi
aliguori7ba1e612008-11-05 16:04:33 +00001494 if test "$kvm" = "yes" ; then
1495 echo "CONFIG_KVM=yes" >> $config_mak
1496 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001497 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001498 fi
aurel322408a522008-04-20 20:19:44 +00001499 ;;
1500 x86_64)
1501 echo "TARGET_ARCH=x86_64" >> $config_mak
1502 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1503 echo "#define TARGET_I386 1" >> $config_h
1504 echo "#define TARGET_X86_64 1" >> $config_h
1505 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1506 then
1507 echo "#define USE_KQEMU 1" >> $config_h
1508 fi
aliguori7ba1e612008-11-05 16:04:33 +00001509 if test "$kvm" = "yes" ; then
1510 echo "CONFIG_KVM=yes" >> $config_mak
1511 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1512 echo "#define CONFIG_KVM 1" >> $config_h
1513 fi
aurel322408a522008-04-20 20:19:44 +00001514 ;;
1515 alpha)
1516 echo "TARGET_ARCH=alpha" >> $config_mak
1517 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1518 echo "#define TARGET_ALPHA 1" >> $config_h
1519 ;;
1520 arm|armeb)
1521 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001522 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1523 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001524 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001525 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001526 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001527 ;;
1528 cris)
1529 echo "TARGET_ARCH=cris" >> $config_mak
1530 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1531 echo "#define TARGET_CRIS 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001532 ;;
1533 m68k)
1534 echo "TARGET_ARCH=m68k" >> $config_mak
1535 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1536 echo "#define TARGET_M68K 1" >> $config_h
1537 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001538 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001539 ;;
1540 mips|mipsel)
1541 echo "TARGET_ARCH=mips" >> $config_mak
1542 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1543 echo "#define TARGET_MIPS 1" >> $config_h
1544 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1545 ;;
1546 mipsn32|mipsn32el)
1547 echo "TARGET_ARCH=mipsn32" >> $config_mak
1548 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1549 echo "#define TARGET_MIPS 1" >> $config_h
1550 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1551 ;;
1552 mips64|mips64el)
1553 echo "TARGET_ARCH=mips64" >> $config_mak
1554 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1555 echo "#define TARGET_MIPS 1" >> $config_h
1556 echo "#define TARGET_MIPS64 1" >> $config_h
1557 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1558 ;;
1559 ppc)
1560 echo "TARGET_ARCH=ppc" >> $config_mak
1561 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1562 echo "#define TARGET_PPC 1" >> $config_h
1563 ;;
1564 ppcemb)
1565 echo "TARGET_ARCH=ppcemb" >> $config_mak
1566 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1567 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1568 echo "#define TARGET_PPC 1" >> $config_h
1569 echo "#define TARGET_PPCEMB 1" >> $config_h
1570 ;;
1571 ppc64)
1572 echo "TARGET_ARCH=ppc64" >> $config_mak
1573 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1574 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1575 echo "#define TARGET_PPC 1" >> $config_h
1576 echo "#define TARGET_PPC64 1" >> $config_h
1577 ;;
1578 ppc64abi32)
1579 echo "TARGET_ARCH=ppc64" >> $config_mak
1580 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1581 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1582 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1583 echo "#define TARGET_PPC 1" >> $config_h
1584 echo "#define TARGET_PPC64 1" >> $config_h
1585 echo "#define TARGET_ABI32 1" >> $config_h
1586 ;;
1587 sh4|sh4eb)
1588 echo "TARGET_ARCH=sh4" >> $config_mak
1589 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1590 echo "#define TARGET_SH4 1" >> $config_h
1591 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001592 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001593 ;;
1594 sparc)
1595 echo "TARGET_ARCH=sparc" >> $config_mak
1596 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1597 echo "#define TARGET_SPARC 1" >> $config_h
1598 ;;
1599 sparc64)
1600 echo "TARGET_ARCH=sparc64" >> $config_mak
1601 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1602 echo "#define TARGET_SPARC 1" >> $config_h
1603 echo "#define TARGET_SPARC64 1" >> $config_h
1604 elfload32="yes"
1605 ;;
1606 sparc32plus)
1607 echo "TARGET_ARCH=sparc64" >> $config_mak
1608 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1609 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1610 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1611 echo "#define TARGET_SPARC 1" >> $config_h
1612 echo "#define TARGET_SPARC64 1" >> $config_h
1613 echo "#define TARGET_ABI32 1" >> $config_h
1614 ;;
1615 *)
1616 echo "Unsupported target CPU"
1617 exit 1
1618 ;;
1619esac
bellardde83cd02003-06-15 20:25:43 +00001620if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001621 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1622 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1623fi
1624if test "$target_softmmu" = "yes" ; then
1625 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1626 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001627fi
bellard997344f2003-10-27 21:10:39 +00001628if test "$target_user_only" = "yes" ; then
1629 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1630 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1631fi
ths831b7822007-01-18 20:06:33 +00001632if test "$target_linux_user" = "yes" ; then
1633 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1634 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1635fi
1636if test "$target_darwin_user" = "yes" ; then
1637 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1638 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1639fi
pbrook56aebc82008-10-11 17:55:29 +00001640list=""
1641if test ! -z "$gdb_xml_files" ; then
1642 for x in $gdb_xml_files; do
1643 list="$list $source_path/gdb-xml/$x"
1644 done
1645fi
1646echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001647
aurel320938cda2008-04-11 21:36:06 +00001648if test "$target_cpu" = "arm" \
1649 -o "$target_cpu" = "armeb" \
1650 -o "$target_cpu" = "m68k" \
1651 -o "$target_cpu" = "mips" \
1652 -o "$target_cpu" = "mipsel" \
1653 -o "$target_cpu" = "mipsn32" \
1654 -o "$target_cpu" = "mipsn32el" \
1655 -o "$target_cpu" = "mips64" \
1656 -o "$target_cpu" = "mips64el" \
1657 -o "$target_cpu" = "sparc" \
1658 -o "$target_cpu" = "sparc64" \
1659 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001660 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1661 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1662fi
pbrooke5fe0c52006-06-11 13:32:59 +00001663if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1664 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1665 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1666fi
pbrookbd0c5662008-05-29 14:34:11 +00001667if test "$target_user_only" = "yes" \
1668 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1669 echo "#define USE_NPTL 1" >> $config_h
1670fi
blueswir1cb33da52007-10-09 16:34:29 +00001671# 32 bit ELF loader in addition to native 64 bit loader?
1672if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1673 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1674 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1675fi
blueswir184778502008-10-26 20:33:16 +00001676if test "$target_bsd_user" = "yes" ; then
1677 echo "CONFIG_BSD_USER=yes" >> $config_mak
1678 echo "#define CONFIG_BSD_USER 1" >> $config_h
1679fi
bellard5b0753e2005-03-01 21:37:28 +00001680
ths15d9ca02007-07-31 23:07:32 +00001681test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1682
bellard97a847b2003-08-10 21:36:04 +00001683done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001684
1685# build tree in object directory if source path is different from current one
1686if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001687 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001688 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001689 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001690 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001691 for dir in $DIRS ; do
1692 mkdir -p $dir
1693 done
bellardec530c82006-04-25 22:36:06 +00001694 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001695 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001696 rm -f $f
1697 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001698 done
1699fi