blob: 285d4cc58dc7b871ad18b6c5eccc14ede60a1ed0 [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001#!/bin/sh
2#
bellard3ef693a2003-03-23 20:17:16 +00003# qemu configure script (c) 2003 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00004#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
bellard3ef693a2003-03-23 20:17:16 +000014TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
malc9d56d2d2008-09-30 19:44:32 +000018TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
malcd4742de2008-11-29 22:04:31 +000019TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
bellard7d132992003-03-06 23:23:54 +000020
malcd4742de2008-11-29 22:04:31 +000021trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
malc9ac81bb2008-11-29 20:09:56 +000022
bellard7d132992003-03-06 23:23:54 +000023# default parameters
bellard11d9f692004-04-02 20:55:59 +000024prefix=""
bellard1e43adf2003-09-30 20:54:24 +000025interp_prefix="/usr/gnemul/qemu-%M"
bellard43ce4df2003-06-09 19:53:12 +000026static="no"
bellard7d132992003-03-06 23:23:54 +000027cross_prefix=""
28cc="gcc"
malc0c58ac12008-06-25 21:04:05 +000029audio_drv_list=""
malc4c9b53e2009-01-09 10:46:34 +000030audio_card_list="ac97 es1370 sb16"
31audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
bellard7d132992003-03-06 23:23:54 +000032host_cc="gcc"
33ar="ar"
34make="make"
pbrook6a882642006-04-17 13:57:12 +000035install="install"
bellard7d132992003-03-06 23:23:54 +000036strip="strip"
aliguoriac0df512008-12-29 17:14:15 +000037
38# parse CC options first
39for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --cross-prefix=*) cross_prefix="$optarg"
43 ;;
44 --cc=*) cc="$optarg"
45 ;;
46 esac
47done
48
49# OS specific
50# Using uname is really, really broken. Once we have the right set of checks
51# we can eliminate it's usage altogether
52
53cc="${cross_prefix}${cc}"
54ar="${cross_prefix}${ar}"
55strip="${cross_prefix}${strip}"
56
57# check that the C compiler works.
58cat > $TMPC <<EOF
59int main(void) {}
60EOF
61
62if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63 : C compiler works ok
64else
65 echo "ERROR: \"$cc\" either does not exist or does not work"
66 exit 1
67fi
68
69check_define() {
70cat > $TMPC <<EOF
71#if !defined($1)
72#error Not defined
73#endif
74int main(void) { return 0; }
75EOF
76 $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
77}
78
79if check_define __i386__ ; then
80 cpu="i386"
81elif check_define __x86_64__ ; then
82 cpu="x86_64"
blueswir13aa9bd62008-12-31 16:55:26 +000083elif check_define __sparc__ ; then
84 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
85 # They must be specified using --sparc_cpu
86 if check_define __arch64__ ; then
87 cpu="sparc64"
88 else
89 cpu="sparc"
90 fi
aliguoriac0df512008-12-29 17:14:15 +000091else
92 cpu=`test $(uname -s) = AIX && uname -p || uname -m`
93fi
94
bellard5327cf42005-01-10 23:18:50 +000095target_list=""
bellard7d132992003-03-06 23:23:54 +000096case "$cpu" in
97 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +000098 cpu="i386"
bellard7d132992003-03-06 23:23:54 +000099 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000100 x86_64|amd64)
101 cpu="x86_64"
102 ;;
103 alpha)
104 cpu="alpha"
105 ;;
bellardba680552005-03-13 09:49:52 +0000106 armv*b)
bellard808c4952004-12-19 23:33:47 +0000107 cpu="armv4b"
108 ;;
bellardba680552005-03-13 09:49:52 +0000109 armv*l)
bellard7d132992003-03-06 23:23:54 +0000110 cpu="armv4l"
111 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000112 cris)
113 cpu="cris"
bellard7d132992003-03-06 23:23:54 +0000114 ;;
aurel32f54b3f92008-04-12 20:14:54 +0000115 parisc|parisc64)
116 cpu="hppa"
117 ;;
aurel32aaa5fa12008-04-11 22:04:22 +0000118 ia64)
119 cpu="ia64"
120 ;;
121 m68k)
122 cpu="m68k"
bellard7d132992003-03-06 23:23:54 +0000123 ;;
124 mips)
125 cpu="mips"
126 ;;
thsfbe4f652007-04-01 11:16:48 +0000127 mips64)
128 cpu="mips64"
129 ;;
malcb29fe3e2008-11-18 01:42:22 +0000130 "Power Macintosh"|ppc|ppc64|powerpc)
aurel32aaa5fa12008-04-11 22:04:22 +0000131 cpu="powerpc"
thse7daa602007-10-08 13:38:27 +0000132 ;;
ths0e7b8a92007-08-01 00:09:31 +0000133 s390*)
bellardfb3e5842003-03-29 17:32:36 +0000134 cpu="s390"
135 ;;
blueswir131422552007-04-16 18:27:06 +0000136 sparc|sun4[cdmuv])
bellardae228532003-05-13 18:59:59 +0000137 cpu="sparc"
138 ;;
139 sparc64)
140 cpu="sparc64"
141 ;;
bellard7d132992003-03-06 23:23:54 +0000142 *)
143 cpu="unknown"
144 ;;
145esac
146gprof="no"
aliguori03b4fe72008-10-07 19:16:17 +0000147sparse="no"
bellard7d132992003-03-06 23:23:54 +0000148bigendian="no"
bellard67b915a2004-03-31 23:37:16 +0000149mingw32="no"
150EXESUF=""
151gdbstub="yes"
bellard443f1372004-06-04 11:13:20 +0000152slirp="yes"
aliguorie0e6c8c2008-07-23 18:14:33 +0000153vde="yes"
bellard102a52e2004-11-14 19:57:29 +0000154fmod_lib=""
155fmod_inc=""
blueswir12f6a1ab2008-08-21 18:00:53 +0000156oss_lib=""
ths8d5d2d42007-08-25 01:37:51 +0000157vnc_tls="yes"
pbrookb1a550a2006-04-16 13:28:56 +0000158bsd="no"
bellard5327cf42005-01-10 23:18:50 +0000159linux="no"
blueswir1d2c7c9b2008-11-01 14:50:20 +0000160solaris="no"
bellardc9ec1fe2005-02-10 21:55:30 +0000161kqemu="no"
bellard05c2a3e2006-02-08 22:39:17 +0000162profiler="no"
bellard5b0753e2005-03-01 21:37:28 +0000163cocoa="no"
bellard97ccc682005-07-02 13:32:17 +0000164check_gfx="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000165softmmu="yes"
ths831b7822007-01-18 20:06:33 +0000166linux_user="no"
167darwin_user="no"
blueswir184778502008-10-26 20:33:16 +0000168bsd_user="no"
pbrookcc8ae6d2006-04-23 17:57:59 +0000169build_docs="no"
pbrookc5937222006-05-14 11:30:38 +0000170uname_release=""
balrog4d3b6f62008-02-10 16:33:14 +0000171curses="yes"
blueswir1414f0da2008-08-15 18:20:52 +0000172aio="yes"
pbrookbd0c5662008-05-29 14:34:11 +0000173nptl="yes"
malc8ff9cbf2008-06-23 18:33:30 +0000174mixemu="no"
balrogfb599c92008-09-28 23:49:55 +0000175bluez="yes"
aliguori7ba1e612008-11-05 16:04:33 +0000176kvm="yes"
aliguorieac30262008-11-05 16:28:56 +0000177kerneldir=""
malcb29fe3e2008-11-18 01:42:22 +0000178aix="no"
ths77755342008-11-27 15:45:16 +0000179blobs="yes"
aurel32f652e6a2008-12-16 10:43:48 +0000180fdt="yes"
bellard7d132992003-03-06 23:23:54 +0000181
182# OS specific
aliguoriac0df512008-12-29 17:14:15 +0000183if check_define __linux__ ; then
184 targetos="Linux"
185elif check_define _WIN32 ; then
186 targetos='MINGW32'
187else
188 targetos=`uname -s`
189fi
bellard7d132992003-03-06 23:23:54 +0000190case $targetos in
bellardc326e0a2005-04-23 18:30:28 +0000191CYGWIN*)
192mingw32="yes"
ths6f30fa82007-01-05 01:00:47 +0000193OS_CFLAGS="-mno-cygwin"
thsdb8d7dd2007-07-12 09:29:18 +0000194if [ "$cpu" = "i386" ] ; then
195 kqemu="yes"
196fi
malcc2de5c92008-06-28 19:13:06 +0000197audio_possible_drivers="sdl"
bellardc326e0a2005-04-23 18:30:28 +0000198;;
bellard67b915a2004-03-31 23:37:16 +0000199MINGW32*)
200mingw32="yes"
thsdb8d7dd2007-07-12 09:29:18 +0000201if [ "$cpu" = "i386" ] ; then
202 kqemu="yes"
203fi
malcc2de5c92008-06-28 19:13:06 +0000204audio_possible_drivers="dsound sdl fmod"
bellard67b915a2004-03-31 23:37:16 +0000205;;
ths5c40d2b2007-06-23 16:03:36 +0000206GNU/kFreeBSD)
malc0c58ac12008-06-25 21:04:05 +0000207audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000208audio_possible_drivers="oss sdl esd pa"
ths5c40d2b2007-06-23 16:03:36 +0000209if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
210 kqemu="yes"
211fi
212;;
bellard7d3505c2004-05-12 19:32:15 +0000213FreeBSD)
214bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000215audio_drv_list="oss"
aurel32f34af522008-08-21 23:03:15 +0000216audio_possible_drivers="oss sdl esd pa"
bellarde99f9062005-07-28 21:45:38 +0000217if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellard07f4ddb2005-04-23 17:44:28 +0000218 kqemu="yes"
219fi
bellard7d3505c2004-05-12 19:32:15 +0000220;;
221NetBSD)
222bsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000223audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000224audio_possible_drivers="oss sdl esd"
blueswir18ef92a82008-11-22 20:24:29 +0000225oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000226;;
227OpenBSD)
228bsd="yes"
blueswir1128ab2f2008-08-15 18:33:42 +0000229openbsd="yes"
malc0c58ac12008-06-25 21:04:05 +0000230audio_drv_list="oss"
malcc2de5c92008-06-28 19:13:06 +0000231audio_possible_drivers="oss sdl esd"
blueswir12f6a1ab2008-08-21 18:00:53 +0000232oss_lib="-lossaudio"
bellard7d3505c2004-05-12 19:32:15 +0000233;;
bellard83fb7ad2004-07-05 21:25:26 +0000234Darwin)
235bsd="yes"
236darwin="yes"
ths831b7822007-01-18 20:06:33 +0000237darwin_user="yes"
thsfd677642007-01-31 12:10:07 +0000238cocoa="yes"
malc0c58ac12008-06-25 21:04:05 +0000239audio_drv_list="coreaudio"
malcc2de5c92008-06-28 19:13:06 +0000240audio_possible_drivers="coreaudio sdl fmod"
ths6f30fa82007-01-05 01:00:47 +0000241OS_CFLAGS="-mdynamic-no-pic"
thsc2c59c32008-01-08 00:00:20 +0000242OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
bellard83fb7ad2004-07-05 21:25:26 +0000243;;
bellardec530c82006-04-25 22:36:06 +0000244SunOS)
thsc2b84fa2007-02-10 23:21:21 +0000245 solaris="yes"
246 make="gmake"
247 install="ginstall"
ths0475a5c2007-04-01 18:54:44 +0000248 needs_libsunmath="no"
thsc2b84fa2007-02-10 23:21:21 +0000249 solarisrev=`uname -r | cut -f2 -d.`
thsef18c882007-09-16 22:12:39 +0000250 # have to select again, because `uname -m` returns i86pc
251 # even on an x86_64 box.
252 solariscpu=`isainfo -k`
253 if test "${solariscpu}" = "amd64" ; then
254 cpu="x86_64"
255 fi
thsc2b84fa2007-02-10 23:21:21 +0000256 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
ths0475a5c2007-04-01 18:54:44 +0000257 if test "$solarisrev" -le 9 ; then
258 if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
259 needs_libsunmath="yes"
260 else
261 echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
262 echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
263 echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
264 echo "Studio 11 can be downloaded from www.sun.com."
265 exit 1
266 fi
267 fi
268 if test "$solarisrev" -ge 9 ; then
thsc2b84fa2007-02-10 23:21:21 +0000269 kqemu="yes"
270 fi
ths86b2bd92007-02-11 00:31:33 +0000271 fi
ths6b4d2ba2007-05-13 18:02:43 +0000272 if test -f /usr/include/sys/soundcard.h ; then
malc0c58ac12008-06-25 21:04:05 +0000273 audio_drv_list="oss"
ths6b4d2ba2007-05-13 18:02:43 +0000274 fi
malcc2de5c92008-06-28 19:13:06 +0000275 audio_possible_drivers="oss sdl"
ths86b2bd92007-02-11 00:31:33 +0000276;;
malcb29fe3e2008-11-18 01:42:22 +0000277AIX)
278aix="yes"
279make="gmake"
280;;
bellard1d14ffa2005-10-30 18:58:22 +0000281*)
malc0c58ac12008-06-25 21:04:05 +0000282audio_drv_list="oss"
malcb8e59f12008-07-02 21:03:08 +0000283audio_possible_drivers="oss alsa sdl esd pa"
bellard5327cf42005-01-10 23:18:50 +0000284linux="yes"
ths831b7822007-01-18 20:06:33 +0000285linux_user="yes"
blueswir168063642008-11-22 21:03:55 +0000286usb="linux"
bellard07f4ddb2005-04-23 17:44:28 +0000287if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
bellardc9ec1fe2005-02-10 21:55:30 +0000288 kqemu="yes"
malcc2de5c92008-06-28 19:13:06 +0000289 audio_possible_drivers="$audio_possible_drivers fmod"
bellardc9ec1fe2005-02-10 21:55:30 +0000290fi
bellardfb065182004-11-09 23:09:44 +0000291;;
bellard7d132992003-03-06 23:23:54 +0000292esac
293
bellard7d3505c2004-05-12 19:32:15 +0000294if [ "$bsd" = "yes" ] ; then
pbrookb1a550a2006-04-16 13:28:56 +0000295 if [ "$darwin" != "yes" ] ; then
bellard83fb7ad2004-07-05 21:25:26 +0000296 make="gmake"
blueswir168063642008-11-22 21:03:55 +0000297 usb="bsd"
bellard83fb7ad2004-07-05 21:25:26 +0000298 fi
blueswir184778502008-10-26 20:33:16 +0000299 bsd_user="yes"
bellard7d3505c2004-05-12 19:32:15 +0000300fi
301
bellard7d132992003-03-06 23:23:54 +0000302# find source path
pbrookad064842006-04-16 12:41:07 +0000303source_path=`dirname "$0"`
balrog59faef32008-02-03 04:22:24 +0000304source_path_used="no"
305workdir=`pwd`
pbrookad064842006-04-16 12:41:07 +0000306if [ -z "$source_path" ]; then
balrog59faef32008-02-03 04:22:24 +0000307 source_path=$workdir
pbrookad064842006-04-16 12:41:07 +0000308else
309 source_path=`cd "$source_path"; pwd`
bellard7d132992003-03-06 23:23:54 +0000310fi
pbrook724db112008-02-03 19:20:13 +0000311[ -f "$workdir/vl.c" ] || source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000312
bellard85aa5182007-11-11 20:17:03 +0000313werror="no"
bellard0d1e2392007-11-11 20:24:30 +0000314# generate compile errors on warnings for development builds
315#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
316#werror="yes";
317#fi
bellard85aa5182007-11-11 20:17:03 +0000318
bellard7d132992003-03-06 23:23:54 +0000319for opt do
pbrooka46e4032006-04-29 23:05:22 +0000320 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
bellard7d132992003-03-06 23:23:54 +0000321 case "$opt" in
bellard2efc3262005-12-18 19:14:49 +0000322 --help|-h) show_help=yes
323 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000324 --prefix=*) prefix="$optarg"
bellard7d132992003-03-06 23:23:54 +0000325 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000326 --interp-prefix=*) interp_prefix="$optarg"
bellard32ce6332003-04-11 00:16:16 +0000327 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000328 --source-path=*) source_path="$optarg"
pbrookad064842006-04-16 12:41:07 +0000329 source_path_used="yes"
bellard7d132992003-03-06 23:23:54 +0000330 ;;
aliguoriac0df512008-12-29 17:14:15 +0000331 --cross-prefix=*)
bellard7d132992003-03-06 23:23:54 +0000332 ;;
aliguoriac0df512008-12-29 17:14:15 +0000333 --cc=*)
bellard7d132992003-03-06 23:23:54 +0000334 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000335 --host-cc=*) host_cc="$optarg"
bellard83469012005-07-23 14:27:54 +0000336 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000337 --make=*) make="$optarg"
bellard7d132992003-03-06 23:23:54 +0000338 ;;
pbrook6a882642006-04-17 13:57:12 +0000339 --install=*) install="$optarg"
340 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000341 --extra-cflags=*) CFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000342 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000343 --extra-ldflags=*) LDFLAGS="$optarg"
bellard7d132992003-03-06 23:23:54 +0000344 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000345 --cpu=*) cpu="$optarg"
bellard7d132992003-03-06 23:23:54 +0000346 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000347 --target-list=*) target_list="$optarg"
bellardde83cd02003-06-15 20:25:43 +0000348 ;;
bellard7d132992003-03-06 23:23:54 +0000349 --enable-gprof) gprof="yes"
350 ;;
bellard43ce4df2003-06-09 19:53:12 +0000351 --static) static="yes"
352 ;;
bellard97a847b2003-08-10 21:36:04 +0000353 --disable-sdl) sdl="no"
354 ;;
pbrookb1a550a2006-04-16 13:28:56 +0000355 --fmod-lib=*) fmod_lib="$optarg"
bellard102a52e2004-11-14 19:57:29 +0000356 ;;
malcc2de5c92008-06-28 19:13:06 +0000357 --fmod-inc=*) fmod_inc="$optarg"
358 ;;
blueswir12f6a1ab2008-08-21 18:00:53 +0000359 --oss-lib=*) oss_lib="$optarg"
360 ;;
malc2fa7d3b2008-07-29 12:58:44 +0000361 --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
malc0c58ac12008-06-25 21:04:05 +0000362 ;;
363 --audio-drv-list=*) audio_drv_list="$optarg"
364 ;;
aliguori03b4fe72008-10-07 19:16:17 +0000365 --enable-sparse) sparse="yes"
366 ;;
367 --disable-sparse) sparse="no"
368 ;;
ths8d5d2d42007-08-25 01:37:51 +0000369 --disable-vnc-tls) vnc_tls="no"
370 ;;
bellard443f1372004-06-04 11:13:20 +0000371 --disable-slirp) slirp="no"
bellard1d14ffa2005-10-30 18:58:22 +0000372 ;;
aliguorie0e6c8c2008-07-23 18:14:33 +0000373 --disable-vde) vde="no"
ths8a16d272008-07-19 09:56:24 +0000374 ;;
bellardc9ec1fe2005-02-10 21:55:30 +0000375 --disable-kqemu) kqemu="no"
bellard1d14ffa2005-10-30 18:58:22 +0000376 ;;
aurel322e4d9fb2008-04-08 06:01:02 +0000377 --disable-brlapi) brlapi="no"
378 ;;
balrogfb599c92008-09-28 23:49:55 +0000379 --disable-bluez) bluez="no"
380 ;;
aliguori7ba1e612008-11-05 16:04:33 +0000381 --disable-kvm) kvm="no"
382 ;;
bellard05c2a3e2006-02-08 22:39:17 +0000383 --enable-profiler) profiler="yes"
384 ;;
malcc2de5c92008-06-28 19:13:06 +0000385 --enable-cocoa)
386 cocoa="yes" ;
387 sdl="no" ;
388 audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
bellard1d14ffa2005-10-30 18:58:22 +0000389 ;;
bellard97ccc682005-07-02 13:32:17 +0000390 --disable-gfx-check) check_gfx="no"
391 ;;
pbrookcad25d62006-03-19 16:31:11 +0000392 --disable-system) softmmu="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000393 ;;
pbrookcad25d62006-03-19 16:31:11 +0000394 --enable-system) softmmu="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000395 ;;
ths831b7822007-01-18 20:06:33 +0000396 --disable-linux-user) linux_user="no"
pbrook0a8e90f2006-03-19 14:54:16 +0000397 ;;
ths831b7822007-01-18 20:06:33 +0000398 --enable-linux-user) linux_user="yes"
399 ;;
400 --disable-darwin-user) darwin_user="no"
401 ;;
402 --enable-darwin-user) darwin_user="yes"
pbrook0a8e90f2006-03-19 14:54:16 +0000403 ;;
blueswir184778502008-10-26 20:33:16 +0000404 --disable-bsd-user) bsd_user="no"
405 ;;
406 --enable-bsd-user) bsd_user="yes"
407 ;;
pbrookc5937222006-05-14 11:30:38 +0000408 --enable-uname-release=*) uname_release="$optarg"
409 ;;
blueswir131422552007-04-16 18:27:06 +0000410 --sparc_cpu=*)
411 sparc_cpu="$optarg"
412 case $sparc_cpu in
413 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
414 target_cpu="sparc"; cpu="sparc" ;;
415 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
416 target_cpu="sparc"; cpu="sparc" ;;
417 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
418 target_cpu="sparc64"; cpu="sparc64" ;;
419 *) echo "undefined SPARC architecture. Exiting";exit 1;;
420 esac
421 ;;
bellard85aa5182007-11-11 20:17:03 +0000422 --enable-werror) werror="yes"
423 ;;
424 --disable-werror) werror="no"
425 ;;
balrog4d3b6f62008-02-10 16:33:14 +0000426 --disable-curses) curses="no"
427 ;;
pbrookbd0c5662008-05-29 14:34:11 +0000428 --disable-nptl) nptl="no"
429 ;;
malc8ff9cbf2008-06-23 18:33:30 +0000430 --enable-mixemu) mixemu="yes"
431 ;;
blueswir1414f0da2008-08-15 18:20:52 +0000432 --disable-aio) aio="no"
433 ;;
ths77755342008-11-27 15:45:16 +0000434 --disable-blobs) blobs="no"
435 ;;
aliguorieac30262008-11-05 16:28:56 +0000436 --kerneldir=*) kerneldir="$optarg"
437 ;;
balrog7f1559c2007-11-17 10:24:32 +0000438 *) echo "ERROR: unknown option $opt"; show_help="yes"
439 ;;
bellard7d132992003-03-06 23:23:54 +0000440 esac
441done
442
ths6f30fa82007-01-05 01:00:47 +0000443# default flags for all hosts
blueswir1ac41a622008-09-14 06:46:31 +0000444CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
blueswir1e0e36fe2008-12-07 19:16:27 +0000445CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
ths6f30fa82007-01-05 01:00:47 +0000446LDFLAGS="$LDFLAGS -g"
bellard85aa5182007-11-11 20:17:03 +0000447if test "$werror" = "yes" ; then
448CFLAGS="$CFLAGS -Werror"
449fi
ths6f30fa82007-01-05 01:00:47 +0000450
blueswir1d2c7c9b2008-11-01 14:50:20 +0000451if test "$solaris" = "no" ; then
452 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
453 LDFLAGS="$LDFLAGS -Wl,--warn-common"
454 fi
blueswir149237ac2008-09-17 19:05:19 +0000455fi
456
blueswir131422552007-04-16 18:27:06 +0000457#
458# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right
459# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
460#
bellard40293e52008-01-31 11:32:10 +0000461case "$cpu" in
blueswir131422552007-04-16 18:27:06 +0000462 sparc) if test -z "$sparc_cpu" ; then
463 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
464 ARCH_LDFLAGS="-m32"
465 else
466 ARCH_CFLAGS="${SP_CFLAGS}"
467 ARCH_LDFLAGS="${SP_LDFLAGS}"
468 fi
469 ;;
470 sparc64) if test -z "$sparc_cpu" ; then
471 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
472 ARCH_LDFLAGS="-m64"
473 else
474 ARCH_CFLAGS="${SP_CFLAGS}"
475 ARCH_LDFLAGS="${SP_LDFLAGS}"
476 fi
477 ;;
ths76d83bd2007-11-18 21:22:10 +0000478 s390)
479 ARCH_CFLAGS="-march=z900"
480 ;;
bellard40293e52008-01-31 11:32:10 +0000481 i386)
482 ARCH_CFLAGS="-m32"
483 ARCH_LDFLAGS="-m32"
484 ;;
485 x86_64)
486 ARCH_CFLAGS="-m64"
487 ARCH_LDFLAGS="-m64"
488 ;;
blueswir131422552007-04-16 18:27:06 +0000489esac
490
pbrookaf5db582006-04-08 14:26:41 +0000491if test x"$show_help" = x"yes" ; then
492cat << EOF
493
494Usage: configure [options]
495Options: [defaults in brackets after descriptions]
496
497EOF
498echo "Standard options:"
499echo " --help print this message"
500echo " --prefix=PREFIX install in PREFIX [$prefix]"
501echo " --interp-prefix=PREFIX where to find shared libraries, etc."
502echo " use %M for cpu name [$interp_prefix]"
503echo " --target-list=LIST set target list [$target_list]"
504echo ""
505echo "kqemu kernel acceleration support:"
506echo " --disable-kqemu disable kqemu support"
pbrookaf5db582006-04-08 14:26:41 +0000507echo ""
508echo "Advanced options (experts only):"
509echo " --source-path=PATH path of source code [$source_path]"
510echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
511echo " --cc=CC use C compiler CC [$cc]"
512echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
513echo " --make=MAKE use specified make [$make]"
pbrook6a882642006-04-17 13:57:12 +0000514echo " --install=INSTALL use specified install [$install]"
pbrookaf5db582006-04-08 14:26:41 +0000515echo " --static enable static build [$static]"
aliguori890b1652008-10-07 21:22:41 +0000516echo " --enable-sparse enable sparse checker"
517echo " --disable-sparse disable sparse checker (default)"
bellard85aa5182007-11-11 20:17:03 +0000518echo " --disable-werror disable compilation abort on warning"
balrogfe8f78e2007-10-31 01:03:28 +0000519echo " --disable-sdl disable SDL"
pbrookaf5db582006-04-08 14:26:41 +0000520echo " --enable-cocoa enable COCOA (Mac OS X only)"
malcc2de5c92008-06-28 19:13:06 +0000521echo " --audio-drv-list=LIST set audio drivers list:"
522echo " Available drivers: $audio_possible_drivers"
malc4c9b53e2009-01-09 10:46:34 +0000523echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]"
524echo " Available cards: $audio_possible_cards"
malc8ff9cbf2008-06-23 18:33:30 +0000525echo " --enable-mixemu enable mixer emulation"
aurel322e4d9fb2008-04-08 06:01:02 +0000526echo " --disable-brlapi disable BrlAPI"
ths8d5d2d42007-08-25 01:37:51 +0000527echo " --disable-vnc-tls disable TLS encryption for VNC server"
pbrookaf896aa2008-03-23 00:47:42 +0000528echo " --disable-curses disable curses output"
balrogfb599c92008-09-28 23:49:55 +0000529echo " --disable-bluez disable bluez stack connectivity"
aliguori7ba1e612008-11-05 16:04:33 +0000530echo " --disable-kvm disable KVM acceleration support"
pbrookbd0c5662008-05-29 14:34:11 +0000531echo " --disable-nptl disable usermode NPTL support"
pbrookaf5db582006-04-08 14:26:41 +0000532echo " --enable-system enable all system emulation targets"
533echo " --disable-system disable all system emulation targets"
ths831b7822007-01-18 20:06:33 +0000534echo " --enable-linux-user enable all linux usermode emulation targets"
535echo " --disable-linux-user disable all linux usermode emulation targets"
536echo " --enable-darwin-user enable all darwin usermode emulation targets"
537echo " --disable-darwin-user disable all darwin usermode emulation targets"
blueswir184778502008-10-26 20:33:16 +0000538echo " --enable-bsd-user enable all BSD usermode emulation targets"
539echo " --disable-bsd-user disable all BSD usermode emulation targets"
pbrookaf5db582006-04-08 14:26:41 +0000540echo " --fmod-lib path to FMOD library"
541echo " --fmod-inc path to FMOD includes"
blueswir12f6a1ab2008-08-21 18:00:53 +0000542echo " --oss-lib path to OSS library"
pbrookc5937222006-05-14 11:30:38 +0000543echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
blueswir131422552007-04-16 18:27:06 +0000544echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
aliguorie0e6c8c2008-07-23 18:14:33 +0000545echo " --disable-vde disable support for vde network"
blueswir1414f0da2008-08-15 18:20:52 +0000546echo " --disable-aio disable AIO support"
ths77755342008-11-27 15:45:16 +0000547echo " --disable-blobs disable installing provided firmware blobs"
aliguorieac30262008-11-05 16:28:56 +0000548echo " --kerneldir=PATH look for kernel includes in PATH"
pbrookaf5db582006-04-08 14:26:41 +0000549echo ""
ths5bf08932006-12-23 00:33:26 +0000550echo "NOTE: The object files are built at the place where configure is launched"
pbrookaf5db582006-04-08 14:26:41 +0000551exit 1
552fi
553
bellard67b915a2004-03-31 23:37:16 +0000554if test "$mingw32" = "yes" ; then
bellard5327cf42005-01-10 23:18:50 +0000555 linux="no"
bellard67b915a2004-03-31 23:37:16 +0000556 EXESUF=".exe"
bellard9f059ec2004-11-14 18:59:52 +0000557 oss="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000558 linux_user="no"
blueswir184778502008-10-26 20:33:16 +0000559 bsd_user="no"
aliguoricd01b4a2008-08-21 19:25:45 +0000560fi
561
aliguori03b4fe72008-10-07 19:16:17 +0000562if test ! -x "$(which cgcc 2>/dev/null)"; then
563 sparse="no"
564fi
565
bellardec530c82006-04-25 22:36:06 +0000566#
567# Solaris specific configure tool chain decisions
568#
569if test "$solaris" = "yes" ; then
bellardec530c82006-04-25 22:36:06 +0000570 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
571 if test -z "$solinst" ; then
572 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
573 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
574 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
575 exit 1
576 fi
577 if test "$solinst" = "/usr/sbin/install" ; then
578 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
579 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
580 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
581 exit 1
582 fi
bellardec530c82006-04-25 22:36:06 +0000583 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
584 if test -z "$sol_ar" ; then
585 echo "Error: No path includes ar"
586 if test -f /usr/ccs/bin/ar ; then
587 echo "Add /usr/ccs/bin to your path and rerun configure"
588 fi
589 exit 1
590 fi
ths5fafdf22007-09-16 21:08:06 +0000591fi
bellardec530c82006-04-25 22:36:06 +0000592
593
bellard5327cf42005-01-10 23:18:50 +0000594if test -z "$target_list" ; then
595# these targets are portable
pbrook0a8e90f2006-03-19 14:54:16 +0000596 if [ "$softmmu" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000597 target_list="\
598i386-softmmu \
599x86_64-softmmu \
600arm-softmmu \
601cris-softmmu \
602m68k-softmmu \
603mips-softmmu \
604mipsel-softmmu \
605mips64-softmmu \
606mips64el-softmmu \
607ppc-softmmu \
608ppcemb-softmmu \
609ppc64-softmmu \
610sh4-softmmu \
611sh4eb-softmmu \
612sparc-softmmu \
613"
pbrook0a8e90f2006-03-19 14:54:16 +0000614 fi
bellard5327cf42005-01-10 23:18:50 +0000615# the following are Linux specific
ths831b7822007-01-18 20:06:33 +0000616 if [ "$linux_user" = "yes" ] ; then
aurel322408a522008-04-20 20:19:44 +0000617 target_list="${target_list}\
618i386-linux-user \
619x86_64-linux-user \
620alpha-linux-user \
621arm-linux-user \
622armeb-linux-user \
623cris-linux-user \
624m68k-linux-user \
625mips-linux-user \
626mipsel-linux-user \
627ppc-linux-user \
628ppc64-linux-user \
629ppc64abi32-linux-user \
630sh4-linux-user \
631sh4eb-linux-user \
632sparc-linux-user \
633sparc64-linux-user \
634sparc32plus-linux-user \
635"
ths831b7822007-01-18 20:06:33 +0000636 fi
637# the following are Darwin specific
638 if [ "$darwin_user" = "yes" ] ; then
malc6cdc7372009-01-06 18:57:51 +0000639 target_list="$target_list i386-darwin-user ppc-darwin-user "
bellard5327cf42005-01-10 23:18:50 +0000640 fi
blueswir184778502008-10-26 20:33:16 +0000641# the following are BSD specific
642 if [ "$bsd_user" = "yes" ] ; then
643 target_list="${target_list}\
644sparc64-bsd-user \
645"
646 fi
bellard6e20a452005-06-05 15:56:02 +0000647else
pbrookb1a550a2006-04-16 13:28:56 +0000648 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
bellard5327cf42005-01-10 23:18:50 +0000649fi
pbrook0a8e90f2006-03-19 14:54:16 +0000650if test -z "$target_list" ; then
651 echo "No targets enabled"
652 exit 1
653fi
bellard5327cf42005-01-10 23:18:50 +0000654
bellard7d132992003-03-06 23:23:54 +0000655if test -z "$cross_prefix" ; then
656
657# ---
658# big/little endian test
659cat > $TMPC << EOF
660#include <inttypes.h>
661int main(int argc, char ** argv){
bellard1d14ffa2005-10-30 18:58:22 +0000662 volatile uint32_t i=0x01234567;
663 return (*((uint8_t*)(&i))) == 0x67;
bellard7d132992003-03-06 23:23:54 +0000664}
665EOF
666
aurel32178baee2008-12-08 18:11:57 +0000667if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
bellard7d132992003-03-06 23:23:54 +0000668$TMPE && bigendian="yes"
669else
670echo big/little test failed
671fi
672
673else
674
675# if cross compiling, cannot launch a program, so make a static guess
aurel320938cda2008-04-11 21:36:06 +0000676if test "$cpu" = "armv4b" \
aurel32f54b3f92008-04-12 20:14:54 +0000677 -o "$cpu" = "hppa" \
aurel320938cda2008-04-11 21:36:06 +0000678 -o "$cpu" = "m68k" \
679 -o "$cpu" = "mips" \
680 -o "$cpu" = "mips64" \
681 -o "$cpu" = "powerpc" \
682 -o "$cpu" = "s390" \
683 -o "$cpu" = "sparc" \
684 -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000685 bigendian="yes"
686fi
687
688fi
689
bellardb6853692005-06-05 17:10:39 +0000690# host long bits test
691hostlongbits="32"
aurel320938cda2008-04-11 21:36:06 +0000692if test "$cpu" = "x86_64" \
693 -o "$cpu" = "alpha" \
694 -o "$cpu" = "ia64" \
695 -o "$cpu" = "sparc64"; then
bellardb6853692005-06-05 17:10:39 +0000696 hostlongbits="64"
697fi
698
malc810260a2008-07-23 19:17:46 +0000699# ppc specific hostlongbits selection
700if test "$cpu" = "powerpc" ; then
malc9d56d2d2008-09-30 19:44:32 +0000701 if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then
702 grep -q __powerpc64__ $TMPI && hostlongbits=64
malc810260a2008-07-23 19:17:46 +0000703 else
704 echo hostlongbits test failed
malcba69a082008-07-24 17:51:36 +0000705 exit 1
malc810260a2008-07-23 19:17:46 +0000706 fi
707fi
708
bellarde8cd23d2003-06-25 16:08:13 +0000709# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000710cat > $TMPC <<EOF
711int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000712}
713EOF
714
pbrookbd0c5662008-05-29 14:34:11 +0000715# Check host NPTL support
716cat > $TMPC <<EOF
717#include <sched.h>
pbrook30813ce2008-06-02 15:45:44 +0000718#include <linux/futex.h>
pbrookbd0c5662008-05-29 14:34:11 +0000719void foo()
720{
721#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
722#error bork
723#endif
724}
725EOF
726
balrog8c7f7572008-12-15 03:15:36 +0000727if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
pbrookbd0c5662008-05-29 14:34:11 +0000728 :
729else
730 nptl="no"
731fi
732
bellard11d9f692004-04-02 20:55:59 +0000733##########################################
balrogac629222008-10-11 09:56:04 +0000734# zlib check
735
736cat > $TMPC << EOF
737#include <zlib.h>
738int main(void) { zlibVersion(); return 0; }
739EOF
balrog8c7f7572008-12-15 03:15:36 +0000740if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
balrogac629222008-10-11 09:56:04 +0000741 :
742else
743 echo
744 echo "Error: zlib check failed"
745 echo "Make sure to have the zlib libs and headers installed."
746 echo
747 exit 1
748fi
749
750##########################################
bellard11d9f692004-04-02 20:55:59 +0000751# SDL probe
752
753sdl_too_old=no
754
755if test -z "$sdl" ; then
ths069b0bd2007-07-12 00:27:15 +0000756 sdl_config="sdl-config"
757 sdl=no
758 sdl_static=no
bellard11d9f692004-04-02 20:55:59 +0000759
760cat > $TMPC << EOF
761#include <SDL.h>
762#undef main /* We don't want SDL to override our main() */
763int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
764EOF
balrog8c7f7572008-12-15 03:15:36 +0000765 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 +0000766 _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
767 if test "$_sdlversion" -lt 121 ; then
768 sdl_too_old=yes
769 else
770 if test "$cocoa" = "no" ; then
771 sdl=yes
772 fi
773 fi
774
775 # static link with sdl ?
776 if test "$sdl" = "yes" ; then
777 aa="no"
778 `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
779 sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
780 if [ "$aa" = "yes" ] ; then
781 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
ths069b0bd2007-07-12 00:27:15 +0000782 fi
bellard11d9f692004-04-02 20:55:59 +0000783
balrog8c7f7572008-12-15 03:15:36 +0000784 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 +0000785 sdl_static=yes
786 fi
787 fi # static link
788 fi # sdl compile test
bellard11d9f692004-04-02 20:55:59 +0000789else
ths069b0bd2007-07-12 00:27:15 +0000790 # Make sure to disable cocoa if sdl was set
791 if test "$sdl" = "yes" ; then
792 cocoa="no"
malcc2de5c92008-06-28 19:13:06 +0000793 audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
ths069b0bd2007-07-12 00:27:15 +0000794 fi
bellarda6e022a2004-04-02 21:55:47 +0000795fi # -z $sdl
bellard11d9f692004-04-02 20:55:59 +0000796
ths8f28f3f2007-01-05 21:25:54 +0000797##########################################
ths8d5d2d42007-08-25 01:37:51 +0000798# VNC TLS detection
799if test "$vnc_tls" = "yes" ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000800cat > $TMPC <<EOF
801#include <gnutls/gnutls.h>
802int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
803EOF
804 vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
805 vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
806 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000807 $vnc_tls_libs > /dev/null 2> /dev/null ; then
aliguoriae6b5e52008-08-06 16:55:50 +0000808 :
809 else
810 vnc_tls="no"
811 fi
ths8d5d2d42007-08-25 01:37:51 +0000812fi
813
814##########################################
ths8a16d272008-07-19 09:56:24 +0000815# vde libraries probe
816if test "$vde" = "yes" ; then
817 cat > $TMPC << EOF
818#include <libvdeplug.h>
pbrook4a7f0e02008-09-07 16:42:53 +0000819int main(void)
820{
821 struct vde_open_args a = {0, 0, 0};
822 vde_open("", "", &a);
823 return 0;
824}
ths8a16d272008-07-19 09:56:24 +0000825EOF
balrog8c7f7572008-12-15 03:15:36 +0000826 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
ths8a16d272008-07-19 09:56:24 +0000827 :
828 else
aliguorie0e6c8c2008-07-23 18:14:33 +0000829 vde="no"
ths8a16d272008-07-19 09:56:24 +0000830 fi
831fi
832
833##########################################
malcc2de5c92008-06-28 19:13:06 +0000834# Sound support libraries probe
ths8f28f3f2007-01-05 21:25:54 +0000835
malcc2de5c92008-06-28 19:13:06 +0000836audio_drv_probe()
837{
838 drv=$1
839 hdr=$2
840 lib=$3
841 exp=$4
842 cfl=$5
843 cat > $TMPC << EOF
844#include <$hdr>
845int main(void) { $exp }
ths8f28f3f2007-01-05 21:25:54 +0000846EOF
balrog8c7f7572008-12-15 03:15:36 +0000847 if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
malcc2de5c92008-06-28 19:13:06 +0000848 :
849 else
850 echo
851 echo "Error: $drv check failed"
852 echo "Make sure to have the $drv libs and headers installed."
853 echo
854 exit 1
855 fi
856}
857
malc2fa7d3b2008-07-29 12:58:44 +0000858audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
malcc2de5c92008-06-28 19:13:06 +0000859for drv in $audio_drv_list; do
860 case $drv in
861 alsa)
862 audio_drv_probe $drv alsa/asoundlib.h -lasound \
863 "snd_pcm_t **handle; return snd_pcm_close(*handle);"
864 ;;
865
866 fmod)
867 if test -z $fmod_lib || test -z $fmod_inc; then
868 echo
869 echo "Error: You must specify path to FMOD library and headers"
870 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
871 echo
872 exit 1
873 fi
874 audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
875 ;;
876
877 esd)
878 audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
879 ;;
malcb8e59f12008-07-02 21:03:08 +0000880
881 pa)
882 audio_drv_probe $drv pulse/simple.h -lpulse-simple \
883 "pa_simple *s = NULL; pa_simple_free(s); return 0;"
884 ;;
885
blueswir12f6a1ab2008-08-21 18:00:53 +0000886 oss|sdl|core|wav|dsound)
887 # XXX: Probes for CoreAudio, DirectSound, SDL(?)
888 ;;
889
malce4c63a62008-07-19 16:15:16 +0000890 *)
malc1c9b2a52008-07-19 16:57:30 +0000891 echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
malce4c63a62008-07-19 16:15:16 +0000892 echo
893 echo "Error: Unknown driver '$drv' selected"
894 echo "Possible drivers are: $audio_possible_drivers"
895 echo
896 exit 1
897 }
898 ;;
malcc2de5c92008-06-28 19:13:06 +0000899 esac
900done
ths8f28f3f2007-01-05 21:25:54 +0000901
balrog4d3b6f62008-02-10 16:33:14 +0000902##########################################
aurel322e4d9fb2008-04-08 06:01:02 +0000903# BrlAPI probe
904
905if test -z "$brlapi" ; then
906 brlapi=no
907cat > $TMPC << EOF
908#include <brlapi.h>
909int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
910EOF
aurel32178baee2008-12-08 18:11:57 +0000911 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
aurel322e4d9fb2008-04-08 06:01:02 +0000912 brlapi=yes
913 fi # brlapi compile test
914fi # -z $brlapi
915
916##########################################
balrog4d3b6f62008-02-10 16:33:14 +0000917# curses probe
918
919if test "$curses" = "yes" ; then
920 curses=no
921 cat > $TMPC << EOF
922#include <curses.h>
923int main(void) { return curses_version(); }
924EOF
aurel32178baee2008-12-08 18:11:57 +0000925 if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
balrog4d3b6f62008-02-10 16:33:14 +0000926 curses=yes
927 fi
928fi # test "$curses"
929
blueswir1414f0da2008-08-15 18:20:52 +0000930##########################################
balrogfb599c92008-09-28 23:49:55 +0000931# bluez support probe
932if test "$bluez" = "yes" ; then
933 `pkg-config bluez` || bluez="no"
934fi
935if test "$bluez" = "yes" ; then
balroge820e3f2008-09-30 02:27:44 +0000936 cat > $TMPC << EOF
937#include <bluetooth/bluetooth.h>
938int main(void) { return bt_error(0); }
939EOF
balrogfb599c92008-09-28 23:49:55 +0000940 bluez_cflags=`pkg-config --cflags bluez`
941 bluez_libs=`pkg-config --libs bluez`
balrog17e15922008-10-11 12:00:42 +0000942 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000943 $bluez_libs > /dev/null 2> /dev/null ; then
balroge820e3f2008-09-30 02:27:44 +0000944 :
945 else
946 bluez="no"
947 fi
balrogfb599c92008-09-28 23:49:55 +0000948fi
949
950##########################################
aliguori7ba1e612008-11-05 16:04:33 +0000951# kvm probe
952if test "$kvm" = "yes" ; then
953 cat > $TMPC <<EOF
954#include <linux/kvm.h>
955#if !defined(KVM_API_VERSION) || \
956 KVM_API_VERSION < 12 || \
957 KVM_API_VERSION > 12 || \
958 !defined(KVM_CAP_USER_MEMORY) || \
aliguorid85dc282008-12-09 19:59:09 +0000959 !defined(KVM_CAP_SET_TSS_ADDR) || \
960 !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
aliguori7ba1e612008-11-05 16:04:33 +0000961#error Invalid KVM version
962#endif
963int main(void) { return 0; }
964EOF
aliguorieac30262008-11-05 16:28:56 +0000965 if test "$kerneldir" != "" ; then
966 kvm_cflags=-I"$kerneldir"/include
aliguori8444eb62009-01-09 20:05:10 +0000967 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
968 -a -d "$kerneldir/arch/x86/include" ; then
969 kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
970 elif test -d "$kerneldir/arch/$cpu/include" ; then
971 kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
972 fi
aliguorieac30262008-11-05 16:28:56 +0000973 else
974 kvm_cflags=""
975 fi
aliguori7ba1e612008-11-05 16:04:33 +0000976 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
balrog8c7f7572008-12-15 03:15:36 +0000977 > /dev/null 2>/dev/null ; then
aliguori7ba1e612008-11-05 16:04:33 +0000978 :
979 else
980 kvm="no"
981 fi
982fi
983
984##########################################
blueswir1414f0da2008-08-15 18:20:52 +0000985# AIO probe
aliguori3c529d92008-12-12 16:41:40 +0000986AIOLIBS=""
987
blueswir1414f0da2008-08-15 18:20:52 +0000988if test "$aio" = "yes" ; then
989 aio=no
990 cat > $TMPC << EOF
aliguori3c529d92008-12-12 16:41:40 +0000991#include <pthread.h>
992int main(void) { pthread_mutex_t lock; return 0; }
blueswir1414f0da2008-08-15 18:20:52 +0000993EOF
994 if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
995 aio=yes
aliguori3c529d92008-12-12 16:41:40 +0000996 AIOLIBS="-lpthread"
blueswir1414f0da2008-08-15 18:20:52 +0000997 fi
998fi
999
aliguoribf9298b2008-12-05 20:05:26 +00001000##########################################
1001# iovec probe
1002cat > $TMPC <<EOF
blueswir1db34f0b2009-01-14 18:03:53 +00001003#include <sys/types.h>
aliguoribf9298b2008-12-05 20:05:26 +00001004#include <sys/uio.h>
blueswir1db34f0b2009-01-14 18:03:53 +00001005#include <unistd.h>
aliguoribf9298b2008-12-05 20:05:26 +00001006int main(void) { struct iovec iov; return 0; }
1007EOF
1008iovec=no
balrog8c7f7572008-12-15 03:15:36 +00001009if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguoribf9298b2008-12-05 20:05:26 +00001010 iovec=yes
1011fi
1012
aurel32f652e6a2008-12-16 10:43:48 +00001013##########################################
1014# fdt probe
1015if test "$fdt" = "yes" ; then
1016 fdt=no
1017 cat > $TMPC << EOF
1018int main(void) { return 0; }
1019EOF
1020 if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1021 fdt=yes
1022 fi
1023fi
1024
pbrookcc8ae6d2006-04-23 17:57:59 +00001025# Check if tools are available to build documentation.
ths6c591862007-05-09 13:55:03 +00001026if [ -x "`which texi2html 2>/dev/null`" ] && \
1027 [ -x "`which pod2man 2>/dev/null`" ]; then
pbrookcc8ae6d2006-04-23 17:57:59 +00001028 build_docs="yes"
1029fi
1030
aliguorida93a1f2008-12-12 20:02:52 +00001031##########################################
1032# Do we need librt
1033cat > $TMPC <<EOF
1034#include <signal.h>
1035#include <time.h>
1036int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1037EOF
1038
1039rt=no
balrog8c7f7572008-12-15 03:15:36 +00001040if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001041 :
balrog8c7f7572008-12-15 03:15:36 +00001042elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
aliguorida93a1f2008-12-12 20:02:52 +00001043 rt=yes
1044fi
1045
1046if test "$rt" = "yes" ; then
1047 # Hack, we should have a general purpose LIBS for this sort of thing
1048 AIOLIBS="$AIOLIBS -lrt"
1049fi
1050
bellard11d9f692004-04-02 20:55:59 +00001051if test "$mingw32" = "yes" ; then
pbrook308c3592007-02-27 00:52:01 +00001052 if test -z "$prefix" ; then
aliguori17e90972008-10-24 14:11:41 +00001053 prefix="c:\\\\Program Files\\\\Qemu"
pbrook308c3592007-02-27 00:52:01 +00001054 fi
1055 mansuffix=""
1056 datasuffix=""
1057 docsuffix=""
1058 binsuffix=""
bellard11d9f692004-04-02 20:55:59 +00001059else
pbrook308c3592007-02-27 00:52:01 +00001060 if test -z "$prefix" ; then
1061 prefix="/usr/local"
1062 fi
1063 mansuffix="/share/man"
1064 datasuffix="/share/qemu"
1065 docsuffix="/share/doc/qemu"
1066 binsuffix="/bin"
bellard11d9f692004-04-02 20:55:59 +00001067fi
bellard5a671352003-10-01 00:13:48 +00001068
bellard43ce4df2003-06-09 19:53:12 +00001069echo "Install prefix $prefix"
pbrook308c3592007-02-27 00:52:01 +00001070echo "BIOS directory $prefix$datasuffix"
1071echo "binary directory $prefix$binsuffix"
bellard11d9f692004-04-02 20:55:59 +00001072if test "$mingw32" = "no" ; then
pbrook308c3592007-02-27 00:52:01 +00001073echo "Manual directory $prefix$mansuffix"
bellard43ce4df2003-06-09 19:53:12 +00001074echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +00001075fi
bellard5a671352003-10-01 00:13:48 +00001076echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +00001077echo "C compiler $cc"
bellard83469012005-07-23 14:27:54 +00001078echo "Host C compiler $host_cc"
pbrookdb7287e2008-02-03 16:27:13 +00001079echo "ARCH_CFLAGS $ARCH_CFLAGS"
bellard43ce4df2003-06-09 19:53:12 +00001080echo "make $make"
pbrook6a882642006-04-17 13:57:12 +00001081echo "install $install"
bellard43ce4df2003-06-09 19:53:12 +00001082echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +00001083echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +00001084echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +00001085echo "gprof enabled $gprof"
aliguori03b4fe72008-10-07 19:16:17 +00001086echo "sparse enabled $sparse"
bellard05c2a3e2006-02-08 22:39:17 +00001087echo "profiler $profiler"
bellard43ce4df2003-06-09 19:53:12 +00001088echo "static build $static"
bellard85aa5182007-11-11 20:17:03 +00001089echo "-Werror enabled $werror"
bellard5b0753e2005-03-01 21:37:28 +00001090if test "$darwin" = "yes" ; then
1091 echo "Cocoa support $cocoa"
1092fi
bellard97a847b2003-08-10 21:36:04 +00001093echo "SDL support $sdl"
bellarde4afee92005-04-26 20:46:24 +00001094if test "$sdl" != "no" ; then
1095 echo "SDL static link $sdl_static"
1096fi
balrog4d3b6f62008-02-10 16:33:14 +00001097echo "curses support $curses"
bellard67b915a2004-03-31 23:37:16 +00001098echo "mingw32 support $mingw32"
malc0c58ac12008-06-25 21:04:05 +00001099echo "Audio drivers $audio_drv_list"
1100echo "Extra audio cards $audio_card_list"
malc8ff9cbf2008-06-23 18:33:30 +00001101echo "Mixer emulation $mixemu"
ths8d5d2d42007-08-25 01:37:51 +00001102echo "VNC TLS support $vnc_tls"
1103if test "$vnc_tls" = "yes" ; then
1104 echo " TLS CFLAGS $vnc_tls_cflags"
1105 echo " TLS LIBS $vnc_tls_libs"
1106fi
blueswir131422552007-04-16 18:27:06 +00001107if test -n "$sparc_cpu"; then
1108 echo "Target Sparc Arch $sparc_cpu"
1109fi
bellard07f4ddb2005-04-23 17:44:28 +00001110echo "kqemu support $kqemu"
aurel322e4d9fb2008-04-08 06:01:02 +00001111echo "brlapi support $brlapi"
pbrookcc8ae6d2006-04-23 17:57:59 +00001112echo "Documentation $build_docs"
pbrookc5937222006-05-14 11:30:38 +00001113[ ! -z "$uname_release" ] && \
1114echo "uname -r $uname_release"
pbrookbd0c5662008-05-29 14:34:11 +00001115echo "NPTL support $nptl"
ths8a16d272008-07-19 09:56:24 +00001116echo "vde support $vde"
blueswir1414f0da2008-08-15 18:20:52 +00001117echo "AIO support $aio"
ths77755342008-11-27 15:45:16 +00001118echo "Install blobs $blobs"
aliguori7ba1e612008-11-05 16:04:33 +00001119echo "KVM support $kvm"
aurel32f652e6a2008-12-16 10:43:48 +00001120echo "fdt support $fdt"
bellard67b915a2004-03-31 23:37:16 +00001121
bellard97a847b2003-08-10 21:36:04 +00001122if test $sdl_too_old = "yes"; then
bellard24b55b92005-03-01 22:30:41 +00001123echo "-> Your SDL version is too old - please upgrade to have SDL support"
bellarde8cd23d2003-06-25 16:08:13 +00001124fi
malcd4742de2008-11-29 22:04:31 +00001125if [ -s $TMPSDLLOG ]; then
ths20b40c62007-07-11 23:39:45 +00001126 echo "The error log from compiling the libSDL test is: "
malcd4742de2008-11-29 22:04:31 +00001127 cat $TMPSDLLOG
ths20b40c62007-07-11 23:39:45 +00001128fi
bellard24b55b92005-03-01 22:30:41 +00001129#if test "$sdl_static" = "no"; then
1130# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1131#fi
bellard97a847b2003-08-10 21:36:04 +00001132config_mak="config-host.mak"
1133config_h="config-host.h"
1134
bellard7c1f25b2004-04-22 00:02:08 +00001135#echo "Creating $config_mak and $config_h"
bellard97a847b2003-08-10 21:36:04 +00001136
ths15d9ca02007-07-31 23:07:32 +00001137test -f $config_h && mv $config_h ${config_h}~
1138
bellard97a847b2003-08-10 21:36:04 +00001139echo "# Automatically generated by configure - do not modify" > $config_mak
malcfc9902d2008-12-17 19:00:18 +00001140printf "# Configured with:" >> $config_mak
malcfd69fe22008-12-07 22:50:16 +00001141printf " '%s'" "$0" "$@" >> $config_mak
1142echo >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001143echo "/* Automatically generated by configure - do not modify */" > $config_h
1144
1145echo "prefix=$prefix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001146echo "bindir=\${prefix}$binsuffix" >> $config_mak
1147echo "mandir=\${prefix}$mansuffix" >> $config_mak
1148echo "datadir=\${prefix}$datasuffix" >> $config_mak
ths4ad5b062007-03-03 21:47:02 +00001149echo "docdir=\${prefix}$docsuffix" >> $config_mak
pbrook308c3592007-02-27 00:52:01 +00001150echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001151echo "MAKE=$make" >> $config_mak
pbrook6a882642006-04-17 13:57:12 +00001152echo "INSTALL=$install" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001153echo "CC=$cc" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001154echo "HOST_CC=$host_cc" >> $config_mak
1155echo "AR=$ar" >> $config_mak
1156echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
bellard40293e52008-01-31 11:32:10 +00001157# XXX: only use CFLAGS and LDFLAGS ?
1158# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1159# compilation of dyngen tool (useful for win32 build on Linux host)
ths6f30fa82007-01-05 01:00:47 +00001160echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
blueswir131422552007-04-16 18:27:06 +00001161echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1162echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1163echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +00001164echo "CFLAGS=$CFLAGS" >> $config_mak
1165echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +00001166echo "EXESUF=$EXESUF" >> $config_mak
ths70956b72007-03-17 15:00:37 +00001167echo "AIOLIBS=$AIOLIBS" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001168case "$cpu" in
1169 i386)
1170 echo "ARCH=i386" >> $config_mak
1171 echo "#define HOST_I386 1" >> $config_h
1172 ;;
1173 x86_64)
1174 echo "ARCH=x86_64" >> $config_mak
1175 echo "#define HOST_X86_64 1" >> $config_h
1176 ;;
1177 alpha)
1178 echo "ARCH=alpha" >> $config_mak
1179 echo "#define HOST_ALPHA 1" >> $config_h
1180 ;;
1181 armv4b)
1182 echo "ARCH=arm" >> $config_mak
1183 echo "#define HOST_ARM 1" >> $config_h
1184 ;;
1185 armv4l)
1186 echo "ARCH=arm" >> $config_mak
1187 echo "#define HOST_ARM 1" >> $config_h
1188 ;;
1189 cris)
1190 echo "ARCH=cris" >> $config_mak
1191 echo "#define HOST_CRIS 1" >> $config_h
1192 ;;
1193 hppa)
1194 echo "ARCH=hppa" >> $config_mak
1195 echo "#define HOST_HPPA 1" >> $config_h
1196 ;;
1197 ia64)
1198 echo "ARCH=ia64" >> $config_mak
1199 echo "#define HOST_IA64 1" >> $config_h
1200 ;;
1201 m68k)
1202 echo "ARCH=m68k" >> $config_mak
1203 echo "#define HOST_M68K 1" >> $config_h
1204 ;;
1205 mips)
1206 echo "ARCH=mips" >> $config_mak
1207 echo "#define HOST_MIPS 1" >> $config_h
1208 ;;
1209 mips64)
1210 echo "ARCH=mips64" >> $config_mak
1211 echo "#define HOST_MIPS64 1" >> $config_h
1212 ;;
1213 powerpc)
malc810260a2008-07-23 19:17:46 +00001214 if test "$hostlongbits" = "32"; then
1215 echo "ARCH=ppc" >> $config_mak
1216 echo "#define HOST_PPC 1" >> $config_h
1217 else
1218 echo "ARCH=ppc64" >> $config_mak
1219 echo "#define HOST_PPC64 1" >> $config_h
1220 fi
aurel322408a522008-04-20 20:19:44 +00001221 ;;
1222 s390)
1223 echo "ARCH=s390" >> $config_mak
1224 echo "#define HOST_S390 1" >> $config_h
1225 ;;
1226 sparc)
1227 echo "ARCH=sparc" >> $config_mak
1228 echo "#define HOST_SPARC 1" >> $config_h
1229 ;;
1230 sparc64)
1231 echo "ARCH=sparc64" >> $config_mak
1232 echo "#define HOST_SPARC64 1" >> $config_h
1233 ;;
1234 *)
1235 echo "Unsupported CPU = $cpu"
1236 exit 1
1237 ;;
1238esac
aliguori03b4fe72008-10-07 19:16:17 +00001239if test "$sparse" = "yes" ; then
1240 echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak
1241 echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak
1242 echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1243fi
bellard7d132992003-03-06 23:23:54 +00001244if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001245 echo "WORDS_BIGENDIAN=yes" >> $config_mak
1246 echo "#define WORDS_BIGENDIAN 1" >> $config_h
1247fi
bellardb6853692005-06-05 17:10:39 +00001248echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
bellard67b915a2004-03-31 23:37:16 +00001249if test "$mingw32" = "yes" ; then
1250 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +00001251 echo "#define CONFIG_WIN32 1" >> $config_h
pbrook210fa552007-02-27 21:04:49 +00001252else
1253 cat > $TMPC << EOF
1254#include <byteswap.h>
1255int main(void) { return bswap_32(0); }
1256EOF
aurel32178baee2008-12-08 18:11:57 +00001257 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
pbrook210fa552007-02-27 21:04:49 +00001258 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1259 fi
blueswir113606772008-12-05 17:54:09 +00001260 cat > $TMPC << EOF
1261#include <sys/endian.h>
1262#include <sys/types.h>
1263#include <machine/bswap.h>
1264int main(void) { return bswap32(0); }
1265EOF
aurel32178baee2008-12-08 18:11:57 +00001266 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
blueswir113606772008-12-05 17:54:09 +00001267 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1268 fi
bellard67b915a2004-03-31 23:37:16 +00001269fi
blueswir1128ab2f2008-08-15 18:33:42 +00001270
1271if [ "$openbsd" = "yes" ] ; then
1272 echo "#define ENOTSUP 4096" >> $config_h
1273fi
1274
bellard83fb7ad2004-07-05 21:25:26 +00001275if test "$darwin" = "yes" ; then
1276 echo "CONFIG_DARWIN=yes" >> $config_mak
1277 echo "#define CONFIG_DARWIN 1" >> $config_h
1278fi
malcb29fe3e2008-11-18 01:42:22 +00001279
1280if test "$aix" = "yes" ; then
1281 echo "CONFIG_AIX=yes" >> $config_mak
1282 echo "#define CONFIG_AIX 1" >> $config_h
1283fi
1284
bellardec530c82006-04-25 22:36:06 +00001285if test "$solaris" = "yes" ; then
1286 echo "CONFIG_SOLARIS=yes" >> $config_mak
bellard38cfa062006-05-01 13:58:07 +00001287 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ths0475a5c2007-04-01 18:54:44 +00001288 if test "$needs_libsunmath" = "yes" ; then
1289 echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1290 echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1291 fi
bellardec530c82006-04-25 22:36:06 +00001292fi
blueswir131422552007-04-16 18:27:06 +00001293if test -n "$sparc_cpu"; then
1294 echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1295 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1296fi
bellard67b915a2004-03-31 23:37:16 +00001297if test "$gdbstub" = "yes" ; then
1298 echo "CONFIG_GDBSTUB=yes" >> $config_mak
1299 echo "#define CONFIG_GDBSTUB 1" >> $config_h
1300fi
bellard97a847b2003-08-10 21:36:04 +00001301if test "$gprof" = "yes" ; then
1302 echo "TARGET_GPROF=yes" >> $config_mak
1303 echo "#define HAVE_GPROF 1" >> $config_h
1304fi
1305if test "$static" = "yes" ; then
1306 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +00001307 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001308fi
bellard05c2a3e2006-02-08 22:39:17 +00001309if test $profiler = "yes" ; then
1310 echo "#define CONFIG_PROFILER 1" >> $config_h
1311fi
bellardc20709a2004-04-21 23:27:19 +00001312if test "$slirp" = "yes" ; then
1313 echo "CONFIG_SLIRP=yes" >> $config_mak
1314 echo "#define CONFIG_SLIRP 1" >> $config_h
1315fi
ths8a16d272008-07-19 09:56:24 +00001316if test "$vde" = "yes" ; then
1317 echo "CONFIG_VDE=yes" >> $config_mak
1318 echo "#define CONFIG_VDE 1" >> $config_h
1319 echo "VDE_LIBS=-lvdeplug" >> $config_mak
1320fi
malc0c58ac12008-06-25 21:04:05 +00001321for card in $audio_card_list; do
pbrookf6e58892008-06-29 01:00:34 +00001322 def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001323 echo "$def=yes" >> $config_mak
1324 echo "#define $def 1" >> $config_h
1325done
1326echo "#define AUDIO_DRIVERS \\" >> $config_h
1327for drv in $audio_drv_list; do
1328 echo " &${drv}_audio_driver, \\" >>$config_h
pbrookf6e58892008-06-29 01:00:34 +00001329 def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
malc0c58ac12008-06-25 21:04:05 +00001330 echo "$def=yes" >> $config_mak
malc923e4522008-07-02 18:13:46 +00001331 if test "$drv" = "fmod"; then
malc0c58ac12008-06-25 21:04:05 +00001332 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1333 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
blueswir12f6a1ab2008-08-21 18:00:53 +00001334 elif test "$drv" = "oss"; then
1335 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
malc0c58ac12008-06-25 21:04:05 +00001336 fi
1337done
1338echo "" >>$config_h
malc8ff9cbf2008-06-23 18:33:30 +00001339if test "$mixemu" = "yes" ; then
1340 echo "CONFIG_MIXEMU=yes" >> $config_mak
1341 echo "#define CONFIG_MIXEMU 1" >> $config_h
1342fi
ths8d5d2d42007-08-25 01:37:51 +00001343if test "$vnc_tls" = "yes" ; then
1344 echo "CONFIG_VNC_TLS=yes" >> $config_mak
1345 echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1346 echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1347 echo "#define CONFIG_VNC_TLS 1" >> $config_h
1348fi
pbrookb1a550a2006-04-16 13:28:56 +00001349qemu_version=`head $source_path/VERSION`
1350echo "VERSION=$qemu_version" >>$config_mak
pbrookd4b8f032006-04-16 13:49:23 +00001351echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +00001352
1353echo "SRC_PATH=$source_path" >> $config_mak
pbrookad064842006-04-16 12:41:07 +00001354if [ "$source_path_used" = "yes" ]; then
1355 echo "VPATH=$source_path" >> $config_mak
1356fi
bellard97a847b2003-08-10 21:36:04 +00001357echo "TARGET_DIRS=$target_list" >> $config_mak
pbrookcc8ae6d2006-04-23 17:57:59 +00001358if [ "$build_docs" = "yes" ] ; then
1359 echo "BUILD_DOCS=yes" >> $config_mak
1360fi
bellard49ecc3f2007-11-07 19:25:15 +00001361if test "$static" = "yes"; then
1362 sdl1=$sdl_static
1363else
1364 sdl1=$sdl
1365fi
1366if test "$sdl1" = "yes" ; then
1367 echo "#define CONFIG_SDL 1" >> $config_h
1368 echo "CONFIG_SDL=yes" >> $config_mak
1369 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1370 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1371 else
1372 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1373 fi
1374 if [ "${aa}" = "yes" ] ; then
1375 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1376 else
1377 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1378 fi
1379fi
1380if test "$cocoa" = "yes" ; then
balrog4d3b6f62008-02-10 16:33:14 +00001381 echo "#define CONFIG_COCOA 1" >> $config_h
1382 echo "CONFIG_COCOA=yes" >> $config_mak
1383fi
1384if test "$curses" = "yes" ; then
1385 echo "#define CONFIG_CURSES 1" >> $config_h
1386 echo "CONFIG_CURSES=yes" >> $config_mak
1387 echo "CURSES_LIBS=-lcurses" >> $config_mak
bellard49ecc3f2007-11-07 19:25:15 +00001388fi
aurel322e4d9fb2008-04-08 06:01:02 +00001389if test "$brlapi" = "yes" ; then
1390 echo "CONFIG_BRLAPI=yes" >> $config_mak
1391 echo "#define CONFIG_BRLAPI 1" >> $config_h
1392 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1393fi
balrogfb599c92008-09-28 23:49:55 +00001394if test "$bluez" = "yes" ; then
1395 echo "CONFIG_BLUEZ=yes" >> $config_mak
1396 echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1397 echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1398 echo "#define CONFIG_BLUEZ 1" >> $config_h
1399fi
blueswir1414f0da2008-08-15 18:20:52 +00001400if test "$aio" = "yes" ; then
1401 echo "#define CONFIG_AIO 1" >> $config_h
aliguoria3392f92008-09-11 18:00:19 +00001402 echo "CONFIG_AIO=yes" >> $config_mak
blueswir1414f0da2008-08-15 18:20:52 +00001403fi
ths77755342008-11-27 15:45:16 +00001404if test "$blobs" = "yes" ; then
1405 echo "INSTALL_BLOBS=yes" >> $config_mak
1406fi
aliguoribf9298b2008-12-05 20:05:26 +00001407if test "$iovec" = "yes" ; then
1408 echo "#define HAVE_IOVEC 1" >> $config_h
1409fi
aurel32f652e6a2008-12-16 10:43:48 +00001410if test "$fdt" = "yes" ; then
1411 echo "#define HAVE_FDT 1" >> $config_h
1412 echo "FDT_LIBS=-lfdt" >> $config_mak
1413fi
bellard97a847b2003-08-10 21:36:04 +00001414
bellard83fb7ad2004-07-05 21:25:26 +00001415# XXX: suppress that
bellard7d3505c2004-05-12 19:32:15 +00001416if [ "$bsd" = "yes" ] ; then
bellard43003042004-05-20 13:23:39 +00001417 echo "#define O_LARGEFILE 0" >> $config_h
bellard43003042004-05-20 13:23:39 +00001418 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
bellard7d3505c2004-05-12 19:32:15 +00001419 echo "#define _BSD 1" >> $config_h
1420fi
1421
pbrookc5937222006-05-14 11:30:38 +00001422echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1423
blueswir168063642008-11-22 21:03:55 +00001424# USB host support
1425case "$usb" in
1426linux)
1427 echo "HOST_USB=linux" >> $config_mak
1428;;
1429bsd)
1430 echo "HOST_USB=bsd" >> $config_mak
1431;;
1432*)
1433 echo "HOST_USB=stub" >> $config_mak
1434;;
1435esac
1436
pbrookc39e3332007-09-22 16:49:14 +00001437tools=
1438if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1439 tools="qemu-img\$(EXESUF) $tools"
bellard7a5ca862008-05-27 21:13:40 +00001440 if [ "$linux" = "yes" ] ; then
1441 tools="qemu-nbd\$(EXESUF) $tools"
1442 fi
pbrookc39e3332007-09-22 16:49:14 +00001443fi
1444echo "TOOLS=$tools" >> $config_mak
1445
ths15d9ca02007-07-31 23:07:32 +00001446test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1447
bellard1d14ffa2005-10-30 18:58:22 +00001448for target in $target_list; do
bellard97a847b2003-08-10 21:36:04 +00001449target_dir="$target"
1450config_mak=$target_dir/config.mak
1451config_h=$target_dir/config.h
1452target_cpu=`echo $target | cut -d '-' -f 1`
1453target_bigendian="no"
bellard808c4952004-12-19 23:33:47 +00001454[ "$target_cpu" = "armeb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001455[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1456[ "$target_cpu" = "mips" ] && target_bigendian=yes
1457[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1458[ "$target_cpu" = "mips64" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +00001459[ "$target_cpu" = "ppc" ] && target_bigendian=yes
j_mayerd4082e92007-04-24 07:34:03 +00001460[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
j_mayer22f8a8b2007-10-14 08:38:29 +00001461[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
j_mayere85e7c62007-10-18 19:59:49 +00001462[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
pbrook908f52b2006-06-18 19:16:53 +00001463[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
aurel320938cda2008-04-11 21:36:06 +00001464[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1465[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1466[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +00001467target_softmmu="no"
bellard997344f2003-10-27 21:10:39 +00001468target_user_only="no"
ths831b7822007-01-18 20:06:33 +00001469target_linux_user="no"
ths831b7822007-01-18 20:06:33 +00001470target_darwin_user="no"
blueswir184778502008-10-26 20:33:16 +00001471target_bsd_user="no"
pbrook9e407a82007-05-26 16:38:53 +00001472case "$target" in
1473 ${target_cpu}-softmmu)
1474 target_softmmu="yes"
1475 ;;
1476 ${target_cpu}-linux-user)
1477 target_user_only="yes"
1478 target_linux_user="yes"
1479 ;;
1480 ${target_cpu}-darwin-user)
1481 target_user_only="yes"
1482 target_darwin_user="yes"
1483 ;;
blueswir184778502008-10-26 20:33:16 +00001484 ${target_cpu}-bsd-user)
1485 target_user_only="yes"
1486 target_bsd_user="yes"
1487 ;;
pbrook9e407a82007-05-26 16:38:53 +00001488 *)
1489 echo "ERROR: Target '$target' not recognised"
1490 exit 1
1491 ;;
1492esac
ths831b7822007-01-18 20:06:33 +00001493
bellard97ccc682005-07-02 13:32:17 +00001494if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
bellard1d14ffa2005-10-30 18:58:22 +00001495 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
bellard97ccc682005-07-02 13:32:17 +00001496 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
pbrook9c038502006-04-16 15:19:15 +00001497 echo "To build QEMU without graphical output configure with --disable-gfx-check"
balrog4d3b6f62008-02-10 16:33:14 +00001498 echo "Note that this will disable all output from the virtual graphics card"
1499 echo "except through VNC or curses."
bellard97ccc682005-07-02 13:32:17 +00001500 exit 1;
1501fi
1502
bellard7c1f25b2004-04-22 00:02:08 +00001503#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
bellard97a847b2003-08-10 21:36:04 +00001504
ths15d9ca02007-07-31 23:07:32 +00001505test -f $config_h && mv $config_h ${config_h}~
1506
bellard97a847b2003-08-10 21:36:04 +00001507mkdir -p $target_dir
bellard158142c2005-03-13 16:54:06 +00001508mkdir -p $target_dir/fpu
bellard57fec1f2008-02-01 10:50:11 +00001509mkdir -p $target_dir/tcg
blueswir184778502008-10-26 20:33:16 +00001510if 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 +00001511 mkdir -p $target_dir/nwfpe
1512fi
1513
bellardec530c82006-04-25 22:36:06 +00001514#
1515# don't use ln -sf as not all "ln -sf" over write the file/link
1516#
1517rm -f $target_dir/Makefile
1518ln -s $source_path/Makefile.target $target_dir/Makefile
1519
bellard97a847b2003-08-10 21:36:04 +00001520
1521echo "# Automatically generated by configure - do not modify" > $config_mak
1522echo "/* Automatically generated by configure - do not modify */" > $config_h
1523
1524
1525echo "include ../config-host.mak" >> $config_mak
1526echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +00001527
pbrooke5fe0c52006-06-11 13:32:59 +00001528bflt="no"
blueswir1cb33da52007-10-09 16:34:29 +00001529elfload32="no"
pbrookbd0c5662008-05-29 14:34:11 +00001530target_nptl="no"
bellard1e43adf2003-09-30 20:54:24 +00001531interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1532echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
pbrook56aebc82008-10-11 17:55:29 +00001533gdb_xml_files=""
bellard97a847b2003-08-10 21:36:04 +00001534
aliguori5985ece2008-11-05 19:59:25 +00001535# Make sure the target and host cpus are compatible
1536if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
aurel32d76d1652008-12-16 10:43:58 +00001537 \( "$target_cpu" = "ppcemb" -a "$cpu" = "powerpc" \) -o \
aliguori5985ece2008-11-05 19:59:25 +00001538 \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \
1539 \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then
aliguori7ba1e612008-11-05 16:04:33 +00001540 kvm="no"
1541fi
1542# Disable KVM for linux-user
1543if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1544 kvm="no"
1545fi
1546
aurel322408a522008-04-20 20:19:44 +00001547case "$target_cpu" in
1548 i386)
1549 echo "TARGET_ARCH=i386" >> $config_mak
1550 echo "#define TARGET_ARCH \"i386\"" >> $config_h
1551 echo "#define TARGET_I386 1" >> $config_h
bellardda260242008-05-30 20:48:25 +00001552 if test $kqemu = "yes" -a "$target_softmmu" = "yes"
aurel322408a522008-04-20 20:19:44 +00001553 then
1554 echo "#define USE_KQEMU 1" >> $config_h
1555 fi
aliguori7ba1e612008-11-05 16:04:33 +00001556 if test "$kvm" = "yes" ; then
1557 echo "CONFIG_KVM=yes" >> $config_mak
1558 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
aliguori5985ece2008-11-05 19:59:25 +00001559 echo "#define CONFIG_KVM 1" >> $config_h
aliguori7ba1e612008-11-05 16:04:33 +00001560 fi
aurel322408a522008-04-20 20:19:44 +00001561 ;;
1562 x86_64)
1563 echo "TARGET_ARCH=x86_64" >> $config_mak
1564 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1565 echo "#define TARGET_I386 1" >> $config_h
1566 echo "#define TARGET_X86_64 1" >> $config_h
1567 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1568 then
1569 echo "#define USE_KQEMU 1" >> $config_h
1570 fi
aliguori7ba1e612008-11-05 16:04:33 +00001571 if test "$kvm" = "yes" ; then
1572 echo "CONFIG_KVM=yes" >> $config_mak
1573 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1574 echo "#define CONFIG_KVM 1" >> $config_h
1575 fi
aurel322408a522008-04-20 20:19:44 +00001576 ;;
1577 alpha)
1578 echo "TARGET_ARCH=alpha" >> $config_mak
1579 echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1580 echo "#define TARGET_ALPHA 1" >> $config_h
1581 ;;
1582 arm|armeb)
1583 echo "TARGET_ARCH=arm" >> $config_mak
aurel322408a522008-04-20 20:19:44 +00001584 echo "#define TARGET_ARCH \"arm\"" >> $config_h
1585 echo "#define TARGET_ARM 1" >> $config_h
aurel322408a522008-04-20 20:19:44 +00001586 bflt="yes"
pbrookbd0c5662008-05-29 14:34:11 +00001587 target_nptl="yes"
pbrook56aebc82008-10-11 17:55:29 +00001588 gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
aurel322408a522008-04-20 20:19:44 +00001589 ;;
1590 cris)
1591 echo "TARGET_ARCH=cris" >> $config_mak
1592 echo "#define TARGET_ARCH \"cris\"" >> $config_h
1593 echo "#define TARGET_CRIS 1" >> $config_h
edgar_igl253bd7f2009-01-07 20:07:09 +00001594 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001595 ;;
1596 m68k)
1597 echo "TARGET_ARCH=m68k" >> $config_mak
1598 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1599 echo "#define TARGET_M68K 1" >> $config_h
1600 bflt="yes"
pbrook56aebc82008-10-11 17:55:29 +00001601 gdb_xml_files="cf-core.xml cf-fp.xml"
aurel322408a522008-04-20 20:19:44 +00001602 ;;
1603 mips|mipsel)
1604 echo "TARGET_ARCH=mips" >> $config_mak
1605 echo "#define TARGET_ARCH \"mips\"" >> $config_h
1606 echo "#define TARGET_MIPS 1" >> $config_h
1607 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1608 ;;
1609 mipsn32|mipsn32el)
1610 echo "TARGET_ARCH=mipsn32" >> $config_mak
1611 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1612 echo "#define TARGET_MIPS 1" >> $config_h
1613 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1614 ;;
1615 mips64|mips64el)
1616 echo "TARGET_ARCH=mips64" >> $config_mak
1617 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1618 echo "#define TARGET_MIPS 1" >> $config_h
1619 echo "#define TARGET_MIPS64 1" >> $config_h
1620 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1621 ;;
1622 ppc)
1623 echo "TARGET_ARCH=ppc" >> $config_mak
1624 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1625 echo "#define TARGET_PPC 1" >> $config_h
1626 ;;
1627 ppcemb)
1628 echo "TARGET_ARCH=ppcemb" >> $config_mak
1629 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1630 echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1631 echo "#define TARGET_PPC 1" >> $config_h
1632 echo "#define TARGET_PPCEMB 1" >> $config_h
aurel32d76d1652008-12-16 10:43:58 +00001633 if test "$kvm" = "yes" ; then
1634 echo "CONFIG_KVM=yes" >> $config_mak
1635 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1636 echo "#define CONFIG_KVM 1" >> $config_h
1637 fi
aurel322408a522008-04-20 20:19:44 +00001638 ;;
1639 ppc64)
1640 echo "TARGET_ARCH=ppc64" >> $config_mak
1641 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1642 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1643 echo "#define TARGET_PPC 1" >> $config_h
1644 echo "#define TARGET_PPC64 1" >> $config_h
1645 ;;
1646 ppc64abi32)
1647 echo "TARGET_ARCH=ppc64" >> $config_mak
1648 echo "TARGET_ABI_DIR=ppc" >> $config_mak
1649 echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1650 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1651 echo "#define TARGET_PPC 1" >> $config_h
1652 echo "#define TARGET_PPC64 1" >> $config_h
1653 echo "#define TARGET_ABI32 1" >> $config_h
1654 ;;
1655 sh4|sh4eb)
1656 echo "TARGET_ARCH=sh4" >> $config_mak
1657 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1658 echo "#define TARGET_SH4 1" >> $config_h
1659 bflt="yes"
aurel320b6d3ae2008-09-15 07:43:43 +00001660 target_nptl="yes"
aurel322408a522008-04-20 20:19:44 +00001661 ;;
1662 sparc)
1663 echo "TARGET_ARCH=sparc" >> $config_mak
1664 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1665 echo "#define TARGET_SPARC 1" >> $config_h
1666 ;;
1667 sparc64)
1668 echo "TARGET_ARCH=sparc64" >> $config_mak
1669 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1670 echo "#define TARGET_SPARC 1" >> $config_h
1671 echo "#define TARGET_SPARC64 1" >> $config_h
1672 elfload32="yes"
1673 ;;
1674 sparc32plus)
1675 echo "TARGET_ARCH=sparc64" >> $config_mak
1676 echo "TARGET_ABI_DIR=sparc" >> $config_mak
1677 echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1678 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1679 echo "#define TARGET_SPARC 1" >> $config_h
1680 echo "#define TARGET_SPARC64 1" >> $config_h
1681 echo "#define TARGET_ABI32 1" >> $config_h
1682 ;;
1683 *)
1684 echo "Unsupported target CPU"
1685 exit 1
1686 ;;
1687esac
bellardde83cd02003-06-15 20:25:43 +00001688if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +00001689 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1690 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1691fi
1692if test "$target_softmmu" = "yes" ; then
1693 echo "CONFIG_SOFTMMU=yes" >> $config_mak
1694 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +00001695fi
bellard997344f2003-10-27 21:10:39 +00001696if test "$target_user_only" = "yes" ; then
1697 echo "CONFIG_USER_ONLY=yes" >> $config_mak
1698 echo "#define CONFIG_USER_ONLY 1" >> $config_h
1699fi
ths831b7822007-01-18 20:06:33 +00001700if test "$target_linux_user" = "yes" ; then
1701 echo "CONFIG_LINUX_USER=yes" >> $config_mak
1702 echo "#define CONFIG_LINUX_USER 1" >> $config_h
1703fi
1704if test "$target_darwin_user" = "yes" ; then
1705 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1706 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1707fi
pbrook56aebc82008-10-11 17:55:29 +00001708list=""
1709if test ! -z "$gdb_xml_files" ; then
1710 for x in $gdb_xml_files; do
1711 list="$list $source_path/gdb-xml/$x"
1712 done
1713fi
1714echo "TARGET_XML_FILES=$list" >> $config_mak
bellardde83cd02003-06-15 20:25:43 +00001715
aurel320938cda2008-04-11 21:36:06 +00001716if test "$target_cpu" = "arm" \
1717 -o "$target_cpu" = "armeb" \
1718 -o "$target_cpu" = "m68k" \
1719 -o "$target_cpu" = "mips" \
1720 -o "$target_cpu" = "mipsel" \
1721 -o "$target_cpu" = "mipsn32" \
1722 -o "$target_cpu" = "mipsn32el" \
1723 -o "$target_cpu" = "mips64" \
1724 -o "$target_cpu" = "mips64el" \
aurel323147d1e2008-12-15 06:34:37 +00001725 -o "$target_cpu" = "ppc" \
1726 -o "$target_cpu" = "ppc64" \
aurel3271e991f2008-12-15 17:13:19 +00001727 -o "$target_cpu" = "ppc64abi32" \
1728 -o "$target_cpu" = "ppcemb" \
aurel320938cda2008-04-11 21:36:06 +00001729 -o "$target_cpu" = "sparc" \
1730 -o "$target_cpu" = "sparc64" \
1731 -o "$target_cpu" = "sparc32plus"; then
bellard158142c2005-03-13 16:54:06 +00001732 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1733 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1734fi
pbrooke5fe0c52006-06-11 13:32:59 +00001735if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1736 echo "TARGET_HAS_BFLT=yes" >> $config_mak
1737 echo "#define TARGET_HAS_BFLT 1" >> $config_h
1738fi
pbrookbd0c5662008-05-29 14:34:11 +00001739if test "$target_user_only" = "yes" \
1740 -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1741 echo "#define USE_NPTL 1" >> $config_h
1742fi
blueswir1cb33da52007-10-09 16:34:29 +00001743# 32 bit ELF loader in addition to native 64 bit loader?
1744if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1745 echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1746 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1747fi
blueswir184778502008-10-26 20:33:16 +00001748if test "$target_bsd_user" = "yes" ; then
1749 echo "CONFIG_BSD_USER=yes" >> $config_mak
1750 echo "#define CONFIG_BSD_USER 1" >> $config_h
1751fi
bellard5b0753e2005-03-01 21:37:28 +00001752
ths15d9ca02007-07-31 23:07:32 +00001753test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1754
bellard97a847b2003-08-10 21:36:04 +00001755done # for target in $targets
bellard7d132992003-03-06 23:23:54 +00001756
1757# build tree in object directory if source path is different from current one
1758if test "$source_path_used" = "yes" ; then
bellard49ecc3f2007-11-07 19:25:15 +00001759 DIRS="tests tests/cris slirp audio"
bellard7d132992003-03-06 23:23:54 +00001760 FILES="Makefile tests/Makefile"
thse7daa602007-10-08 13:38:27 +00001761 FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
edgar_igle1ffb0f2008-03-01 22:23:17 +00001762 FILES="$FILES tests/test-mmap.c"
bellard7d132992003-03-06 23:23:54 +00001763 for dir in $DIRS ; do
1764 mkdir -p $dir
1765 done
bellardec530c82006-04-25 22:36:06 +00001766 # remove the link and recreate it, as not all "ln -sf" overwrite the link
bellard7d132992003-03-06 23:23:54 +00001767 for f in $FILES ; do
bellardec530c82006-04-25 22:36:06 +00001768 rm -f $f
1769 ln -s $source_path/$f $f
bellard7d132992003-03-06 23:23:54 +00001770 done
1771fi