blob: c4aa8810a37487d9307d334f9ffd62fceef61fbe [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"
aurel32f652e6a2008-12-16 10:43:48 +0000122fdt="yes"
bellard7d132992003-03-06 23:23:54 +0000123
124# OS specific
125targetos=`uname -s`
126case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000127CYGWIN*)
128mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000129OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000130if [ "$cpu" = "i386" ] ; then
131 kqemu="yes"
132fi
malcc2de5c92008-06-28 19:13:06 +0000133audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000134;;
bellard67b915a2004-03-31 23:37:16 +0000135MINGW32*)
136mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000137if [ "$cpu" = "i386" ] ; then
138 kqemu="yes"
139fi
malcc2de5c92008-06-28 19:13:06 +0000140audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000141;;
ths5c40d2b2007-06-23 16:03:36 +0000142GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000143audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000144audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000145if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
146 kqemu="yes"
147fi
148;;
bellard7d3505c2004-05-12 19:32:15 +0000149FreeBSD)
150bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000151audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000152audio_possible_drivers="oss sdl esd pa"
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"
bellard7d3505c2004-05-12 19:32:15 +0000162;;
163OpenBSD)
164bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000165openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000166audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000167audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000168oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000169;;
bellard83fb7ad2004-07-05 21:25:26 +0000170Darwin)
171bsd="yes"
172darwin="yes"
ths831b7822007-01-18 20:06:33 +0000173darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000174cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000175audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000176audio_possible_drivers="coreaudio sdl fmod"
ths6f30fa82007-01-05 01:00:47 +0000177OS_CFLAGS="-mdynamic-no-pic"
thsc2c59c32008-01-08 00:00:20 +0000178OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000179;;
bellardec530c82006-04-25 22:36:06 +0000180SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000181 solaris="yes"
182 make="gmake"
183 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000184 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000185 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000186 # have to select again, because `uname -m` returns i86pc
187 # even on an x86_64 box.
188 solariscpu=`isainfo -k`
189 if test "${solariscpu}" = "amd64" ; then
190 cpu="x86_64"
191 fi
thsc2b84fa2007-02-10 23:21:21 +0000192 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000193 if test "$solarisrev" -le 9 ; then
194 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
195 needs_libsunmath="yes"
196 else
197 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
198 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
199 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
200 echo "Studio 11 can be downloaded from www.sun.com."
201 exit 1
202 fi
203 fi
204 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000205 kqemu="yes"
206 fi
ths86b2bd92007-02-11 00:31:33 +0000207 fi
ths6b4d2ba2007-05-13 18:02:43 +0000208 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000209 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000210 fi
malcc2de5c92008-06-28 19:13:06 +0000211 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000212;;
malcb29fe3e2008-11-18 01:42:22 +0000213AIX)
214aix="yes"
215make="gmake"
216;;
bellard1d14ffa2005-10-30 18:58:22 +0000217*)
malc0c58ac12008-06-25 21:04:05 +0000218audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000219audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000220linux="yes"
ths831b7822007-01-18 20:06:33 +0000221linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000222usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000223if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000224 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000225 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000226fi
bellardfb065182004-11-09 23:09:44 +0000227;;
bellard7d132992003-03-06 23:23:54 +0000228esac
229
bellard7d3505c2004-05-12 19:32:15 +0000230if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000231 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000232 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000233 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000234 fi
blueswir184778502008-10-26 20:33:16 +0000235 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000236fi
237
bellard7d132992003-03-06 23:23:54 +0000238# find source path
pbrookad064842006-04-16 12:41:07 +0000239source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000240source_path_used="no"
241workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000242if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000243 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000244else
245 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000246fi
pbrook724db112008-02-03 19:20:13 +0000247[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000248
bellard85aa5182007-11-11 20:17:03 +0000249werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000250# generate compile errors on warnings for development builds
251#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
252#werror="yes";
253#fi
bellard85aa5182007-11-11 20:17:03 +0000254
bellard7d132992003-03-06 23:23:54 +0000255for opt do
pbrooka46e4032006-04-29 23:05:22 +0000256 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000257 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000258 --help|-h) show_help=yes
259 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000260 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000261 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000262 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000263 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000264 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000265 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000266 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000267 --cross-prefix=*) cross_prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000268 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000269 --cc=*) cc="$optarg"
bellard7d132992003-03-06 23:23:54 +0000270 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000271 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000272 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000273 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000274 ;;
pbrook6a882642006-04-17 13:57:12 +0000275 --install=*) install="$optarg"
276 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000277 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000278 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000279 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000280 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000281 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000282 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000283 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000284 ;;
bellard7d132992003-03-06 23:23:54 +0000285 --enable-gprof) gprof="yes"
286 ;;
bellard43ce4df2003-06-09 19:53:12 +0000287 --static) static="yes"
288 ;;
bellard97a847b2003-08-10 21:36:04 +0000289 --disable-sdl) sdl="no"
290 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000291 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000292 ;;
malcc2de5c92008-06-28 19:13:06 +0000293 --fmod-inc=*) fmod_inc="$optarg"
294 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000295 --oss-lib=*) oss_lib="$optarg"
296 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000297 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000298 ;;
299 --audio-drv-list=*) audio_drv_list="$optarg"
300 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000301 --enable-sparse) sparse="yes"
302 ;;
303 --disable-sparse) sparse="no"
304 ;;
ths8d5d2d42007-08-25 01:37:51 +0000305 --disable-vnc-tls) vnc_tls="no"
306 ;;
bellard443f1372004-06-04 11:13:20 +0000307 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000308 ;;
aliguorie0e6c8c02008-07-23 18:14:33 +0000309 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000310 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000311 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000312 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000313 --disable-brlapi) brlapi="no"
314 ;;
balrogfb599c92008-09-28 23:49:55 +0000315 --disable-bluez) bluez="no"
316 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000317 --disable-kvm) kvm="no"
318 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000319 --enable-profiler) profiler="yes"
320 ;;
malcc2de5c92008-06-28 19:13:06 +0000321 --enable-cocoa)
322 cocoa="yes" ;
323 sdl="no" ;
324 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000325 ;;
bellard97ccc682005-07-02 13:32:17 +0000326 --disable-gfx-check) check_gfx="no"
327 ;;
pbrookcad25d62006-03-19 16:31:11 +0000328 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000329 ;;
pbrookcad25d62006-03-19 16:31:11 +0000330 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000331 ;;
ths831b7822007-01-18 20:06:33 +0000332 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000333 ;;
ths831b7822007-01-18 20:06:33 +0000334 --enable-linux-user) linux_user="yes"
335 ;;
336 --disable-darwin-user) darwin_user="no"
337 ;;
338 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000339 ;;
blueswir184778502008-10-26 20:33:16 +0000340 --disable-bsd-user) bsd_user="no"
341 ;;
342 --enable-bsd-user) bsd_user="yes"
343 ;;
pbrookc5937222006-05-14 11:30:38 +0000344 --enable-uname-release=*) uname_release="$optarg"
345 ;;
blueswir131422552007-04-16 18:27:06 +0000346 --sparc_cpu=*)
347 sparc_cpu="$optarg"
348 case $sparc_cpu in
349 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
350 target_cpu="sparc"; cpu="sparc" ;;
351 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
352 target_cpu="sparc"; cpu="sparc" ;;
353 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
354 target_cpu="sparc64"; cpu="sparc64" ;;
355 *) echo "undefined SPARC architecture. Exiting";exit 1;;
356 esac
357 ;;
bellard85aa5182007-11-11 20:17:03 +0000358 --enable-werror) werror="yes"
359 ;;
360 --disable-werror) werror="no"
361 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000362 --disable-curses) curses="no"
363 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000364 --disable-nptl) nptl="no"
365 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000366 --enable-mixemu) mixemu="yes"
367 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000368 --disable-aio) aio="no"
369 ;;
ths77755342008-11-27 15:45:16 +0000370 --disable-blobs) blobs="no"
371 ;;
aliguorieac30262008-11-05 16:28:56 +0000372 --kerneldir=*) kerneldir="$optarg"
373 ;;
balrog7f1559c2007-11-17 10:24:32 +0000374 *) echo "ERROR: unknown option $opt"; show_help="yes"
375 ;;
bellard7d132992003-03-06 23:23:54 +0000376 esac
377done
378
ths6f30fa82007-01-05 01:00:47 +0000379# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000380CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000381CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000382LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000383if test "$werror" = "yes" ; then
384CFLAGS="$CFLAGS -Werror"
385fi
ths6f30fa82007-01-05 01:00:47 +0000386
blueswir1d2c7c9b2008-11-01 14:50:20 +0000387if test "$solaris" = "no" ; then
388 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
389 LDFLAGS="$LDFLAGS -Wl,--warn-common"
390 fi
blueswir149237ac2008-09-17 19:05:19 +0000391fi
392
blueswir131422552007-04-16 18:27:06 +0000393#
394# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
395# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
396#
bellard40293e52008-01-31 11:32:10 +0000397case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000398 sparc) if test -z "$sparc_cpu" ; then
399 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
400 ARCH_LDFLAGS="-m32"
401 else
402 ARCH_CFLAGS="${SP_CFLAGS}"
403 ARCH_LDFLAGS="${SP_LDFLAGS}"
404 fi
405 ;;
406 sparc64) if test -z "$sparc_cpu" ; then
407 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
408 ARCH_LDFLAGS="-m64"
409 else
410 ARCH_CFLAGS="${SP_CFLAGS}"
411 ARCH_LDFLAGS="${SP_LDFLAGS}"
412 fi
413 ;;
ths76d83bd2007-11-18 21:22:10 +0000414 s390)
415 ARCH_CFLAGS="-march=z900"
416 ;;
bellard40293e52008-01-31 11:32:10 +0000417 i386)
418 ARCH_CFLAGS="-m32"
419 ARCH_LDFLAGS="-m32"
420 ;;
421 x86_64)
422 ARCH_CFLAGS="-m64"
423 ARCH_LDFLAGS="-m64"
424 ;;
blueswir131422552007-04-16 18:27:06 +0000425esac
426
pbrookaf5db582006-04-08 14:26:41 +0000427if test x"$show_help" = x"yes" ; then
428cat << EOF
429
430Usage: configure [options]
431Options: [defaults in brackets after descriptions]
432
433EOF
434echo "Standard options:"
435echo " --help print this message"
436echo " --prefix=PREFIX install in PREFIX [$prefix]"
437echo " --interp-prefix=PREFIX where to find shared libraries, etc."
438echo " use %M for cpu name [$interp_prefix]"
439echo " --target-list=LIST set target list [$target_list]"
440echo ""
441echo "kqemu kernel acceleration support:"
442echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000443echo ""
444echo "Advanced options (experts only):"
445echo " --source-path=PATH path of source code [$source_path]"
446echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
447echo " --cc=CC use C compiler CC [$cc]"
448echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
449echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000450echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000451echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000452echo " --enable-sparse enable sparse checker"
453echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000454echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000455echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000456echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000457echo " --audio-drv-list=LIST set audio drivers list:"
458echo " Available drivers: $audio_possible_drivers"
459echo " --audio-card-list=LIST set list of additional emulated audio cards"
460echo " Available cards: ac97 adlib cs4231a gus"
malc8ff9cbf2008-06-23 18:33:30 +0000461echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000462echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000463echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000464echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000465echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000466echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000467echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000468echo " --enable-system enable all system emulation targets"
469echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000470echo " --enable-linux-user enable all linux usermode emulation targets"
471echo " --disable-linux-user disable all linux usermode emulation targets"
472echo " --enable-darwin-user enable all darwin usermode emulation targets"
473echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000474echo " --enable-bsd-user enable all BSD usermode emulation targets"
475echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000476echo " --fmod-lib path to FMOD library"
477echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000478echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000479echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000480echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c02008-07-23 18:14:33 +0000481echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000482echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000483echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000484echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000485echo ""
ths5bf08932006-12-23 00:33:26 +0000486echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000487exit 1
488fi
489
bellard7d132992003-03-06 23:23:54 +0000490cc="${cross_prefix}${cc}"
491ar="${cross_prefix}${ar}"
492strip="${cross_prefix}${strip}"
493
pbrook064aae12006-05-08 00:51:44 +0000494# check that the C compiler works.
495cat > $TMPC <<EOF
496int main(void) {}
497EOF
498
aurel32178baee2008-12-08 18:11:57 +0000499if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrook064aae12006-05-08 00:51:44 +0000500 : C compiler works ok
501else
502 echo "ERROR: \"$cc\" either does not exist or does not work"
503 exit 1
bellarda7350fa2006-04-23 14:35:23 +0000504fi
505
aliguoricd01b4a2008-08-21 19:25:45 +0000506# check compiler to see if we're on mingw32
507cat > $TMPC <<EOF
508#include <windows.h>
509#ifndef _WIN32
510#error not windows
511#endif
512int main(void) {}
513EOF
514
aurel32178baee2008-12-08 18:11:57 +0000515if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000516 mingw32="yes"
517fi
518
bellard67b915a2004-03-31 23:37:16 +0000519if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000520 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000521 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000522 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000523 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000524 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000525fi
526
aliguori03b4fe72008-10-07 19:16:17 +0000527if test ! -x "$(which cgcc 2>/dev/null)"; then
528 sparse="no"
529fi
530
bellardec530c82006-04-25 22:36:06 +0000531#
532# Solaris specific configure tool chain decisions
533#
534if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000535 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
536 if test -z "$solinst" ; then
537 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
538 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
539 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
540 exit 1
541 fi
542 if test "$solinst" = "/usr/sbin/install" ; then
543 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
544 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
545 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
546 exit 1
547 fi
bellardec530c82006-04-25 22:36:06 +0000548 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
549 if test -z "$sol_ar" ; then
550 echo "Error: No path includes ar"
551 if test -f /usr/ccs/bin/ar ; then
552 echo "Add /usr/ccs/bin to your path and rerun configure"
553 fi
554 exit 1
555 fi
ths5fafdf22007-09-16 21:08:06 +0000556fi
bellardec530c82006-04-25 22:36:06 +0000557
558
bellard5327cf42005-01-10 23:18:50 +0000559if test -z "$target_list" ; then
560# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000561 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000562 target_list="\
563i386-softmmu \
564x86_64-softmmu \
565arm-softmmu \
566cris-softmmu \
567m68k-softmmu \
568mips-softmmu \
569mipsel-softmmu \
570mips64-softmmu \
571mips64el-softmmu \
572ppc-softmmu \
573ppcemb-softmmu \
574ppc64-softmmu \
575sh4-softmmu \
576sh4eb-softmmu \
577sparc-softmmu \
578"
pbrook0a8e90f2006-03-19 14:54:16 +0000579 fi
bellard5327cf42005-01-10 23:18:50 +0000580# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000581 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000582 target_list="${target_list}\
583i386-linux-user \
584x86_64-linux-user \
585alpha-linux-user \
586arm-linux-user \
587armeb-linux-user \
588cris-linux-user \
589m68k-linux-user \
590mips-linux-user \
591mipsel-linux-user \
592ppc-linux-user \
593ppc64-linux-user \
594ppc64abi32-linux-user \
595sh4-linux-user \
596sh4eb-linux-user \
597sparc-linux-user \
598sparc64-linux-user \
599sparc32plus-linux-user \
600"
ths831b7822007-01-18 20:06:33 +0000601 fi
602# the following are Darwin specific
603 if [ "$darwin_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000604 target_list="$target_list i386-darwin-user ppc-darwin-user"
bellard5327cf42005-01-10 23:18:50 +0000605 fi
blueswir184778502008-10-26 20:33:16 +0000606# the following are BSD specific
607 if [ "$bsd_user" = "yes" ] ; then
608 target_list="${target_list}\
609sparc64-bsd-user \
610"
611 fi
bellard6e20a452005-06-05 15:56:02 +0000612else
pbrookb1a550a2006-04-16 13:28:56 +0000613 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000614fi
pbrook0a8e90f2006-03-19 14:54:16 +0000615if test -z "$target_list" ; then
616 echo "No targets enabled"
617 exit 1
618fi
bellard5327cf42005-01-10 23:18:50 +0000619
bellard7d132992003-03-06 23:23:54 +0000620if test -z "$cross_prefix" ; then
621
622# ---
623# big/little endian test
624cat > $TMPC << EOF
625#include <inttypes.h>
626int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000627 volatile uint32_t i=0x01234567;
628 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000629}
630EOF
631
aurel32178baee2008-12-08 18:11:57 +0000632if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000633$TMPE && bigendian="yes"
634else
635echo big/little test failed
636fi
637
638else
639
640# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000641if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000642 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000643 -o "$cpu" = "m68k" \
644 -o "$cpu" = "mips" \
645 -o "$cpu" = "mips64" \
646 -o "$cpu" = "powerpc" \
647 -o "$cpu" = "s390" \
648 -o "$cpu" = "sparc" \
649 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000650 bigendian="yes"
651fi
652
653fi
654
bellardb6853692005-06-05 17:10:39 +0000655# host long bits test
656hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000657if test "$cpu" = "x86_64" \
658 -o "$cpu" = "alpha" \
659 -o "$cpu" = "ia64" \
660 -o "$cpu" = "sparc64"; then
bellardb6853692005-06-05 17:10:39 +0000661 hostlongbits="64"
662fi
663
malc810260a2008-07-23 19:17:46 +0000664# ppc specific hostlongbits selection
665if test "$cpu" = "powerpc" ; then
malc9d56d2d2008-09-30 19:44:32 +0000666 if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
667 grep -q __powerpc64__ $TMPI && hostlongbits=64
malc810260a2008-07-23 19:17:46 +0000668 else
669 echo hostlongbits test failed
malcba69a082008-07-24 17:51:36 +0000670 exit 1
malc810260a2008-07-23 19:17:46 +0000671 fi
672fi
673
bellarde8cd23d2003-06-25 16:08:13 +0000674# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000675cat > $TMPC <<EOF
676int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000677}
678EOF
679
pbrookbd0c5662008-05-29 14:34:11 +0000680# Check host NPTL support
681cat > $TMPC <<EOF
682#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000683#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000684void foo()
685{
686#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
687#error bork
688#endif
689}
690EOF
691
balrog8c7f7572008-12-15 03:15:36 +0000692if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000693 :
694else
695 nptl="no"
696fi
697
bellard11d9f692004-04-02 20:55:59 +0000698##########################################
balrogac629222008-10-11 09:56:04 +0000699# zlib check
700
701cat > $TMPC << EOF
702#include <zlib.h>
703int main(void) { zlibVersion(); return 0; }
704EOF
balrog8c7f7572008-12-15 03:15:36 +0000705if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000706 :
707else
708 echo
709 echo "Error: zlib check failed"
710 echo "Make sure to have the zlib libs and headers installed."
711 echo
712 exit 1
713fi
714
715##########################################
bellard11d9f692004-04-02 20:55:59 +0000716# SDL probe
717
718sdl_too_old=no
719
720if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000721 sdl_config="sdl-config"
722 sdl=no
723 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000724
725cat > $TMPC << EOF
726#include <SDL.h>
727#undef main /* We don't want SDL to override our main() */
728int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
729EOF
balrog8c7f7572008-12-15 03:15:36 +0000730 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
aliguoricd01b4a2008-08-21 19:25:45 +0000731 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
732 if test "$_sdlversion" -lt 121 ; then
733 sdl_too_old=yes
734 else
735 if test "$cocoa" = "no" ; then
736 sdl=yes
737 fi
738 fi
739
740 # static link with sdl ?
741 if test "$sdl" = "yes" ; then
742 aa="no"
743 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
744 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
745 if [ "$aa" = "yes" ] ; then
746 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000747 fi
bellard11d9f692004-04-02 20:55:59 +0000748
balrog8c7f7572008-12-15 03:15:36 +0000749 if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
aliguoricd01b4a2008-08-21 19:25:45 +0000750 sdl_static=yes
751 fi
752 fi # static link
753 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000754else
ths069b0bd2007-07-12 00:27:15 +0000755 # Make sure to disable cocoa if sdl was set
756 if test "$sdl" = "yes" ; then
757 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000758 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000759 fi
bellarda6e022a2004-04-02 21:55:47 +0000760fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000761
ths8f28f3f2007-01-05 21:25:54 +0000762##########################################
ths8d5d2d42007-08-25 01:37:51 +0000763# VNC TLS detection
764if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000765cat > $TMPC <<EOF
766#include <gnutls/gnutls.h>
767int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
768EOF
769 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
770 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
771 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000772 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000773 :
774 else
775 vnc_tls="no"
776 fi
ths8d5d2d42007-08-25 01:37:51 +0000777fi
778
779##########################################
ths8a16d272008-07-19 09:56:24 +0000780# vde libraries probe
781if test "$vde" = "yes" ; then
782 cat > $TMPC << EOF
783#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000784int main(void)
785{
786 struct vde_open_args a = {0, 0, 0};
787 vde_open("", "", &a);
788 return 0;
789}
ths8a16d272008-07-19 09:56:24 +0000790EOF
balrog8c7f7572008-12-15 03:15:36 +0000791 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000792 :
793 else
aliguorie0e6c8c02008-07-23 18:14:33 +0000794 vde="no"
ths8a16d272008-07-19 09:56:24 +0000795 fi
796fi
797
798##########################################
malcc2de5c92008-06-28 19:13:06 +0000799# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000800
malcc2de5c92008-06-28 19:13:06 +0000801audio_drv_probe()
802{
803 drv=$1
804 hdr=$2
805 lib=$3
806 exp=$4
807 cfl=$5
808 cat > $TMPC << EOF
809#include <$hdr>
810int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000811EOF
balrog8c7f7572008-12-15 03:15:36 +0000812 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000813 :
814 else
815 echo
816 echo "Error: $drv check failed"
817 echo "Make sure to have the $drv libs and headers installed."
818 echo
819 exit 1
820 fi
821}
822
malc2fa7d3b2008-07-29 12:58:44 +0000823audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000824for drv in $audio_drv_list; do
825 case $drv in
826 alsa)
827 audio_drv_probe $drv alsa/asoundlib.h -lasound \
828 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
829 ;;
830
831 fmod)
832 if test -z $fmod_lib || test -z $fmod_inc; then
833 echo
834 echo "Error: You must specify path to FMOD library and headers"
835 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
836 echo
837 exit 1
838 fi
839 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
840 ;;
841
842 esd)
843 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
844 ;;
malcb8e59f12008-07-02 21:03:08 +0000845
846 pa)
847 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
848 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
849 ;;
850
blueswir12f6a1ab2008-08-21 18:00:53 +0000851 oss|sdl|core|wav|dsound)
852 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
853 ;;
854
malce4c63a62008-07-19 16:15:16 +0000855 *)
malc1c9b2a52008-07-19 16:57:30 +0000856 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000857 echo
858 echo "Error: Unknown driver '$drv' selected"
859 echo "Possible drivers are: $audio_possible_drivers"
860 echo
861 exit 1
862 }
863 ;;
malcc2de5c92008-06-28 19:13:06 +0000864 esac
865done
ths8f28f3f2007-01-05 21:25:54 +0000866
balrog4d3b6f62008-02-10 16:33:14 +0000867##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000868# BrlAPI probe
869
870if test -z "$brlapi" ; then
871 brlapi=no
872cat > $TMPC << EOF
873#include <brlapi.h>
874int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
875EOF
aurel32178baee2008-12-08 18:11:57 +0000876 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000877 brlapi=yes
878 fi # brlapi compile test
879fi # -z $brlapi
880
881##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000882# curses probe
883
884if test "$curses" = "yes" ; then
885 curses=no
886 cat > $TMPC << EOF
887#include <curses.h>
888int main(void) { return curses_version(); }
889EOF
aurel32178baee2008-12-08 18:11:57 +0000890 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000891 curses=yes
892 fi
893fi # test "$curses"
894
blueswir1414f0da2008-08-15 18:20:52 +0000895##########################################
balrogfb599c92008-09-28 23:49:55 +0000896# bluez support probe
897if test "$bluez" = "yes" ; then
898 `pkg-config bluez` || bluez="no"
899fi
900if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000901 cat > $TMPC << EOF
902#include <bluetooth/bluetooth.h>
903int main(void) { return bt_error(0); }
904EOF
balrogfb599c92008-09-28 23:49:55 +0000905 bluez_cflags=`pkg-config --cflags bluez`
906 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000907 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000908 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +0000909 :
910 else
911 bluez="no"
912 fi
balrogfb599c92008-09-28 23:49:55 +0000913fi
914
915##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000916# kvm probe
917if test "$kvm" = "yes" ; then
918 cat > $TMPC <<EOF
919#include <linux/kvm.h>
920#if !defined(KVM_API_VERSION) || \
921 KVM_API_VERSION < 12 || \
922 KVM_API_VERSION > 12 || \
923 !defined(KVM_CAP_USER_MEMORY) || \
aliguorid85dc282008-12-09 19:59:09 +0000924 !defined(KVM_CAP_SET_TSS_ADDR) || \
925 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
aliguori7ba1e612008-11-05 16:04:33 +0000926#error Invalid KVM version
927#endif
928int main(void) { return 0; }
929EOF
aliguorieac30262008-11-05 16:28:56 +0000930 if test "$kerneldir" != "" ; then
931 kvm_cflags=-I"$kerneldir"/include
932 else
933 kvm_cflags=""
934 fi
aliguori7ba1e612008-11-05 16:04:33 +0000935 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000936 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +0000937 :
938 else
939 kvm="no"
940 fi
941fi
942
943##########################################
blueswir1414f0da2008-08-15 18:20:52 +0000944# AIO probe
aliguori3c529d92008-12-12 16:41:40 +0000945AIOLIBS=""
946
blueswir1414f0da2008-08-15 18:20:52 +0000947if test "$aio" = "yes" ; then
948 aio=no
949 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +0000950#include <pthread.h>
951int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +0000952EOF
953 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
954 aio=yes
aliguori3c529d92008-12-12 16:41:40 +0000955 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +0000956 fi
957fi
958
aliguoribf9298b2008-12-05 20:05:26 +0000959##########################################
960# iovec probe
961cat > $TMPC <<EOF
962#include <sys/uio.h>
963int main(void) { struct iovec iov; return 0; }
964EOF
965iovec=no
balrog8c7f7572008-12-15 03:15:36 +0000966if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +0000967 iovec=yes
968fi
969
aurel32f652e6a2008-12-16 10:43:48 +0000970##########################################
971# fdt probe
972if test "$fdt" = "yes" ; then
973 fdt=no
974 cat > $TMPC << EOF
975int main(void) { return 0; }
976EOF
977 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
978 fdt=yes
979 fi
980fi
981
pbrookcc8ae6d2006-04-23 17:57:59 +0000982# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +0000983if [ -x "`which texi2html 2>/dev/null`" ] && \
984 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +0000985 build_docs="yes"
986fi
987
aliguorida93a1f2008-12-12 20:02:52 +0000988##########################################
989# Do we need librt
990cat > $TMPC <<EOF
991#include <signal.h>
992#include <time.h>
993int main(void) { clockid_t id; return clock_gettime(id, NULL); }
994EOF
995
996rt=no
balrog8c7f7572008-12-15 03:15:36 +0000997if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +0000998 :
balrog8c7f7572008-12-15 03:15:36 +0000999elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001000 rt=yes
1001fi
1002
1003if test "$rt" = "yes" ; then
1004 # Hack, we should have a general purpose LIBS for this sort of thing
1005 AIOLIBS="$AIOLIBS -lrt"
1006fi
1007
bellard11d9f692004-04-02 20:55:59 +00001008if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001009 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001010 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001011 fi
1012 mansuffix=""
1013 datasuffix=""
1014 docsuffix=""
1015 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001016else
pbrook308c3592007-02-27 00:52:01 +00001017 if test -z "$prefix" ; then
1018 prefix="/usr/local"
1019 fi
1020 mansuffix="/share/man"
1021 datasuffix="/share/qemu"
1022 docsuffix="/share/doc/qemu"
1023 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001024fi
bellard5a671352003-10-01 00:13:48 +00001025
bellard43ce4df2003-06-09 19:53:12 +00001026echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001027echo "BIOS directory $prefix$datasuffix"
1028echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001029if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001030echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001031echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001032fi
bellard5a671352003-10-01 00:13:48 +00001033echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001034echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001035echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001036echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001037echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001038echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001039echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001040echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001041echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001042echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001043echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001044echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001045echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001046echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001047if test "$darwin" = "yes" ; then
1048 echo "Cocoa support $cocoa"
1049fi
bellard97a847b2003-08-10 21:36:04 +00001050echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001051if test "$sdl" != "no" ; then
1052 echo "SDL static link $sdl_static"
1053fi
balrog4d3b6f62008-02-10 16:33:14 +00001054echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001055echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001056echo "Audio drivers $audio_drv_list"
1057echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001058echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001059echo "VNC TLS support $vnc_tls"
1060if test "$vnc_tls" = "yes" ; then
1061 echo " TLS CFLAGS $vnc_tls_cflags"
1062 echo " TLS LIBS $vnc_tls_libs"
1063fi
blueswir131422552007-04-16 18:27:06 +00001064if test -n "$sparc_cpu"; then
1065 echo "Target Sparc Arch $sparc_cpu"
1066fi
bellard07f4ddb2005-04-23 17:44:28 +00001067echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001068echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001069echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001070[ ! -z "$uname_release" ] && \
1071echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001072echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001073echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001074echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001075echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001076echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001077echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001078
bellard97a847b2003-08-10 21:36:04 +00001079if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001080echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001081fi
malcd4742de2008-11-29 22:04:31 +00001082if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001083 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001084 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001085fi
bellard24b55b92005-03-01 22:30:41 +00001086#if test "$sdl_static" = "no"; then
1087# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1088#fi
bellard97a847b2003-08-10 21:36:04 +00001089config_mak="config-host.mak"
1090config_h="config-host.h"
1091
bellard7c1f25b2004-04-22 00:02:08 +00001092#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001093
ths15d9ca02007-07-31 23:07:32 +00001094test -f $config_h && mv $config_h ${config_h}~
1095
bellard97a847b2003-08-10 21:36:04 +00001096echo "# Automatically generated by configure - do not modify" > $config_mak
malcfd69fe22008-12-07 22:50:16 +00001097echo -n "# Configured with:" >> $config_mak
1098printf " '%s'" "$0" "$@" >> $config_mak
1099echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001100echo "/* Automatically generated by configure - do not modify */" > $config_h
1101
1102echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001103echo "bindir=\${prefix}$binsuffix" >> $config_mak
1104echo "mandir=\${prefix}$mansuffix" >> $config_mak
1105echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001106echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001107echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001108echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001109echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001110echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001111echo "HOST_CC=$host_cc" >> $config_mak
1112echo "AR=$ar" >> $config_mak
1113echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001114# XXX: only use CFLAGS and LDFLAGS ?
1115# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1116# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001117echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001118echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1119echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1120echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001121echo "CFLAGS=$CFLAGS" >> $config_mak
1122echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001123echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001124echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001125case "$cpu" in
1126 i386)
1127 echo "ARCH=i386" >> $config_mak
1128 echo "#define HOST_I386 1" >> $config_h
1129 ;;
1130 x86_64)
1131 echo "ARCH=x86_64" >> $config_mak
1132 echo "#define HOST_X86_64 1" >> $config_h
1133 ;;
1134 alpha)
1135 echo "ARCH=alpha" >> $config_mak
1136 echo "#define HOST_ALPHA 1" >> $config_h
1137 ;;
1138 armv4b)
1139 echo "ARCH=arm" >> $config_mak
1140 echo "#define HOST_ARM 1" >> $config_h
1141 ;;
1142 armv4l)
1143 echo "ARCH=arm" >> $config_mak
1144 echo "#define HOST_ARM 1" >> $config_h
1145 ;;
1146 cris)
1147 echo "ARCH=cris" >> $config_mak
1148 echo "#define HOST_CRIS 1" >> $config_h
1149 ;;
1150 hppa)
1151 echo "ARCH=hppa" >> $config_mak
1152 echo "#define HOST_HPPA 1" >> $config_h
1153 ;;
1154 ia64)
1155 echo "ARCH=ia64" >> $config_mak
1156 echo "#define HOST_IA64 1" >> $config_h
1157 ;;
1158 m68k)
1159 echo "ARCH=m68k" >> $config_mak
1160 echo "#define HOST_M68K 1" >> $config_h
1161 ;;
1162 mips)
1163 echo "ARCH=mips" >> $config_mak
1164 echo "#define HOST_MIPS 1" >> $config_h
1165 ;;
1166 mips64)
1167 echo "ARCH=mips64" >> $config_mak
1168 echo "#define HOST_MIPS64 1" >> $config_h
1169 ;;
1170 powerpc)
malc810260a2008-07-23 19:17:46 +00001171 if test "$hostlongbits" = "32"; then
1172 echo "ARCH=ppc" >> $config_mak
1173 echo "#define HOST_PPC 1" >> $config_h
1174 else
1175 echo "ARCH=ppc64" >> $config_mak
1176 echo "#define HOST_PPC64 1" >> $config_h
1177 fi
aurel322408a522008-04-20 20:19:44 +00001178 ;;
1179 s390)
1180 echo "ARCH=s390" >> $config_mak
1181 echo "#define HOST_S390 1" >> $config_h
1182 ;;
1183 sparc)
1184 echo "ARCH=sparc" >> $config_mak
1185 echo "#define HOST_SPARC 1" >> $config_h
1186 ;;
1187 sparc64)
1188 echo "ARCH=sparc64" >> $config_mak
1189 echo "#define HOST_SPARC64 1" >> $config_h
1190 ;;
1191 *)
1192 echo "Unsupported CPU = $cpu"
1193 exit 1
1194 ;;
1195esac
aliguori03b4fe72008-10-07 19:16:17 +00001196if test "$sparse" = "yes" ; then
1197 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1198 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1199 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1200fi
bellard7d132992003-03-06 23:23:54 +00001201if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001202 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1203 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1204fi
bellardb6853692005-06-05 17:10:39 +00001205echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001206if test "$mingw32" = "yes" ; then
1207 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001208 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001209else
1210 cat > $TMPC << EOF
1211#include <byteswap.h>
1212int main(void) { return bswap_32(0); }
1213EOF
aurel32178baee2008-12-08 18:11:57 +00001214 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001215 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1216 fi
blueswir113606772008-12-05 17:54:09 +00001217 cat > $TMPC << EOF
1218#include <sys/endian.h>
1219#include <sys/types.h>
1220#include <machine/bswap.h>
1221int main(void) { return bswap32(0); }
1222EOF
aurel32178baee2008-12-08 18:11:57 +00001223 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001224 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1225 fi
bellard67b915a2004-03-31 23:37:16 +00001226fi
blueswir1128ab2f2008-08-15 18:33:42 +00001227
1228if [ "$openbsd" = "yes" ] ; then
1229 echo "#define ENOTSUP 4096" >> $config_h
1230fi
1231
bellard83fb7ad2004-07-05 21:25:26 +00001232if test "$darwin" = "yes" ; then
1233 echo "CONFIG_DARWIN=yes" >> $config_mak
1234 echo "#define CONFIG_DARWIN 1" >> $config_h
1235fi
malcb29fe3e2008-11-18 01:42:22 +00001236
1237if test "$aix" = "yes" ; then
1238 echo "CONFIG_AIX=yes" >> $config_mak
1239 echo "#define CONFIG_AIX 1" >> $config_h
1240fi
1241
bellardec530c82006-04-25 22:36:06 +00001242if test "$solaris" = "yes" ; then
1243 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001244 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001245 if test "$needs_libsunmath" = "yes" ; then
1246 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1247 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1248 fi
bellardec530c82006-04-25 22:36:06 +00001249fi
blueswir131422552007-04-16 18:27:06 +00001250if test -n "$sparc_cpu"; then
1251 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1252 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1253fi
bellard67b915a2004-03-31 23:37:16 +00001254if test "$gdbstub" = "yes" ; then
1255 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1256 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1257fi
bellard97a847b2003-08-10 21:36:04 +00001258if test "$gprof" = "yes" ; then
1259 echo "TARGET_GPROF=yes" >> $config_mak
1260 echo "#define HAVE_GPROF 1" >> $config_h
1261fi
1262if test "$static" = "yes" ; then
1263 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001264 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001265fi
bellard05c2a3e2006-02-08 22:39:17 +00001266if test $profiler = "yes" ; then
1267 echo "#define CONFIG_PROFILER 1" >> $config_h
1268fi
bellardc20709a2004-04-21 23:27:19 +00001269if test "$slirp" = "yes" ; then
1270 echo "CONFIG_SLIRP=yes" >> $config_mak
1271 echo "#define CONFIG_SLIRP 1" >> $config_h
1272fi
ths8a16d272008-07-19 09:56:24 +00001273if test "$vde" = "yes" ; then
1274 echo "CONFIG_VDE=yes" >> $config_mak
1275 echo "#define CONFIG_VDE 1" >> $config_h
1276 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1277fi
malc0c58ac12008-06-25 21:04:05 +00001278for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001279 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001280 echo "$def=yes" >> $config_mak
1281 echo "#define $def 1" >> $config_h
1282done
1283echo "#define AUDIO_DRIVERS \\" >> $config_h
1284for drv in $audio_drv_list; do
1285 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001286 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001287 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001288 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001289 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1290 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001291 elif test "$drv" = "oss"; then
1292 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001293 fi
1294done
1295echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001296if test "$mixemu" = "yes" ; then
1297 echo "CONFIG_MIXEMU=yes" >> $config_mak
1298 echo "#define CONFIG_MIXEMU 1" >> $config_h
1299fi
ths8d5d2d42007-08-25 01:37:51 +00001300if test "$vnc_tls" = "yes" ; then
1301 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1302 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1303 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1304 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1305fi
pbrookb1a550a2006-04-16 13:28:56 +00001306qemu_version=`head $source_path/VERSION`
1307echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001308echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001309
1310echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001311if [ "$source_path_used" = "yes" ]; then
1312 echo "VPATH=$source_path" >> $config_mak
1313fi
bellard97a847b2003-08-10 21:36:04 +00001314echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001315if [ "$build_docs" = "yes" ] ; then
1316 echo "BUILD_DOCS=yes" >> $config_mak
1317fi
bellard49ecc3f2007-11-07 19:25:15 +00001318if test "$static" = "yes"; then
1319 sdl1=$sdl_static
1320else
1321 sdl1=$sdl
1322fi
1323if test "$sdl1" = "yes" ; then
1324 echo "#define CONFIG_SDL 1" >> $config_h
1325 echo "CONFIG_SDL=yes" >> $config_mak
1326 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1327 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1328 else
1329 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1330 fi
1331 if [ "${aa}" = "yes" ] ; then
1332 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1333 else
1334 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1335 fi
1336fi
1337if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001338 echo "#define CONFIG_COCOA 1" >> $config_h
1339 echo "CONFIG_COCOA=yes" >> $config_mak
1340fi
1341if test "$curses" = "yes" ; then
1342 echo "#define CONFIG_CURSES 1" >> $config_h
1343 echo "CONFIG_CURSES=yes" >> $config_mak
1344 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001345fi
aurel322e4d9fb2008-04-08 06:01:02 +00001346if test "$brlapi" = "yes" ; then
1347 echo "CONFIG_BRLAPI=yes" >> $config_mak
1348 echo "#define CONFIG_BRLAPI 1" >> $config_h
1349 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1350fi
balrogfb599c92008-09-28 23:49:55 +00001351if test "$bluez" = "yes" ; then
1352 echo "CONFIG_BLUEZ=yes" >> $config_mak
1353 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1354 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1355 echo "#define CONFIG_BLUEZ 1" >> $config_h
1356fi
blueswir1414f0da2008-08-15 18:20:52 +00001357if test "$aio" = "yes" ; then
1358 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001359 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001360fi
ths77755342008-11-27 15:45:16 +00001361if test "$blobs" = "yes" ; then
1362 echo "INSTALL_BLOBS=yes" >> $config_mak
1363fi
aliguoribf9298b2008-12-05 20:05:26 +00001364if test "$iovec" = "yes" ; then
1365 echo "#define HAVE_IOVEC 1" >> $config_h
1366fi
aurel32f652e6a2008-12-16 10:43:48 +00001367if test "$fdt" = "yes" ; then
1368 echo "#define HAVE_FDT 1" >> $config_h
1369 echo "FDT_LIBS=-lfdt" >> $config_mak
1370fi
bellard97a847b2003-08-10 21:36:04 +00001371
bellard83fb7ad2004-07-05 21:25:26 +00001372# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001373if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001374 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001375 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001376 echo "#define _BSD 1" >> $config_h
1377fi
1378
pbrookc5937222006-05-14 11:30:38 +00001379echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1380
blueswir168063642008-11-22 21:03:55 +00001381# USB host support
1382case "$usb" in
1383linux)
1384 echo "HOST_USB=linux" >> $config_mak
1385;;
1386bsd)
1387 echo "HOST_USB=bsd" >> $config_mak
1388;;
1389*)
1390 echo "HOST_USB=stub" >> $config_mak
1391;;
1392esac
1393
pbrookc39e3332007-09-22 16:49:14 +00001394tools=
1395if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1396 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001397 if [ "$linux" = "yes" ] ; then
1398 tools="qemu-nbd\$(EXESUF) $tools"
1399 fi
pbrookc39e3332007-09-22 16:49:14 +00001400fi
1401echo "TOOLS=$tools" >> $config_mak
1402
ths15d9ca02007-07-31 23:07:32 +00001403test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1404
bellard1d14ffa2005-10-30 18:58:22 +00001405for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001406target_dir="$target"
1407config_mak=$target_dir/config.mak
1408config_h=$target_dir/config.h
1409target_cpu=`echo $target | cut -d '-' -f 1`
1410target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001411[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001412[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1413[ "$target_cpu" = "mips" ] && target_bigendian=yes
1414[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1415[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001416[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001417[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001418[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001419[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001420[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001421[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1422[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1423[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001424target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001425target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001426target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001427target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001428target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001429case "$target" in
1430 ${target_cpu}-softmmu)
1431 target_softmmu="yes"
1432 ;;
1433 ${target_cpu}-linux-user)
1434 target_user_only="yes"
1435 target_linux_user="yes"
1436 ;;
1437 ${target_cpu}-darwin-user)
1438 target_user_only="yes"
1439 target_darwin_user="yes"
1440 ;;
blueswir184778502008-10-26 20:33:16 +00001441 ${target_cpu}-bsd-user)
1442 target_user_only="yes"
1443 target_bsd_user="yes"
1444 ;;
pbrook9e407a82007-05-26 16:38:53 +00001445 *)
1446 echo "ERROR: Target '$target' not recognised"
1447 exit 1
1448 ;;
1449esac
ths831b7822007-01-18 20:06:33 +00001450
bellard97ccc682005-07-02 13:32:17 +00001451if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001452 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001453 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001454 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001455 echo "Note that this will disable all output from the virtual graphics card"
1456 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001457 exit 1;
1458fi
1459
bellard7c1f25b2004-04-22 00:02:08 +00001460#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001461
ths15d9ca02007-07-31 23:07:32 +00001462test -f $config_h && mv $config_h ${config_h}~
1463
bellard97a847b2003-08-10 21:36:04 +00001464mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001465mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001466mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001467if 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 +00001468 mkdir -p $target_dir/nwfpe
1469fi
1470
bellardec530c82006-04-25 22:36:06 +00001471#
1472# don't use ln -sf as not all "ln -sf" over write the file/link
1473#
1474rm -f $target_dir/Makefile
1475ln -s $source_path/Makefile.target $target_dir/Makefile
1476
bellard97a847b2003-08-10 21:36:04 +00001477
1478echo "# Automatically generated by configure - do not modify" > $config_mak
1479echo "/* Automatically generated by configure - do not modify */" > $config_h
1480
1481
1482echo "include ../config-host.mak" >> $config_mak
1483echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001484
pbrooke5fe0c52006-06-11 13:32:59 +00001485bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001486elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001487target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001488interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1489echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001490gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001491
aliguori5985ece2008-11-05 19:59:25 +00001492# Make sure the target and host cpus are compatible
1493if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1494 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1495 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001496 kvm="no"
1497fi
1498# Disable KVM for linux-user
1499if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1500 kvm="no"
1501fi
1502
aurel322408a522008-04-20 20:19:44 +00001503case "$target_cpu" in
1504 i386)
1505 echo "TARGET_ARCH=i386" >> $config_mak
1506 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1507 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001508 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001509 then
1510 echo "#define USE_KQEMU 1" >> $config_h
1511 fi
aliguori7ba1e612008-11-05 16:04:33 +00001512 if test "$kvm" = "yes" ; then
1513 echo "CONFIG_KVM=yes" >> $config_mak
1514 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001515 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001516 fi
aurel322408a522008-04-20 20:19:44 +00001517 ;;
1518 x86_64)
1519 echo "TARGET_ARCH=x86_64" >> $config_mak
1520 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1521 echo "#define TARGET_I386 1" >> $config_h
1522 echo "#define TARGET_X86_64 1" >> $config_h
1523 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1524 then
1525 echo "#define USE_KQEMU 1" >> $config_h
1526 fi
aliguori7ba1e612008-11-05 16:04:33 +00001527 if test "$kvm" = "yes" ; then
1528 echo "CONFIG_KVM=yes" >> $config_mak
1529 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1530 echo "#define CONFIG_KVM 1" >> $config_h
1531 fi
aurel322408a522008-04-20 20:19:44 +00001532 ;;
1533 alpha)
1534 echo "TARGET_ARCH=alpha" >> $config_mak
1535 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1536 echo "#define TARGET_ALPHA 1" >> $config_h
1537 ;;
1538 arm|armeb)
1539 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001540 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1541 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001542 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001543 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001544 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001545 ;;
1546 cris)
1547 echo "TARGET_ARCH=cris" >> $config_mak
1548 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1549 echo "#define TARGET_CRIS 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001550 ;;
1551 m68k)
1552 echo "TARGET_ARCH=m68k" >> $config_mak
1553 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1554 echo "#define TARGET_M68K 1" >> $config_h
1555 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001556 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001557 ;;
1558 mips|mipsel)
1559 echo "TARGET_ARCH=mips" >> $config_mak
1560 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1561 echo "#define TARGET_MIPS 1" >> $config_h
1562 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1563 ;;
1564 mipsn32|mipsn32el)
1565 echo "TARGET_ARCH=mipsn32" >> $config_mak
1566 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1567 echo "#define TARGET_MIPS 1" >> $config_h
1568 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1569 ;;
1570 mips64|mips64el)
1571 echo "TARGET_ARCH=mips64" >> $config_mak
1572 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1573 echo "#define TARGET_MIPS 1" >> $config_h
1574 echo "#define TARGET_MIPS64 1" >> $config_h
1575 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1576 ;;
1577 ppc)
1578 echo "TARGET_ARCH=ppc" >> $config_mak
1579 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1580 echo "#define TARGET_PPC 1" >> $config_h
1581 ;;
1582 ppcemb)
1583 echo "TARGET_ARCH=ppcemb" >> $config_mak
1584 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1585 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1586 echo "#define TARGET_PPC 1" >> $config_h
1587 echo "#define TARGET_PPCEMB 1" >> $config_h
1588 ;;
1589 ppc64)
1590 echo "TARGET_ARCH=ppc64" >> $config_mak
1591 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1592 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1593 echo "#define TARGET_PPC 1" >> $config_h
1594 echo "#define TARGET_PPC64 1" >> $config_h
1595 ;;
1596 ppc64abi32)
1597 echo "TARGET_ARCH=ppc64" >> $config_mak
1598 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1599 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1600 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1601 echo "#define TARGET_PPC 1" >> $config_h
1602 echo "#define TARGET_PPC64 1" >> $config_h
1603 echo "#define TARGET_ABI32 1" >> $config_h
1604 ;;
1605 sh4|sh4eb)
1606 echo "TARGET_ARCH=sh4" >> $config_mak
1607 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1608 echo "#define TARGET_SH4 1" >> $config_h
1609 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001610 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001611 ;;
1612 sparc)
1613 echo "TARGET_ARCH=sparc" >> $config_mak
1614 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1615 echo "#define TARGET_SPARC 1" >> $config_h
1616 ;;
1617 sparc64)
1618 echo "TARGET_ARCH=sparc64" >> $config_mak
1619 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1620 echo "#define TARGET_SPARC 1" >> $config_h
1621 echo "#define TARGET_SPARC64 1" >> $config_h
1622 elfload32="yes"
1623 ;;
1624 sparc32plus)
1625 echo "TARGET_ARCH=sparc64" >> $config_mak
1626 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1627 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1628 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1629 echo "#define TARGET_SPARC 1" >> $config_h
1630 echo "#define TARGET_SPARC64 1" >> $config_h
1631 echo "#define TARGET_ABI32 1" >> $config_h
1632 ;;
1633 *)
1634 echo "Unsupported target CPU"
1635 exit 1
1636 ;;
1637esac
bellardde83cd02003-06-15 20:25:43 +00001638if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001639 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1640 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1641fi
1642if test "$target_softmmu" = "yes" ; then
1643 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1644 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001645fi
bellard997344f2003-10-27 21:10:39 +00001646if test "$target_user_only" = "yes" ; then
1647 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1648 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1649fi
ths831b7822007-01-18 20:06:33 +00001650if test "$target_linux_user" = "yes" ; then
1651 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1652 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1653fi
1654if test "$target_darwin_user" = "yes" ; then
1655 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1656 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1657fi
pbrook56aebc82008-10-11 17:55:29 +00001658list=""
1659if test ! -z "$gdb_xml_files" ; then
1660 for x in $gdb_xml_files; do
1661 list="$list $source_path/gdb-xml/$x"
1662 done
1663fi
1664echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001665
aurel320938cda2008-04-11 21:36:06 +00001666if test "$target_cpu" = "arm" \
1667 -o "$target_cpu" = "armeb" \
1668 -o "$target_cpu" = "m68k" \
1669 -o "$target_cpu" = "mips" \
1670 -o "$target_cpu" = "mipsel" \
1671 -o "$target_cpu" = "mipsn32" \
1672 -o "$target_cpu" = "mipsn32el" \
1673 -o "$target_cpu" = "mips64" \
1674 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001675 -o "$target_cpu" = "ppc" \
1676 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001677 -o "$target_cpu" = "ppc64abi32" \
1678 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001679 -o "$target_cpu" = "sparc" \
1680 -o "$target_cpu" = "sparc64" \
1681 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001682 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1683 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1684fi
pbrooke5fe0c52006-06-11 13:32:59 +00001685if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1686 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1687 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1688fi
pbrookbd0c5662008-05-29 14:34:11 +00001689if test "$target_user_only" = "yes" \
1690 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1691 echo "#define USE_NPTL 1" >> $config_h
1692fi
blueswir1cb33da52007-10-09 16:34:29 +00001693# 32 bit ELF loader in addition to native 64 bit loader?
1694if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1695 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1696 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1697fi
blueswir184778502008-10-26 20:33:16 +00001698if test "$target_bsd_user" = "yes" ; then
1699 echo "CONFIG_BSD_USER=yes" >> $config_mak
1700 echo "#define CONFIG_BSD_USER 1" >> $config_h
1701fi
bellard5b0753e2005-03-01 21:37:28 +00001702
ths15d9ca02007-07-31 23:07:32 +00001703test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1704
bellard97a847b2003-08-10 21:36:04 +00001705done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001706
1707# build tree in object directory if source path is different from current one
1708if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001709 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001710 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001711 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001712 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001713 for dir in $DIRS ; do
1714 mkdir -p $dir
1715 done
bellardec530c82006-04-25 22:36:06 +00001716 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001717 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001718 rm -f $f
1719 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001720 done
1721fi