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="" |
malc | 4c9b53e | 2009-01-09 10:46:34 +0000 | [diff] [blame] | 30 | audio_card_list="ac97 es1370 sb16" |
| 31 | audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 32 | host_cc="gcc" |
| 33 | ar="ar" |
| 34 | make="make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 35 | install="install" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 36 | strip="strip" |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 37 | |
| 38 | # parse CC options first |
| 39 | for opt do |
| 40 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
| 41 | case "$opt" in |
| 42 | --cross-prefix=*) cross_prefix="$optarg" |
| 43 | ;; |
| 44 | --cc=*) cc="$optarg" |
| 45 | ;; |
| 46 | esac |
| 47 | done |
| 48 | |
| 49 | # OS specific |
| 50 | # Using uname is really, really broken. Once we have the right set of checks |
| 51 | # we can eliminate it's usage altogether |
| 52 | |
| 53 | cc="${cross_prefix}${cc}" |
| 54 | ar="${cross_prefix}${ar}" |
| 55 | strip="${cross_prefix}${strip}" |
| 56 | |
| 57 | # check that the C compiler works. |
| 58 | cat > $TMPC <<EOF |
| 59 | int main(void) {} |
| 60 | EOF |
| 61 | |
| 62 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then |
| 63 | : C compiler works ok |
| 64 | else |
| 65 | echo "ERROR: \"$cc\" either does not exist or does not work" |
| 66 | exit 1 |
| 67 | fi |
| 68 | |
| 69 | check_define() { |
| 70 | cat > $TMPC <<EOF |
| 71 | #if !defined($1) |
| 72 | #error Not defined |
| 73 | #endif |
| 74 | int main(void) { return 0; } |
| 75 | EOF |
| 76 | $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null |
| 77 | } |
| 78 | |
| 79 | if check_define __i386__ ; then |
| 80 | cpu="i386" |
| 81 | elif check_define __x86_64__ ; then |
| 82 | cpu="x86_64" |
blueswir1 | 3aa9bd6 | 2008-12-31 16:55:26 +0000 | [diff] [blame] | 83 | elif check_define __sparc__ ; then |
| 84 | # We can't check for 64 bit (when gcc is biarch) or V8PLUSA |
| 85 | # They must be specified using --sparc_cpu |
| 86 | if check_define __arch64__ ; then |
| 87 | cpu="sparc64" |
| 88 | else |
| 89 | cpu="sparc" |
| 90 | fi |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 91 | elif check_define _ARCH_PPC ; then |
| 92 | if check_define _ARCH_PPC64 ; then |
| 93 | cpu="ppc64" |
| 94 | else |
| 95 | cpu="ppc" |
| 96 | fi |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 97 | else |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 98 | cpu=`uname -m` |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 99 | fi |
| 100 | |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 101 | target_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 102 | case "$cpu" in |
| 103 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 104 | cpu="i386" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 105 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 106 | x86_64|amd64) |
| 107 | cpu="x86_64" |
| 108 | ;; |
| 109 | alpha) |
| 110 | cpu="alpha" |
| 111 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 112 | armv*b) |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 113 | cpu="armv4b" |
| 114 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 115 | armv*l) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 116 | cpu="armv4l" |
| 117 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 118 | cris) |
| 119 | cpu="cris" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 120 | ;; |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 121 | parisc|parisc64) |
| 122 | cpu="hppa" |
| 123 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 124 | ia64) |
| 125 | cpu="ia64" |
| 126 | ;; |
| 127 | m68k) |
| 128 | cpu="m68k" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 129 | ;; |
| 130 | mips) |
| 131 | cpu="mips" |
| 132 | ;; |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 133 | mips64) |
| 134 | cpu="mips64" |
| 135 | ;; |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 136 | ppc) |
| 137 | cpu="ppc" |
| 138 | ;; |
| 139 | ppc64) |
| 140 | cpu="ppc64" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 141 | ;; |
ths | 0e7b8a9 | 2007-08-01 00:09:31 +0000 | [diff] [blame] | 142 | s390*) |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 143 | cpu="s390" |
| 144 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 145 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 146 | cpu="sparc" |
| 147 | ;; |
| 148 | sparc64) |
| 149 | cpu="sparc64" |
| 150 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 151 | *) |
| 152 | cpu="unknown" |
| 153 | ;; |
| 154 | esac |
| 155 | gprof="no" |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 156 | debug_tcg="no" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 157 | sparse="no" |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 158 | strip_opt="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 159 | bigendian="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 160 | mingw32="no" |
| 161 | EXESUF="" |
| 162 | gdbstub="yes" |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 163 | slirp="yes" |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 164 | vde="yes" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 165 | fmod_lib="" |
| 166 | fmod_inc="" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 167 | oss_lib="" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 168 | vnc_tls="yes" |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 169 | vnc_sasl="yes" |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 170 | bsd="no" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 171 | linux="no" |
blueswir1 | d2c7c9b | 2008-11-01 14:50:20 +0000 | [diff] [blame] | 172 | solaris="no" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 173 | kqemu="no" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 174 | profiler="no" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 175 | cocoa="no" |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 176 | check_gfx="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 177 | softmmu="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 178 | linux_user="no" |
| 179 | darwin_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 180 | bsd_user="no" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 181 | build_docs="no" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 182 | uname_release="" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 183 | curses="yes" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 184 | aio="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 185 | nptl="yes" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 186 | mixemu="no" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 187 | bluez="yes" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 188 | kvm="yes" |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 189 | kerneldir="" |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 190 | aix="no" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 191 | blobs="yes" |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 192 | fdt="yes" |
aliguori | 5368a42 | 2009-03-03 17:37:21 +0000 | [diff] [blame] | 193 | sdl_x11="no" |
pbrook | 4a19f1e | 2009-04-07 23:17:49 +0000 | [diff] [blame] | 194 | pkgversion="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 195 | |
| 196 | # OS specific |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 197 | if check_define __linux__ ; then |
| 198 | targetos="Linux" |
| 199 | elif check_define _WIN32 ; then |
| 200 | targetos='MINGW32' |
blueswir1 | 169dc5d | 2009-04-13 17:19:26 +0000 | [diff] [blame] | 201 | elif check_define __OpenBSD__ ; then |
| 202 | targetos='OpenBSD' |
| 203 | elif check_define __sun__ ; then |
| 204 | targetos='SunOS' |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 205 | else |
| 206 | targetos=`uname -s` |
| 207 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 208 | case $targetos in |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 209 | CYGWIN*) |
| 210 | mingw32="yes" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 211 | OS_CFLAGS="-mno-cygwin" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 212 | if [ "$cpu" = "i386" ] ; then |
| 213 | kqemu="yes" |
| 214 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 215 | audio_possible_drivers="sdl" |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 216 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 217 | MINGW32*) |
| 218 | mingw32="yes" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 219 | if [ "$cpu" = "i386" ] ; then |
| 220 | kqemu="yes" |
| 221 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 222 | audio_possible_drivers="dsound sdl fmod" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 223 | ;; |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 224 | GNU/kFreeBSD) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 225 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 226 | audio_possible_drivers="oss sdl esd pa" |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 227 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
| 228 | kqemu="yes" |
| 229 | fi |
| 230 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 231 | FreeBSD) |
| 232 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 233 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 234 | audio_possible_drivers="oss sdl esd pa" |
bellard | e99f906 | 2005-07-28 21:45:38 +0000 | [diff] [blame] | 235 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 236 | kqemu="yes" |
| 237 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 238 | ;; |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 239 | DragonFly) |
| 240 | bsd="yes" |
| 241 | audio_drv_list="oss" |
| 242 | audio_possible_drivers="oss sdl esd pa" |
| 243 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
| 244 | kqemu="yes" |
| 245 | fi |
| 246 | aio="no" |
| 247 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 248 | NetBSD) |
| 249 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 250 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 251 | audio_possible_drivers="oss sdl esd" |
blueswir1 | 8ef92a8 | 2008-11-22 20:24:29 +0000 | [diff] [blame] | 252 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 253 | ;; |
| 254 | OpenBSD) |
| 255 | bsd="yes" |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 256 | openbsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 257 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 258 | audio_possible_drivers="oss sdl esd" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 259 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 260 | ;; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 261 | Darwin) |
| 262 | bsd="yes" |
| 263 | darwin="yes" |
aliguori | 1b0f9cc | 2009-01-26 15:37:40 +0000 | [diff] [blame] | 264 | # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code |
malc | aab8588 | 2009-02-23 14:11:10 +0000 | [diff] [blame] | 265 | if [ "$cpu" = "i386" ] ; then |
| 266 | is_x86_64=`sysctl -n hw.optional.x86_64` |
| 267 | [ "$is_x86_64" = "1" ] && cpu=x86_64 |
aliguori | 1b0f9cc | 2009-01-26 15:37:40 +0000 | [diff] [blame] | 268 | fi |
| 269 | if [ "$cpu" = "x86_64" ] ; then |
| 270 | OS_CFLAGS="-arch x86_64" |
| 271 | LDFLAGS="-arch x86_64" |
| 272 | else |
| 273 | OS_CFLAGS="-mdynamic-no-pic" |
| 274 | fi |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 275 | darwin_user="yes" |
ths | fd67764 | 2007-01-31 12:10:07 +0000 | [diff] [blame] | 276 | cocoa="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 277 | audio_drv_list="coreaudio" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 278 | audio_possible_drivers="coreaudio sdl fmod" |
ths | c2c59c3 | 2008-01-08 00:00:20 +0000 | [diff] [blame] | 279 | OS_LDFLAGS="-framework CoreFoundation -framework IOKit" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 280 | ;; |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 281 | SunOS) |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 282 | solaris="yes" |
| 283 | make="gmake" |
| 284 | install="ginstall" |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 285 | needs_libsunmath="no" |
blueswir1 | acda94b | 2009-04-13 16:23:22 +0000 | [diff] [blame] | 286 | kvm="no" |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 287 | solarisrev=`uname -r | cut -f2 -d.` |
ths | ef18c88 | 2007-09-16 22:12:39 +0000 | [diff] [blame] | 288 | # have to select again, because `uname -m` returns i86pc |
| 289 | # even on an x86_64 box. |
| 290 | solariscpu=`isainfo -k` |
| 291 | if test "${solariscpu}" = "amd64" ; then |
| 292 | cpu="x86_64" |
| 293 | fi |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 294 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 295 | if test "$solarisrev" -le 9 ; then |
| 296 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then |
| 297 | needs_libsunmath="yes" |
| 298 | else |
| 299 | echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" |
| 300 | echo "libsunmath from the Sun Studio compilers tools, due to a lack of" |
| 301 | echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" |
| 302 | echo "Studio 11 can be downloaded from www.sun.com." |
| 303 | exit 1 |
| 304 | fi |
| 305 | fi |
| 306 | if test "$solarisrev" -ge 9 ; then |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 307 | kqemu="yes" |
| 308 | fi |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 309 | fi |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 310 | if test -f /usr/include/sys/soundcard.h ; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 311 | audio_drv_list="oss" |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 312 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 313 | audio_possible_drivers="oss sdl" |
blueswir1 | 14d483e | 2009-04-13 16:27:08 +0000 | [diff] [blame] | 314 | OS_CFLAGS=-std=gnu99 |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 315 | ;; |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 316 | AIX) |
| 317 | aix="yes" |
| 318 | make="gmake" |
| 319 | ;; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 320 | *) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 321 | audio_drv_list="oss" |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 322 | audio_possible_drivers="oss alsa sdl esd pa" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 323 | linux="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 324 | linux_user="yes" |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 325 | usb="linux" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 326 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 327 | kqemu="yes" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 328 | audio_possible_drivers="$audio_possible_drivers fmod" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 329 | fi |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 330 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 331 | esac |
| 332 | |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 333 | if [ "$bsd" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 334 | if [ "$darwin" != "yes" ] ; then |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 335 | make="gmake" |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 336 | usb="bsd" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 337 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 338 | bsd_user="yes" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 339 | fi |
| 340 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 341 | # find source path |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 342 | source_path=`dirname "$0"` |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 343 | source_path_used="no" |
| 344 | workdir=`pwd` |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 345 | if [ -z "$source_path" ]; then |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 346 | source_path=$workdir |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 347 | else |
| 348 | source_path=`cd "$source_path"; pwd` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 349 | fi |
pbrook | 724db11 | 2008-02-03 19:20:13 +0000 | [diff] [blame] | 350 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 351 | |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 352 | werror="no" |
bellard | 0d1e239 | 2007-11-11 20:24:30 +0000 | [diff] [blame] | 353 | # generate compile errors on warnings for development builds |
| 354 | #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then |
| 355 | #werror="yes"; |
| 356 | #fi |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 357 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 358 | for opt do |
pbrook | a46e403 | 2006-04-29 23:05:22 +0000 | [diff] [blame] | 359 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 360 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 361 | --help|-h) show_help=yes |
| 362 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 363 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 364 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 365 | --interp-prefix=*) interp_prefix="$optarg" |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 366 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 367 | --source-path=*) source_path="$optarg" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 368 | source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 369 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 370 | --cross-prefix=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 371 | ;; |
aliguori | ac0df51 | 2008-12-29 17:14:15 +0000 | [diff] [blame] | 372 | --cc=*) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 373 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 374 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 375 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 376 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 377 | ;; |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 378 | --install=*) install="$optarg" |
| 379 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 380 | --extra-cflags=*) CFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 381 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 382 | --extra-ldflags=*) LDFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 383 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 384 | --cpu=*) cpu="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 385 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 386 | --target-list=*) target_list="$optarg" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 387 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 388 | --enable-gprof) gprof="yes" |
| 389 | ;; |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 390 | --static) static="yes" |
| 391 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 392 | --disable-sdl) sdl="no" |
| 393 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 394 | --fmod-lib=*) fmod_lib="$optarg" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 395 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 396 | --fmod-inc=*) fmod_inc="$optarg" |
| 397 | ;; |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 398 | --oss-lib=*) oss_lib="$optarg" |
| 399 | ;; |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 400 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 401 | ;; |
| 402 | --audio-drv-list=*) audio_drv_list="$optarg" |
| 403 | ;; |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 404 | --enable-debug-tcg) debug_tcg="yes" |
| 405 | ;; |
| 406 | --disable-debug-tcg) debug_tcg="no" |
| 407 | ;; |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 408 | --enable-sparse) sparse="yes" |
| 409 | ;; |
| 410 | --disable-sparse) sparse="no" |
| 411 | ;; |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 412 | --disable-strip) strip_opt="no" |
| 413 | ;; |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 414 | --disable-vnc-tls) vnc_tls="no" |
| 415 | ;; |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 416 | --disable-vnc-sasl) vnc_sasl="no" |
| 417 | ;; |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 418 | --disable-slirp) slirp="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 419 | ;; |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 420 | --disable-vde) vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 421 | ;; |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 422 | --disable-kqemu) kqemu="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 423 | ;; |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 424 | --disable-brlapi) brlapi="no" |
| 425 | ;; |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 426 | --disable-bluez) bluez="no" |
| 427 | ;; |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 428 | --disable-kvm) kvm="no" |
| 429 | ;; |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 430 | --enable-profiler) profiler="yes" |
| 431 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 432 | --enable-cocoa) |
| 433 | cocoa="yes" ; |
| 434 | sdl="no" ; |
| 435 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 436 | ;; |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 437 | --disable-gfx-check) check_gfx="no" |
| 438 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 439 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 440 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 441 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 442 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 443 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 444 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 445 | --enable-linux-user) linux_user="yes" |
| 446 | ;; |
| 447 | --disable-darwin-user) darwin_user="no" |
| 448 | ;; |
| 449 | --enable-darwin-user) darwin_user="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 450 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 451 | --disable-bsd-user) bsd_user="no" |
| 452 | ;; |
| 453 | --enable-bsd-user) bsd_user="yes" |
| 454 | ;; |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 455 | --enable-uname-release=*) uname_release="$optarg" |
| 456 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 457 | --sparc_cpu=*) |
| 458 | sparc_cpu="$optarg" |
| 459 | case $sparc_cpu in |
| 460 | v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" |
| 461 | target_cpu="sparc"; cpu="sparc" ;; |
| 462 | v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" |
| 463 | target_cpu="sparc"; cpu="sparc" ;; |
| 464 | v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64" |
| 465 | target_cpu="sparc64"; cpu="sparc64" ;; |
| 466 | *) echo "undefined SPARC architecture. Exiting";exit 1;; |
| 467 | esac |
| 468 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 469 | --enable-werror) werror="yes" |
| 470 | ;; |
| 471 | --disable-werror) werror="no" |
| 472 | ;; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 473 | --disable-curses) curses="no" |
| 474 | ;; |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 475 | --disable-nptl) nptl="no" |
| 476 | ;; |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 477 | --enable-mixemu) mixemu="yes" |
| 478 | ;; |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 479 | --disable-aio) aio="no" |
| 480 | ;; |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 481 | --disable-blobs) blobs="no" |
| 482 | ;; |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 483 | --kerneldir=*) kerneldir="$optarg" |
| 484 | ;; |
pbrook | 4a19f1e | 2009-04-07 23:17:49 +0000 | [diff] [blame] | 485 | --with-pkgversion=*) pkgversion=" ($optarg)" |
| 486 | ;; |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 487 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
| 488 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 489 | esac |
| 490 | done |
| 491 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 492 | # default flags for all hosts |
blueswir1 | ac41a62 | 2008-09-14 06:46:31 +0000 | [diff] [blame] | 493 | CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing" |
blueswir1 | e0e36fe | 2008-12-07 19:16:27 +0000 | [diff] [blame] | 494 | 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] | 495 | LDFLAGS="$LDFLAGS -g" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 496 | if test "$werror" = "yes" ; then |
| 497 | CFLAGS="$CFLAGS -Werror" |
| 498 | fi |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 499 | |
blueswir1 | d2c7c9b | 2008-11-01 14:50:20 +0000 | [diff] [blame] | 500 | if test "$solaris" = "no" ; then |
| 501 | if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then |
| 502 | LDFLAGS="$LDFLAGS -Wl,--warn-common" |
| 503 | fi |
blueswir1 | 49237ac | 2008-09-17 19:05:19 +0000 | [diff] [blame] | 504 | fi |
| 505 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 506 | # |
| 507 | # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right |
| 508 | # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) |
| 509 | # |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 510 | case "$cpu" in |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 511 | sparc) if test -z "$sparc_cpu" ; then |
| 512 | ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__" |
| 513 | ARCH_LDFLAGS="-m32" |
| 514 | else |
| 515 | ARCH_CFLAGS="${SP_CFLAGS}" |
| 516 | ARCH_LDFLAGS="${SP_LDFLAGS}" |
| 517 | fi |
blueswir1 | 762e823 | 2009-04-04 09:21:28 +0000 | [diff] [blame] | 518 | ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3" |
| 519 | if test "$solaris" = "no" ; then |
| 520 | ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6" |
| 521 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 522 | ;; |
| 523 | sparc64) if test -z "$sparc_cpu" ; then |
| 524 | ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__" |
| 525 | ARCH_LDFLAGS="-m64" |
| 526 | else |
| 527 | ARCH_CFLAGS="${SP_CFLAGS}" |
| 528 | ARCH_LDFLAGS="${SP_LDFLAGS}" |
| 529 | fi |
blueswir1 | 762e823 | 2009-04-04 09:21:28 +0000 | [diff] [blame] | 530 | if test "$solaris" = "no" ; then |
| 531 | ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7" |
| 532 | else |
| 533 | ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7" |
| 534 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 535 | ;; |
ths | 76d83bd | 2007-11-18 21:22:10 +0000 | [diff] [blame] | 536 | s390) |
| 537 | ARCH_CFLAGS="-march=z900" |
| 538 | ;; |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 539 | i386) |
| 540 | ARCH_CFLAGS="-m32" |
| 541 | ARCH_LDFLAGS="-m32" |
| 542 | ;; |
| 543 | x86_64) |
| 544 | ARCH_CFLAGS="-m64" |
| 545 | ARCH_LDFLAGS="-m64" |
| 546 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 547 | esac |
| 548 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 549 | if test x"$show_help" = x"yes" ; then |
| 550 | cat << EOF |
| 551 | |
| 552 | Usage: configure [options] |
| 553 | Options: [defaults in brackets after descriptions] |
| 554 | |
| 555 | EOF |
| 556 | echo "Standard options:" |
| 557 | echo " --help print this message" |
| 558 | echo " --prefix=PREFIX install in PREFIX [$prefix]" |
| 559 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
| 560 | echo " use %M for cpu name [$interp_prefix]" |
| 561 | echo " --target-list=LIST set target list [$target_list]" |
| 562 | echo "" |
| 563 | echo "kqemu kernel acceleration support:" |
| 564 | echo " --disable-kqemu disable kqemu support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 565 | echo "" |
| 566 | echo "Advanced options (experts only):" |
| 567 | echo " --source-path=PATH path of source code [$source_path]" |
| 568 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" |
| 569 | echo " --cc=CC use C compiler CC [$cc]" |
| 570 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." |
aurel32 | 2981fa9 | 2009-04-07 19:57:17 +0000 | [diff] [blame] | 571 | echo " --extra-cflags=CFLAGS add C compiler flags CFLAGS" |
| 572 | echo " --extra-ldflags=LDFLAGS add linker flags LDFLAGS" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 573 | echo " --make=MAKE use specified make [$make]" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 574 | echo " --install=INSTALL use specified install [$install]" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 575 | echo " --static enable static build [$static]" |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 576 | echo " --enable-debug-tcg enable TCG debugging" |
| 577 | echo " --disable-debug-tcg disable TCG debugging (default)" |
aliguori | 890b165 | 2008-10-07 21:22:41 +0000 | [diff] [blame] | 578 | echo " --enable-sparse enable sparse checker" |
| 579 | echo " --disable-sparse disable sparse checker (default)" |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 580 | echo " --disable-strip disable stripping binaries" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 581 | echo " --disable-werror disable compilation abort on warning" |
balrog | fe8f78e | 2007-10-31 01:03:28 +0000 | [diff] [blame] | 582 | echo " --disable-sdl disable SDL" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 583 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 584 | echo " --audio-drv-list=LIST set audio drivers list:" |
| 585 | echo " Available drivers: $audio_possible_drivers" |
malc | 4c9b53e | 2009-01-09 10:46:34 +0000 | [diff] [blame] | 586 | echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" |
| 587 | echo " Available cards: $audio_possible_cards" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 588 | echo " --enable-mixemu enable mixer emulation" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 589 | echo " --disable-brlapi disable BrlAPI" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 590 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 591 | echo " --disable-vnc-sasl disable SASL encryption for VNC server" |
pbrook | af896aa | 2008-03-23 00:47:42 +0000 | [diff] [blame] | 592 | echo " --disable-curses disable curses output" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 593 | echo " --disable-bluez disable bluez stack connectivity" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 594 | echo " --disable-kvm disable KVM acceleration support" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 595 | echo " --disable-nptl disable usermode NPTL support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 596 | echo " --enable-system enable all system emulation targets" |
| 597 | echo " --disable-system disable all system emulation targets" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 598 | echo " --enable-linux-user enable all linux usermode emulation targets" |
| 599 | echo " --disable-linux-user disable all linux usermode emulation targets" |
| 600 | echo " --enable-darwin-user enable all darwin usermode emulation targets" |
| 601 | echo " --disable-darwin-user disable all darwin usermode emulation targets" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 602 | echo " --enable-bsd-user enable all BSD usermode emulation targets" |
| 603 | echo " --disable-bsd-user disable all BSD usermode emulation targets" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 604 | echo " --fmod-lib path to FMOD library" |
| 605 | echo " --fmod-inc path to FMOD includes" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 606 | echo " --oss-lib path to OSS library" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 607 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 608 | 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] | 609 | echo " --disable-vde disable support for vde network" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 610 | echo " --disable-aio disable AIO support" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 611 | echo " --disable-blobs disable installing provided firmware blobs" |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 612 | echo " --kerneldir=PATH look for kernel includes in PATH" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 613 | echo "" |
ths | 5bf0893 | 2006-12-23 00:33:26 +0000 | [diff] [blame] | 614 | 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] | 615 | exit 1 |
| 616 | fi |
| 617 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 618 | if test "$mingw32" = "yes" ; then |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 619 | linux="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 620 | EXESUF=".exe" |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 621 | oss="no" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 622 | linux_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 623 | bsd_user="no" |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 624 | OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 625 | fi |
| 626 | |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 627 | if test ! -x "$(which cgcc 2>/dev/null)"; then |
| 628 | sparse="no" |
| 629 | fi |
| 630 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 631 | # |
| 632 | # Solaris specific configure tool chain decisions |
| 633 | # |
| 634 | if test "$solaris" = "yes" ; then |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 635 | solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` |
| 636 | if test -z "$solinst" ; then |
| 637 | echo "Solaris install program not found. Use --install=/usr/ucb/install or" |
| 638 | echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" |
| 639 | echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" |
| 640 | exit 1 |
| 641 | fi |
| 642 | if test "$solinst" = "/usr/sbin/install" ; then |
| 643 | echo "Error: Solaris /usr/sbin/install is not an appropriate install program." |
| 644 | echo "try ginstall from the GNU fileutils available from www.blastwave.org" |
| 645 | echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" |
| 646 | exit 1 |
| 647 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 648 | sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` |
| 649 | if test -z "$sol_ar" ; then |
| 650 | echo "Error: No path includes ar" |
| 651 | if test -f /usr/ccs/bin/ar ; then |
| 652 | echo "Add /usr/ccs/bin to your path and rerun configure" |
| 653 | fi |
| 654 | exit 1 |
| 655 | fi |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 656 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 657 | |
| 658 | |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 659 | if test -z "$target_list" ; then |
| 660 | # these targets are portable |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 661 | if [ "$softmmu" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 662 | target_list="\ |
| 663 | i386-softmmu \ |
| 664 | x86_64-softmmu \ |
| 665 | arm-softmmu \ |
| 666 | cris-softmmu \ |
| 667 | m68k-softmmu \ |
| 668 | mips-softmmu \ |
| 669 | mipsel-softmmu \ |
| 670 | mips64-softmmu \ |
| 671 | mips64el-softmmu \ |
| 672 | ppc-softmmu \ |
| 673 | ppcemb-softmmu \ |
| 674 | ppc64-softmmu \ |
| 675 | sh4-softmmu \ |
| 676 | sh4eb-softmmu \ |
| 677 | sparc-softmmu \ |
| 678 | " |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 679 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 680 | # the following are Linux specific |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 681 | if [ "$linux_user" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 682 | target_list="${target_list}\ |
| 683 | i386-linux-user \ |
| 684 | x86_64-linux-user \ |
| 685 | alpha-linux-user \ |
| 686 | arm-linux-user \ |
| 687 | armeb-linux-user \ |
| 688 | cris-linux-user \ |
| 689 | m68k-linux-user \ |
| 690 | mips-linux-user \ |
| 691 | mipsel-linux-user \ |
| 692 | ppc-linux-user \ |
| 693 | ppc64-linux-user \ |
| 694 | ppc64abi32-linux-user \ |
| 695 | sh4-linux-user \ |
| 696 | sh4eb-linux-user \ |
| 697 | sparc-linux-user \ |
| 698 | sparc64-linux-user \ |
| 699 | sparc32plus-linux-user \ |
| 700 | " |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 701 | fi |
| 702 | # the following are Darwin specific |
| 703 | if [ "$darwin_user" = "yes" ] ; then |
malc | 6cdc737 | 2009-01-06 18:57:51 +0000 | [diff] [blame] | 704 | target_list="$target_list i386-darwin-user ppc-darwin-user " |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 705 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 706 | # the following are BSD specific |
| 707 | if [ "$bsd_user" = "yes" ] ; then |
| 708 | target_list="${target_list}\ |
blueswir1 | 31fc12d | 2009-04-11 11:09:31 +0000 | [diff] [blame] | 709 | i386-bsd-user \ |
| 710 | x86_64-bsd-user \ |
| 711 | sparc-bsd-user \ |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 712 | sparc64-bsd-user \ |
| 713 | " |
| 714 | fi |
bellard | 6e20a45 | 2005-06-05 15:56:02 +0000 | [diff] [blame] | 715 | else |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 716 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 717 | fi |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 718 | if test -z "$target_list" ; then |
| 719 | echo "No targets enabled" |
| 720 | exit 1 |
| 721 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 722 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 723 | if test -z "$cross_prefix" ; then |
| 724 | |
| 725 | # --- |
| 726 | # big/little endian test |
| 727 | cat > $TMPC << EOF |
| 728 | #include <inttypes.h> |
| 729 | int main(int argc, char ** argv){ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 730 | volatile uint32_t i=0x01234567; |
| 731 | return (*((uint8_t*)(&i))) == 0x67; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 732 | } |
| 733 | EOF |
| 734 | |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 735 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 736 | $TMPE && bigendian="yes" |
| 737 | else |
| 738 | echo big/little test failed |
| 739 | fi |
| 740 | |
| 741 | else |
| 742 | |
| 743 | # if cross compiling, cannot launch a program, so make a static guess |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 744 | if test "$cpu" = "armv4b" \ |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 745 | -o "$cpu" = "hppa" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 746 | -o "$cpu" = "m68k" \ |
| 747 | -o "$cpu" = "mips" \ |
| 748 | -o "$cpu" = "mips64" \ |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 749 | -o "$cpu" = "ppc" \ |
| 750 | -o "$cpu" = "ppc64" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 751 | -o "$cpu" = "s390" \ |
| 752 | -o "$cpu" = "sparc" \ |
| 753 | -o "$cpu" = "sparc64"; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 754 | bigendian="yes" |
| 755 | fi |
| 756 | |
| 757 | fi |
| 758 | |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 759 | # host long bits test |
| 760 | hostlongbits="32" |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 761 | if test "$cpu" = "x86_64" \ |
| 762 | -o "$cpu" = "alpha" \ |
| 763 | -o "$cpu" = "ia64" \ |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 764 | -o "$cpu" = "sparc64" \ |
| 765 | -o "$cpu" = "ppc64"; then |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 766 | hostlongbits="64" |
| 767 | fi |
| 768 | |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 769 | # Check host NPTL support |
| 770 | cat > $TMPC <<EOF |
| 771 | #include <sched.h> |
pbrook | 30813ce | 2008-06-02 15:45:44 +0000 | [diff] [blame] | 772 | #include <linux/futex.h> |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 773 | void foo() |
| 774 | { |
| 775 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
| 776 | #error bork |
| 777 | #endif |
| 778 | } |
| 779 | EOF |
| 780 | |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 781 | 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] | 782 | : |
| 783 | else |
| 784 | nptl="no" |
| 785 | fi |
| 786 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 787 | ########################################## |
balrog | ac62922 | 2008-10-11 09:56:04 +0000 | [diff] [blame] | 788 | # zlib check |
| 789 | |
| 790 | cat > $TMPC << EOF |
| 791 | #include <zlib.h> |
| 792 | int main(void) { zlibVersion(); return 0; } |
| 793 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 794 | 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] | 795 | : |
| 796 | else |
| 797 | echo |
| 798 | echo "Error: zlib check failed" |
| 799 | echo "Make sure to have the zlib libs and headers installed." |
| 800 | echo |
| 801 | exit 1 |
| 802 | fi |
| 803 | |
| 804 | ########################################## |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 805 | # SDL probe |
| 806 | |
| 807 | sdl_too_old=no |
| 808 | |
| 809 | if test -z "$sdl" ; then |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 810 | sdl_config="sdl-config" |
| 811 | sdl=no |
| 812 | sdl_static=no |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 813 | |
| 814 | cat > $TMPC << EOF |
| 815 | #include <SDL.h> |
| 816 | #undef main /* We don't want SDL to override our main() */ |
| 817 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
| 818 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 819 | 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] | 820 | _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` |
| 821 | if test "$_sdlversion" -lt 121 ; then |
| 822 | sdl_too_old=yes |
| 823 | else |
| 824 | if test "$cocoa" = "no" ; then |
| 825 | sdl=yes |
| 826 | fi |
| 827 | fi |
| 828 | |
| 829 | # static link with sdl ? |
| 830 | if test "$sdl" = "yes" ; then |
| 831 | aa="no" |
| 832 | `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" |
| 833 | sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` |
| 834 | if [ "$aa" = "yes" ] ; then |
| 835 | sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 836 | fi |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 837 | |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 838 | 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] | 839 | sdl_static=yes |
| 840 | fi |
| 841 | fi # static link |
| 842 | fi # sdl compile test |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 843 | else |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 844 | # Make sure to disable cocoa if sdl was set |
| 845 | if test "$sdl" = "yes" ; then |
| 846 | cocoa="no" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 847 | audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 848 | fi |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 849 | fi # -z $sdl |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 850 | |
aliguori | 5368a42 | 2009-03-03 17:37:21 +0000 | [diff] [blame] | 851 | if test "$sdl" = "yes" ; then |
| 852 | cat > $TMPC <<EOF |
| 853 | #include <SDL.h> |
| 854 | #if defined(SDL_VIDEO_DRIVER_X11) |
| 855 | #include <X11/XKBlib.h> |
| 856 | #else |
| 857 | #error No x11 support |
| 858 | #endif |
| 859 | int main(void) { return 0; } |
| 860 | EOF |
| 861 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then |
| 862 | sdl_x11="yes" |
| 863 | fi |
| 864 | fi |
| 865 | |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 866 | ########################################## |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 867 | # VNC TLS detection |
| 868 | if test "$vnc_tls" = "yes" ; then |
aliguori | ae6b5e5 | 2008-08-06 16:55:50 +0000 | [diff] [blame] | 869 | cat > $TMPC <<EOF |
| 870 | #include <gnutls/gnutls.h> |
| 871 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } |
| 872 | EOF |
| 873 | vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` |
| 874 | vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` |
| 875 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 876 | $vnc_tls_libs > /dev/null 2> /dev/null ; then |
aliguori | ae6b5e5 | 2008-08-06 16:55:50 +0000 | [diff] [blame] | 877 | : |
| 878 | else |
| 879 | vnc_tls="no" |
| 880 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 881 | fi |
| 882 | |
| 883 | ########################################## |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 884 | # VNC SASL detection |
| 885 | if test "$vnc_sasl" = "yes" ; then |
| 886 | cat > $TMPC <<EOF |
| 887 | #include <sasl/sasl.h> |
| 888 | #include <stdio.h> |
| 889 | int main(void) { sasl_server_init(NULL, "qemu"); return 0; } |
| 890 | EOF |
| 891 | # Assuming Cyrus-SASL installed in /usr prefix |
| 892 | vnc_sasl_cflags="" |
| 893 | vnc_sasl_libs="-lsasl2" |
| 894 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \ |
| 895 | $vnc_sasl_libs 2> /dev/null ; then |
| 896 | : |
| 897 | else |
| 898 | vnc_sasl="no" |
| 899 | fi |
| 900 | fi |
| 901 | |
| 902 | ########################################## |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 903 | # fnmatch() probe, used for ACL routines |
| 904 | fnmatch="no" |
| 905 | cat > $TMPC << EOF |
| 906 | #include <fnmatch.h> |
| 907 | int main(void) |
| 908 | { |
| 909 | fnmatch("foo", "foo", 0); |
| 910 | return 0; |
| 911 | } |
| 912 | EOF |
| 913 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
| 914 | fnmatch="yes" |
| 915 | fi |
| 916 | |
| 917 | ########################################## |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 918 | # vde libraries probe |
| 919 | if test "$vde" = "yes" ; then |
| 920 | cat > $TMPC << EOF |
| 921 | #include <libvdeplug.h> |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 922 | int main(void) |
| 923 | { |
| 924 | struct vde_open_args a = {0, 0, 0}; |
| 925 | vde_open("", "", &a); |
| 926 | return 0; |
| 927 | } |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 928 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 929 | 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] | 930 | : |
| 931 | else |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 932 | vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 933 | fi |
| 934 | fi |
| 935 | |
| 936 | ########################################## |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 937 | # Sound support libraries probe |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 938 | |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 939 | audio_drv_probe() |
| 940 | { |
| 941 | drv=$1 |
| 942 | hdr=$2 |
| 943 | lib=$3 |
| 944 | exp=$4 |
| 945 | cfl=$5 |
| 946 | cat > $TMPC << EOF |
| 947 | #include <$hdr> |
| 948 | int main(void) { $exp } |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 949 | EOF |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 950 | 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] | 951 | : |
| 952 | else |
| 953 | echo |
| 954 | echo "Error: $drv check failed" |
| 955 | echo "Make sure to have the $drv libs and headers installed." |
| 956 | echo |
| 957 | exit 1 |
| 958 | fi |
| 959 | } |
| 960 | |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 961 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 962 | for drv in $audio_drv_list; do |
| 963 | case $drv in |
| 964 | alsa) |
| 965 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ |
| 966 | "snd_pcm_t **handle; return snd_pcm_close(*handle);" |
| 967 | ;; |
| 968 | |
| 969 | fmod) |
| 970 | if test -z $fmod_lib || test -z $fmod_inc; then |
| 971 | echo |
| 972 | echo "Error: You must specify path to FMOD library and headers" |
| 973 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" |
| 974 | echo |
| 975 | exit 1 |
| 976 | fi |
| 977 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" |
| 978 | ;; |
| 979 | |
| 980 | esd) |
| 981 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' |
| 982 | ;; |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 983 | |
| 984 | pa) |
| 985 | audio_drv_probe $drv pulse/simple.h -lpulse-simple \ |
| 986 | "pa_simple *s = NULL; pa_simple_free(s); return 0;" |
| 987 | ;; |
| 988 | |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 989 | oss|sdl|core|wav|dsound) |
| 990 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
| 991 | ;; |
| 992 | |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 993 | *) |
malc | 1c9b2a5 | 2008-07-19 16:57:30 +0000 | [diff] [blame] | 994 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 995 | echo |
| 996 | echo "Error: Unknown driver '$drv' selected" |
| 997 | echo "Possible drivers are: $audio_possible_drivers" |
| 998 | echo |
| 999 | exit 1 |
| 1000 | } |
| 1001 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 1002 | esac |
| 1003 | done |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 1004 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1005 | ########################################## |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1006 | # BrlAPI probe |
| 1007 | |
| 1008 | if test -z "$brlapi" ; then |
| 1009 | brlapi=no |
| 1010 | cat > $TMPC << EOF |
| 1011 | #include <brlapi.h> |
| 1012 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } |
| 1013 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1014 | 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] | 1015 | brlapi=yes |
| 1016 | fi # brlapi compile test |
| 1017 | fi # -z $brlapi |
| 1018 | |
| 1019 | ########################################## |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1020 | # curses probe |
| 1021 | |
| 1022 | if test "$curses" = "yes" ; then |
| 1023 | curses=no |
| 1024 | cat > $TMPC << EOF |
| 1025 | #include <curses.h> |
blueswir1 | 5a8ff3a | 2009-04-13 16:18:34 +0000 | [diff] [blame] | 1026 | #ifdef __OpenBSD__ |
| 1027 | #define resize_term resizeterm |
| 1028 | #endif |
| 1029 | int main(void) { resize_term(0, 0); return curses_version(); } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1030 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1031 | 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] | 1032 | curses=yes |
| 1033 | fi |
| 1034 | fi # test "$curses" |
| 1035 | |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1036 | ########################################## |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 1037 | # bluez support probe |
| 1038 | if test "$bluez" = "yes" ; then |
| 1039 | `pkg-config bluez` || bluez="no" |
| 1040 | fi |
| 1041 | if test "$bluez" = "yes" ; then |
balrog | e820e3f | 2008-09-30 02:27:44 +0000 | [diff] [blame] | 1042 | cat > $TMPC << EOF |
| 1043 | #include <bluetooth/bluetooth.h> |
| 1044 | int main(void) { return bt_error(0); } |
| 1045 | EOF |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 1046 | bluez_cflags=`pkg-config --cflags bluez` |
| 1047 | bluez_libs=`pkg-config --libs bluez` |
balrog | 17e1592 | 2008-10-11 12:00:42 +0000 | [diff] [blame] | 1048 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 1049 | $bluez_libs > /dev/null 2> /dev/null ; then |
balrog | e820e3f | 2008-09-30 02:27:44 +0000 | [diff] [blame] | 1050 | : |
| 1051 | else |
| 1052 | bluez="no" |
| 1053 | fi |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 1054 | fi |
| 1055 | |
| 1056 | ########################################## |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1057 | # kvm probe |
| 1058 | if test "$kvm" = "yes" ; then |
| 1059 | cat > $TMPC <<EOF |
| 1060 | #include <linux/kvm.h> |
aliguori | 9fd8d8d | 2009-01-15 21:57:30 +0000 | [diff] [blame] | 1061 | #if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12 |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1062 | #error Invalid KVM version |
| 1063 | #endif |
aliguori | 9fd8d8d | 2009-01-15 21:57:30 +0000 | [diff] [blame] | 1064 | #if !defined(KVM_CAP_USER_MEMORY) |
| 1065 | #error Missing KVM capability KVM_CAP_USER_MEMORY |
| 1066 | #endif |
| 1067 | #if !defined(KVM_CAP_SET_TSS_ADDR) |
| 1068 | #error Missing KVM capability KVM_CAP_SET_TSS_ADDR |
| 1069 | #endif |
| 1070 | #if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) |
| 1071 | #error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS |
| 1072 | #endif |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1073 | int main(void) { return 0; } |
| 1074 | EOF |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 1075 | if test "$kerneldir" != "" ; then |
| 1076 | kvm_cflags=-I"$kerneldir"/include |
aliguori | 8444eb6 | 2009-01-09 20:05:10 +0000 | [diff] [blame] | 1077 | if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \ |
| 1078 | -a -d "$kerneldir/arch/x86/include" ; then |
| 1079 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include" |
aliguori | 406b430 | 2009-01-15 21:13:33 +0000 | [diff] [blame] | 1080 | elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then |
| 1081 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include" |
aliguori | 8444eb6 | 2009-01-09 20:05:10 +0000 | [diff] [blame] | 1082 | elif test -d "$kerneldir/arch/$cpu/include" ; then |
| 1083 | kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include" |
| 1084 | fi |
aliguori | eac3026 | 2008-11-05 16:28:56 +0000 | [diff] [blame] | 1085 | else |
| 1086 | kvm_cflags="" |
| 1087 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1088 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \ |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 1089 | > /dev/null 2>/dev/null ; then |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1090 | : |
| 1091 | else |
aliguori | 9fd8d8d | 2009-01-15 21:57:30 +0000 | [diff] [blame] | 1092 | kvm="no"; |
| 1093 | if [ -x "`which awk 2>/dev/null`" ] && \ |
| 1094 | [ -x "`which grep 2>/dev/null`" ]; then |
blueswir1 | e4f5100 | 2009-03-09 17:36:50 +0000 | [diff] [blame] | 1095 | kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \ |
aliguori | 9fd8d8d | 2009-01-15 21:57:30 +0000 | [diff] [blame] | 1096 | | grep "error: " \ |
| 1097 | | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'` |
| 1098 | if test "$kvmerr" != "" ; then |
| 1099 | kvm="no - (${kvmerr})" |
| 1100 | fi |
| 1101 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1102 | fi |
| 1103 | fi |
| 1104 | |
| 1105 | ########################################## |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1106 | # AIO probe |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 1107 | AIOLIBS="" |
| 1108 | |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1109 | if test "$aio" = "yes" ; then |
| 1110 | aio=no |
| 1111 | cat > $TMPC << EOF |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 1112 | #include <pthread.h> |
blueswir1 | c9db92f | 2009-01-17 06:49:15 +0000 | [diff] [blame] | 1113 | int main(void) { pthread_mutex_t lock; return 0; } |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1114 | EOF |
| 1115 | if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then |
| 1116 | aio=yes |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 1117 | AIOLIBS="-lpthread" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1118 | fi |
| 1119 | fi |
| 1120 | |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1121 | ########################################## |
| 1122 | # iovec probe |
| 1123 | cat > $TMPC <<EOF |
blueswir1 | db34f0b | 2009-01-14 18:03:53 +0000 | [diff] [blame] | 1124 | #include <sys/types.h> |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1125 | #include <sys/uio.h> |
blueswir1 | db34f0b | 2009-01-14 18:03:53 +0000 | [diff] [blame] | 1126 | #include <unistd.h> |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1127 | int main(void) { struct iovec iov; return 0; } |
| 1128 | EOF |
| 1129 | iovec=no |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 1130 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1131 | iovec=yes |
| 1132 | fi |
| 1133 | |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1134 | ########################################## |
aliguori | ceb42de | 2009-04-07 18:43:28 +0000 | [diff] [blame] | 1135 | # preadv probe |
| 1136 | cat > $TMPC <<EOF |
| 1137 | #include <sys/types.h> |
| 1138 | #include <sys/uio.h> |
| 1139 | #include <unistd.h> |
| 1140 | int main(void) { preadv; } |
| 1141 | EOF |
| 1142 | preadv=no |
| 1143 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
| 1144 | preadv=yes |
| 1145 | fi |
| 1146 | |
| 1147 | ########################################## |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1148 | # fdt probe |
| 1149 | if test "$fdt" = "yes" ; then |
| 1150 | fdt=no |
| 1151 | cat > $TMPC << EOF |
| 1152 | int main(void) { return 0; } |
| 1153 | EOF |
| 1154 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then |
| 1155 | fdt=yes |
| 1156 | fi |
| 1157 | fi |
| 1158 | |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 1159 | # |
| 1160 | # Check for xxxat() functions when we are building linux-user |
| 1161 | # emulator. This is done because older glibc versions don't |
| 1162 | # have syscall stubs for these implemented. |
| 1163 | # |
| 1164 | atfile=no |
| 1165 | if [ "$linux_user" = "yes" ] ; then |
| 1166 | cat > $TMPC << EOF |
| 1167 | #define _ATFILE_SOURCE |
| 1168 | #include <sys/types.h> |
| 1169 | #include <fcntl.h> |
| 1170 | #include <unistd.h> |
| 1171 | |
| 1172 | int |
| 1173 | main(void) |
| 1174 | { |
| 1175 | /* try to unlink nonexisting file */ |
| 1176 | return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); |
| 1177 | } |
| 1178 | EOF |
| 1179 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
| 1180 | atfile=yes |
| 1181 | fi |
| 1182 | fi |
| 1183 | |
aurel32 | 39386ac | 2009-04-15 19:48:17 +0000 | [diff] [blame] | 1184 | # Check for inotify functions when we are building linux-user |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 1185 | # emulator. This is done because older glibc versions don't |
| 1186 | # have syscall stubs for these implemented. In that case we |
| 1187 | # don't provide them even if kernel supports them. |
| 1188 | # |
| 1189 | inotify=no |
| 1190 | if [ "$linux_user" = "yes" ] ; then |
| 1191 | cat > $TMPC << EOF |
| 1192 | #include <sys/inotify.h> |
| 1193 | |
| 1194 | int |
| 1195 | main(void) |
| 1196 | { |
| 1197 | /* try to start inotify */ |
aurel32 | 8690e42 | 2009-04-17 13:50:32 +0000 | [diff] [blame^] | 1198 | return inotify_init(); |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 1199 | } |
| 1200 | EOF |
| 1201 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
| 1202 | inotify=yes |
| 1203 | fi |
| 1204 | fi |
| 1205 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1206 | # Check if tools are available to build documentation. |
ths | 6c59186 | 2007-05-09 13:55:03 +0000 | [diff] [blame] | 1207 | if [ -x "`which texi2html 2>/dev/null`" ] && \ |
| 1208 | [ -x "`which pod2man 2>/dev/null`" ]; then |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1209 | build_docs="yes" |
| 1210 | fi |
| 1211 | |
aliguori | da93a1f | 2008-12-12 20:02:52 +0000 | [diff] [blame] | 1212 | ########################################## |
| 1213 | # Do we need librt |
| 1214 | cat > $TMPC <<EOF |
| 1215 | #include <signal.h> |
| 1216 | #include <time.h> |
| 1217 | int main(void) { clockid_t id; return clock_gettime(id, NULL); } |
| 1218 | EOF |
| 1219 | |
| 1220 | rt=no |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 1221 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then |
aliguori | da93a1f | 2008-12-12 20:02:52 +0000 | [diff] [blame] | 1222 | : |
balrog | 8c7f757 | 2008-12-15 03:15:36 +0000 | [diff] [blame] | 1223 | 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] | 1224 | rt=yes |
| 1225 | fi |
| 1226 | |
| 1227 | if test "$rt" = "yes" ; then |
| 1228 | # Hack, we should have a general purpose LIBS for this sort of thing |
| 1229 | AIOLIBS="$AIOLIBS -lrt" |
| 1230 | fi |
| 1231 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1232 | if test "$mingw32" = "yes" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1233 | if test -z "$prefix" ; then |
aliguori | 17e9097 | 2008-10-24 14:11:41 +0000 | [diff] [blame] | 1234 | prefix="c:\\\\Program Files\\\\Qemu" |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1235 | fi |
| 1236 | mansuffix="" |
| 1237 | datasuffix="" |
| 1238 | docsuffix="" |
| 1239 | binsuffix="" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1240 | else |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1241 | if test -z "$prefix" ; then |
| 1242 | prefix="/usr/local" |
| 1243 | fi |
| 1244 | mansuffix="/share/man" |
| 1245 | datasuffix="/share/qemu" |
| 1246 | docsuffix="/share/doc/qemu" |
| 1247 | binsuffix="/bin" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1248 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 1249 | |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1250 | echo "Install prefix $prefix" |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1251 | echo "BIOS directory $prefix$datasuffix" |
| 1252 | echo "binary directory $prefix$binsuffix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1253 | if test "$mingw32" = "no" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1254 | echo "Manual directory $prefix$mansuffix" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1255 | echo "ELF interp prefix $interp_prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1256 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 1257 | echo "Source path $source_path" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1258 | echo "C compiler $cc" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 1259 | echo "Host C compiler $host_cc" |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 1260 | echo "ARCH_CFLAGS $ARCH_CFLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1261 | echo "make $make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 1262 | echo "install $install" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1263 | echo "host CPU $cpu" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1264 | echo "host big endian $bigendian" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1265 | echo "target list $target_list" |
aurel32 | ade25b0 | 2009-04-16 09:58:41 +0000 | [diff] [blame] | 1266 | echo "tcg debug enabled $debug_tcg" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1267 | echo "gprof enabled $gprof" |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1268 | echo "sparse enabled $sparse" |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 1269 | echo "strip binaries $strip_opt" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1270 | echo "profiler $profiler" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 1271 | echo "static build $static" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 1272 | echo "-Werror enabled $werror" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 1273 | if test "$darwin" = "yes" ; then |
| 1274 | echo "Cocoa support $cocoa" |
| 1275 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1276 | echo "SDL support $sdl" |
bellard | e4afee9 | 2005-04-26 20:46:24 +0000 | [diff] [blame] | 1277 | if test "$sdl" != "no" ; then |
| 1278 | echo "SDL static link $sdl_static" |
| 1279 | fi |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1280 | echo "curses support $curses" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1281 | echo "mingw32 support $mingw32" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1282 | echo "Audio drivers $audio_drv_list" |
| 1283 | echo "Extra audio cards $audio_card_list" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1284 | echo "Mixer emulation $mixemu" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1285 | echo "VNC TLS support $vnc_tls" |
| 1286 | if test "$vnc_tls" = "yes" ; then |
| 1287 | echo " TLS CFLAGS $vnc_tls_cflags" |
| 1288 | echo " TLS LIBS $vnc_tls_libs" |
| 1289 | fi |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 1290 | echo "VNC SASL support $vnc_sasl" |
| 1291 | if test "$vnc_sasl" = "yes" ; then |
| 1292 | echo " SASL CFLAGS $vnc_sasl_cflags" |
| 1293 | echo " SASL LIBS $vnc_sasl_libs" |
| 1294 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1295 | if test -n "$sparc_cpu"; then |
| 1296 | echo "Target Sparc Arch $sparc_cpu" |
| 1297 | fi |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 1298 | echo "kqemu support $kqemu" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1299 | echo "brlapi support $brlapi" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1300 | echo "Documentation $build_docs" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1301 | [ ! -z "$uname_release" ] && \ |
| 1302 | echo "uname -r $uname_release" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1303 | echo "NPTL support $nptl" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1304 | echo "vde support $vde" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1305 | echo "AIO support $aio" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 1306 | echo "Install blobs $blobs" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1307 | echo "KVM support $kvm" |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1308 | echo "fdt support $fdt" |
aliguori | ceb42de | 2009-04-07 18:43:28 +0000 | [diff] [blame] | 1309 | echo "preadv support $preadv" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1310 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1311 | if test $sdl_too_old = "yes"; then |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1312 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 1313 | fi |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 1314 | if [ -s $TMPSDLLOG ]; then |
ths | 20b40c6 | 2007-07-11 23:39:45 +0000 | [diff] [blame] | 1315 | echo "The error log from compiling the libSDL test is: " |
malc | d4742de | 2008-11-29 22:04:31 +0000 | [diff] [blame] | 1316 | cat $TMPSDLLOG |
ths | 20b40c6 | 2007-07-11 23:39:45 +0000 | [diff] [blame] | 1317 | fi |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1318 | #if test "$sdl_static" = "no"; then |
| 1319 | # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" |
| 1320 | #fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1321 | config_mak="config-host.mak" |
| 1322 | config_h="config-host.h" |
| 1323 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1324 | #echo "Creating $config_mak and $config_h" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1325 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1326 | test -f $config_h && mv $config_h ${config_h}~ |
| 1327 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1328 | echo "# Automatically generated by configure - do not modify" > $config_mak |
malc | fc9902d | 2008-12-17 19:00:18 +0000 | [diff] [blame] | 1329 | printf "# Configured with:" >> $config_mak |
malc | fd69fe2 | 2008-12-07 22:50:16 +0000 | [diff] [blame] | 1330 | printf " '%s'" "$0" "$@" >> $config_mak |
| 1331 | echo >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1332 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1333 | |
| 1334 | echo "prefix=$prefix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1335 | echo "bindir=\${prefix}$binsuffix" >> $config_mak |
| 1336 | echo "mandir=\${prefix}$mansuffix" >> $config_mak |
| 1337 | echo "datadir=\${prefix}$datasuffix" >> $config_mak |
ths | 4ad5b06 | 2007-03-03 21:47:02 +0000 | [diff] [blame] | 1338 | echo "docdir=\${prefix}$docsuffix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1339 | echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1340 | echo "MAKE=$make" >> $config_mak |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 1341 | echo "INSTALL=$install" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1342 | echo "CC=$cc" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1343 | echo "HOST_CC=$host_cc" >> $config_mak |
| 1344 | echo "AR=$ar" >> $config_mak |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1345 | # XXX: only use CFLAGS and LDFLAGS ? |
| 1346 | # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross |
| 1347 | # compilation of dyngen tool (useful for win32 build on Linux host) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 1348 | echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1349 | echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak |
| 1350 | echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak |
| 1351 | echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1352 | echo "CFLAGS=$CFLAGS" >> $config_mak |
| 1353 | echo "LDFLAGS=$LDFLAGS" >> $config_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1354 | echo "EXESUF=$EXESUF" >> $config_mak |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 1355 | echo "AIOLIBS=$AIOLIBS" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1356 | case "$cpu" in |
| 1357 | i386) |
| 1358 | echo "ARCH=i386" >> $config_mak |
| 1359 | echo "#define HOST_I386 1" >> $config_h |
| 1360 | ;; |
| 1361 | x86_64) |
| 1362 | echo "ARCH=x86_64" >> $config_mak |
| 1363 | echo "#define HOST_X86_64 1" >> $config_h |
| 1364 | ;; |
| 1365 | alpha) |
| 1366 | echo "ARCH=alpha" >> $config_mak |
| 1367 | echo "#define HOST_ALPHA 1" >> $config_h |
| 1368 | ;; |
| 1369 | armv4b) |
| 1370 | echo "ARCH=arm" >> $config_mak |
| 1371 | echo "#define HOST_ARM 1" >> $config_h |
| 1372 | ;; |
| 1373 | armv4l) |
| 1374 | echo "ARCH=arm" >> $config_mak |
| 1375 | echo "#define HOST_ARM 1" >> $config_h |
| 1376 | ;; |
| 1377 | cris) |
| 1378 | echo "ARCH=cris" >> $config_mak |
| 1379 | echo "#define HOST_CRIS 1" >> $config_h |
| 1380 | ;; |
| 1381 | hppa) |
| 1382 | echo "ARCH=hppa" >> $config_mak |
| 1383 | echo "#define HOST_HPPA 1" >> $config_h |
| 1384 | ;; |
| 1385 | ia64) |
| 1386 | echo "ARCH=ia64" >> $config_mak |
| 1387 | echo "#define HOST_IA64 1" >> $config_h |
| 1388 | ;; |
| 1389 | m68k) |
| 1390 | echo "ARCH=m68k" >> $config_mak |
| 1391 | echo "#define HOST_M68K 1" >> $config_h |
| 1392 | ;; |
| 1393 | mips) |
| 1394 | echo "ARCH=mips" >> $config_mak |
| 1395 | echo "#define HOST_MIPS 1" >> $config_h |
| 1396 | ;; |
| 1397 | mips64) |
| 1398 | echo "ARCH=mips64" >> $config_mak |
| 1399 | echo "#define HOST_MIPS64 1" >> $config_h |
| 1400 | ;; |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 1401 | ppc) |
| 1402 | echo "ARCH=ppc" >> $config_mak |
| 1403 | echo "#define HOST_PPC 1" >> $config_h |
| 1404 | ;; |
| 1405 | ppc64) |
| 1406 | echo "ARCH=ppc64" >> $config_mak |
| 1407 | echo "#define HOST_PPC64 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1408 | ;; |
| 1409 | s390) |
| 1410 | echo "ARCH=s390" >> $config_mak |
| 1411 | echo "#define HOST_S390 1" >> $config_h |
| 1412 | ;; |
| 1413 | sparc) |
| 1414 | echo "ARCH=sparc" >> $config_mak |
| 1415 | echo "#define HOST_SPARC 1" >> $config_h |
| 1416 | ;; |
| 1417 | sparc64) |
| 1418 | echo "ARCH=sparc64" >> $config_mak |
| 1419 | echo "#define HOST_SPARC64 1" >> $config_h |
| 1420 | ;; |
| 1421 | *) |
| 1422 | echo "Unsupported CPU = $cpu" |
| 1423 | exit 1 |
| 1424 | ;; |
| 1425 | esac |
aurel32 | f839394 | 2009-04-13 18:45:38 +0000 | [diff] [blame] | 1426 | if test "$debug_tcg" = "yes" ; then |
| 1427 | echo "#define DEBUG_TCG 1" >> $config_h |
| 1428 | fi |
aliguori | 03b4fe7 | 2008-10-07 19:16:17 +0000 | [diff] [blame] | 1429 | if test "$sparse" = "yes" ; then |
| 1430 | echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak |
| 1431 | echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak |
| 1432 | echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak |
| 1433 | fi |
aliguori | 1625af8 | 2009-04-05 17:41:02 +0000 | [diff] [blame] | 1434 | if test "$strip_opt" = "yes" ; then |
| 1435 | echo "STRIP_OPT=-s" >> $config_mak |
| 1436 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1437 | if test "$bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1438 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
| 1439 | echo "#define WORDS_BIGENDIAN 1" >> $config_h |
| 1440 | fi |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 1441 | echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1442 | if test "$mingw32" = "yes" ; then |
| 1443 | echo "CONFIG_WIN32=yes" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1444 | echo "#define CONFIG_WIN32 1" >> $config_h |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1445 | else |
| 1446 | cat > $TMPC << EOF |
| 1447 | #include <byteswap.h> |
| 1448 | int main(void) { return bswap_32(0); } |
| 1449 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1450 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1451 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
| 1452 | fi |
blueswir1 | 1360677 | 2008-12-05 17:54:09 +0000 | [diff] [blame] | 1453 | cat > $TMPC << EOF |
| 1454 | #include <sys/endian.h> |
| 1455 | #include <sys/types.h> |
| 1456 | #include <machine/bswap.h> |
| 1457 | int main(void) { return bswap32(0); } |
| 1458 | EOF |
aurel32 | 178baee | 2008-12-08 18:11:57 +0000 | [diff] [blame] | 1459 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then |
blueswir1 | 1360677 | 2008-12-05 17:54:09 +0000 | [diff] [blame] | 1460 | echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h |
| 1461 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1462 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 1463 | |
| 1464 | if [ "$openbsd" = "yes" ] ; then |
| 1465 | echo "#define ENOTSUP 4096" >> $config_h |
| 1466 | fi |
| 1467 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1468 | if test "$darwin" = "yes" ; then |
| 1469 | echo "CONFIG_DARWIN=yes" >> $config_mak |
| 1470 | echo "#define CONFIG_DARWIN 1" >> $config_h |
| 1471 | fi |
malc | b29fe3e | 2008-11-18 01:42:22 +0000 | [diff] [blame] | 1472 | |
| 1473 | if test "$aix" = "yes" ; then |
| 1474 | echo "CONFIG_AIX=yes" >> $config_mak |
| 1475 | echo "#define CONFIG_AIX 1" >> $config_h |
| 1476 | fi |
| 1477 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1478 | if test "$solaris" = "yes" ; then |
| 1479 | echo "CONFIG_SOLARIS=yes" >> $config_mak |
bellard | 38cfa06 | 2006-05-01 13:58:07 +0000 | [diff] [blame] | 1480 | echo "#define HOST_SOLARIS $solarisrev" >> $config_h |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 1481 | if test "$needs_libsunmath" = "yes" ; then |
| 1482 | echo "NEEDS_LIBSUNMATH=yes" >> $config_mak |
| 1483 | echo "#define NEEDS_LIBSUNMATH 1" >> $config_h |
| 1484 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1485 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1486 | if test -n "$sparc_cpu"; then |
| 1487 | echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak |
| 1488 | echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h |
| 1489 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1490 | if test "$gdbstub" = "yes" ; then |
| 1491 | echo "CONFIG_GDBSTUB=yes" >> $config_mak |
| 1492 | echo "#define CONFIG_GDBSTUB 1" >> $config_h |
| 1493 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1494 | if test "$gprof" = "yes" ; then |
| 1495 | echo "TARGET_GPROF=yes" >> $config_mak |
| 1496 | echo "#define HAVE_GPROF 1" >> $config_h |
| 1497 | fi |
| 1498 | if test "$static" = "yes" ; then |
| 1499 | echo "CONFIG_STATIC=yes" >> $config_mak |
bellard | 5086347 | 2003-10-28 23:04:01 +0000 | [diff] [blame] | 1500 | echo "#define CONFIG_STATIC 1" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1501 | fi |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1502 | if test $profiler = "yes" ; then |
| 1503 | echo "#define CONFIG_PROFILER 1" >> $config_h |
| 1504 | fi |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame] | 1505 | if test "$slirp" = "yes" ; then |
| 1506 | echo "CONFIG_SLIRP=yes" >> $config_mak |
| 1507 | echo "#define CONFIG_SLIRP 1" >> $config_h |
| 1508 | fi |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1509 | if test "$vde" = "yes" ; then |
| 1510 | echo "CONFIG_VDE=yes" >> $config_mak |
| 1511 | echo "#define CONFIG_VDE 1" >> $config_h |
| 1512 | echo "VDE_LIBS=-lvdeplug" >> $config_mak |
| 1513 | fi |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1514 | for card in $audio_card_list; do |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1515 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1516 | echo "$def=yes" >> $config_mak |
| 1517 | echo "#define $def 1" >> $config_h |
| 1518 | done |
| 1519 | echo "#define AUDIO_DRIVERS \\" >> $config_h |
| 1520 | for drv in $audio_drv_list; do |
| 1521 | echo " &${drv}_audio_driver, \\" >>$config_h |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1522 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1523 | echo "$def=yes" >> $config_mak |
malc | 923e452 | 2008-07-02 18:13:46 +0000 | [diff] [blame] | 1524 | if test "$drv" = "fmod"; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1525 | echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak |
| 1526 | echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 1527 | elif test "$drv" = "oss"; then |
| 1528 | echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1529 | fi |
| 1530 | done |
| 1531 | echo "" >>$config_h |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1532 | if test "$mixemu" = "yes" ; then |
| 1533 | echo "CONFIG_MIXEMU=yes" >> $config_mak |
| 1534 | echo "#define CONFIG_MIXEMU 1" >> $config_h |
| 1535 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1536 | if test "$vnc_tls" = "yes" ; then |
| 1537 | echo "CONFIG_VNC_TLS=yes" >> $config_mak |
| 1538 | echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak |
| 1539 | echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak |
| 1540 | echo "#define CONFIG_VNC_TLS 1" >> $config_h |
| 1541 | fi |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 1542 | if test "$vnc_sasl" = "yes" ; then |
| 1543 | echo "CONFIG_VNC_SASL=yes" >> $config_mak |
| 1544 | echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak |
| 1545 | echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak |
| 1546 | echo "#define CONFIG_VNC_SASL 1" >> $config_h |
| 1547 | fi |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 1548 | if test "$fnmatch" = "yes" ; then |
| 1549 | echo "#define HAVE_FNMATCH_H 1" >> $config_h |
| 1550 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 1551 | qemu_version=`head $source_path/VERSION` |
| 1552 | echo "VERSION=$qemu_version" >>$config_mak |
pbrook | d4b8f03 | 2006-04-16 13:49:23 +0000 | [diff] [blame] | 1553 | echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1554 | |
pbrook | 4a19f1e | 2009-04-07 23:17:49 +0000 | [diff] [blame] | 1555 | echo "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h |
| 1556 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1557 | echo "SRC_PATH=$source_path" >> $config_mak |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 1558 | if [ "$source_path_used" = "yes" ]; then |
| 1559 | echo "VPATH=$source_path" >> $config_mak |
| 1560 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1561 | echo "TARGET_DIRS=$target_list" >> $config_mak |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1562 | if [ "$build_docs" = "yes" ] ; then |
| 1563 | echo "BUILD_DOCS=yes" >> $config_mak |
| 1564 | fi |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1565 | if test "$static" = "yes"; then |
| 1566 | sdl1=$sdl_static |
| 1567 | else |
| 1568 | sdl1=$sdl |
| 1569 | fi |
| 1570 | if test "$sdl1" = "yes" ; then |
| 1571 | echo "#define CONFIG_SDL 1" >> $config_h |
| 1572 | echo "CONFIG_SDL=yes" >> $config_mak |
| 1573 | if test "$target_softmmu" = "no" -o "$static" = "yes"; then |
| 1574 | echo "SDL_LIBS=$sdl_static_libs" >> $config_mak |
aliguori | 5368a42 | 2009-03-03 17:37:21 +0000 | [diff] [blame] | 1575 | elif test "$sdl_x11" = "yes" ; then |
| 1576 | echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1577 | else |
| 1578 | echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak |
| 1579 | fi |
| 1580 | if [ "${aa}" = "yes" ] ; then |
| 1581 | echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak |
| 1582 | else |
| 1583 | echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak |
| 1584 | fi |
| 1585 | fi |
| 1586 | if test "$cocoa" = "yes" ; then |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1587 | echo "#define CONFIG_COCOA 1" >> $config_h |
| 1588 | echo "CONFIG_COCOA=yes" >> $config_mak |
| 1589 | fi |
| 1590 | if test "$curses" = "yes" ; then |
| 1591 | echo "#define CONFIG_CURSES 1" >> $config_h |
| 1592 | echo "CONFIG_CURSES=yes" >> $config_mak |
| 1593 | echo "CURSES_LIBS=-lcurses" >> $config_mak |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1594 | fi |
aurel32 | 3b3f24a | 2009-04-15 16:12:13 +0000 | [diff] [blame] | 1595 | if test "$atfile" = "yes" ; then |
| 1596 | echo "#define CONFIG_ATFILE 1" >> $config_h |
| 1597 | fi |
| 1598 | if test "$inotify" = "yes" ; then |
| 1599 | echo "#define CONFIG_INOTIFY 1" >> $config_h |
| 1600 | fi |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1601 | if test "$brlapi" = "yes" ; then |
| 1602 | echo "CONFIG_BRLAPI=yes" >> $config_mak |
| 1603 | echo "#define CONFIG_BRLAPI 1" >> $config_h |
| 1604 | echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak |
| 1605 | fi |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame] | 1606 | if test "$bluez" = "yes" ; then |
| 1607 | echo "CONFIG_BLUEZ=yes" >> $config_mak |
| 1608 | echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak |
| 1609 | echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak |
| 1610 | echo "#define CONFIG_BLUEZ 1" >> $config_h |
| 1611 | fi |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1612 | if test "$aio" = "yes" ; then |
| 1613 | echo "#define CONFIG_AIO 1" >> $config_h |
aliguori | a3392f9 | 2008-09-11 18:00:19 +0000 | [diff] [blame] | 1614 | echo "CONFIG_AIO=yes" >> $config_mak |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1615 | fi |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 1616 | if test "$blobs" = "yes" ; then |
| 1617 | echo "INSTALL_BLOBS=yes" >> $config_mak |
| 1618 | fi |
aliguori | bf9298b | 2008-12-05 20:05:26 +0000 | [diff] [blame] | 1619 | if test "$iovec" = "yes" ; then |
| 1620 | echo "#define HAVE_IOVEC 1" >> $config_h |
| 1621 | fi |
aliguori | ceb42de | 2009-04-07 18:43:28 +0000 | [diff] [blame] | 1622 | if test "$preadv" = "yes" ; then |
| 1623 | echo "#define HAVE_PREADV 1" >> $config_h |
| 1624 | fi |
aurel32 | f652e6a | 2008-12-16 10:43:48 +0000 | [diff] [blame] | 1625 | if test "$fdt" = "yes" ; then |
| 1626 | echo "#define HAVE_FDT 1" >> $config_h |
| 1627 | echo "FDT_LIBS=-lfdt" >> $config_mak |
| 1628 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1629 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1630 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1631 | if [ "$bsd" = "yes" ] ; then |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1632 | echo "#define O_LARGEFILE 0" >> $config_h |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1633 | echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h |
blueswir1 | 179a2c1 | 2009-03-08 08:23:32 +0000 | [diff] [blame] | 1634 | echo "#define HOST_BSD 1" >> $config_h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1635 | fi |
| 1636 | |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1637 | echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h |
| 1638 | |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 1639 | # USB host support |
| 1640 | case "$usb" in |
| 1641 | linux) |
| 1642 | echo "HOST_USB=linux" >> $config_mak |
| 1643 | ;; |
| 1644 | bsd) |
| 1645 | echo "HOST_USB=bsd" >> $config_mak |
| 1646 | ;; |
| 1647 | *) |
| 1648 | echo "HOST_USB=stub" >> $config_mak |
| 1649 | ;; |
| 1650 | esac |
| 1651 | |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1652 | tools= |
| 1653 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then |
aliguori | 3dd1f8e | 2009-04-05 19:29:26 +0000 | [diff] [blame] | 1654 | tools="qemu-img\$(EXESUF) $tools" |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 1655 | if [ "$linux" = "yes" ] ; then |
aliguori | 3dd1f8e | 2009-04-05 19:29:26 +0000 | [diff] [blame] | 1656 | tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 1657 | fi |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1658 | fi |
| 1659 | echo "TOOLS=$tools" >> $config_mak |
| 1660 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1661 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1662 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1663 | for target in $target_list; do |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1664 | target_dir="$target" |
| 1665 | config_mak=$target_dir/config.mak |
| 1666 | config_h=$target_dir/config.h |
| 1667 | target_cpu=`echo $target | cut -d '-' -f 1` |
| 1668 | target_bigendian="no" |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 1669 | [ "$target_cpu" = "armeb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1670 | [ "$target_cpu" = "m68k" ] && target_bigendian=yes |
| 1671 | [ "$target_cpu" = "mips" ] && target_bigendian=yes |
| 1672 | [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes |
| 1673 | [ "$target_cpu" = "mips64" ] && target_bigendian=yes |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1674 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 1675 | [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes |
j_mayer | 22f8a8b | 2007-10-14 08:38:29 +0000 | [diff] [blame] | 1676 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 1677 | [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes |
pbrook | 908f52b | 2006-06-18 19:16:53 +0000 | [diff] [blame] | 1678 | [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1679 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
| 1680 | [ "$target_cpu" = "sparc64" ] && target_bigendian=yes |
| 1681 | [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1682 | target_softmmu="no" |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1683 | target_user_only="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1684 | target_linux_user="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1685 | target_darwin_user="no" |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1686 | target_bsd_user="no" |
pbrook | 9e407a8 | 2007-05-26 16:38:53 +0000 | [diff] [blame] | 1687 | case "$target" in |
| 1688 | ${target_cpu}-softmmu) |
| 1689 | target_softmmu="yes" |
| 1690 | ;; |
| 1691 | ${target_cpu}-linux-user) |
| 1692 | target_user_only="yes" |
| 1693 | target_linux_user="yes" |
| 1694 | ;; |
| 1695 | ${target_cpu}-darwin-user) |
| 1696 | target_user_only="yes" |
| 1697 | target_darwin_user="yes" |
| 1698 | ;; |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1699 | ${target_cpu}-bsd-user) |
| 1700 | target_user_only="yes" |
| 1701 | target_bsd_user="yes" |
| 1702 | ;; |
pbrook | 9e407a8 | 2007-05-26 16:38:53 +0000 | [diff] [blame] | 1703 | *) |
| 1704 | echo "ERROR: Target '$target' not recognised" |
| 1705 | exit 1 |
| 1706 | ;; |
| 1707 | esac |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1708 | |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1709 | if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1710 | -a "$sdl" = "no" -a "$cocoa" = "no" ; then |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1711 | echo "ERROR: QEMU requires SDL or Cocoa for graphical output" |
pbrook | 9c03850 | 2006-04-16 15:19:15 +0000 | [diff] [blame] | 1712 | echo "To build QEMU without graphical output configure with --disable-gfx-check" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1713 | echo "Note that this will disable all output from the virtual graphics card" |
| 1714 | echo "except through VNC or curses." |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1715 | exit 1; |
| 1716 | fi |
| 1717 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1718 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1719 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1720 | test -f $config_h && mv $config_h ${config_h}~ |
| 1721 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1722 | mkdir -p $target_dir |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1723 | mkdir -p $target_dir/fpu |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1724 | mkdir -p $target_dir/tcg |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1725 | 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] | 1726 | mkdir -p $target_dir/nwfpe |
| 1727 | fi |
| 1728 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1729 | # |
| 1730 | # don't use ln -sf as not all "ln -sf" over write the file/link |
| 1731 | # |
| 1732 | rm -f $target_dir/Makefile |
| 1733 | ln -s $source_path/Makefile.target $target_dir/Makefile |
| 1734 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1735 | |
| 1736 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 1737 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1738 | |
| 1739 | |
| 1740 | echo "include ../config-host.mak" >> $config_mak |
| 1741 | echo "#include \"../config-host.h\"" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1742 | |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1743 | bflt="no" |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1744 | elfload32="no" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1745 | target_nptl="no" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1746 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
| 1747 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1748 | gdb_xml_files="" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1749 | |
aliguori | 5985ece | 2008-11-05 19:59:25 +0000 | [diff] [blame] | 1750 | # Make sure the target and host cpus are compatible |
| 1751 | if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \ |
malc | fdf7ed9 | 2009-01-14 18:39:52 +0000 | [diff] [blame] | 1752 | \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \ |
aliguori | 5985ece | 2008-11-05 19:59:25 +0000 | [diff] [blame] | 1753 | \( "$target_cpu" = "x86_64" -a "$cpu" = "i386" \) -o \ |
| 1754 | \( "$target_cpu" = "i386" -a "$cpu" = "x86_64" \) \) ; then |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1755 | kvm="no" |
| 1756 | fi |
| 1757 | # Disable KVM for linux-user |
| 1758 | if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then |
| 1759 | kvm="no" |
| 1760 | fi |
| 1761 | |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1762 | case "$target_cpu" in |
| 1763 | i386) |
| 1764 | echo "TARGET_ARCH=i386" >> $config_mak |
| 1765 | echo "#define TARGET_ARCH \"i386\"" >> $config_h |
| 1766 | echo "#define TARGET_I386 1" >> $config_h |
bellard | da26024 | 2008-05-30 20:48:25 +0000 | [diff] [blame] | 1767 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1768 | then |
| 1769 | echo "#define USE_KQEMU 1" >> $config_h |
| 1770 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1771 | if test "$kvm" = "yes" ; then |
| 1772 | echo "CONFIG_KVM=yes" >> $config_mak |
| 1773 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak |
aliguori | 5985ece | 2008-11-05 19:59:25 +0000 | [diff] [blame] | 1774 | echo "#define CONFIG_KVM 1" >> $config_h |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1775 | fi |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1776 | ;; |
| 1777 | x86_64) |
| 1778 | echo "TARGET_ARCH=x86_64" >> $config_mak |
| 1779 | echo "#define TARGET_ARCH \"x86_64\"" >> $config_h |
| 1780 | echo "#define TARGET_I386 1" >> $config_h |
| 1781 | echo "#define TARGET_X86_64 1" >> $config_h |
| 1782 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" |
| 1783 | then |
| 1784 | echo "#define USE_KQEMU 1" >> $config_h |
| 1785 | fi |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 1786 | if test "$kvm" = "yes" ; then |
| 1787 | echo "CONFIG_KVM=yes" >> $config_mak |
| 1788 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak |
| 1789 | echo "#define CONFIG_KVM 1" >> $config_h |
| 1790 | fi |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1791 | ;; |
| 1792 | alpha) |
| 1793 | echo "TARGET_ARCH=alpha" >> $config_mak |
| 1794 | echo "#define TARGET_ARCH \"alpha\"" >> $config_h |
| 1795 | echo "#define TARGET_ALPHA 1" >> $config_h |
| 1796 | ;; |
| 1797 | arm|armeb) |
| 1798 | echo "TARGET_ARCH=arm" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1799 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
| 1800 | echo "#define TARGET_ARM 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1801 | bflt="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1802 | target_nptl="yes" |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1803 | 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] | 1804 | ;; |
| 1805 | cris) |
| 1806 | echo "TARGET_ARCH=cris" >> $config_mak |
| 1807 | echo "#define TARGET_ARCH \"cris\"" >> $config_h |
| 1808 | echo "#define TARGET_CRIS 1" >> $config_h |
edgar_igl | 253bd7f | 2009-01-07 20:07:09 +0000 | [diff] [blame] | 1809 | target_nptl="yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1810 | ;; |
| 1811 | m68k) |
| 1812 | echo "TARGET_ARCH=m68k" >> $config_mak |
| 1813 | echo "#define TARGET_ARCH \"m68k\"" >> $config_h |
| 1814 | echo "#define TARGET_M68K 1" >> $config_h |
| 1815 | bflt="yes" |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1816 | gdb_xml_files="cf-core.xml cf-fp.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1817 | ;; |
| 1818 | mips|mipsel) |
| 1819 | echo "TARGET_ARCH=mips" >> $config_mak |
| 1820 | echo "#define TARGET_ARCH \"mips\"" >> $config_h |
| 1821 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1822 | echo "#define TARGET_ABI_MIPSO32 1" >> $config_h |
| 1823 | ;; |
| 1824 | mipsn32|mipsn32el) |
| 1825 | echo "TARGET_ARCH=mipsn32" >> $config_mak |
| 1826 | echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h |
| 1827 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1828 | echo "#define TARGET_ABI_MIPSN32 1" >> $config_h |
| 1829 | ;; |
| 1830 | mips64|mips64el) |
| 1831 | echo "TARGET_ARCH=mips64" >> $config_mak |
| 1832 | echo "#define TARGET_ARCH \"mips64\"" >> $config_h |
| 1833 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1834 | echo "#define TARGET_MIPS64 1" >> $config_h |
| 1835 | echo "#define TARGET_ABI_MIPSN64 1" >> $config_h |
| 1836 | ;; |
| 1837 | ppc) |
| 1838 | echo "TARGET_ARCH=ppc" >> $config_mak |
| 1839 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h |
| 1840 | echo "#define TARGET_PPC 1" >> $config_h |
aurel32 | c8b3532 | 2009-01-24 15:07:34 +0000 | [diff] [blame] | 1841 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1842 | ;; |
| 1843 | ppcemb) |
| 1844 | echo "TARGET_ARCH=ppcemb" >> $config_mak |
| 1845 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
| 1846 | echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h |
| 1847 | echo "#define TARGET_PPC 1" >> $config_h |
| 1848 | echo "#define TARGET_PPCEMB 1" >> $config_h |
aurel32 | d76d165 | 2008-12-16 10:43:58 +0000 | [diff] [blame] | 1849 | if test "$kvm" = "yes" ; then |
| 1850 | echo "CONFIG_KVM=yes" >> $config_mak |
| 1851 | echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak |
| 1852 | echo "#define CONFIG_KVM 1" >> $config_h |
| 1853 | fi |
aurel32 | c8b3532 | 2009-01-24 15:07:34 +0000 | [diff] [blame] | 1854 | gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1855 | ;; |
| 1856 | ppc64) |
| 1857 | echo "TARGET_ARCH=ppc64" >> $config_mak |
| 1858 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
| 1859 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h |
| 1860 | echo "#define TARGET_PPC 1" >> $config_h |
| 1861 | echo "#define TARGET_PPC64 1" >> $config_h |
aurel32 | c8b3532 | 2009-01-24 15:07:34 +0000 | [diff] [blame] | 1862 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1863 | ;; |
| 1864 | ppc64abi32) |
| 1865 | echo "TARGET_ARCH=ppc64" >> $config_mak |
| 1866 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
| 1867 | echo "TARGET_ARCH2=ppc64abi32" >> $config_mak |
| 1868 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h |
| 1869 | echo "#define TARGET_PPC 1" >> $config_h |
| 1870 | echo "#define TARGET_PPC64 1" >> $config_h |
| 1871 | echo "#define TARGET_ABI32 1" >> $config_h |
aurel32 | c8b3532 | 2009-01-24 15:07:34 +0000 | [diff] [blame] | 1872 | gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1873 | ;; |
| 1874 | sh4|sh4eb) |
| 1875 | echo "TARGET_ARCH=sh4" >> $config_mak |
| 1876 | echo "#define TARGET_ARCH \"sh4\"" >> $config_h |
| 1877 | echo "#define TARGET_SH4 1" >> $config_h |
| 1878 | bflt="yes" |
aurel32 | 0b6d3ae | 2008-09-15 07:43:43 +0000 | [diff] [blame] | 1879 | target_nptl="yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1880 | ;; |
| 1881 | sparc) |
| 1882 | echo "TARGET_ARCH=sparc" >> $config_mak |
| 1883 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h |
| 1884 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1885 | ;; |
| 1886 | sparc64) |
| 1887 | echo "TARGET_ARCH=sparc64" >> $config_mak |
| 1888 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h |
| 1889 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1890 | echo "#define TARGET_SPARC64 1" >> $config_h |
| 1891 | elfload32="yes" |
| 1892 | ;; |
| 1893 | sparc32plus) |
| 1894 | echo "TARGET_ARCH=sparc64" >> $config_mak |
| 1895 | echo "TARGET_ABI_DIR=sparc" >> $config_mak |
| 1896 | echo "TARGET_ARCH2=sparc32plus" >> $config_mak |
| 1897 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h |
| 1898 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1899 | echo "#define TARGET_SPARC64 1" >> $config_h |
| 1900 | echo "#define TARGET_ABI32 1" >> $config_h |
| 1901 | ;; |
| 1902 | *) |
| 1903 | echo "Unsupported target CPU" |
| 1904 | exit 1 |
| 1905 | ;; |
| 1906 | esac |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1907 | if test "$target_bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1908 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
| 1909 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h |
| 1910 | fi |
| 1911 | if test "$target_softmmu" = "yes" ; then |
| 1912 | echo "CONFIG_SOFTMMU=yes" >> $config_mak |
| 1913 | echo "#define CONFIG_SOFTMMU 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1914 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1915 | if test "$target_user_only" = "yes" ; then |
| 1916 | echo "CONFIG_USER_ONLY=yes" >> $config_mak |
| 1917 | echo "#define CONFIG_USER_ONLY 1" >> $config_h |
| 1918 | fi |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1919 | if test "$target_linux_user" = "yes" ; then |
| 1920 | echo "CONFIG_LINUX_USER=yes" >> $config_mak |
| 1921 | echo "#define CONFIG_LINUX_USER 1" >> $config_h |
| 1922 | fi |
| 1923 | if test "$target_darwin_user" = "yes" ; then |
| 1924 | echo "CONFIG_DARWIN_USER=yes" >> $config_mak |
| 1925 | echo "#define CONFIG_DARWIN_USER 1" >> $config_h |
| 1926 | fi |
pbrook | 56aebc8 | 2008-10-11 17:55:29 +0000 | [diff] [blame] | 1927 | list="" |
| 1928 | if test ! -z "$gdb_xml_files" ; then |
| 1929 | for x in $gdb_xml_files; do |
| 1930 | list="$list $source_path/gdb-xml/$x" |
| 1931 | done |
| 1932 | fi |
| 1933 | echo "TARGET_XML_FILES=$list" >> $config_mak |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1934 | |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1935 | if test "$target_cpu" = "arm" \ |
| 1936 | -o "$target_cpu" = "armeb" \ |
| 1937 | -o "$target_cpu" = "m68k" \ |
| 1938 | -o "$target_cpu" = "mips" \ |
| 1939 | -o "$target_cpu" = "mipsel" \ |
| 1940 | -o "$target_cpu" = "mipsn32" \ |
| 1941 | -o "$target_cpu" = "mipsn32el" \ |
| 1942 | -o "$target_cpu" = "mips64" \ |
| 1943 | -o "$target_cpu" = "mips64el" \ |
aurel32 | 3147d1e | 2008-12-15 06:34:37 +0000 | [diff] [blame] | 1944 | -o "$target_cpu" = "ppc" \ |
| 1945 | -o "$target_cpu" = "ppc64" \ |
aurel32 | 71e991f | 2008-12-15 17:13:19 +0000 | [diff] [blame] | 1946 | -o "$target_cpu" = "ppc64abi32" \ |
| 1947 | -o "$target_cpu" = "ppcemb" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1948 | -o "$target_cpu" = "sparc" \ |
| 1949 | -o "$target_cpu" = "sparc64" \ |
| 1950 | -o "$target_cpu" = "sparc32plus"; then |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1951 | echo "CONFIG_SOFTFLOAT=yes" >> $config_mak |
| 1952 | echo "#define CONFIG_SOFTFLOAT 1" >> $config_h |
| 1953 | fi |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1954 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
| 1955 | echo "TARGET_HAS_BFLT=yes" >> $config_mak |
| 1956 | echo "#define TARGET_HAS_BFLT 1" >> $config_h |
| 1957 | fi |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1958 | if test "$target_user_only" = "yes" \ |
| 1959 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then |
| 1960 | echo "#define USE_NPTL 1" >> $config_h |
| 1961 | fi |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1962 | # 32 bit ELF loader in addition to native 64 bit loader? |
| 1963 | if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then |
| 1964 | echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak |
| 1965 | echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h |
| 1966 | fi |
blueswir1 | 8477850 | 2008-10-26 20:33:16 +0000 | [diff] [blame] | 1967 | if test "$target_bsd_user" = "yes" ; then |
| 1968 | echo "CONFIG_BSD_USER=yes" >> $config_mak |
| 1969 | echo "#define CONFIG_BSD_USER 1" >> $config_h |
| 1970 | fi |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 1971 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1972 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1973 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1974 | done # for target in $targets |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1975 | |
| 1976 | # build tree in object directory if source path is different from current one |
| 1977 | if test "$source_path_used" = "yes" ; then |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1978 | DIRS="tests tests/cris slirp audio" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1979 | FILES="Makefile tests/Makefile" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 1980 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
edgar_igl | e1ffb0f | 2008-03-01 22:23:17 +0000 | [diff] [blame] | 1981 | FILES="$FILES tests/test-mmap.c" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1982 | for dir in $DIRS ; do |
| 1983 | mkdir -p $dir |
| 1984 | done |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1985 | # 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] | 1986 | for f in $FILES ; do |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1987 | rm -f $f |
| 1988 | ln -s $source_path/$f $f |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1989 | done |
| 1990 | fi |