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