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" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 18 | |
| 19 | # default parameters |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 20 | prefix="" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 21 | interp_prefix="/usr/gnemul/qemu-%M" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 22 | static="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 23 | cross_prefix="" |
| 24 | cc="gcc" |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 25 | gcc3_search="yes" |
balrog | fe8f78e | 2007-10-31 01:03:28 +0000 | [diff] [blame] | 26 | gcc3_list="gcc-3.4.6 gcc-3.4 gcc34 gcc-3.3.6 gcc-3.3 gcc33 gcc-3.2 gcc32" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 27 | audio_drv_list="" |
| 28 | audio_card_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 29 | host_cc="gcc" |
| 30 | ar="ar" |
| 31 | make="make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 32 | install="install" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 33 | strip="strip" |
| 34 | cpu=`uname -m` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 35 | target_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 36 | case "$cpu" in |
| 37 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 38 | cpu="i386" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 39 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 40 | x86_64|amd64) |
| 41 | cpu="x86_64" |
| 42 | ;; |
| 43 | alpha) |
| 44 | cpu="alpha" |
| 45 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 46 | armv*b) |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 47 | cpu="armv4b" |
| 48 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 49 | armv*l) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 50 | cpu="armv4l" |
| 51 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 52 | cris) |
| 53 | cpu="cris" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 54 | ;; |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 55 | parisc|parisc64) |
| 56 | cpu="hppa" |
| 57 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 58 | ia64) |
| 59 | cpu="ia64" |
| 60 | ;; |
| 61 | m68k) |
| 62 | cpu="m68k" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 63 | ;; |
| 64 | mips) |
| 65 | cpu="mips" |
| 66 | ;; |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 67 | mips64) |
| 68 | cpu="mips64" |
| 69 | ;; |
aurel32 | aaa5fa1 | 2008-04-11 22:04:22 +0000 | [diff] [blame] | 70 | "Power Macintosh"|ppc|ppc64) |
| 71 | cpu="powerpc" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 72 | ;; |
ths | 0e7b8a9 | 2007-08-01 00:09:31 +0000 | [diff] [blame] | 73 | s390*) |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 74 | cpu="s390" |
| 75 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 76 | sparc|sun4[cdmuv]) |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 77 | cpu="sparc" |
| 78 | ;; |
| 79 | sparc64) |
| 80 | cpu="sparc64" |
| 81 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 82 | *) |
| 83 | cpu="unknown" |
| 84 | ;; |
| 85 | esac |
| 86 | gprof="no" |
| 87 | bigendian="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 88 | mingw32="no" |
| 89 | EXESUF="" |
| 90 | gdbstub="yes" |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 91 | slirp="yes" |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 92 | vde="yes" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 93 | fmod_lib="" |
| 94 | fmod_inc="" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 95 | oss_lib="" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 96 | vnc_tls="yes" |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 97 | bsd="no" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 98 | linux="no" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 99 | kqemu="no" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 100 | profiler="no" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 101 | cocoa="no" |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 102 | check_gfx="yes" |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 103 | check_gcc="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 104 | softmmu="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 105 | linux_user="no" |
| 106 | darwin_user="no" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 107 | build_docs="no" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 108 | uname_release="" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 109 | curses="yes" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 110 | aio="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 111 | nptl="yes" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 112 | mixemu="no" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame^] | 113 | bluez="yes" |
aliguori | 2746310 | 2008-09-27 20:58:43 +0000 | [diff] [blame] | 114 | signalfd="no" |
| 115 | eventfd="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 116 | |
| 117 | # OS specific |
| 118 | targetos=`uname -s` |
| 119 | case $targetos in |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 120 | CYGWIN*) |
| 121 | mingw32="yes" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 122 | OS_CFLAGS="-mno-cygwin" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 123 | if [ "$cpu" = "i386" ] ; then |
| 124 | kqemu="yes" |
| 125 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 126 | audio_possible_drivers="sdl" |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 127 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 128 | MINGW32*) |
| 129 | mingw32="yes" |
ths | db8d7dd | 2007-07-12 09:29:18 +0000 | [diff] [blame] | 130 | if [ "$cpu" = "i386" ] ; then |
| 131 | kqemu="yes" |
| 132 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 133 | audio_possible_drivers="dsound sdl fmod" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 134 | ;; |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 135 | GNU/kFreeBSD) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 136 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 137 | audio_possible_drivers="oss sdl esd pa" |
ths | 5c40d2b | 2007-06-23 16:03:36 +0000 | [diff] [blame] | 138 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
| 139 | kqemu="yes" |
| 140 | fi |
| 141 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 142 | FreeBSD) |
| 143 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 144 | audio_drv_list="oss" |
aurel32 | f34af52 | 2008-08-21 23:03:15 +0000 | [diff] [blame] | 145 | audio_possible_drivers="oss sdl esd pa" |
bellard | e99f906 | 2005-07-28 21:45:38 +0000 | [diff] [blame] | 146 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 147 | kqemu="yes" |
| 148 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 149 | ;; |
| 150 | NetBSD) |
| 151 | bsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 152 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 153 | audio_possible_drivers="oss sdl esd" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 154 | ;; |
| 155 | OpenBSD) |
| 156 | bsd="yes" |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 157 | openbsd="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 158 | audio_drv_list="oss" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 159 | audio_possible_drivers="oss sdl esd" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 160 | oss_lib="-lossaudio" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 161 | ;; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 162 | Darwin) |
| 163 | bsd="yes" |
| 164 | darwin="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 165 | darwin_user="yes" |
ths | fd67764 | 2007-01-31 12:10:07 +0000 | [diff] [blame] | 166 | cocoa="yes" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 167 | audio_drv_list="coreaudio" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 168 | audio_possible_drivers="coreaudio sdl fmod" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 169 | OS_CFLAGS="-mdynamic-no-pic" |
ths | c2c59c3 | 2008-01-08 00:00:20 +0000 | [diff] [blame] | 170 | OS_LDFLAGS="-framework CoreFoundation -framework IOKit" |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 171 | ;; |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 172 | SunOS) |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 173 | solaris="yes" |
| 174 | make="gmake" |
| 175 | install="ginstall" |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 176 | needs_libsunmath="no" |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 177 | solarisrev=`uname -r | cut -f2 -d.` |
ths | ef18c88 | 2007-09-16 22:12:39 +0000 | [diff] [blame] | 178 | # have to select again, because `uname -m` returns i86pc |
| 179 | # even on an x86_64 box. |
| 180 | solariscpu=`isainfo -k` |
| 181 | if test "${solariscpu}" = "amd64" ; then |
| 182 | cpu="x86_64" |
| 183 | fi |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 184 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 185 | if test "$solarisrev" -le 9 ; then |
| 186 | if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then |
| 187 | needs_libsunmath="yes" |
| 188 | else |
| 189 | echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" |
| 190 | echo "libsunmath from the Sun Studio compilers tools, due to a lack of" |
| 191 | echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" |
| 192 | echo "Studio 11 can be downloaded from www.sun.com." |
| 193 | exit 1 |
| 194 | fi |
| 195 | fi |
| 196 | if test "$solarisrev" -ge 9 ; then |
ths | c2b84fa | 2007-02-10 23:21:21 +0000 | [diff] [blame] | 197 | kqemu="yes" |
| 198 | fi |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 199 | fi |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 200 | if test -f /usr/include/sys/soundcard.h ; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 201 | audio_drv_list="oss" |
ths | 6b4d2ba | 2007-05-13 18:02:43 +0000 | [diff] [blame] | 202 | fi |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 203 | audio_possible_drivers="oss sdl" |
ths | 86b2bd9 | 2007-02-11 00:31:33 +0000 | [diff] [blame] | 204 | ;; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 205 | *) |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 206 | audio_drv_list="oss" |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 207 | audio_possible_drivers="oss alsa sdl esd pa" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 208 | linux="yes" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 209 | linux_user="yes" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 210 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 211 | kqemu="yes" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 212 | audio_possible_drivers="$audio_possible_drivers fmod" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 213 | fi |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 214 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 215 | esac |
| 216 | |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 217 | if [ "$bsd" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 218 | if [ "$darwin" != "yes" ] ; then |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 219 | make="gmake" |
| 220 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 221 | fi |
| 222 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 223 | # find source path |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 224 | source_path=`dirname "$0"` |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 225 | source_path_used="no" |
| 226 | workdir=`pwd` |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 227 | if [ -z "$source_path" ]; then |
balrog | 59faef3 | 2008-02-03 04:22:24 +0000 | [diff] [blame] | 228 | source_path=$workdir |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 229 | else |
| 230 | source_path=`cd "$source_path"; pwd` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 231 | fi |
pbrook | 724db11 | 2008-02-03 19:20:13 +0000 | [diff] [blame] | 232 | [ -f "$workdir/vl.c" ] || source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 233 | |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 234 | werror="no" |
bellard | 0d1e239 | 2007-11-11 20:24:30 +0000 | [diff] [blame] | 235 | # generate compile errors on warnings for development builds |
| 236 | #if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then |
| 237 | #werror="yes"; |
| 238 | #fi |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 239 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 240 | for opt do |
pbrook | a46e403 | 2006-04-29 23:05:22 +0000 | [diff] [blame] | 241 | optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 242 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 243 | --help|-h) show_help=yes |
| 244 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 245 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 246 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 247 | --interp-prefix=*) interp_prefix="$optarg" |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 248 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 249 | --source-path=*) source_path="$optarg" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 250 | source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 251 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 252 | --cross-prefix=*) cross_prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 253 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 254 | --cc=*) cc="$optarg" |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 255 | gcc3_search="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 256 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 257 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 258 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 259 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 260 | ;; |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 261 | --install=*) install="$optarg" |
| 262 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 263 | --extra-cflags=*) CFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 264 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 265 | --extra-ldflags=*) LDFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 266 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 267 | --cpu=*) cpu="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 268 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 269 | --target-list=*) target_list="$optarg" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 270 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 271 | --enable-gprof) gprof="yes" |
| 272 | ;; |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 273 | --static) static="yes" |
| 274 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 275 | --disable-sdl) sdl="no" |
| 276 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 277 | --fmod-lib=*) fmod_lib="$optarg" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 278 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 279 | --fmod-inc=*) fmod_inc="$optarg" |
| 280 | ;; |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 281 | --oss-lib=*) oss_lib="$optarg" |
| 282 | ;; |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 283 | --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 284 | ;; |
| 285 | --audio-drv-list=*) audio_drv_list="$optarg" |
| 286 | ;; |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 287 | --disable-vnc-tls) vnc_tls="no" |
| 288 | ;; |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 289 | --disable-slirp) slirp="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 290 | ;; |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 291 | --disable-vde) vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 292 | ;; |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 293 | --disable-kqemu) kqemu="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 294 | ;; |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 295 | --disable-brlapi) brlapi="no" |
| 296 | ;; |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame^] | 297 | --disable-bluez) bluez="no" |
| 298 | ;; |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 299 | --enable-profiler) profiler="yes" |
| 300 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 301 | --enable-cocoa) |
| 302 | cocoa="yes" ; |
| 303 | sdl="no" ; |
| 304 | audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 305 | ;; |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 306 | --disable-gfx-check) check_gfx="no" |
| 307 | ;; |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 308 | --disable-gcc-check) check_gcc="no" |
| 309 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 310 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 311 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 312 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 313 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 314 | --disable-linux-user) linux_user="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 315 | ;; |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 316 | --enable-linux-user) linux_user="yes" |
| 317 | ;; |
| 318 | --disable-darwin-user) darwin_user="no" |
| 319 | ;; |
| 320 | --enable-darwin-user) darwin_user="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 321 | ;; |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 322 | --enable-uname-release=*) uname_release="$optarg" |
| 323 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 324 | --sparc_cpu=*) |
| 325 | sparc_cpu="$optarg" |
| 326 | case $sparc_cpu in |
| 327 | v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" |
| 328 | target_cpu="sparc"; cpu="sparc" ;; |
| 329 | v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" |
| 330 | target_cpu="sparc"; cpu="sparc" ;; |
| 331 | v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64" |
| 332 | target_cpu="sparc64"; cpu="sparc64" ;; |
| 333 | *) echo "undefined SPARC architecture. Exiting";exit 1;; |
| 334 | esac |
| 335 | ;; |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 336 | --enable-werror) werror="yes" |
| 337 | ;; |
| 338 | --disable-werror) werror="no" |
| 339 | ;; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 340 | --disable-curses) curses="no" |
| 341 | ;; |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 342 | --disable-nptl) nptl="no" |
| 343 | ;; |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 344 | --enable-mixemu) mixemu="yes" |
| 345 | ;; |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 346 | --disable-aio) aio="no" |
| 347 | ;; |
balrog | 7f1559c | 2007-11-17 10:24:32 +0000 | [diff] [blame] | 348 | *) echo "ERROR: unknown option $opt"; show_help="yes" |
| 349 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 350 | esac |
| 351 | done |
| 352 | |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 353 | # default flags for all hosts |
blueswir1 | ac41a62 | 2008-09-14 06:46:31 +0000 | [diff] [blame] | 354 | CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing" |
| 355 | CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings" |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 356 | LDFLAGS="$LDFLAGS -g" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 357 | if test "$werror" = "yes" ; then |
| 358 | CFLAGS="$CFLAGS -Werror" |
| 359 | fi |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 360 | |
blueswir1 | 49237ac | 2008-09-17 19:05:19 +0000 | [diff] [blame] | 361 | if ld --version 2>/dev/null | grep -q "GNU ld" ; then |
| 362 | LDFLAGS="$LDFLAGS -Wl,--warn-common" |
| 363 | fi |
| 364 | |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 365 | # |
| 366 | # If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right |
| 367 | # ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) |
| 368 | # |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 369 | case "$cpu" in |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 370 | sparc) if test -z "$sparc_cpu" ; then |
| 371 | ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__" |
| 372 | ARCH_LDFLAGS="-m32" |
| 373 | else |
| 374 | ARCH_CFLAGS="${SP_CFLAGS}" |
| 375 | ARCH_LDFLAGS="${SP_LDFLAGS}" |
| 376 | fi |
| 377 | ;; |
| 378 | sparc64) if test -z "$sparc_cpu" ; then |
| 379 | ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__" |
| 380 | ARCH_LDFLAGS="-m64" |
| 381 | else |
| 382 | ARCH_CFLAGS="${SP_CFLAGS}" |
| 383 | ARCH_LDFLAGS="${SP_LDFLAGS}" |
| 384 | fi |
| 385 | ;; |
ths | 76d83bd | 2007-11-18 21:22:10 +0000 | [diff] [blame] | 386 | s390) |
| 387 | ARCH_CFLAGS="-march=z900" |
| 388 | ;; |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 389 | i386) |
| 390 | ARCH_CFLAGS="-m32" |
| 391 | ARCH_LDFLAGS="-m32" |
| 392 | ;; |
| 393 | x86_64) |
| 394 | ARCH_CFLAGS="-m64" |
| 395 | ARCH_LDFLAGS="-m64" |
| 396 | ;; |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 397 | esac |
| 398 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 399 | if test x"$show_help" = x"yes" ; then |
| 400 | cat << EOF |
| 401 | |
| 402 | Usage: configure [options] |
| 403 | Options: [defaults in brackets after descriptions] |
| 404 | |
| 405 | EOF |
| 406 | echo "Standard options:" |
| 407 | echo " --help print this message" |
| 408 | echo " --prefix=PREFIX install in PREFIX [$prefix]" |
| 409 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
| 410 | echo " use %M for cpu name [$interp_prefix]" |
| 411 | echo " --target-list=LIST set target list [$target_list]" |
| 412 | echo "" |
| 413 | echo "kqemu kernel acceleration support:" |
| 414 | echo " --disable-kqemu disable kqemu support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 415 | echo "" |
| 416 | echo "Advanced options (experts only):" |
| 417 | echo " --source-path=PATH path of source code [$source_path]" |
| 418 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" |
| 419 | echo " --cc=CC use C compiler CC [$cc]" |
| 420 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." |
| 421 | echo " --make=MAKE use specified make [$make]" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 422 | echo " --install=INSTALL use specified install [$install]" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 423 | echo " --static enable static build [$static]" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 424 | echo " --disable-werror disable compilation abort on warning" |
balrog | fe8f78e | 2007-10-31 01:03:28 +0000 | [diff] [blame] | 425 | echo " --disable-sdl disable SDL" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 426 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 427 | echo " --audio-drv-list=LIST set audio drivers list:" |
| 428 | echo " Available drivers: $audio_possible_drivers" |
| 429 | echo " --audio-card-list=LIST set list of additional emulated audio cards" |
| 430 | echo " Available cards: ac97 adlib cs4231a gus" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 431 | echo " --enable-mixemu enable mixer emulation" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 432 | echo " --disable-brlapi disable BrlAPI" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 433 | echo " --disable-vnc-tls disable TLS encryption for VNC server" |
pbrook | af896aa | 2008-03-23 00:47:42 +0000 | [diff] [blame] | 434 | echo " --disable-curses disable curses output" |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame^] | 435 | echo " --disable-bluez disable bluez stack connectivity" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 436 | echo " --disable-nptl disable usermode NPTL support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 437 | echo " --enable-system enable all system emulation targets" |
| 438 | echo " --disable-system disable all system emulation targets" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 439 | echo " --enable-linux-user enable all linux usermode emulation targets" |
| 440 | echo " --disable-linux-user disable all linux usermode emulation targets" |
| 441 | echo " --enable-darwin-user enable all darwin usermode emulation targets" |
| 442 | echo " --disable-darwin-user disable all darwin usermode emulation targets" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 443 | echo " --fmod-lib path to FMOD library" |
| 444 | echo " --fmod-inc path to FMOD includes" |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 445 | echo " --oss-lib path to OSS library" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 446 | echo " --enable-uname-release=R Return R for uname -r in usermode emulation" |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 447 | 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] | 448 | echo " --disable-vde disable support for vde network" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 449 | echo " --disable-aio disable AIO support" |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 450 | echo "" |
ths | 5bf0893 | 2006-12-23 00:33:26 +0000 | [diff] [blame] | 451 | 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] | 452 | exit 1 |
| 453 | fi |
| 454 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 455 | cc="${cross_prefix}${cc}" |
| 456 | ar="${cross_prefix}${ar}" |
| 457 | strip="${cross_prefix}${strip}" |
| 458 | |
pbrook | 064aae1 | 2006-05-08 00:51:44 +0000 | [diff] [blame] | 459 | # check that the C compiler works. |
| 460 | cat > $TMPC <<EOF |
| 461 | int main(void) {} |
| 462 | EOF |
| 463 | |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 464 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then |
pbrook | 064aae1 | 2006-05-08 00:51:44 +0000 | [diff] [blame] | 465 | : C compiler works ok |
| 466 | else |
| 467 | echo "ERROR: \"$cc\" either does not exist or does not work" |
| 468 | exit 1 |
bellard | a7350fa | 2006-04-23 14:35:23 +0000 | [diff] [blame] | 469 | fi |
| 470 | |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 471 | # check compiler to see if we're on mingw32 |
| 472 | cat > $TMPC <<EOF |
| 473 | #include <windows.h> |
| 474 | #ifndef _WIN32 |
| 475 | #error not windows |
| 476 | #endif |
| 477 | int main(void) {} |
| 478 | EOF |
| 479 | |
| 480 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then |
| 481 | mingw32="yes" |
| 482 | fi |
| 483 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 484 | if test "$mingw32" = "yes" ; then |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 485 | linux="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 486 | EXESUF=".exe" |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 487 | oss="no" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 488 | linux_user="no" |
| 489 | fi |
| 490 | |
aliguori | 997306f | 2008-09-26 15:52:17 +0000 | [diff] [blame] | 491 | if [ "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 492 | AIOLIBS= |
aliguori | 997306f | 2008-09-26 15:52:17 +0000 | [diff] [blame] | 493 | elif [ "$bsd" = "yes" ]; then |
| 494 | AIOLIBS="-lpthread" |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 495 | else |
| 496 | # Some Linux architectures (e.g. s390) don't imply -lpthread automatically. |
| 497 | AIOLIBS="-lrt -lpthread" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 498 | fi |
| 499 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 500 | # Check for gcc4, error if pre-gcc4 |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 501 | if test "$check_gcc" = "yes" ; then |
| 502 | cat > $TMPC <<EOF |
| 503 | #if __GNUC__ < 4 |
| 504 | #error gcc3 |
| 505 | #endif |
| 506 | int main(){return 0;} |
| 507 | EOF |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 508 | if "$cc" $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 509 | echo "WARNING: \"$cc\" looks like gcc 4.x" |
| 510 | found_compat_cc="no" |
| 511 | if test "$gcc3_search" = "yes" ; then |
| 512 | echo "Looking for gcc 3.x" |
| 513 | for compat_cc in $gcc3_list ; do |
balrog | d4af3de | 2007-07-26 20:41:46 +0000 | [diff] [blame] | 514 | if "$cross_prefix$compat_cc" --version 2> /dev/null | fgrep '(GCC) 3.' > /dev/null 2>&1 ; then |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 515 | echo "Found \"$compat_cc\"" |
pbrook | 1124426 | 2007-02-27 01:03:41 +0000 | [diff] [blame] | 516 | cc="$cross_prefix$compat_cc" |
pbrook | 328a424 | 2006-12-19 03:31:34 +0000 | [diff] [blame] | 517 | found_compat_cc="yes" |
| 518 | break |
| 519 | fi |
| 520 | done |
| 521 | if test "$found_compat_cc" = "no" ; then |
| 522 | echo "gcc 3.x not found!" |
| 523 | fi |
| 524 | fi |
| 525 | if test "$found_compat_cc" = "no" ; then |
| 526 | echo "QEMU is known to have problems when compiled with gcc 4.x" |
| 527 | echo "It is recommended that you use gcc 3.x to build QEMU" |
| 528 | echo "To use this compiler anyway, configure with --disable-gcc-check" |
| 529 | exit 1; |
| 530 | fi |
| 531 | fi |
| 532 | fi |
| 533 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 534 | # |
| 535 | # Solaris specific configure tool chain decisions |
| 536 | # |
| 537 | if test "$solaris" = "yes" ; then |
| 538 | # |
| 539 | # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly |
| 540 | # override the check with --disable-gcc-check |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 541 | # |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 542 | if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then |
| 543 | solgcc=`which $cc` |
| 544 | if test "$solgcc" = "/usr/sfw/bin/gcc" ; then |
| 545 | echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly." |
| 546 | echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3" |
| 547 | echo "or get the latest patch from SunSolve for gcc" |
| 548 | exit 1 |
| 549 | fi |
| 550 | fi |
| 551 | solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` |
| 552 | if test -z "$solinst" ; then |
| 553 | echo "Solaris install program not found. Use --install=/usr/ucb/install or" |
| 554 | echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" |
| 555 | echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" |
| 556 | exit 1 |
| 557 | fi |
| 558 | if test "$solinst" = "/usr/sbin/install" ; then |
| 559 | echo "Error: Solaris /usr/sbin/install is not an appropriate install program." |
| 560 | echo "try ginstall from the GNU fileutils available from www.blastwave.org" |
| 561 | echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" |
| 562 | exit 1 |
| 563 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 564 | sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` |
| 565 | if test -z "$sol_ar" ; then |
| 566 | echo "Error: No path includes ar" |
| 567 | if test -f /usr/ccs/bin/ar ; then |
| 568 | echo "Add /usr/ccs/bin to your path and rerun configure" |
| 569 | fi |
| 570 | exit 1 |
| 571 | fi |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 572 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 573 | |
| 574 | |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 575 | if test -z "$target_list" ; then |
| 576 | # these targets are portable |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 577 | if [ "$softmmu" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 578 | target_list="\ |
| 579 | i386-softmmu \ |
| 580 | x86_64-softmmu \ |
| 581 | arm-softmmu \ |
| 582 | cris-softmmu \ |
| 583 | m68k-softmmu \ |
| 584 | mips-softmmu \ |
| 585 | mipsel-softmmu \ |
| 586 | mips64-softmmu \ |
| 587 | mips64el-softmmu \ |
| 588 | ppc-softmmu \ |
| 589 | ppcemb-softmmu \ |
| 590 | ppc64-softmmu \ |
| 591 | sh4-softmmu \ |
| 592 | sh4eb-softmmu \ |
| 593 | sparc-softmmu \ |
| 594 | " |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 595 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 596 | # the following are Linux specific |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 597 | if [ "$linux_user" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 598 | target_list="${target_list}\ |
| 599 | i386-linux-user \ |
| 600 | x86_64-linux-user \ |
| 601 | alpha-linux-user \ |
| 602 | arm-linux-user \ |
| 603 | armeb-linux-user \ |
| 604 | cris-linux-user \ |
| 605 | m68k-linux-user \ |
| 606 | mips-linux-user \ |
| 607 | mipsel-linux-user \ |
| 608 | ppc-linux-user \ |
| 609 | ppc64-linux-user \ |
| 610 | ppc64abi32-linux-user \ |
| 611 | sh4-linux-user \ |
| 612 | sh4eb-linux-user \ |
| 613 | sparc-linux-user \ |
| 614 | sparc64-linux-user \ |
| 615 | sparc32plus-linux-user \ |
| 616 | " |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 617 | fi |
| 618 | # the following are Darwin specific |
| 619 | if [ "$darwin_user" = "yes" ] ; then |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 620 | target_list="$target_list i386-darwin-user ppc-darwin-user" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 621 | fi |
bellard | 6e20a45 | 2005-06-05 15:56:02 +0000 | [diff] [blame] | 622 | else |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 623 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 624 | fi |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 625 | if test -z "$target_list" ; then |
| 626 | echo "No targets enabled" |
| 627 | exit 1 |
| 628 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 629 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 630 | if test -z "$cross_prefix" ; then |
| 631 | |
| 632 | # --- |
| 633 | # big/little endian test |
| 634 | cat > $TMPC << EOF |
| 635 | #include <inttypes.h> |
| 636 | int main(int argc, char ** argv){ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 637 | volatile uint32_t i=0x01234567; |
| 638 | return (*((uint8_t*)(&i))) == 0x67; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 639 | } |
| 640 | EOF |
| 641 | |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 642 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 643 | $TMPE && bigendian="yes" |
| 644 | else |
| 645 | echo big/little test failed |
| 646 | fi |
| 647 | |
| 648 | else |
| 649 | |
| 650 | # if cross compiling, cannot launch a program, so make a static guess |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 651 | if test "$cpu" = "armv4b" \ |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 652 | -o "$cpu" = "hppa" \ |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 653 | -o "$cpu" = "m68k" \ |
| 654 | -o "$cpu" = "mips" \ |
| 655 | -o "$cpu" = "mips64" \ |
| 656 | -o "$cpu" = "powerpc" \ |
| 657 | -o "$cpu" = "s390" \ |
| 658 | -o "$cpu" = "sparc" \ |
| 659 | -o "$cpu" = "sparc64"; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 660 | bigendian="yes" |
| 661 | fi |
| 662 | |
| 663 | fi |
| 664 | |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 665 | # host long bits test |
| 666 | hostlongbits="32" |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 667 | if test "$cpu" = "x86_64" \ |
| 668 | -o "$cpu" = "alpha" \ |
| 669 | -o "$cpu" = "ia64" \ |
| 670 | -o "$cpu" = "sparc64"; then |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 671 | hostlongbits="64" |
| 672 | fi |
| 673 | |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 674 | # ppc specific hostlongbits selection |
| 675 | if test "$cpu" = "powerpc" ; then |
| 676 | cat > $TMPC <<EOF |
| 677 | int main(void){return sizeof(long);} |
| 678 | EOF |
| 679 | |
| 680 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null; then |
| 681 | $TMPE |
| 682 | case $? in |
| 683 | 4) hostlongbits="32";; |
| 684 | 8) hostlongbits="64";; |
malc | ba69a08 | 2008-07-24 17:51:36 +0000 | [diff] [blame] | 685 | *) echo "Couldn't determine bits per long value"; exit 1;; |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 686 | esac |
| 687 | else |
| 688 | echo hostlongbits test failed |
malc | ba69a08 | 2008-07-24 17:51:36 +0000 | [diff] [blame] | 689 | exit 1 |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 690 | fi |
| 691 | fi |
| 692 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 693 | # check gcc options support |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 694 | cat > $TMPC <<EOF |
| 695 | int main(void) { |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 696 | } |
| 697 | EOF |
| 698 | |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 699 | # Check host NPTL support |
| 700 | cat > $TMPC <<EOF |
| 701 | #include <sched.h> |
pbrook | 30813ce | 2008-06-02 15:45:44 +0000 | [diff] [blame] | 702 | #include <linux/futex.h> |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 703 | void foo() |
| 704 | { |
| 705 | #if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) |
| 706 | #error bork |
| 707 | #endif |
| 708 | } |
| 709 | EOF |
| 710 | |
| 711 | if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then |
| 712 | : |
| 713 | else |
| 714 | nptl="no" |
| 715 | fi |
| 716 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 717 | ########################################## |
| 718 | # SDL probe |
| 719 | |
| 720 | sdl_too_old=no |
| 721 | |
| 722 | if test -z "$sdl" ; then |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 723 | sdl_config="sdl-config" |
| 724 | sdl=no |
| 725 | sdl_static=no |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 726 | |
| 727 | cat > $TMPC << EOF |
| 728 | #include <SDL.h> |
| 729 | #undef main /* We don't want SDL to override our main() */ |
| 730 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
| 731 | EOF |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 732 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then |
| 733 | _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` |
| 734 | if test "$_sdlversion" -lt 121 ; then |
| 735 | sdl_too_old=yes |
| 736 | else |
| 737 | if test "$cocoa" = "no" ; then |
| 738 | sdl=yes |
| 739 | fi |
| 740 | fi |
| 741 | |
| 742 | # static link with sdl ? |
| 743 | if test "$sdl" = "yes" ; then |
| 744 | aa="no" |
| 745 | `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" |
| 746 | sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` |
| 747 | if [ "$aa" = "yes" ] ; then |
| 748 | sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 749 | fi |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 750 | |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 751 | if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then |
| 752 | sdl_static=yes |
| 753 | fi |
| 754 | fi # static link |
| 755 | fi # sdl compile test |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 756 | else |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 757 | # Make sure to disable cocoa if sdl was set |
| 758 | if test "$sdl" = "yes" ; then |
| 759 | cocoa="no" |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 760 | audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`" |
ths | 069b0bd | 2007-07-12 00:27:15 +0000 | [diff] [blame] | 761 | fi |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 762 | fi # -z $sdl |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 763 | |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 764 | ########################################## |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 765 | # VNC TLS detection |
| 766 | if test "$vnc_tls" = "yes" ; then |
aliguori | ae6b5e5 | 2008-08-06 16:55:50 +0000 | [diff] [blame] | 767 | cat > $TMPC <<EOF |
| 768 | #include <gnutls/gnutls.h> |
| 769 | int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } |
| 770 | EOF |
| 771 | vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` |
| 772 | vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` |
| 773 | if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \ |
| 774 | $vnc_tls_libs 2> /dev/null ; then |
| 775 | : |
| 776 | else |
| 777 | vnc_tls="no" |
| 778 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 779 | fi |
| 780 | |
| 781 | ########################################## |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 782 | # vde libraries probe |
| 783 | if test "$vde" = "yes" ; then |
| 784 | cat > $TMPC << EOF |
| 785 | #include <libvdeplug.h> |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 786 | int main(void) |
| 787 | { |
| 788 | struct vde_open_args a = {0, 0, 0}; |
| 789 | vde_open("", "", &a); |
| 790 | return 0; |
| 791 | } |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 792 | EOF |
pbrook | 4a7f0e0 | 2008-09-07 16:42:53 +0000 | [diff] [blame] | 793 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug 2> /dev/null ; then |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 794 | : |
| 795 | else |
aliguori | e0e6c8c0 | 2008-07-23 18:14:33 +0000 | [diff] [blame] | 796 | vde="no" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 797 | fi |
| 798 | fi |
| 799 | |
| 800 | ########################################## |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 801 | # Sound support libraries probe |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 802 | |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 803 | audio_drv_probe() |
| 804 | { |
| 805 | drv=$1 |
| 806 | hdr=$2 |
| 807 | lib=$3 |
| 808 | exp=$4 |
| 809 | cfl=$5 |
| 810 | cat > $TMPC << EOF |
| 811 | #include <$hdr> |
| 812 | int main(void) { $exp } |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 813 | EOF |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 814 | if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then |
| 815 | : |
| 816 | else |
| 817 | echo |
| 818 | echo "Error: $drv check failed" |
| 819 | echo "Make sure to have the $drv libs and headers installed." |
| 820 | echo |
| 821 | exit 1 |
| 822 | fi |
| 823 | } |
| 824 | |
malc | 2fa7d3b | 2008-07-29 12:58:44 +0000 | [diff] [blame] | 825 | audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 826 | for drv in $audio_drv_list; do |
| 827 | case $drv in |
| 828 | alsa) |
| 829 | audio_drv_probe $drv alsa/asoundlib.h -lasound \ |
| 830 | "snd_pcm_t **handle; return snd_pcm_close(*handle);" |
| 831 | ;; |
| 832 | |
| 833 | fmod) |
| 834 | if test -z $fmod_lib || test -z $fmod_inc; then |
| 835 | echo |
| 836 | echo "Error: You must specify path to FMOD library and headers" |
| 837 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" |
| 838 | echo |
| 839 | exit 1 |
| 840 | fi |
| 841 | audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" |
| 842 | ;; |
| 843 | |
| 844 | esd) |
| 845 | audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' |
| 846 | ;; |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 847 | |
| 848 | pa) |
| 849 | audio_drv_probe $drv pulse/simple.h -lpulse-simple \ |
| 850 | "pa_simple *s = NULL; pa_simple_free(s); return 0;" |
| 851 | ;; |
| 852 | |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 853 | oss|sdl|core|wav|dsound) |
| 854 | # XXX: Probes for CoreAudio, DirectSound, SDL(?) |
| 855 | ;; |
| 856 | |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 857 | *) |
malc | 1c9b2a5 | 2008-07-19 16:57:30 +0000 | [diff] [blame] | 858 | echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { |
malc | e4c63a6 | 2008-07-19 16:15:16 +0000 | [diff] [blame] | 859 | echo |
| 860 | echo "Error: Unknown driver '$drv' selected" |
| 861 | echo "Possible drivers are: $audio_possible_drivers" |
| 862 | echo |
| 863 | exit 1 |
| 864 | } |
| 865 | ;; |
malc | c2de5c9 | 2008-06-28 19:13:06 +0000 | [diff] [blame] | 866 | esac |
| 867 | done |
ths | 8f28f3f | 2007-01-05 21:25:54 +0000 | [diff] [blame] | 868 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 869 | ########################################## |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 870 | # BrlAPI probe |
| 871 | |
| 872 | if test -z "$brlapi" ; then |
| 873 | brlapi=no |
| 874 | cat > $TMPC << EOF |
| 875 | #include <brlapi.h> |
| 876 | int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } |
| 877 | EOF |
aurel32 | a40e56d | 2008-05-04 00:50:25 +0000 | [diff] [blame] | 878 | if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi 2> /dev/null ; then |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 879 | brlapi=yes |
| 880 | fi # brlapi compile test |
| 881 | fi # -z $brlapi |
| 882 | |
| 883 | ########################################## |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 884 | # curses probe |
| 885 | |
| 886 | if test "$curses" = "yes" ; then |
| 887 | curses=no |
| 888 | cat > $TMPC << EOF |
| 889 | #include <curses.h> |
| 890 | int main(void) { return curses_version(); } |
| 891 | EOF |
pbrook | af896aa | 2008-03-23 00:47:42 +0000 | [diff] [blame] | 892 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses 2> /dev/null ; then |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 893 | curses=yes |
| 894 | fi |
| 895 | fi # test "$curses" |
| 896 | |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 897 | ########################################## |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame^] | 898 | # bluez support probe |
| 899 | if test "$bluez" = "yes" ; then |
| 900 | `pkg-config bluez` || bluez="no" |
| 901 | fi |
| 902 | if test "$bluez" = "yes" ; then |
| 903 | bluez_cflags=`pkg-config --cflags bluez` |
| 904 | bluez_libs=`pkg-config --libs bluez` |
| 905 | fi |
| 906 | |
| 907 | ########################################## |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 908 | # AIO probe |
| 909 | if test "$aio" = "yes" ; then |
| 910 | aio=no |
| 911 | cat > $TMPC << EOF |
| 912 | #include <aio.h> |
| 913 | int main(void) { return aio_write(NULL); } |
| 914 | EOF |
| 915 | if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then |
| 916 | aio=yes |
| 917 | fi |
| 918 | fi |
| 919 | |
aliguori | 2746310 | 2008-09-27 20:58:43 +0000 | [diff] [blame] | 920 | ########################################## |
| 921 | # signalfd probe |
| 922 | cat > $TMPC << EOF |
| 923 | #define _GNU_SOURCE |
| 924 | #include <unistd.h> |
| 925 | #include <sys/syscall.h> |
| 926 | #include <signal.h> |
| 927 | int main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } |
| 928 | EOF |
| 929 | |
| 930 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
| 931 | signalfd=yes |
| 932 | fi |
| 933 | |
| 934 | ########################################## |
| 935 | # eventfd probe |
| 936 | cat > $TMPC << EOF |
| 937 | #define _GNU_SOURCE |
| 938 | #include <unistd.h> |
| 939 | #include <sys/syscall.h> |
| 940 | int main(void) { return syscall(SYS_eventfd, 0); } |
| 941 | EOF |
| 942 | |
| 943 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
| 944 | eventfd=yes |
| 945 | fi |
| 946 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 947 | # Check if tools are available to build documentation. |
ths | 6c59186 | 2007-05-09 13:55:03 +0000 | [diff] [blame] | 948 | if [ -x "`which texi2html 2>/dev/null`" ] && \ |
| 949 | [ -x "`which pod2man 2>/dev/null`" ]; then |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 950 | build_docs="yes" |
| 951 | fi |
| 952 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 953 | if test "$mingw32" = "yes" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 954 | if test -z "$prefix" ; then |
| 955 | prefix="/c/Program Files/Qemu" |
| 956 | fi |
| 957 | mansuffix="" |
| 958 | datasuffix="" |
| 959 | docsuffix="" |
| 960 | binsuffix="" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 961 | else |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 962 | if test -z "$prefix" ; then |
| 963 | prefix="/usr/local" |
| 964 | fi |
| 965 | mansuffix="/share/man" |
| 966 | datasuffix="/share/qemu" |
| 967 | docsuffix="/share/doc/qemu" |
| 968 | binsuffix="/bin" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 969 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 970 | |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 971 | echo "Install prefix $prefix" |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 972 | echo "BIOS directory $prefix$datasuffix" |
| 973 | echo "binary directory $prefix$binsuffix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 974 | if test "$mingw32" = "no" ; then |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 975 | echo "Manual directory $prefix$mansuffix" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 976 | echo "ELF interp prefix $interp_prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 977 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 978 | echo "Source path $source_path" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 979 | echo "C compiler $cc" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 980 | echo "Host C compiler $host_cc" |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 981 | echo "ARCH_CFLAGS $ARCH_CFLAGS" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 982 | echo "make $make" |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 983 | echo "install $install" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 984 | echo "host CPU $cpu" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 985 | echo "host big endian $bigendian" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 986 | echo "target list $target_list" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 987 | echo "gprof enabled $gprof" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 988 | echo "profiler $profiler" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 989 | echo "static build $static" |
bellard | 85aa518 | 2007-11-11 20:17:03 +0000 | [diff] [blame] | 990 | echo "-Werror enabled $werror" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 991 | if test "$darwin" = "yes" ; then |
| 992 | echo "Cocoa support $cocoa" |
| 993 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 994 | echo "SDL support $sdl" |
bellard | e4afee9 | 2005-04-26 20:46:24 +0000 | [diff] [blame] | 995 | if test "$sdl" != "no" ; then |
| 996 | echo "SDL static link $sdl_static" |
| 997 | fi |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 998 | echo "curses support $curses" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 999 | echo "mingw32 support $mingw32" |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1000 | echo "Audio drivers $audio_drv_list" |
| 1001 | echo "Extra audio cards $audio_card_list" |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1002 | echo "Mixer emulation $mixemu" |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1003 | echo "VNC TLS support $vnc_tls" |
| 1004 | if test "$vnc_tls" = "yes" ; then |
| 1005 | echo " TLS CFLAGS $vnc_tls_cflags" |
| 1006 | echo " TLS LIBS $vnc_tls_libs" |
| 1007 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1008 | if test -n "$sparc_cpu"; then |
| 1009 | echo "Target Sparc Arch $sparc_cpu" |
| 1010 | fi |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 1011 | echo "kqemu support $kqemu" |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1012 | echo "brlapi support $brlapi" |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1013 | echo "Documentation $build_docs" |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1014 | [ ! -z "$uname_release" ] && \ |
| 1015 | echo "uname -r $uname_release" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1016 | echo "NPTL support $nptl" |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1017 | echo "vde support $vde" |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1018 | echo "AIO support $aio" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1019 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1020 | if test $sdl_too_old = "yes"; then |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1021 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 1022 | fi |
ths | 20b40c6 | 2007-07-11 23:39:45 +0000 | [diff] [blame] | 1023 | if [ -s /tmp/qemu-$$-sdl-config.log ]; then |
| 1024 | echo "The error log from compiling the libSDL test is: " |
| 1025 | cat /tmp/qemu-$$-sdl-config.log |
| 1026 | fi |
| 1027 | rm -f /tmp/qemu-$$-sdl-config.log |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 1028 | #if test "$sdl_static" = "no"; then |
| 1029 | # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" |
| 1030 | #fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1031 | config_mak="config-host.mak" |
| 1032 | config_h="config-host.h" |
| 1033 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1034 | #echo "Creating $config_mak and $config_h" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1035 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1036 | test -f $config_h && mv $config_h ${config_h}~ |
| 1037 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1038 | echo "# Automatically generated by configure - do not modify" > $config_mak |
pbrook | 2951713 | 2006-02-09 17:58:47 +0000 | [diff] [blame] | 1039 | echo "# Configured with: $0 $@" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1040 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1041 | |
| 1042 | echo "prefix=$prefix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1043 | echo "bindir=\${prefix}$binsuffix" >> $config_mak |
| 1044 | echo "mandir=\${prefix}$mansuffix" >> $config_mak |
| 1045 | echo "datadir=\${prefix}$datasuffix" >> $config_mak |
ths | 4ad5b06 | 2007-03-03 21:47:02 +0000 | [diff] [blame] | 1046 | echo "docdir=\${prefix}$docsuffix" >> $config_mak |
pbrook | 308c359 | 2007-02-27 00:52:01 +0000 | [diff] [blame] | 1047 | echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1048 | echo "MAKE=$make" >> $config_mak |
pbrook | 6a88264 | 2006-04-17 13:57:12 +0000 | [diff] [blame] | 1049 | echo "INSTALL=$install" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1050 | echo "CC=$cc" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1051 | echo "HOST_CC=$host_cc" >> $config_mak |
| 1052 | echo "AR=$ar" >> $config_mak |
| 1053 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 1054 | # XXX: only use CFLAGS and LDFLAGS ? |
| 1055 | # XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross |
| 1056 | # compilation of dyngen tool (useful for win32 build on Linux host) |
ths | 6f30fa8 | 2007-01-05 01:00:47 +0000 | [diff] [blame] | 1057 | echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1058 | echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak |
| 1059 | echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak |
| 1060 | echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1061 | echo "CFLAGS=$CFLAGS" >> $config_mak |
| 1062 | echo "LDFLAGS=$LDFLAGS" >> $config_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1063 | echo "EXESUF=$EXESUF" >> $config_mak |
ths | 70956b7 | 2007-03-17 15:00:37 +0000 | [diff] [blame] | 1064 | echo "AIOLIBS=$AIOLIBS" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1065 | case "$cpu" in |
| 1066 | i386) |
| 1067 | echo "ARCH=i386" >> $config_mak |
| 1068 | echo "#define HOST_I386 1" >> $config_h |
| 1069 | ;; |
| 1070 | x86_64) |
| 1071 | echo "ARCH=x86_64" >> $config_mak |
| 1072 | echo "#define HOST_X86_64 1" >> $config_h |
| 1073 | ;; |
| 1074 | alpha) |
| 1075 | echo "ARCH=alpha" >> $config_mak |
| 1076 | echo "#define HOST_ALPHA 1" >> $config_h |
| 1077 | ;; |
| 1078 | armv4b) |
| 1079 | echo "ARCH=arm" >> $config_mak |
| 1080 | echo "#define HOST_ARM 1" >> $config_h |
| 1081 | ;; |
| 1082 | armv4l) |
| 1083 | echo "ARCH=arm" >> $config_mak |
| 1084 | echo "#define HOST_ARM 1" >> $config_h |
| 1085 | ;; |
| 1086 | cris) |
| 1087 | echo "ARCH=cris" >> $config_mak |
| 1088 | echo "#define HOST_CRIS 1" >> $config_h |
| 1089 | ;; |
| 1090 | hppa) |
| 1091 | echo "ARCH=hppa" >> $config_mak |
| 1092 | echo "#define HOST_HPPA 1" >> $config_h |
| 1093 | ;; |
| 1094 | ia64) |
| 1095 | echo "ARCH=ia64" >> $config_mak |
| 1096 | echo "#define HOST_IA64 1" >> $config_h |
| 1097 | ;; |
| 1098 | m68k) |
| 1099 | echo "ARCH=m68k" >> $config_mak |
| 1100 | echo "#define HOST_M68K 1" >> $config_h |
| 1101 | ;; |
| 1102 | mips) |
| 1103 | echo "ARCH=mips" >> $config_mak |
| 1104 | echo "#define HOST_MIPS 1" >> $config_h |
| 1105 | ;; |
| 1106 | mips64) |
| 1107 | echo "ARCH=mips64" >> $config_mak |
| 1108 | echo "#define HOST_MIPS64 1" >> $config_h |
| 1109 | ;; |
| 1110 | powerpc) |
malc | 810260a | 2008-07-23 19:17:46 +0000 | [diff] [blame] | 1111 | if test "$hostlongbits" = "32"; then |
| 1112 | echo "ARCH=ppc" >> $config_mak |
| 1113 | echo "#define HOST_PPC 1" >> $config_h |
| 1114 | else |
| 1115 | echo "ARCH=ppc64" >> $config_mak |
| 1116 | echo "#define HOST_PPC64 1" >> $config_h |
| 1117 | fi |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1118 | ;; |
| 1119 | s390) |
| 1120 | echo "ARCH=s390" >> $config_mak |
| 1121 | echo "#define HOST_S390 1" >> $config_h |
| 1122 | ;; |
| 1123 | sparc) |
| 1124 | echo "ARCH=sparc" >> $config_mak |
| 1125 | echo "#define HOST_SPARC 1" >> $config_h |
| 1126 | ;; |
| 1127 | sparc64) |
| 1128 | echo "ARCH=sparc64" >> $config_mak |
| 1129 | echo "#define HOST_SPARC64 1" >> $config_h |
| 1130 | ;; |
| 1131 | *) |
| 1132 | echo "Unsupported CPU = $cpu" |
| 1133 | exit 1 |
| 1134 | ;; |
| 1135 | esac |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1136 | if test "$bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1137 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
| 1138 | echo "#define WORDS_BIGENDIAN 1" >> $config_h |
| 1139 | fi |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 1140 | echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1141 | if test "$mingw32" = "yes" ; then |
| 1142 | echo "CONFIG_WIN32=yes" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 1143 | echo "#define CONFIG_WIN32 1" >> $config_h |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1144 | else |
| 1145 | cat > $TMPC << EOF |
| 1146 | #include <byteswap.h> |
| 1147 | int main(void) { return bswap_32(0); } |
| 1148 | EOF |
pbrook | db7287e | 2008-02-03 16:27:13 +0000 | [diff] [blame] | 1149 | if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
pbrook | 210fa55 | 2007-02-27 21:04:49 +0000 | [diff] [blame] | 1150 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
| 1151 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1152 | fi |
blueswir1 | 128ab2f | 2008-08-15 18:33:42 +0000 | [diff] [blame] | 1153 | |
| 1154 | if [ "$openbsd" = "yes" ] ; then |
| 1155 | echo "#define ENOTSUP 4096" >> $config_h |
| 1156 | fi |
| 1157 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1158 | if test "$darwin" = "yes" ; then |
| 1159 | echo "CONFIG_DARWIN=yes" >> $config_mak |
| 1160 | echo "#define CONFIG_DARWIN 1" >> $config_h |
| 1161 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1162 | if test "$solaris" = "yes" ; then |
| 1163 | echo "CONFIG_SOLARIS=yes" >> $config_mak |
bellard | 38cfa06 | 2006-05-01 13:58:07 +0000 | [diff] [blame] | 1164 | echo "#define HOST_SOLARIS $solarisrev" >> $config_h |
ths | 0475a5c | 2007-04-01 18:54:44 +0000 | [diff] [blame] | 1165 | if test "$needs_libsunmath" = "yes" ; then |
| 1166 | echo "NEEDS_LIBSUNMATH=yes" >> $config_mak |
| 1167 | echo "#define NEEDS_LIBSUNMATH 1" >> $config_h |
| 1168 | fi |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1169 | fi |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 1170 | if test -n "$sparc_cpu"; then |
| 1171 | echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak |
| 1172 | echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h |
| 1173 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1174 | if test "$gdbstub" = "yes" ; then |
| 1175 | echo "CONFIG_GDBSTUB=yes" >> $config_mak |
| 1176 | echo "#define CONFIG_GDBSTUB 1" >> $config_h |
| 1177 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1178 | if test "$gprof" = "yes" ; then |
| 1179 | echo "TARGET_GPROF=yes" >> $config_mak |
| 1180 | echo "#define HAVE_GPROF 1" >> $config_h |
| 1181 | fi |
| 1182 | if test "$static" = "yes" ; then |
| 1183 | echo "CONFIG_STATIC=yes" >> $config_mak |
bellard | 5086347 | 2003-10-28 23:04:01 +0000 | [diff] [blame] | 1184 | echo "#define CONFIG_STATIC 1" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1185 | fi |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 1186 | if test $profiler = "yes" ; then |
| 1187 | echo "#define CONFIG_PROFILER 1" >> $config_h |
| 1188 | fi |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame] | 1189 | if test "$slirp" = "yes" ; then |
| 1190 | echo "CONFIG_SLIRP=yes" >> $config_mak |
| 1191 | echo "#define CONFIG_SLIRP 1" >> $config_h |
| 1192 | fi |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 1193 | if test "$vde" = "yes" ; then |
| 1194 | echo "CONFIG_VDE=yes" >> $config_mak |
| 1195 | echo "#define CONFIG_VDE 1" >> $config_h |
| 1196 | echo "VDE_LIBS=-lvdeplug" >> $config_mak |
| 1197 | fi |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1198 | for card in $audio_card_list; do |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1199 | def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1200 | echo "$def=yes" >> $config_mak |
| 1201 | echo "#define $def 1" >> $config_h |
| 1202 | done |
| 1203 | echo "#define AUDIO_DRIVERS \\" >> $config_h |
| 1204 | for drv in $audio_drv_list; do |
| 1205 | echo " &${drv}_audio_driver, \\" >>$config_h |
pbrook | f6e5889 | 2008-06-29 01:00:34 +0000 | [diff] [blame] | 1206 | def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1207 | echo "$def=yes" >> $config_mak |
malc | 923e452 | 2008-07-02 18:13:46 +0000 | [diff] [blame] | 1208 | if test "$drv" = "fmod"; then |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1209 | echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak |
| 1210 | echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak |
blueswir1 | 2f6a1ab | 2008-08-21 18:00:53 +0000 | [diff] [blame] | 1211 | elif test "$drv" = "oss"; then |
| 1212 | echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak |
malc | 0c58ac1 | 2008-06-25 21:04:05 +0000 | [diff] [blame] | 1213 | fi |
| 1214 | done |
| 1215 | echo "" >>$config_h |
malc | 8ff9cbf | 2008-06-23 18:33:30 +0000 | [diff] [blame] | 1216 | if test "$mixemu" = "yes" ; then |
| 1217 | echo "CONFIG_MIXEMU=yes" >> $config_mak |
| 1218 | echo "#define CONFIG_MIXEMU 1" >> $config_h |
| 1219 | fi |
ths | 8d5d2d4 | 2007-08-25 01:37:51 +0000 | [diff] [blame] | 1220 | if test "$vnc_tls" = "yes" ; then |
| 1221 | echo "CONFIG_VNC_TLS=yes" >> $config_mak |
| 1222 | echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak |
| 1223 | echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak |
| 1224 | echo "#define CONFIG_VNC_TLS 1" >> $config_h |
| 1225 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame] | 1226 | qemu_version=`head $source_path/VERSION` |
| 1227 | echo "VERSION=$qemu_version" >>$config_mak |
pbrook | d4b8f03 | 2006-04-16 13:49:23 +0000 | [diff] [blame] | 1228 | echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1229 | |
| 1230 | echo "SRC_PATH=$source_path" >> $config_mak |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 1231 | if [ "$source_path_used" = "yes" ]; then |
| 1232 | echo "VPATH=$source_path" >> $config_mak |
| 1233 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1234 | echo "TARGET_DIRS=$target_list" >> $config_mak |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 1235 | if [ "$build_docs" = "yes" ] ; then |
| 1236 | echo "BUILD_DOCS=yes" >> $config_mak |
| 1237 | fi |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1238 | if test "$static" = "yes"; then |
| 1239 | sdl1=$sdl_static |
| 1240 | else |
| 1241 | sdl1=$sdl |
| 1242 | fi |
| 1243 | if test "$sdl1" = "yes" ; then |
| 1244 | echo "#define CONFIG_SDL 1" >> $config_h |
| 1245 | echo "CONFIG_SDL=yes" >> $config_mak |
| 1246 | if test "$target_softmmu" = "no" -o "$static" = "yes"; then |
| 1247 | echo "SDL_LIBS=$sdl_static_libs" >> $config_mak |
| 1248 | else |
| 1249 | echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak |
| 1250 | fi |
| 1251 | if [ "${aa}" = "yes" ] ; then |
| 1252 | echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak |
| 1253 | else |
| 1254 | echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak |
| 1255 | fi |
| 1256 | fi |
| 1257 | if test "$cocoa" = "yes" ; then |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1258 | echo "#define CONFIG_COCOA 1" >> $config_h |
| 1259 | echo "CONFIG_COCOA=yes" >> $config_mak |
| 1260 | fi |
| 1261 | if test "$curses" = "yes" ; then |
| 1262 | echo "#define CONFIG_CURSES 1" >> $config_h |
| 1263 | echo "CONFIG_CURSES=yes" >> $config_mak |
| 1264 | echo "CURSES_LIBS=-lcurses" >> $config_mak |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1265 | fi |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 1266 | if test "$brlapi" = "yes" ; then |
| 1267 | echo "CONFIG_BRLAPI=yes" >> $config_mak |
| 1268 | echo "#define CONFIG_BRLAPI 1" >> $config_h |
| 1269 | echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak |
| 1270 | fi |
balrog | fb599c9 | 2008-09-28 23:49:55 +0000 | [diff] [blame^] | 1271 | if test "$bluez" = "yes" ; then |
| 1272 | echo "CONFIG_BLUEZ=yes" >> $config_mak |
| 1273 | echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak |
| 1274 | echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak |
| 1275 | echo "#define CONFIG_BLUEZ 1" >> $config_h |
| 1276 | fi |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1277 | if test "$aio" = "yes" ; then |
| 1278 | echo "#define CONFIG_AIO 1" >> $config_h |
aliguori | a3392f9 | 2008-09-11 18:00:19 +0000 | [diff] [blame] | 1279 | echo "CONFIG_AIO=yes" >> $config_mak |
blueswir1 | 414f0da | 2008-08-15 18:20:52 +0000 | [diff] [blame] | 1280 | fi |
aliguori | 2746310 | 2008-09-27 20:58:43 +0000 | [diff] [blame] | 1281 | if test "$signalfd" = "yes" ; then |
| 1282 | echo "#define CONFIG_signalfd 1" >> $config_h |
| 1283 | fi |
| 1284 | if test "$eventfd" = "yes" ; then |
| 1285 | echo "#define CONFIG_eventfd 1" >> $config_h |
| 1286 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1287 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1288 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1289 | if [ "$bsd" = "yes" ] ; then |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1290 | echo "#define O_LARGEFILE 0" >> $config_h |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 1291 | echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 1292 | echo "#define _BSD 1" >> $config_h |
| 1293 | fi |
| 1294 | |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1295 | echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h |
| 1296 | |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1297 | tools= |
| 1298 | if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then |
| 1299 | tools="qemu-img\$(EXESUF) $tools" |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 1300 | if [ "$linux" = "yes" ] ; then |
| 1301 | tools="qemu-nbd\$(EXESUF) $tools" |
| 1302 | fi |
pbrook | c39e333 | 2007-09-22 16:49:14 +0000 | [diff] [blame] | 1303 | fi |
| 1304 | echo "TOOLS=$tools" >> $config_mak |
| 1305 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1306 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1307 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1308 | for target in $target_list; do |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1309 | target_dir="$target" |
| 1310 | config_mak=$target_dir/config.mak |
| 1311 | config_h=$target_dir/config.h |
| 1312 | target_cpu=`echo $target | cut -d '-' -f 1` |
| 1313 | target_bigendian="no" |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 1314 | [ "$target_cpu" = "armeb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1315 | [ "$target_cpu" = "m68k" ] && target_bigendian=yes |
| 1316 | [ "$target_cpu" = "mips" ] && target_bigendian=yes |
| 1317 | [ "$target_cpu" = "mipsn32" ] && target_bigendian=yes |
| 1318 | [ "$target_cpu" = "mips64" ] && target_bigendian=yes |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1319 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
j_mayer | d4082e9 | 2007-04-24 07:34:03 +0000 | [diff] [blame] | 1320 | [ "$target_cpu" = "ppcemb" ] && target_bigendian=yes |
j_mayer | 22f8a8b | 2007-10-14 08:38:29 +0000 | [diff] [blame] | 1321 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 1322 | [ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes |
pbrook | 908f52b | 2006-06-18 19:16:53 +0000 | [diff] [blame] | 1323 | [ "$target_cpu" = "sh4eb" ] && target_bigendian=yes |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1324 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
| 1325 | [ "$target_cpu" = "sparc64" ] && target_bigendian=yes |
| 1326 | [ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1327 | target_softmmu="no" |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1328 | target_user_only="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1329 | target_linux_user="no" |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1330 | target_darwin_user="no" |
pbrook | 9e407a8 | 2007-05-26 16:38:53 +0000 | [diff] [blame] | 1331 | case "$target" in |
| 1332 | ${target_cpu}-softmmu) |
| 1333 | target_softmmu="yes" |
| 1334 | ;; |
| 1335 | ${target_cpu}-linux-user) |
| 1336 | target_user_only="yes" |
| 1337 | target_linux_user="yes" |
| 1338 | ;; |
| 1339 | ${target_cpu}-darwin-user) |
| 1340 | target_user_only="yes" |
| 1341 | target_darwin_user="yes" |
| 1342 | ;; |
| 1343 | *) |
| 1344 | echo "ERROR: Target '$target' not recognised" |
| 1345 | exit 1 |
| 1346 | ;; |
| 1347 | esac |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1348 | |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1349 | if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 1350 | -a "$sdl" = "no" -a "$cocoa" = "no" ; then |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1351 | echo "ERROR: QEMU requires SDL or Cocoa for graphical output" |
pbrook | 9c03850 | 2006-04-16 15:19:15 +0000 | [diff] [blame] | 1352 | echo "To build QEMU without graphical output configure with --disable-gfx-check" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1353 | echo "Note that this will disable all output from the virtual graphics card" |
| 1354 | echo "except through VNC or curses." |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 1355 | exit 1; |
| 1356 | fi |
| 1357 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 1358 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1359 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1360 | test -f $config_h && mv $config_h ${config_h}~ |
| 1361 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1362 | mkdir -p $target_dir |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1363 | mkdir -p $target_dir/fpu |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1364 | mkdir -p $target_dir/tcg |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1365 | if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" ; then |
bellard | 69de927 | 2004-02-16 21:40:43 +0000 | [diff] [blame] | 1366 | mkdir -p $target_dir/nwfpe |
| 1367 | fi |
| 1368 | |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1369 | # |
| 1370 | # don't use ln -sf as not all "ln -sf" over write the file/link |
| 1371 | # |
| 1372 | rm -f $target_dir/Makefile |
| 1373 | ln -s $source_path/Makefile.target $target_dir/Makefile |
| 1374 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1375 | |
| 1376 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 1377 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 1378 | |
| 1379 | |
| 1380 | echo "include ../config-host.mak" >> $config_mak |
| 1381 | echo "#include \"../config-host.h\"" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1382 | |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1383 | bflt="no" |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1384 | elfload32="no" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1385 | target_nptl="no" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 1386 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
| 1387 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1388 | |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1389 | case "$target_cpu" in |
| 1390 | i386) |
| 1391 | echo "TARGET_ARCH=i386" >> $config_mak |
| 1392 | echo "#define TARGET_ARCH \"i386\"" >> $config_h |
| 1393 | echo "#define TARGET_I386 1" >> $config_h |
bellard | da26024 | 2008-05-30 20:48:25 +0000 | [diff] [blame] | 1394 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1395 | then |
| 1396 | echo "#define USE_KQEMU 1" >> $config_h |
| 1397 | fi |
aurel32 | f2bf094 | 2008-05-05 06:00:27 +0000 | [diff] [blame] | 1398 | gcc3minver=`$cc --version 2> /dev/null| fgrep "(GCC) 3." | awk '{ print $3 }' | cut -f2 -d.` |
pbrook | 11d1fdb | 2008-05-23 23:16:42 +0000 | [diff] [blame] | 1399 | if test -n "$gcc3minver" && test $gcc3minver -gt 3 |
aurel32 | f2bf094 | 2008-05-05 06:00:27 +0000 | [diff] [blame] | 1400 | then |
| 1401 | echo "HAVE_GT_GCC_3_3=true" >> $config_mak |
| 1402 | else |
| 1403 | echo "HAVE_GT_GCC_3_3=false" >> $config_mak |
| 1404 | fi |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1405 | ;; |
| 1406 | x86_64) |
| 1407 | echo "TARGET_ARCH=x86_64" >> $config_mak |
| 1408 | echo "#define TARGET_ARCH \"x86_64\"" >> $config_h |
| 1409 | echo "#define TARGET_I386 1" >> $config_h |
| 1410 | echo "#define TARGET_X86_64 1" >> $config_h |
| 1411 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" |
| 1412 | then |
| 1413 | echo "#define USE_KQEMU 1" >> $config_h |
| 1414 | fi |
| 1415 | ;; |
| 1416 | alpha) |
| 1417 | echo "TARGET_ARCH=alpha" >> $config_mak |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1418 | echo "CONFIG_DYNGEN_OP=yes" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1419 | echo "#define TARGET_ARCH \"alpha\"" >> $config_h |
| 1420 | echo "#define TARGET_ALPHA 1" >> $config_h |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1421 | echo "#define CONFIG_DYNGEN_OP 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1422 | ;; |
| 1423 | arm|armeb) |
| 1424 | echo "TARGET_ARCH=arm" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1425 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
| 1426 | echo "#define TARGET_ARM 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1427 | bflt="yes" |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1428 | target_nptl="yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1429 | ;; |
| 1430 | cris) |
| 1431 | echo "TARGET_ARCH=cris" >> $config_mak |
| 1432 | echo "#define TARGET_ARCH \"cris\"" >> $config_h |
| 1433 | echo "#define TARGET_CRIS 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1434 | ;; |
| 1435 | m68k) |
| 1436 | echo "TARGET_ARCH=m68k" >> $config_mak |
| 1437 | echo "#define TARGET_ARCH \"m68k\"" >> $config_h |
| 1438 | echo "#define TARGET_M68K 1" >> $config_h |
| 1439 | bflt="yes" |
| 1440 | ;; |
| 1441 | mips|mipsel) |
| 1442 | echo "TARGET_ARCH=mips" >> $config_mak |
| 1443 | echo "#define TARGET_ARCH \"mips\"" >> $config_h |
| 1444 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1445 | echo "#define TARGET_ABI_MIPSO32 1" >> $config_h |
| 1446 | ;; |
| 1447 | mipsn32|mipsn32el) |
| 1448 | echo "TARGET_ARCH=mipsn32" >> $config_mak |
| 1449 | echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h |
| 1450 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1451 | echo "#define TARGET_ABI_MIPSN32 1" >> $config_h |
| 1452 | ;; |
| 1453 | mips64|mips64el) |
| 1454 | echo "TARGET_ARCH=mips64" >> $config_mak |
| 1455 | echo "#define TARGET_ARCH \"mips64\"" >> $config_h |
| 1456 | echo "#define TARGET_MIPS 1" >> $config_h |
| 1457 | echo "#define TARGET_MIPS64 1" >> $config_h |
| 1458 | echo "#define TARGET_ABI_MIPSN64 1" >> $config_h |
| 1459 | ;; |
| 1460 | ppc) |
| 1461 | echo "TARGET_ARCH=ppc" >> $config_mak |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1462 | echo "CONFIG_DYNGEN_OP=yes" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1463 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h |
| 1464 | echo "#define TARGET_PPC 1" >> $config_h |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1465 | echo "#define CONFIG_DYNGEN_OP 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1466 | ;; |
| 1467 | ppcemb) |
| 1468 | echo "TARGET_ARCH=ppcemb" >> $config_mak |
| 1469 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1470 | echo "CONFIG_DYNGEN_OP=yes" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1471 | echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h |
| 1472 | echo "#define TARGET_PPC 1" >> $config_h |
| 1473 | echo "#define TARGET_PPCEMB 1" >> $config_h |
blueswir1 | ec5b78c | 2008-05-10 17:23:18 +0000 | [diff] [blame] | 1474 | echo "#define CONFIG_DYNGEN_OP 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1475 | ;; |
| 1476 | ppc64) |
| 1477 | echo "TARGET_ARCH=ppc64" >> $config_mak |
| 1478 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1479 | echo "CONFIG_DYNGEN_OP=yes" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1480 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h |
| 1481 | echo "#define TARGET_PPC 1" >> $config_h |
| 1482 | echo "#define TARGET_PPC64 1" >> $config_h |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1483 | echo "#define CONFIG_DYNGEN_OP 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1484 | ;; |
| 1485 | ppc64abi32) |
| 1486 | echo "TARGET_ARCH=ppc64" >> $config_mak |
| 1487 | echo "TARGET_ABI_DIR=ppc" >> $config_mak |
| 1488 | echo "TARGET_ARCH2=ppc64abi32" >> $config_mak |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1489 | echo "CONFIG_DYNGEN_OP=yes" >> $config_mak |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1490 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h |
| 1491 | echo "#define TARGET_PPC 1" >> $config_h |
| 1492 | echo "#define TARGET_PPC64 1" >> $config_h |
| 1493 | echo "#define TARGET_ABI32 1" >> $config_h |
blueswir1 | bf6247f | 2008-05-10 12:27:33 +0000 | [diff] [blame] | 1494 | echo "#define CONFIG_DYNGEN_OP 1" >> $config_h |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1495 | ;; |
| 1496 | sh4|sh4eb) |
| 1497 | echo "TARGET_ARCH=sh4" >> $config_mak |
| 1498 | echo "#define TARGET_ARCH \"sh4\"" >> $config_h |
| 1499 | echo "#define TARGET_SH4 1" >> $config_h |
| 1500 | bflt="yes" |
aurel32 | 0b6d3ae | 2008-09-15 07:43:43 +0000 | [diff] [blame] | 1501 | target_nptl="yes" |
aurel32 | 2408a52 | 2008-04-20 20:19:44 +0000 | [diff] [blame] | 1502 | ;; |
| 1503 | sparc) |
| 1504 | echo "TARGET_ARCH=sparc" >> $config_mak |
| 1505 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h |
| 1506 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1507 | ;; |
| 1508 | sparc64) |
| 1509 | echo "TARGET_ARCH=sparc64" >> $config_mak |
| 1510 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h |
| 1511 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1512 | echo "#define TARGET_SPARC64 1" >> $config_h |
| 1513 | elfload32="yes" |
| 1514 | ;; |
| 1515 | sparc32plus) |
| 1516 | echo "TARGET_ARCH=sparc64" >> $config_mak |
| 1517 | echo "TARGET_ABI_DIR=sparc" >> $config_mak |
| 1518 | echo "TARGET_ARCH2=sparc32plus" >> $config_mak |
| 1519 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h |
| 1520 | echo "#define TARGET_SPARC 1" >> $config_h |
| 1521 | echo "#define TARGET_SPARC64 1" >> $config_h |
| 1522 | echo "#define TARGET_ABI32 1" >> $config_h |
| 1523 | ;; |
| 1524 | *) |
| 1525 | echo "Unsupported target CPU" |
| 1526 | exit 1 |
| 1527 | ;; |
| 1528 | esac |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1529 | if test "$target_bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1530 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
| 1531 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h |
| 1532 | fi |
| 1533 | if test "$target_softmmu" = "yes" ; then |
| 1534 | echo "CONFIG_SOFTMMU=yes" >> $config_mak |
| 1535 | echo "#define CONFIG_SOFTMMU 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1536 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 1537 | if test "$target_user_only" = "yes" ; then |
| 1538 | echo "CONFIG_USER_ONLY=yes" >> $config_mak |
| 1539 | echo "#define CONFIG_USER_ONLY 1" >> $config_h |
| 1540 | fi |
ths | 831b782 | 2007-01-18 20:06:33 +0000 | [diff] [blame] | 1541 | if test "$target_linux_user" = "yes" ; then |
| 1542 | echo "CONFIG_LINUX_USER=yes" >> $config_mak |
| 1543 | echo "#define CONFIG_LINUX_USER 1" >> $config_h |
| 1544 | fi |
| 1545 | if test "$target_darwin_user" = "yes" ; then |
| 1546 | echo "CONFIG_DARWIN_USER=yes" >> $config_mak |
| 1547 | echo "#define CONFIG_DARWIN_USER 1" >> $config_h |
| 1548 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 1549 | |
aurel32 | 0938cda | 2008-04-11 21:36:06 +0000 | [diff] [blame] | 1550 | if test "$target_cpu" = "arm" \ |
| 1551 | -o "$target_cpu" = "armeb" \ |
| 1552 | -o "$target_cpu" = "m68k" \ |
| 1553 | -o "$target_cpu" = "mips" \ |
| 1554 | -o "$target_cpu" = "mipsel" \ |
| 1555 | -o "$target_cpu" = "mipsn32" \ |
| 1556 | -o "$target_cpu" = "mipsn32el" \ |
| 1557 | -o "$target_cpu" = "mips64" \ |
| 1558 | -o "$target_cpu" = "mips64el" \ |
| 1559 | -o "$target_cpu" = "sparc" \ |
| 1560 | -o "$target_cpu" = "sparc64" \ |
| 1561 | -o "$target_cpu" = "sparc32plus"; then |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 1562 | echo "CONFIG_SOFTFLOAT=yes" >> $config_mak |
| 1563 | echo "#define CONFIG_SOFTFLOAT 1" >> $config_h |
| 1564 | fi |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1565 | if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then |
| 1566 | echo "TARGET_HAS_BFLT=yes" >> $config_mak |
| 1567 | echo "#define TARGET_HAS_BFLT 1" >> $config_h |
| 1568 | fi |
pbrook | bd0c566 | 2008-05-29 14:34:11 +0000 | [diff] [blame] | 1569 | if test "$target_user_only" = "yes" \ |
| 1570 | -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then |
| 1571 | echo "#define USE_NPTL 1" >> $config_h |
| 1572 | fi |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 1573 | # 32 bit ELF loader in addition to native 64 bit loader? |
| 1574 | if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then |
| 1575 | echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak |
| 1576 | echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h |
| 1577 | fi |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 1578 | |
ths | 15d9ca0 | 2007-07-31 23:07:32 +0000 | [diff] [blame] | 1579 | test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h |
| 1580 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1581 | done # for target in $targets |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1582 | |
| 1583 | # build tree in object directory if source path is different from current one |
| 1584 | if test "$source_path_used" = "yes" ; then |
bellard | 49ecc3f | 2007-11-07 19:25:15 +0000 | [diff] [blame] | 1585 | DIRS="tests tests/cris slirp audio" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1586 | FILES="Makefile tests/Makefile" |
ths | e7daa60 | 2007-10-08 13:38:27 +0000 | [diff] [blame] | 1587 | FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" |
edgar_igl | e1ffb0f | 2008-03-01 22:23:17 +0000 | [diff] [blame] | 1588 | FILES="$FILES tests/test-mmap.c" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1589 | for dir in $DIRS ; do |
| 1590 | mkdir -p $dir |
| 1591 | done |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1592 | # 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] | 1593 | for f in $FILES ; do |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 1594 | rm -f $f |
| 1595 | ln -s $source_path/$f $f |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1596 | done |
| 1597 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1598 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 1599 | rm -f $TMPO $TMPC $TMPE $TMPS |