bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 4 | # |
| 5 | # set temporary file name |
| 6 | if test ! -z "$TMPDIR" ; then |
| 7 | TMPDIR1="${TMPDIR}" |
| 8 | elif test ! -z "$TEMPDIR" ; then |
| 9 | TMPDIR1="${TEMPDIR}" |
| 10 | else |
| 11 | TMPDIR1="/tmp" |
| 12 | fi |
| 13 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 14 | TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c" |
| 15 | TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o" |
| 16 | TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}" |
| 17 | TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S" |
malc | 9d56d2d | 2008-09-30 19:44:32 +0000 | [diff] [blame] | 18 | TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i" |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 19 | TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 20 | |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 21 | trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15 |
malc | 9ac81bb | 2008-11-29 20:09:56 +0000 | [diff] [blame] | 22 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 23 | # default parameters |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 24 | prefix="" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 25 | interp_prefix="/usr/gnemul/qemu-%M" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 26 | static="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 27 | cross_prefix="" |
| 28 | cc="gcc" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 29 | audio_drv_list="" |
| 30 | audio_card_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 31 | host_cc="gcc" |
| 32 | ar="ar" |
| 33 | make="make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 34 | install="install" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 35 | strip="strip" |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 36 | cpu=`test $(uname -s) = AIX && uname -p || uname -m` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 37 | target_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 38 | case "$cpu" in |
| 39 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 40 | cpu="i386" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 41 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 42 | x86_64|amd64) |
| 43 | cpu="x86_64" |
| 44 | ;; |
| 45 | alpha) |
| 46 | cpu="alpha" |
| 47 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 48 | armv*b) |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 49 | cpu="armv4b" |
| 50 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 51 | armv*l) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 52 | cpu="armv4l" |
| 53 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 54 | cris) |
| 55 | cpu="cris" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 56 | ;; |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 57 | parisc|parisc64) |
| 58 | cpu="hppa" |
| 59 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 60 | ia64) |
| 61 | cpu="ia64" |
| 62 | ;; |
| 63 | m68k) |
| 64 | cpu="m68k" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 65 | ;; |
| 66 | mips) |
| 67 | cpu="mips" |
| 68 | ;; |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 69 | mips64) |
| 70 | cpu="mips64" |
| 71 | ;; |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 72 | "Power Macintosh"|ppc|ppc64|powerpc) |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 73 | cpu="powerpc" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 74 | ;; |
ths | 0e7b8a9 | 2007-08-01 00:09:31 +0000 | [diff] [blame] | 75 | s390*) |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 76 | cpu="s390" |
| 77 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 78 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 79 | cpu="sparc" |
| 80 | ;; |
| 81 | sparc64) |
| 82 | cpu="sparc64" |
| 83 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 84 | *) |
| 85 | cpu="unknown" |
| 86 | ;; |
| 87 | esac |
| 88 | gprof="no" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 89 | sparse="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 90 | bigendian="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 91 | mingw32="no" |
| 92 | EXESUF="" |
| 93 | gdbstub="yes" |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 94 | slirp="yes" |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 95 | vde="yes" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 96 | fmod_lib="" |
| 97 | fmod_inc="" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 98 | oss_lib="" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 99 | vnc_tls="yes" |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 100 | bsd="no" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 101 | linux="no" |
blueswir1 | d2c7c9b | 2008-11-01 14:50:20 +0000 | [diff] [blame] | 102 | solaris="no" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 103 | kqemu="no" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 104 | profiler="no" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 105 | cocoa="no" |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 106 | check_gfx="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 107 | softmmu="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 108 | linux_user="no" |
| 109 | darwin_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 110 | bsd_user="no" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 111 | build_docs="no" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 112 | uname_release="" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 113 | curses="yes" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 114 | aio="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 115 | nptl="yes" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 116 | mixemu="no" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 117 | bluez="yes" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 118 | kvm="yes" |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 119 | kerneldir="" |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 120 | aix="no" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 121 | blobs="yes" |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame^] | 122 | fdt="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 123 | |
| 124 | # OS specific |
| 125 | targetos=`uname -s` |
| 126 | case $targetos in |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 127 | CYGWIN*) |
| 128 | mingw32="yes" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 129 | OS_CFLAGS="-mno-cygwin" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 130 | if [ "$cpu" = "i386" ] ; then |
| 131 | kqemu="yes" |
| 132 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 133 | audio_possible_drivers="sdl" |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 134 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 135 | MINGW32*) |
| 136 | mingw32="yes" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 137 | if [ "$cpu" = "i386" ] ; then |
| 138 | kqemu="yes" |
| 139 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 140 | audio_possible_drivers="dsound sdl fmod" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 141 | ;; |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 142 | GNU/kFreeBSD) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 143 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 144 | audio_possible_drivers="oss sdl esd pa" |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 145 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
| 146 | kqemu="yes" |
| 147 | fi |
| 148 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 149 | FreeBSD) |
| 150 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 151 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 152 | audio_possible_drivers="oss sdl esd pa" |
bellard | e99f906 | 2005-07-28 21:45:38 +0000 | [diff] [blame] | 153 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 154 | kqemu="yes" |
| 155 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 156 | ;; |
| 157 | NetBSD) |
| 158 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 159 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 160 | audio_possible_drivers="oss sdl esd" |
blueswir1 | 8ef92a8 | 2008-11-22 20:24:29 +0000 | [diff] [blame] | 161 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 162 | ;; |
| 163 | OpenBSD) |
| 164 | bsd="yes" |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 165 | openbsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 166 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 167 | audio_possible_drivers="oss sdl esd" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 168 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 169 | ;; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 170 | Darwin) |
| 171 | bsd="yes" |
| 172 | darwin="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 173 | darwin_user="yes" |
ths | fd67764 | 2007-01-31 12:10:07 +0000 | [diff] [blame] | 174 | cocoa="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 175 | audio_drv_list="coreaudio" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 176 | audio_possible_drivers="coreaudio sdl fmod" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 177 | OS_CFLAGS="-mdynamic-no-pic" |
ths | c2c59c3 | 2008-01-08 00:00:20 +0000 | [diff] [blame] | 178 | OS_LDFLAGS="-framework CoreFoundation -framework IOKit" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 179 | ;; |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 180 | SunOS) |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 181 | solaris="yes" |
| 182 | make="gmake" |
| 183 | install="ginstall" |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 184 | needs_libsunmath="no" |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 185 | solarisrev=`uname -r | cut -f2 -d.` |
ths | ef18c88 | 2007-09-16 22:12:39 +0000 | [diff] [blame] | 186 | # 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 |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 192 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 193 | 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 |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 205 | kqemu="yes" |
| 206 | fi |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 207 | fi |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 208 | if test -f /usr/include/sys/soundcard.h ; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 209 | audio_drv_list="oss" |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 210 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 211 | audio_possible_drivers="oss sdl" |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 212 | ;; |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 213 | AIX) |
| 214 | aix="yes" |
| 215 | make="gmake" |
| 216 | ;; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 217 | *) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 218 | audio_drv_list="oss" |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 219 | audio_possible_drivers="oss alsa sdl esd pa" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 220 | linux="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 221 | linux_user="yes" |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 222 | usb="linux" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 223 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 224 | kqemu="yes" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 225 | audio_possible_drivers="$audio_possible_drivers fmod" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 226 | fi |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 227 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 228 | esac |
| 229 | |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 230 | if [ "$bsd" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 231 | if [ "$darwin" != "yes" ] ; then |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 232 | make="gmake" |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 233 | usb="bsd" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 234 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 235 | bsd_user="yes" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 236 | fi |
| 237 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 238 | # find source path |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 239 | source_path=`dirname "$0"` |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 240 | source_path_used="no" |
| 241 | workdir=`pwd` |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 242 | if [ -z "$source_path" ]; then |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 243 | source_path=$workdir |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 244 | else |
| 245 | source_path=`cd "$source_path"; pwd` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 246 | fi |
pbrook | 724db11 | 2008-02-03 19:20:13 +0000 | [diff] [blame] | 247 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 248 | |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 249 | werror="no" |
bellard | 0d1e239 | 2007-11-11 20:24:30 +0000 | [diff] [blame] | 250 | # 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 |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 254 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 255 | for opt do |
pbrook | a46e403 | 2006-04-29 23:05:22 +0000 | [diff] [blame] | 256 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 257 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 258 | --help|-h) show_help=yes |
| 259 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 260 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 261 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 262 | --interp-prefix=*) interp_prefix="$optarg" |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 263 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 264 | --source-path=*) source_path="$optarg" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 265 | source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 266 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 267 | --cross-prefix=*) cross_prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 268 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 269 | --cc=*) cc="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 270 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 271 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 272 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 273 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 274 | ;; |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 275 | --install=*) install="$optarg" |
| 276 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 277 | --extra-cflags=*) CFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 278 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 279 | --extra-ldflags=*) LDFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 280 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 281 | --cpu=*) cpu="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 282 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 283 | --target-list=*) target_list="$optarg" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 284 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 285 | --enable-gprof) gprof="yes" |
| 286 | ;; |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 287 | --static) static="yes" |
| 288 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 289 | --disable-sdl) sdl="no" |
| 290 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 291 | --fmod-lib=*) fmod_lib="$optarg" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 292 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 293 | --fmod-inc=*) fmod_inc="$optarg" |
| 294 | ;; |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 295 | --oss-lib=*) oss_lib="$optarg" |
| 296 | ;; |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 297 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 298 | ;; |
| 299 | --audio-drv-list=*) audio_drv_list="$optarg" |
| 300 | ;; |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 301 | --enable-sparse) sparse="yes" |
| 302 | ;; |
| 303 | --disable-sparse) sparse="no" |
| 304 | ;; |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 305 | --disable-vnc-tls) vnc_tls="no" |
| 306 | ;; |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 307 | --disable-slirp) slirp="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 308 | ;; |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 309 | --disable-vde) vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 310 | ;; |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 311 | --disable-kqemu) kqemu="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 312 | ;; |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 313 | --disable-brlapi) brlapi="no" |
| 314 | ;; |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 315 | --disable-bluez) bluez="no" |
| 316 | ;; |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 317 | --disable-kvm) kvm="no" |
| 318 | ;; |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 319 | --enable-profiler) profiler="yes" |
| 320 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 321 | --enable-cocoa) |
| 322 | cocoa="yes" ; |
| 323 | sdl="no" ; |
| 324 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 325 | ;; |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 326 | --disable-gfx-check) check_gfx="no" |
| 327 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 328 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 329 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 330 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 331 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 332 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 333 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 334 | --enable-linux-user) linux_user="yes" |
| 335 | ;; |
| 336 | --disable-darwin-user) darwin_user="no" |
| 337 | ;; |
| 338 | --enable-darwin-user) darwin_user="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 339 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 340 | --disable-bsd-user) bsd_user="no" |
| 341 | ;; |
| 342 | --enable-bsd-user) bsd_user="yes" |
| 343 | ;; |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 344 | --enable-uname-release=*) uname_release="$optarg" |
| 345 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 346 | --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 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 358 | --enable-werror) werror="yes" |
| 359 | ;; |
| 360 | --disable-werror) werror="no" |
| 361 | ;; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 362 | --disable-curses) curses="no" |
| 363 | ;; |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 364 | --disable-nptl) nptl="no" |
| 365 | ;; |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 366 | --enable-mixemu) mixemu="yes" |
| 367 | ;; |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 368 | --disable-aio) aio="no" |
| 369 | ;; |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 370 | --disable-blobs) blobs="no" |
| 371 | ;; |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 372 | --kerneldir=*) kerneldir="$optarg" |
| 373 | ;; |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 374 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
| 375 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 376 | esac |
| 377 | done |
| 378 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 379 | # default flags for all hosts |
blueswir1 | ac41a62 | 2008-09-14 06:46:31 +0000 | [diff] [blame] | 380 | CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing" |
blueswir1 | e0e36fe | 2008-12-07 19:16:27 +0000 | [diff] [blame] | 381 | CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 382 | LDFLAGS="$LDFLAGS -g" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 383 | if test "$werror" = "yes" ; then |
| 384 | CFLAGS="$CFLAGS -Werror" |
| 385 | fi |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 386 | |
blueswir1 | d2c7c9b | 2008-11-01 14:50:20 +0000 | [diff] [blame] | 387 | if 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 |
blueswir1 | 49237ac | 2008-09-17 19:05:19 +0000 | [diff] [blame] | 391 | fi |
| 392 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 393 | # |
| 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 | # |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 397 | case "$cpu" in |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 398 | 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 | ;; |
ths | 76d83bd | 2007-11-18 21:22:10 +0000 | [diff] [blame] | 414 | s390) |
| 415 | ARCH_CFLAGS="-march=z900" |
| 416 | ;; |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 417 | i386) |
| 418 | ARCH_CFLAGS="-m32" |
| 419 | ARCH_LDFLAGS="-m32" |
| 420 | ;; |
| 421 | x86_64) |
| 422 | ARCH_CFLAGS="-m64" |
| 423 | ARCH_LDFLAGS="-m64" |
| 424 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 425 | esac |
| 426 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 427 | if test x"$show_help" = x"yes" ; then |
| 428 | cat << EOF |
| 429 | |
| 430 | Usage: configure [options] |
| 431 | Options: [defaults in brackets after descriptions] |
| 432 | |
| 433 | EOF |
| 434 | echo "Standard options:" |
| 435 | echo " --help print this message" |
| 436 | echo " --prefix=PREFIX install in PREFIX [$prefix]" |
| 437 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
| 438 | echo " use %M for cpu name [$interp_prefix]" |
| 439 | echo " --target-list=LIST set target list [$target_list]" |
| 440 | echo "" |
| 441 | echo "kqemu kernel acceleration support:" |
| 442 | echo " --disable-kqemu disable kqemu support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 443 | echo "" |
| 444 | echo "Advanced options (experts only):" |
| 445 | echo " --source-path=PATH path of source code [$source_path]" |
| 446 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" |
| 447 | echo " --cc=CC use C compiler CC [$cc]" |
| 448 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." |
| 449 | echo " --make=MAKE use specified make [$make]" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 450 | echo " --install=INSTALL use specified install [$install]" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 451 | echo " --static enable static build [$static]" |
aliguori | 890b165 | 2008-10-07 21:22:41 +0000 | [diff] [blame] | 452 | echo " --enable-sparse enable sparse checker" |
| 453 | echo " --disable-sparse disable sparse checker (default)" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 454 | echo " --disable-werror disable compilation abort on warning" |
balrog | fe8f78e | 2007-10-31 01:03:28 +0000 | [diff] [blame] | 455 | echo " --disable-sdl disable SDL" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 456 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 457 | echo " --audio-drv-list=LIST set audio drivers list:" |
| 458 | echo " Available drivers: $audio_possible_drivers" |
| 459 | echo " --audio-card-list=LIST set list of additional emulated audio cards" |
| 460 | echo " Available cards: ac97 adlib cs4231a gus" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 461 | echo " --enable-mixemu enable mixer emulation" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 462 | echo " --disable-brlapi disable BrlAPI" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 463 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
pbrook | af896aa | 2008-03-23 00:47:42 +0000 | [diff] [blame] | 464 | echo " --disable-curses disable curses output" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 465 | echo " --disable-bluez disable bluez stack connectivity" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 466 | echo " --disable-kvm disable KVM acceleration support" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 467 | echo " --disable-nptl disable usermode NPTL support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 468 | echo " --enable-system enable all system emulation targets" |
| 469 | echo " --disable-system disable all system emulation targets" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 470 | echo " --enable-linux-user enable all linux usermode emulation targets" |
| 471 | echo " --disable-linux-user disable all linux usermode emulation targets" |
| 472 | echo " --enable-darwin-user enable all darwin usermode emulation targets" |
| 473 | echo " --disable-darwin-user disable all darwin usermode emulation targets" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 474 | echo " --enable-bsd-user enable all BSD usermode emulation targets" |
| 475 | echo " --disable-bsd-user disable all BSD usermode emulation targets" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 476 | echo " --fmod-lib path to FMOD library" |
| 477 | echo " --fmod-inc path to FMOD includes" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 478 | echo " --oss-lib path to OSS library" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 479 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 480 | echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 481 | echo " --disable-vde disable support for vde network" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 482 | echo " --disable-aio disable AIO support" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 483 | echo " --disable-blobs disable installing provided firmware blobs" |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 484 | echo " --kerneldir=PATH look for kernel includes in PATH" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 485 | echo "" |
ths | 5bf0893 | 2006-12-23 00:33:26 +0000 | [diff] [blame] | 486 | echo "NOTE: The object files are built at the place where configure is launched" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 487 | exit 1 |
| 488 | fi |
| 489 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 490 | cc="${cross_prefix}${cc}" |
| 491 | ar="${cross_prefix}${ar}" |
| 492 | strip="${cross_prefix}${strip}" |
| 493 | |
pbrook | 064aae1 | 2006-05-08 00:51:44 +0000 | [diff] [blame] | 494 | # check that the C compiler works. |
| 495 | cat > $TMPC <<EOF |
| 496 | int main(void) {} |
| 497 | EOF |
| 498 | |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 499 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then |
pbrook | 064aae1 | 2006-05-08 00:51:44 +0000 | [diff] [blame] | 500 | : C compiler works ok |
| 501 | else |
| 502 | echo "ERROR: \"$cc\" either does not exist or does not work" |
| 503 | exit 1 |
bellard | a7350fa | 2006-04-23 14:35:23 +0000 | [diff] [blame] | 504 | fi |
| 505 | |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 506 | # check compiler to see if we're on mingw32 |
| 507 | cat > $TMPC <<EOF |
| 508 | #include <windows.h> |
| 509 | #ifndef _WIN32 |
| 510 | #error not windows |
| 511 | #endif |
| 512 | int main(void) {} |
| 513 | EOF |
| 514 | |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 515 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 516 | mingw32="yes" |
| 517 | fi |
| 518 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 519 | if test "$mingw32" = "yes" ; then |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 520 | linux="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 521 | EXESUF=".exe" |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 522 | oss="no" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 523 | linux_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 524 | bsd_user="no" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 525 | fi |
| 526 | |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 527 | if test ! -x "$(which cgcc 2>/dev/null)"; then |
| 528 | sparse="no" |
| 529 | fi |
| 530 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 531 | # |
| 532 | # Solaris specific configure tool chain decisions |
| 533 | # |
| 534 | if test "$solaris" = "yes" ; then |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 535 | 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 |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 548 | 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 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 556 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 557 | |
| 558 | |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 559 | if test -z "$target_list" ; then |
| 560 | # these targets are portable |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 561 | if [ "$softmmu" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 562 | target_list="\ |
| 563 | i386-softmmu \ |
| 564 | x86_64-softmmu \ |
| 565 | arm-softmmu \ |
| 566 | cris-softmmu \ |
| 567 | m68k-softmmu \ |
| 568 | mips-softmmu \ |
| 569 | mipsel-softmmu \ |
| 570 | mips64-softmmu \ |
| 571 | mips64el-softmmu \ |
| 572 | ppc-softmmu \ |
| 573 | ppcemb-softmmu \ |
| 574 | ppc64-softmmu \ |
| 575 | sh4-softmmu \ |
| 576 | sh4eb-softmmu \ |
| 577 | sparc-softmmu \ |
| 578 | " |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 579 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 580 | # the following are Linux specific |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 581 | if [ "$linux_user" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 582 | target_list="${target_list}\ |
| 583 | i386-linux-user \ |
| 584 | x86_64-linux-user \ |
| 585 | alpha-linux-user \ |
| 586 | arm-linux-user \ |
| 587 | armeb-linux-user \ |
| 588 | cris-linux-user \ |
| 589 | m68k-linux-user \ |
| 590 | mips-linux-user \ |
| 591 | mipsel-linux-user \ |
| 592 | ppc-linux-user \ |
| 593 | ppc64-linux-user \ |
| 594 | ppc64abi32-linux-user \ |
| 595 | sh4-linux-user \ |
| 596 | sh4eb-linux-user \ |
| 597 | sparc-linux-user \ |
| 598 | sparc64-linux-user \ |
| 599 | sparc32plus-linux-user \ |
| 600 | " |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 601 | fi |
| 602 | # the following are Darwin specific |
| 603 | if [ "$darwin_user" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 604 | target_list="$target_list i386-darwin-user ppc-darwin-user" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 605 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 606 | # the following are BSD specific |
| 607 | if [ "$bsd_user" = "yes" ] ; then |
| 608 | target_list="${target_list}\ |
| 609 | sparc64-bsd-user \ |
| 610 | " |
| 611 | fi |
bellard | 6e20a45 | 2005-06-05 15:56:02 +0000 | [diff] [blame] | 612 | else |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 613 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 614 | fi |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 615 | if test -z "$target_list" ; then |
| 616 | echo "No targets enabled" |
| 617 | exit 1 |
| 618 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 619 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 620 | if test -z "$cross_prefix" ; then |
| 621 | |
| 622 | # --- |
| 623 | # big/little endian test |
| 624 | cat > $TMPC << EOF |
| 625 | #include <inttypes.h> |
| 626 | int main(int argc, char ** argv){ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 627 | volatile uint32_t i=0x01234567; |
| 628 | return (*((uint8_t*)(&i))) == 0x67; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 629 | } |
| 630 | EOF |
| 631 | |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 632 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 633 | $TMPE && bigendian="yes" |
| 634 | else |
| 635 | echo big/little test failed |
| 636 | fi |
| 637 | |
| 638 | else |
| 639 | |
| 640 | # if cross compiling, cannot launch a program, so make a static guess |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 641 | if test "$cpu" = "armv4b" \ |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 642 | -o "$cpu" = "hppa" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 643 | -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 |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 650 | bigendian="yes" |
| 651 | fi |
| 652 | |
| 653 | fi |
| 654 | |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 655 | # host long bits test |
| 656 | hostlongbits="32" |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 657 | if test "$cpu" = "x86_64" \ |
| 658 | -o "$cpu" = "alpha" \ |
| 659 | -o "$cpu" = "ia64" \ |
| 660 | -o "$cpu" = "sparc64"; then |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 661 | hostlongbits="64" |
| 662 | fi |
| 663 | |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 664 | # ppc specific hostlongbits selection |
| 665 | if test "$cpu" = "powerpc" ; then |
malc | 9d56d2d | 2008-09-30 19:44:32 +0000 | [diff] [blame] | 666 | if $cc $ARCH_CFLAGS -dM -E - -o $TMPI 2>/dev/null </dev/null; then |
| 667 | grep -q __powerpc64__ $TMPI && hostlongbits=64 |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 668 | else |
| 669 | echo hostlongbits test failed |
malc | ba69a08 | 2008-07-24 17:51:36 +0000 | [diff] [blame] | 670 | exit 1 |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 671 | fi |
| 672 | fi |
| 673 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 674 | # check gcc options support |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 675 | cat > $TMPC <<EOF |
| 676 | int main(void) { |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 677 | } |
| 678 | EOF |
| 679 | |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 680 | # Check host NPTL support |
| 681 | cat > $TMPC <<EOF |
| 682 | #include <sched.h> |
pbrook | 30813ce | 2008-06-02 15:45:44 +0000 | [diff] [blame] | 683 | #include <linux/futex.h> |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 684 | void foo() |
| 685 | { |
| 686 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
| 687 | #error bork |
| 688 | #endif |
| 689 | } |
| 690 | EOF |
| 691 | |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 692 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 693 | : |
| 694 | else |
| 695 | nptl="no" |
| 696 | fi |
| 697 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 698 | ########################################## |
balrog | ac62922 | 2008-10-11 09:56:04 +0000 | [diff] [blame] | 699 | # zlib check |
| 700 | |
| 701 | cat > $TMPC << EOF |
| 702 | #include <zlib.h> |
| 703 | int main(void) { zlibVersion(); return 0; } |
| 704 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 705 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then |
balrog | ac62922 | 2008-10-11 09:56:04 +0000 | [diff] [blame] | 706 | : |
| 707 | else |
| 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 |
| 713 | fi |
| 714 | |
| 715 | ########################################## |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 716 | # SDL probe |
| 717 | |
| 718 | sdl_too_old=no |
| 719 | |
| 720 | if test -z "$sdl" ; then |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 721 | sdl_config="sdl-config" |
| 722 | sdl=no |
| 723 | sdl_static=no |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 724 | |
| 725 | cat > $TMPC << EOF |
| 726 | #include <SDL.h> |
| 727 | #undef main /* We don't want SDL to override our main() */ |
| 728 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
| 729 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 730 | 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 |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 731 | _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`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 747 | fi |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 748 | |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 749 | if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 750 | sdl_static=yes |
| 751 | fi |
| 752 | fi # static link |
| 753 | fi # sdl compile test |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 754 | else |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 755 | # Make sure to disable cocoa if sdl was set |
| 756 | if test "$sdl" = "yes" ; then |
| 757 | cocoa="no" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 758 | audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 759 | fi |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 760 | fi # -z $sdl |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 761 | |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 762 | ########################################## |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 763 | # VNC TLS detection |
| 764 | if test "$vnc_tls" = "yes" ; then |
aliguori | ae6b5e5 | 2008-08-06 16:55:50 +0000 | [diff] [blame] | 765 | cat > $TMPC <<EOF |
| 766 | #include <gnutls/gnutls.h> |
| 767 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } |
| 768 | EOF |
| 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 \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 772 | $vnc_tls_libs > /dev/null 2> /dev/null ; then |
aliguori | ae6b5e5 | 2008-08-06 16:55:50 +0000 | [diff] [blame] | 773 | : |
| 774 | else |
| 775 | vnc_tls="no" |
| 776 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 777 | fi |
| 778 | |
| 779 | ########################################## |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 780 | # vde libraries probe |
| 781 | if test "$vde" = "yes" ; then |
| 782 | cat > $TMPC << EOF |
| 783 | #include <libvdeplug.h> |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 784 | int main(void) |
| 785 | { |
| 786 | struct vde_open_args a = {0, 0, 0}; |
| 787 | vde_open("", "", &a); |
| 788 | return 0; |
| 789 | } |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 790 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 791 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 792 | : |
| 793 | else |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 794 | vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 795 | fi |
| 796 | fi |
| 797 | |
| 798 | ########################################## |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 799 | # Sound support libraries probe |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 800 | |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 801 | audio_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> |
| 810 | int main(void) { $exp } |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 811 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 812 | if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 813 | : |
| 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 | |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 823 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 824 | for 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 | ;; |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 845 | |
| 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 | |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 851 | oss|sdl|core|wav|dsound) |
| 852 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
| 853 | ;; |
| 854 | |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 855 | *) |
malc | 1c9b2a5 | 2008-07-19 16:57:30 +0000 | [diff] [blame] | 856 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 857 | echo |
| 858 | echo "Error: Unknown driver '$drv' selected" |
| 859 | echo "Possible drivers are: $audio_possible_drivers" |
| 860 | echo |
| 861 | exit 1 |
| 862 | } |
| 863 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 864 | esac |
| 865 | done |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 866 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 867 | ########################################## |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 868 | # BrlAPI probe |
| 869 | |
| 870 | if test -z "$brlapi" ; then |
| 871 | brlapi=no |
| 872 | cat > $TMPC << EOF |
| 873 | #include <brlapi.h> |
| 874 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } |
| 875 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 876 | if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 877 | brlapi=yes |
| 878 | fi # brlapi compile test |
| 879 | fi # -z $brlapi |
| 880 | |
| 881 | ########################################## |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 882 | # curses probe |
| 883 | |
| 884 | if test "$curses" = "yes" ; then |
| 885 | curses=no |
| 886 | cat > $TMPC << EOF |
| 887 | #include <curses.h> |
| 888 | int main(void) { return curses_version(); } |
| 889 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 890 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 891 | curses=yes |
| 892 | fi |
| 893 | fi # test "$curses" |
| 894 | |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 895 | ########################################## |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 896 | # bluez support probe |
| 897 | if test "$bluez" = "yes" ; then |
| 898 | `pkg-config bluez` || bluez="no" |
| 899 | fi |
| 900 | if test "$bluez" = "yes" ; then |
balrog | e820e3f | 2008-09-30 02:27:44 +0000 | [diff] [blame] | 901 | cat > $TMPC << EOF |
| 902 | #include <bluetooth/bluetooth.h> |
| 903 | int main(void) { return bt_error(0); } |
| 904 | EOF |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 905 | bluez_cflags=`pkg-config --cflags bluez` |
| 906 | bluez_libs=`pkg-config --libs bluez` |
balrog | 17e1592 | 2008-10-11 12:00:42 +0000 | [diff] [blame] | 907 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 908 | $bluez_libs > /dev/null 2> /dev/null ; then |
balrog | e820e3f | 2008-09-30 02:27:44 +0000 | [diff] [blame] | 909 | : |
| 910 | else |
| 911 | bluez="no" |
| 912 | fi |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 913 | fi |
| 914 | |
| 915 | ########################################## |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 916 | # kvm probe |
| 917 | if 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) || \ |
aliguori | d85dc28 | 2008-12-09 19:59:09 +0000 | [diff] [blame] | 924 | !defined(KVM_CAP_SET_TSS_ADDR) || \ |
| 925 | !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 926 | #error Invalid KVM version |
| 927 | #endif |
| 928 | int main(void) { return 0; } |
| 929 | EOF |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 930 | if test "$kerneldir" != "" ; then |
| 931 | kvm_cflags=-I"$kerneldir"/include |
| 932 | else |
| 933 | kvm_cflags="" |
| 934 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 935 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 936 | > /dev/null 2>/dev/null ; then |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 937 | : |
| 938 | else |
| 939 | kvm="no" |
| 940 | fi |
| 941 | fi |
| 942 | |
| 943 | ########################################## |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 944 | # AIO probe |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 945 | AIOLIBS="" |
| 946 | |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 947 | if test "$aio" = "yes" ; then |
| 948 | aio=no |
| 949 | cat > $TMPC << EOF |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 950 | #include <pthread.h> |
| 951 | int main(void) { pthread_mutex_t lock; return 0; } |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 952 | EOF |
| 953 | if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then |
| 954 | aio=yes |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 955 | AIOLIBS="-lpthread" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 956 | fi |
| 957 | fi |
| 958 | |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 959 | ########################################## |
| 960 | # iovec probe |
| 961 | cat > $TMPC <<EOF |
| 962 | #include <sys/uio.h> |
| 963 | int main(void) { struct iovec iov; return 0; } |
| 964 | EOF |
| 965 | iovec=no |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 966 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 967 | iovec=yes |
| 968 | fi |
| 969 | |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame^] | 970 | ########################################## |
| 971 | # fdt probe |
| 972 | if test "$fdt" = "yes" ; then |
| 973 | fdt=no |
| 974 | cat > $TMPC << EOF |
| 975 | int main(void) { return 0; } |
| 976 | EOF |
| 977 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then |
| 978 | fdt=yes |
| 979 | fi |
| 980 | fi |
| 981 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 982 | # Check if tools are available to build documentation. |
ths | 6c59186 | 2007-05-09 13:55:03 +0000 | [diff] [blame] | 983 | if [ -x "`which texi2html 2>/dev/null`" ] && \ |
| 984 | [ -x "`which pod2man 2>/dev/null`" ]; then |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 985 | build_docs="yes" |
| 986 | fi |
| 987 | |
aliguori | da93a1f | 2008-12-12 20:02:52 +0000 | [diff] [blame] | 988 | ########################################## |
| 989 | # Do we need librt |
| 990 | cat > $TMPC <<EOF |
| 991 | #include <signal.h> |
| 992 | #include <time.h> |
| 993 | int main(void) { clockid_t id; return clock_gettime(id, NULL); } |
| 994 | EOF |
| 995 | |
| 996 | rt=no |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 997 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
aliguori | da93a1f | 2008-12-12 20:02:52 +0000 | [diff] [blame] | 998 | : |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 999 | elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then |
aliguori | da93a1f | 2008-12-12 20:02:52 +0000 | [diff] [blame] | 1000 | rt=yes |
| 1001 | fi |
| 1002 | |
| 1003 | if test "$rt" = "yes" ; then |
| 1004 | # Hack, we should have a general purpose LIBS for this sort of thing |
| 1005 | AIOLIBS="$AIOLIBS -lrt" |
| 1006 | fi |
| 1007 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1008 | if test "$mingw32" = "yes" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1009 | if test -z "$prefix" ; then |
aliguori | 17e9097 | 2008-10-24 14:11:41 +0000 | [diff] [blame] | 1010 | prefix="c:\\\\Program Files\\\\Qemu" |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1011 | fi |
| 1012 | mansuffix="" |
| 1013 | datasuffix="" |
| 1014 | docsuffix="" |
| 1015 | binsuffix="" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1016 | else |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1017 | 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" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1024 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 1025 | |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1026 | echo "Install prefix $prefix" |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1027 | echo "BIOS directory $prefix$datasuffix" |
| 1028 | echo "binary directory $prefix$binsuffix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1029 | if test "$mingw32" = "no" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1030 | echo "Manual directory $prefix$mansuffix" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1031 | echo "ELF interp prefix $interp_prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1032 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 1033 | echo "Source path $source_path" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1034 | echo "C compiler $cc" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 1035 | echo "Host C compiler $host_cc" |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 1036 | echo "ARCH_CFLAGS $ARCH_CFLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1037 | echo "make $make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 1038 | echo "install $install" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1039 | echo "host CPU $cpu" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1040 | echo "host big endian $bigendian" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1041 | echo "target list $target_list" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1042 | echo "gprof enabled $gprof" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1043 | echo "sparse enabled $sparse" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1044 | echo "profiler $profiler" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1045 | echo "static build $static" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 1046 | echo "-Werror enabled $werror" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 1047 | if test "$darwin" = "yes" ; then |
| 1048 | echo "Cocoa support $cocoa" |
| 1049 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1050 | echo "SDL support $sdl" |
bellard | e4afee9 | 2005-04-26 20:46:24 +0000 | [diff] [blame] | 1051 | if test "$sdl" != "no" ; then |
| 1052 | echo "SDL static link $sdl_static" |
| 1053 | fi |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1054 | echo "curses support $curses" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1055 | echo "mingw32 support $mingw32" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1056 | echo "Audio drivers $audio_drv_list" |
| 1057 | echo "Extra audio cards $audio_card_list" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1058 | echo "Mixer emulation $mixemu" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1059 | echo "VNC TLS support $vnc_tls" |
| 1060 | if test "$vnc_tls" = "yes" ; then |
| 1061 | echo " TLS CFLAGS $vnc_tls_cflags" |
| 1062 | echo " TLS LIBS $vnc_tls_libs" |
| 1063 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1064 | if test -n "$sparc_cpu"; then |
| 1065 | echo "Target Sparc Arch $sparc_cpu" |
| 1066 | fi |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 1067 | echo "kqemu support $kqemu" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1068 | echo "brlapi support $brlapi" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1069 | echo "Documentation $build_docs" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1070 | [ ! -z "$uname_release" ] && \ |
| 1071 | echo "uname -r $uname_release" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1072 | echo "NPTL support $nptl" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1073 | echo "vde support $vde" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1074 | echo "AIO support $aio" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 1075 | echo "Install blobs $blobs" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1076 | echo "KVM support $kvm" |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame^] | 1077 | echo "fdt support $fdt" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1078 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1079 | if test $sdl_too_old = "yes"; then |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1080 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 1081 | fi |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 1082 | if [ -s $TMPSDLLOG ]; then |
ths | 20b40c6 | 2007-07-11 23:39:45 +0000 | [diff] [blame] | 1083 | echo "The error log from compiling the libSDL test is: " |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 1084 | cat $TMPSDLLOG |
ths | 20b40c6 | 2007-07-11 23:39:45 +0000 | [diff] [blame] | 1085 | fi |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1086 | #if test "$sdl_static" = "no"; then |
| 1087 | # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" |
| 1088 | #fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1089 | config_mak="config-host.mak" |
| 1090 | config_h="config-host.h" |
| 1091 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1092 | #echo "Creating $config_mak and $config_h" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1093 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1094 | test -f $config_h && mv $config_h ${config_h}~ |
| 1095 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1096 | echo "# Automatically generated by configure - do not modify" > $config_mak |
malc | fd69fe2 | 2008-12-07 22:50:16 +0000 | [diff] [blame] | 1097 | echo -n "# Configured with:" >> $config_mak |
| 1098 | printf " '%s'" "$0" "$@" >> $config_mak |
| 1099 | echo >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1100 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1101 | |
| 1102 | echo "prefix=$prefix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1103 | echo "bindir=\${prefix}$binsuffix" >> $config_mak |
| 1104 | echo "mandir=\${prefix}$mansuffix" >> $config_mak |
| 1105 | echo "datadir=\${prefix}$datasuffix" >> $config_mak |
ths | 4ad5b06 | 2007-03-03 21:47:02 +0000 | [diff] [blame] | 1106 | echo "docdir=\${prefix}$docsuffix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1107 | echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1108 | echo "MAKE=$make" >> $config_mak |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 1109 | echo "INSTALL=$install" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1110 | echo "CC=$cc" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1111 | echo "HOST_CC=$host_cc" >> $config_mak |
| 1112 | echo "AR=$ar" >> $config_mak |
| 1113 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1114 | # 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) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 1117 | echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1118 | echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak |
| 1119 | echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak |
| 1120 | echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1121 | echo "CFLAGS=$CFLAGS" >> $config_mak |
| 1122 | echo "LDFLAGS=$LDFLAGS" >> $config_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1123 | echo "EXESUF=$EXESUF" >> $config_mak |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 1124 | echo "AIOLIBS=$AIOLIBS" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1125 | case "$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) |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 1171 | 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 |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1178 | ;; |
| 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 | ;; |
| 1195 | esac |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1196 | if 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 |
| 1200 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1201 | if test "$bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1202 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
| 1203 | echo "#define WORDS_BIGENDIAN 1" >> $config_h |
| 1204 | fi |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 1205 | echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1206 | if test "$mingw32" = "yes" ; then |
| 1207 | echo "CONFIG_WIN32=yes" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1208 | echo "#define CONFIG_WIN32 1" >> $config_h |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1209 | else |
| 1210 | cat > $TMPC << EOF |
| 1211 | #include <byteswap.h> |
| 1212 | int main(void) { return bswap_32(0); } |
| 1213 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1214 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1215 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
| 1216 | fi |
blueswir1 | 1360677 | 2008-12-05 17:54:09 +0000 | [diff] [blame] | 1217 | cat > $TMPC << EOF |
| 1218 | #include <sys/endian.h> |
| 1219 | #include <sys/types.h> |
| 1220 | #include <machine/bswap.h> |
| 1221 | int main(void) { return bswap32(0); } |
| 1222 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1223 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then |
blueswir1 | 1360677 | 2008-12-05 17:54:09 +0000 | [diff] [blame] | 1224 | echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h |
| 1225 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1226 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 1227 | |
| 1228 | if [ "$openbsd" = "yes" ] ; then |
| 1229 | echo "#define ENOTSUP 4096" >> $config_h |
| 1230 | fi |
| 1231 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1232 | if test "$darwin" = "yes" ; then |
| 1233 | echo "CONFIG_DARWIN=yes" >> $config_mak |
| 1234 | echo "#define CONFIG_DARWIN 1" >> $config_h |
| 1235 | fi |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 1236 | |
| 1237 | if test "$aix" = "yes" ; then |
| 1238 | echo "CONFIG_AIX=yes" >> $config_mak |
| 1239 | echo "#define CONFIG_AIX 1" >> $config_h |
| 1240 | fi |
| 1241 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1242 | if test "$solaris" = "yes" ; then |
| 1243 | echo "CONFIG_SOLARIS=yes" >> $config_mak |
bellard | 38cfa06 | 2006-05-01 13:58:07 +0000 | [diff] [blame] | 1244 | echo "#define HOST_SOLARIS $solarisrev" >> $config_h |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 1245 | if test "$needs_libsunmath" = "yes" ; then |
| 1246 | echo "NEEDS_LIBSUNMATH=yes" >> $config_mak |
| 1247 | echo "#define NEEDS_LIBSUNMATH 1" >> $config_h |
| 1248 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1249 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1250 | if test -n "$sparc_cpu"; then |
| 1251 | echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak |
| 1252 | echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h |
| 1253 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1254 | if test "$gdbstub" = "yes" ; then |
| 1255 | echo "CONFIG_GDBSTUB=yes" >> $config_mak |
| 1256 | echo "#define CONFIG_GDBSTUB 1" >> $config_h |
| 1257 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1258 | if test "$gprof" = "yes" ; then |
| 1259 | echo "TARGET_GPROF=yes" >> $config_mak |
| 1260 | echo "#define HAVE_GPROF 1" >> $config_h |
| 1261 | fi |
| 1262 | if test "$static" = "yes" ; then |
| 1263 | echo "CONFIG_STATIC=yes" >> $config_mak |
bellard | 5086347 | 2003-10-28 23:04:01 +0000 | [diff] [blame] | 1264 | echo "#define CONFIG_STATIC 1" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1265 | fi |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1266 | if test $profiler = "yes" ; then |
| 1267 | echo "#define CONFIG_PROFILER 1" >> $config_h |
| 1268 | fi |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame] | 1269 | if test "$slirp" = "yes" ; then |
| 1270 | echo "CONFIG_SLIRP=yes" >> $config_mak |
| 1271 | echo "#define CONFIG_SLIRP 1" >> $config_h |
| 1272 | fi |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1273 | if 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 |
| 1277 | fi |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1278 | for card in $audio_card_list; do |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1279 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1280 | echo "$def=yes" >> $config_mak |
| 1281 | echo "#define $def 1" >> $config_h |
| 1282 | done |
| 1283 | echo "#define AUDIO_DRIVERS \\" >> $config_h |
| 1284 | for drv in $audio_drv_list; do |
| 1285 | echo " &${drv}_audio_driver, \\" >>$config_h |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1286 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1287 | echo "$def=yes" >> $config_mak |
malc | 923e452 | 2008-07-02 18:13:46 +0000 | [diff] [blame] | 1288 | if test "$drv" = "fmod"; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1289 | echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak |
| 1290 | echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 1291 | elif test "$drv" = "oss"; then |
| 1292 | echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1293 | fi |
| 1294 | done |
| 1295 | echo "" >>$config_h |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1296 | if test "$mixemu" = "yes" ; then |
| 1297 | echo "CONFIG_MIXEMU=yes" >> $config_mak |
| 1298 | echo "#define CONFIG_MIXEMU 1" >> $config_h |
| 1299 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1300 | if 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 |
| 1305 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 1306 | qemu_version=`head $source_path/VERSION` |
| 1307 | echo "VERSION=$qemu_version" >>$config_mak |
pbrook | d4b8f03 | 2006-04-16 13:49:23 +0000 | [diff] [blame] | 1308 | echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1309 | |
| 1310 | echo "SRC_PATH=$source_path" >> $config_mak |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 1311 | if [ "$source_path_used" = "yes" ]; then |
| 1312 | echo "VPATH=$source_path" >> $config_mak |
| 1313 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1314 | echo "TARGET_DIRS=$target_list" >> $config_mak |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1315 | if [ "$build_docs" = "yes" ] ; then |
| 1316 | echo "BUILD_DOCS=yes" >> $config_mak |
| 1317 | fi |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1318 | if test "$static" = "yes"; then |
| 1319 | sdl1=$sdl_static |
| 1320 | else |
| 1321 | sdl1=$sdl |
| 1322 | fi |
| 1323 | if 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 |
| 1336 | fi |
| 1337 | if test "$cocoa" = "yes" ; then |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1338 | echo "#define CONFIG_COCOA 1" >> $config_h |
| 1339 | echo "CONFIG_COCOA=yes" >> $config_mak |
| 1340 | fi |
| 1341 | if 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 |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1345 | fi |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1346 | if 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 |
| 1350 | fi |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 1351 | if 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 |
| 1356 | fi |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1357 | if test "$aio" = "yes" ; then |
| 1358 | echo "#define CONFIG_AIO 1" >> $config_h |
aliguori | a3392f9 | 2008-09-11 18:00:19 +0000 | [diff] [blame] | 1359 | echo "CONFIG_AIO=yes" >> $config_mak |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1360 | fi |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 1361 | if test "$blobs" = "yes" ; then |
| 1362 | echo "INSTALL_BLOBS=yes" >> $config_mak |
| 1363 | fi |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1364 | if test "$iovec" = "yes" ; then |
| 1365 | echo "#define HAVE_IOVEC 1" >> $config_h |
| 1366 | fi |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame^] | 1367 | if test "$fdt" = "yes" ; then |
| 1368 | echo "#define HAVE_FDT 1" >> $config_h |
| 1369 | echo "FDT_LIBS=-lfdt" >> $config_mak |
| 1370 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1371 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1372 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1373 | if [ "$bsd" = "yes" ] ; then |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1374 | echo "#define O_LARGEFILE 0" >> $config_h |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1375 | echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1376 | echo "#define _BSD 1" >> $config_h |
| 1377 | fi |
| 1378 | |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1379 | echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h |
| 1380 | |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 1381 | # USB host support |
| 1382 | case "$usb" in |
| 1383 | linux) |
| 1384 | echo "HOST_USB=linux" >> $config_mak |
| 1385 | ;; |
| 1386 | bsd) |
| 1387 | echo "HOST_USB=bsd" >> $config_mak |
| 1388 | ;; |
| 1389 | *) |
| 1390 | echo "HOST_USB=stub" >> $config_mak |
| 1391 | ;; |
| 1392 | esac |
| 1393 | |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1394 | tools= |
| 1395 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then |
| 1396 | tools="qemu-img\$(EXESUF) $tools" |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 1397 | if [ "$linux" = "yes" ] ; then |
| 1398 | tools="qemu-nbd\$(EXESUF) $tools" |
| 1399 | fi |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1400 | fi |
| 1401 | echo "TOOLS=$tools" >> $config_mak |
| 1402 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1403 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1404 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1405 | for target in $target_list; do |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1406 | target_dir="$target" |
| 1407 | config_mak=$target_dir/config.mak |
| 1408 | config_h=$target_dir/config.h |
| 1409 | target_cpu=`echo $target | cut -d '-' -f 1` |
| 1410 | target_bigendian="no" |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 1411 | [ "$target_cpu" = "armeb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1412 | [ "$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 |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1416 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 1417 | [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes |
j_mayer | 22f8a8b | 2007-10-14 08:38:29 +0000 | [diff] [blame] | 1418 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 1419 | [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes |
pbrook | 908f52b | 2006-06-18 19:16:53 +0000 | [diff] [blame] | 1420 | [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1421 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
| 1422 | [ "$target_cpu" = "sparc64" ] && target_bigendian=yes |
| 1423 | [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1424 | target_softmmu="no" |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1425 | target_user_only="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1426 | target_linux_user="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1427 | target_darwin_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1428 | target_bsd_user="no" |
pbrook | 9e407a8 | 2007-05-26 16:38:53 +0000 | [diff] [blame] | 1429 | case "$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 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1441 | ${target_cpu}-bsd-user) |
| 1442 | target_user_only="yes" |
| 1443 | target_bsd_user="yes" |
| 1444 | ;; |
pbrook | 9e407a8 | 2007-05-26 16:38:53 +0000 | [diff] [blame] | 1445 | *) |
| 1446 | echo "ERROR: Target '$target' not recognised" |
| 1447 | exit 1 |
| 1448 | ;; |
| 1449 | esac |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1450 | |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1451 | if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1452 | -a "$sdl" = "no" -a "$cocoa" = "no" ; then |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1453 | echo "ERROR: QEMU requires SDL or Cocoa for graphical output" |
pbrook | 9c03850 | 2006-04-16 15:19:15 +0000 | [diff] [blame] | 1454 | echo "To build QEMU without graphical output configure with --disable-gfx-check" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1455 | echo "Note that this will disable all output from the virtual graphics card" |
| 1456 | echo "except through VNC or curses." |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1457 | exit 1; |
| 1458 | fi |
| 1459 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1460 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1461 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1462 | test -f $config_h && mv $config_h ${config_h}~ |
| 1463 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1464 | mkdir -p $target_dir |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1465 | mkdir -p $target_dir/fpu |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1466 | mkdir -p $target_dir/tcg |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1467 | if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then |
bellard | 69de927 | 2004-02-16 21:40:43 +0000 | [diff] [blame] | 1468 | mkdir -p $target_dir/nwfpe |
| 1469 | fi |
| 1470 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1471 | # |
| 1472 | # don't use ln -sf as not all "ln -sf" over write the file/link |
| 1473 | # |
| 1474 | rm -f $target_dir/Makefile |
| 1475 | ln -s $source_path/Makefile.target $target_dir/Makefile |
| 1476 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1477 | |
| 1478 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 1479 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1480 | |
| 1481 | |
| 1482 | echo "include ../config-host.mak" >> $config_mak |
| 1483 | echo "#include \"../config-host.h\"" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1484 | |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1485 | bflt="no" |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1486 | elfload32="no" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1487 | target_nptl="no" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1488 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
| 1489 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1490 | gdb_xml_files="" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1491 | |
aliguori | 5985ece | 2008-11-05 19:59:25 +0000 | [diff] [blame] | 1492 | # Make sure the target and host cpus are compatible |
| 1493 | if 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 |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1496 | kvm="no" |
| 1497 | fi |
| 1498 | # Disable KVM for linux-user |
| 1499 | if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then |
| 1500 | kvm="no" |
| 1501 | fi |
| 1502 | |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1503 | case "$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 |
bellard | da26024 | 2008-05-30 20:48:25 +0000 | [diff] [blame] | 1508 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1509 | then |
| 1510 | echo "#define USE_KQEMU 1" >> $config_h |
| 1511 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1512 | if test "$kvm" = "yes" ; then |
| 1513 | echo "CONFIG_KVM=yes" >> $config_mak |
| 1514 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak |
aliguori | 5985ece | 2008-11-05 19:59:25 +0000 | [diff] [blame] | 1515 | echo "#define CONFIG_KVM 1" >> $config_h |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1516 | fi |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1517 | ;; |
| 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 |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1527 | 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 |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1532 | ;; |
| 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 |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1540 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
| 1541 | echo "#define TARGET_ARM 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1542 | bflt="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1543 | target_nptl="yes" |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1544 | gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1545 | ;; |
| 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 |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1550 | ;; |
| 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" |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1556 | gdb_xml_files="cf-core.xml cf-fp.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1557 | ;; |
| 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" |
aurel32 | 0b6d3ae | 2008-09-15 07:43:43 +0000 | [diff] [blame] | 1610 | target_nptl="yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1611 | ;; |
| 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 | ;; |
| 1637 | esac |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1638 | if test "$target_bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1639 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
| 1640 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h |
| 1641 | fi |
| 1642 | if test "$target_softmmu" = "yes" ; then |
| 1643 | echo "CONFIG_SOFTMMU=yes" >> $config_mak |
| 1644 | echo "#define CONFIG_SOFTMMU 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1645 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1646 | if test "$target_user_only" = "yes" ; then |
| 1647 | echo "CONFIG_USER_ONLY=yes" >> $config_mak |
| 1648 | echo "#define CONFIG_USER_ONLY 1" >> $config_h |
| 1649 | fi |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1650 | if test "$target_linux_user" = "yes" ; then |
| 1651 | echo "CONFIG_LINUX_USER=yes" >> $config_mak |
| 1652 | echo "#define CONFIG_LINUX_USER 1" >> $config_h |
| 1653 | fi |
| 1654 | if test "$target_darwin_user" = "yes" ; then |
| 1655 | echo "CONFIG_DARWIN_USER=yes" >> $config_mak |
| 1656 | echo "#define CONFIG_DARWIN_USER 1" >> $config_h |
| 1657 | fi |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1658 | list="" |
| 1659 | if test ! -z "$gdb_xml_files" ; then |
| 1660 | for x in $gdb_xml_files; do |
| 1661 | list="$list $source_path/gdb-xml/$x" |
| 1662 | done |
| 1663 | fi |
| 1664 | echo "TARGET_XML_FILES=$list" >> $config_mak |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1665 | |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1666 | if 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" \ |
aurel32 | 3147d1e | 2008-12-15 06:34:37 +0000 | [diff] [blame] | 1675 | -o "$target_cpu" = "ppc" \ |
| 1676 | -o "$target_cpu" = "ppc64" \ |
aurel32 | 71e991f | 2008-12-15 17:13:19 +0000 | [diff] [blame] | 1677 | -o "$target_cpu" = "ppc64abi32" \ |
| 1678 | -o "$target_cpu" = "ppcemb" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1679 | -o "$target_cpu" = "sparc" \ |
| 1680 | -o "$target_cpu" = "sparc64" \ |
| 1681 | -o "$target_cpu" = "sparc32plus"; then |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1682 | echo "CONFIG_SOFTFLOAT=yes" >> $config_mak |
| 1683 | echo "#define CONFIG_SOFTFLOAT 1" >> $config_h |
| 1684 | fi |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1685 | if 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 |
| 1688 | fi |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1689 | if test "$target_user_only" = "yes" \ |
| 1690 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then |
| 1691 | echo "#define USE_NPTL 1" >> $config_h |
| 1692 | fi |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1693 | # 32 bit ELF loader in addition to native 64 bit loader? |
| 1694 | if 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 |
| 1697 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1698 | if test "$target_bsd_user" = "yes" ; then |
| 1699 | echo "CONFIG_BSD_USER=yes" >> $config_mak |
| 1700 | echo "#define CONFIG_BSD_USER 1" >> $config_h |
| 1701 | fi |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 1702 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1703 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1704 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1705 | done # for target in $targets |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1706 | |
| 1707 | # build tree in object directory if source path is different from current one |
| 1708 | if test "$source_path_used" = "yes" ; then |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1709 | DIRS="tests tests/cris slirp audio" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1710 | FILES="Makefile tests/Makefile" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 1711 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
edgar_igl | e1ffb0f | 2008-03-01 22:23:17 +0000 | [diff] [blame] | 1712 | FILES="$FILES tests/test-mmap.c" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1713 | for dir in $DIRS ; do |
| 1714 | mkdir -p $dir |
| 1715 | done |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1716 | # remove the link and recreate it, as not all "ln -sf" overwrite the link |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1717 | for f in $FILES ; do |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1718 | rm -f $f |
| 1719 | ln -s $source_path/$f $f |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1720 | done |
| 1721 | fi |