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" |
| 25 | host_cc="gcc" |
| 26 | ar="ar" |
| 27 | make="make" |
| 28 | strip="strip" |
| 29 | cpu=`uname -m` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 30 | target_list="" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 31 | case "$cpu" in |
| 32 | i386|i486|i586|i686|i86pc|BePC) |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 33 | cpu="i386" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 34 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 35 | armv*b) |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 36 | cpu="armv4b" |
| 37 | ;; |
bellard | ba68055 | 2005-03-13 09:49:52 +0000 | [diff] [blame] | 38 | armv*l) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 39 | cpu="armv4l" |
| 40 | ;; |
| 41 | alpha) |
| 42 | cpu="alpha" |
| 43 | ;; |
bellard | 295defa | 2003-04-07 21:31:29 +0000 | [diff] [blame] | 44 | "Power Macintosh"|ppc|ppc64) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 45 | cpu="powerpc" |
| 46 | ;; |
| 47 | mips) |
| 48 | cpu="mips" |
| 49 | ;; |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 50 | s390) |
| 51 | cpu="s390" |
| 52 | ;; |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 53 | sparc) |
| 54 | cpu="sparc" |
| 55 | ;; |
| 56 | sparc64) |
| 57 | cpu="sparc64" |
| 58 | ;; |
bellard | a8baa8c | 2003-04-29 20:53:31 +0000 | [diff] [blame] | 59 | ia64) |
| 60 | cpu="ia64" |
| 61 | ;; |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 62 | m68k) |
| 63 | cpu="m68k" |
| 64 | ;; |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 65 | x86_64|amd64) |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 66 | cpu="x86_64" |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 67 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 68 | *) |
| 69 | cpu="unknown" |
| 70 | ;; |
| 71 | esac |
| 72 | gprof="no" |
| 73 | bigendian="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 74 | mingw32="no" |
| 75 | EXESUF="" |
| 76 | gdbstub="yes" |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 77 | slirp="yes" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 78 | adlib="no" |
| 79 | oss="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 80 | dsound="no" |
| 81 | coreaudio="no" |
| 82 | alsa="no" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 83 | fmod="no" |
| 84 | fmod_lib="" |
| 85 | fmod_inc="" |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 86 | bsd="no" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 87 | linux="no" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 88 | kqemu="no" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 89 | profiler="no" |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 90 | kernel_path="" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 91 | cocoa="no" |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 92 | check_gfx="yes" |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 93 | check_gcc="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 94 | softmmu="yes" |
| 95 | user="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 96 | |
| 97 | # OS specific |
| 98 | targetos=`uname -s` |
| 99 | case $targetos in |
bellard | c326e0a | 2005-04-23 18:30:28 +0000 | [diff] [blame] | 100 | CYGWIN*) |
| 101 | mingw32="yes" |
| 102 | CFLAGS="-O2 -mno-cygwin" |
| 103 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 104 | MINGW32*) |
| 105 | mingw32="yes" |
| 106 | ;; |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 107 | FreeBSD) |
| 108 | bsd="yes" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 109 | oss="yes" |
bellard | e99f906 | 2005-07-28 21:45:38 +0000 | [diff] [blame] | 110 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 111 | kqemu="yes" |
| 112 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 113 | ;; |
| 114 | NetBSD) |
| 115 | bsd="yes" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 116 | oss="yes" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 117 | ;; |
| 118 | OpenBSD) |
| 119 | bsd="yes" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 120 | oss="yes" |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 121 | ;; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 122 | Darwin) |
| 123 | bsd="yes" |
| 124 | darwin="yes" |
| 125 | ;; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 126 | *) |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 127 | oss="yes" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 128 | linux="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 129 | user="yes" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 130 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 131 | kqemu="yes" |
| 132 | fi |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 133 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 134 | esac |
| 135 | |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 136 | if [ "$bsd" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 137 | if [ "$darwin" != "yes" ] ; then |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 138 | make="gmake" |
| 139 | fi |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 140 | fi |
| 141 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 142 | # find source path |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 143 | source_path=`dirname "$0"` |
| 144 | if [ -z "$source_path" ]; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 145 | source_path=`pwd` |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 146 | else |
| 147 | source_path=`cd "$source_path"; pwd` |
| 148 | fi |
| 149 | if test "$source_path" = `pwd` ; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 150 | source_path_used="no" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 151 | else |
| 152 | source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 153 | fi |
| 154 | |
| 155 | for opt do |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 156 | optarg=`expr "$opt" : '[^=]*=\(.*\)'` |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 157 | case "$opt" in |
bellard | 2efc326 | 2005-12-18 19:14:49 +0000 | [diff] [blame] | 158 | --help|-h) show_help=yes |
| 159 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 160 | --prefix=*) prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 161 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 162 | --interp-prefix=*) interp_prefix="$optarg" |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 163 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 164 | --source-path=*) source_path="$optarg" |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 165 | source_path_used="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 166 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 167 | --cross-prefix=*) cross_prefix="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 168 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 169 | --cc=*) cc="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 170 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 171 | --host-cc=*) host_cc="$optarg" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 172 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 173 | --make=*) make="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 174 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 175 | --extra-cflags=*) CFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 176 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 177 | --extra-ldflags=*) LDFLAGS="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 178 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 179 | --cpu=*) cpu="$optarg" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 180 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 181 | --target-list=*) target_list="$optarg" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 182 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 183 | --enable-gprof) gprof="yes" |
| 184 | ;; |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 185 | --static) static="yes" |
| 186 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 187 | --disable-sdl) sdl="no" |
| 188 | ;; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 189 | --enable-coreaudio) coreaudio="yes" |
| 190 | ;; |
| 191 | --enable-alsa) alsa="yes" |
| 192 | ;; |
| 193 | --enable-dsound) dsound="yes" |
| 194 | ;; |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 195 | --enable-fmod) fmod="yes" |
| 196 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 197 | --fmod-lib=*) fmod_lib="$optarg" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 198 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 199 | --fmod-inc=*) fmod_inc="$optarg" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 200 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 201 | --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 202 | ;; |
bellard | 443f137 | 2004-06-04 11:13:20 +0000 | [diff] [blame] | 203 | --disable-slirp) slirp="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 204 | ;; |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 205 | --enable-adlib) adlib="yes" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 206 | ;; |
bellard | c9ec1fe | 2005-02-10 21:55:30 +0000 | [diff] [blame] | 207 | --disable-kqemu) kqemu="no" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 208 | ;; |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 209 | --enable-profiler) profiler="yes" |
| 210 | ;; |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 211 | --kernel-path=*) kernel_path="$optarg" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 212 | ;; |
| 213 | --enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no" |
| 214 | ;; |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 215 | --disable-gfx-check) check_gfx="no" |
| 216 | ;; |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 217 | --disable-gcc-check) check_gcc="no" |
| 218 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 219 | --disable-system) softmmu="no" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 220 | ;; |
pbrook | cad25d6 | 2006-03-19 16:31:11 +0000 | [diff] [blame] | 221 | --enable-system) softmmu="yes" |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 222 | ;; |
| 223 | --disable-user) user="no" |
| 224 | ;; |
| 225 | --enable-user) user="yes" |
| 226 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 227 | esac |
| 228 | done |
| 229 | |
| 230 | # Checking for CFLAGS |
| 231 | if test -z "$CFLAGS"; then |
| 232 | CFLAGS="-O2" |
| 233 | fi |
| 234 | |
pbrook | af5db58 | 2006-04-08 14:26:41 +0000 | [diff] [blame] | 235 | if test x"$show_help" = x"yes" ; then |
| 236 | cat << EOF |
| 237 | |
| 238 | Usage: configure [options] |
| 239 | Options: [defaults in brackets after descriptions] |
| 240 | |
| 241 | EOF |
| 242 | echo "Standard options:" |
| 243 | echo " --help print this message" |
| 244 | echo " --prefix=PREFIX install in PREFIX [$prefix]" |
| 245 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
| 246 | echo " use %M for cpu name [$interp_prefix]" |
| 247 | echo " --target-list=LIST set target list [$target_list]" |
| 248 | echo "" |
| 249 | echo "kqemu kernel acceleration support:" |
| 250 | echo " --disable-kqemu disable kqemu support" |
| 251 | echo " --kernel-path=PATH set the kernel path (configure probes it)" |
| 252 | echo "" |
| 253 | echo "Advanced options (experts only):" |
| 254 | echo " --source-path=PATH path of source code [$source_path]" |
| 255 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" |
| 256 | echo " --cc=CC use C compiler CC [$cc]" |
| 257 | echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." |
| 258 | echo " --make=MAKE use specified make [$make]" |
| 259 | echo " --static enable static build [$static]" |
| 260 | echo " --enable-cocoa enable COCOA (Mac OS X only)" |
| 261 | echo " --enable-mingw32 enable Win32 cross compilation with mingw32" |
| 262 | echo " --enable-adlib enable Adlib emulation" |
| 263 | echo " --enable-coreaudio enable Coreaudio audio driver" |
| 264 | echo " --enable-alsa enable ALSA audio driver" |
| 265 | echo " --enable-fmod enable FMOD audio driver" |
| 266 | echo " --enabled-dsound enable DirectSound audio driver" |
| 267 | echo " --enable-system enable all system emulation targets" |
| 268 | echo " --disable-system disable all system emulation targets" |
| 269 | echo " --enable-user enable all linux usermode emulation targets" |
| 270 | echo " --disable-user disable all linux usermode emulation targets" |
| 271 | echo " --fmod-lib path to FMOD library" |
| 272 | echo " --fmod-inc path to FMOD includes" |
| 273 | echo "" |
| 274 | echo "NOTE: The object files are build at the place where configure is launched" |
| 275 | exit 1 |
| 276 | fi |
| 277 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 278 | cc="${cross_prefix}${cc}" |
| 279 | ar="${cross_prefix}${ar}" |
| 280 | strip="${cross_prefix}${strip}" |
| 281 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 282 | if test "$mingw32" = "yes" ; then |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 283 | linux="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 284 | EXESUF=".exe" |
| 285 | gdbstub="no" |
bellard | 9f059ec | 2004-11-14 18:59:52 +0000 | [diff] [blame] | 286 | oss="no" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 287 | if [ "$cpu" = "i386" ] ; then |
| 288 | kqemu="yes" |
| 289 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 290 | fi |
| 291 | |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 292 | if test -z "$target_list" ; then |
| 293 | # these targets are portable |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 294 | if [ "$softmmu" = "yes" ] ; then |
| 295 | target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu arm-softmmu" |
| 296 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 297 | # the following are Linux specific |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 298 | if [ "$user" = "yes" ] ; then |
bellard | c20eb47 | 2005-12-06 21:42:55 +0000 | [diff] [blame] | 299 | target_list="i386-user arm-user armeb-user sparc-user ppc-user mips-user mipsel-user $target_list" |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 300 | fi |
bellard | 6e20a45 | 2005-06-05 15:56:02 +0000 | [diff] [blame] | 301 | else |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 302 | target_list=`echo "$target_list" | sed -e 's/,/ /g'` |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 303 | fi |
pbrook | 0a8e90f | 2006-03-19 14:54:16 +0000 | [diff] [blame] | 304 | if test -z "$target_list" ; then |
| 305 | echo "No targets enabled" |
| 306 | exit 1 |
| 307 | fi |
bellard | 5327cf4 | 2005-01-10 23:18:50 +0000 | [diff] [blame] | 308 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 309 | if test -z "$cross_prefix" ; then |
| 310 | |
| 311 | # --- |
| 312 | # big/little endian test |
| 313 | cat > $TMPC << EOF |
| 314 | #include <inttypes.h> |
| 315 | int main(int argc, char ** argv){ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 316 | volatile uint32_t i=0x01234567; |
| 317 | return (*((uint8_t*)(&i))) == 0x67; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 318 | } |
| 319 | EOF |
| 320 | |
| 321 | if $cc -o $TMPE $TMPC 2>/dev/null ; then |
| 322 | $TMPE && bigendian="yes" |
| 323 | else |
| 324 | echo big/little test failed |
| 325 | fi |
| 326 | |
| 327 | else |
| 328 | |
| 329 | # if cross compiling, cannot launch a program, so make a static guess |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 330 | if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 331 | bigendian="yes" |
| 332 | fi |
| 333 | |
| 334 | fi |
| 335 | |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 336 | # host long bits test |
| 337 | hostlongbits="32" |
| 338 | if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then |
| 339 | hostlongbits="64" |
| 340 | fi |
| 341 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 342 | # check gcc options support |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 343 | cat > $TMPC <<EOF |
| 344 | int main(void) { |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 345 | } |
| 346 | EOF |
| 347 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 348 | have_gcc3_options="no" |
| 349 | if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then |
| 350 | have_gcc3_options="yes" |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 351 | fi |
bellard | ca73520 | 2003-03-18 20:41:34 +0000 | [diff] [blame] | 352 | |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 353 | # Check for gcc4, error if pre-gcc4 |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 354 | if test "$check_gcc" = "yes" ; then |
| 355 | cat > $TMPC <<EOF |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 356 | #if __GNUC__ < 4 |
| 357 | #error gcc3 |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 358 | #endif |
| 359 | int main(){return 0;} |
| 360 | EOF |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 361 | if $cc -o $TMPO $TMPC 2>/dev/null ; then |
bellard | 1aff381 | 2005-11-02 22:30:45 +0000 | [diff] [blame] | 362 | echo "ERROR: \"$cc\" looks like gcc 4.x" |
| 363 | echo "QEMU is known to have problems when compiled with gcc 4.x" |
| 364 | echo "It is recommended that you use gcc 3.x to build QEMU" |
| 365 | echo "To use this compiler anyway, configure with --disable-gcc-check" |
| 366 | exit 1; |
| 367 | fi |
| 368 | fi |
| 369 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 370 | ########################################## |
| 371 | # SDL probe |
| 372 | |
| 373 | sdl_too_old=no |
| 374 | |
| 375 | if test -z "$sdl" ; then |
| 376 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 377 | sdl_config="sdl-config" |
| 378 | sdl=no |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 379 | sdl_static=no |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 380 | |
| 381 | if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then |
| 382 | # win32 cross compilation case |
| 383 | sdl_config="i386-mingw32msvc-sdl-config" |
| 384 | sdl=yes |
| 385 | else |
| 386 | # normal SDL probe |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 387 | cat > $TMPC << EOF |
| 388 | #include <SDL.h> |
| 389 | #undef main /* We don't want SDL to override our main() */ |
| 390 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
| 391 | EOF |
| 392 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 393 | if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then |
| 394 | _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 395 | if test "$_sdlversion" -lt 121 ; then |
| 396 | sdl_too_old=yes |
| 397 | else |
| 398 | sdl=yes |
| 399 | fi |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 400 | |
| 401 | # static link with sdl ? |
| 402 | if test "$sdl" = "yes" ; then |
| 403 | aa="no" |
| 404 | `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes" |
| 405 | sdl_static_libs=`$sdl_config --static-libs` |
| 406 | if [ "$aa" = "yes" ] ; then |
bellard | d8d8aa4 | 2004-04-29 20:14:07 +0000 | [diff] [blame] | 407 | sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 408 | fi |
| 409 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 410 | if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then |
| 411 | sdl_static=yes |
| 412 | fi |
| 413 | |
| 414 | fi # static link |
| 415 | |
| 416 | fi # sdl compile test |
| 417 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 418 | fi # cross compilation |
| 419 | fi # -z $sdl |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 420 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 421 | if test "$mingw32" = "yes" ; then |
| 422 | if test -z "$prefix" ; then |
| 423 | prefix="/c/Program Files/Qemu" |
| 424 | fi |
| 425 | mandir="$prefix" |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 426 | datadir="$prefix" |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 427 | docdir="$prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 428 | bindir="$prefix" |
| 429 | else |
| 430 | if test -z "$prefix" ; then |
| 431 | prefix="/usr/local" |
| 432 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 433 | mandir="$prefix/share/man" |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 434 | datadir="$prefix/share/qemu" |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 435 | docdir="$prefix/share/doc/qemu" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 436 | bindir="$prefix/bin" |
| 437 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 438 | |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 439 | echo "Install prefix $prefix" |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 440 | echo "BIOS directory $datadir" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 441 | echo "binary directory $bindir" |
| 442 | if test "$mingw32" = "no" ; then |
| 443 | echo "Manual directory $mandir" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 444 | echo "ELF interp prefix $interp_prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 445 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 446 | echo "Source path $source_path" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 447 | echo "C compiler $cc" |
bellard | 8346901 | 2005-07-23 14:27:54 +0000 | [diff] [blame] | 448 | echo "Host C compiler $host_cc" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 449 | echo "make $make" |
| 450 | echo "host CPU $cpu" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 451 | echo "host big endian $bigendian" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 452 | echo "target list $target_list" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 453 | echo "gprof enabled $gprof" |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 454 | echo "profiler $profiler" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 455 | echo "static build $static" |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 456 | if test "$darwin" = "yes" ; then |
| 457 | echo "Cocoa support $cocoa" |
| 458 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 459 | echo "SDL support $sdl" |
bellard | e4afee9 | 2005-04-26 20:46:24 +0000 | [diff] [blame] | 460 | if test "$sdl" != "no" ; then |
| 461 | echo "SDL static link $sdl_static" |
| 462 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 463 | echo "mingw32 support $mingw32" |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 464 | echo "Adlib support $adlib" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 465 | echo "CoreAudio support $coreaudio" |
| 466 | echo "ALSA support $alsa" |
| 467 | echo "DSound support $dsound" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 468 | if test "$fmod" = "yes"; then |
| 469 | if test -z $fmod_lib || test -z $fmod_inc; then |
| 470 | echo |
| 471 | echo "Error: You must specify path to FMOD library and headers" |
| 472 | echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" |
| 473 | echo |
| 474 | exit 1 |
| 475 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 476 | fmod_support=" (lib='$fmod_lib' include='$fmod_inc')" |
| 477 | else |
| 478 | fmod_support="" |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 479 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 480 | echo "FMOD support $fmod $fmod_support" |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 481 | echo "kqemu support $kqemu" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 482 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 483 | if test $sdl_too_old = "yes"; then |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 484 | echo "-> Your SDL version is too old - please upgrade to have SDL support" |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 485 | fi |
bellard | 24b55b9 | 2005-03-01 22:30:41 +0000 | [diff] [blame] | 486 | #if test "$sdl_static" = "no"; then |
| 487 | # echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" |
| 488 | #fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 489 | config_mak="config-host.mak" |
| 490 | config_h="config-host.h" |
| 491 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 492 | #echo "Creating $config_mak and $config_h" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 493 | |
| 494 | echo "# Automatically generated by configure - do not modify" > $config_mak |
pbrook | 2951713 | 2006-02-09 17:58:47 +0000 | [diff] [blame] | 495 | echo "# Configured with: $0 $@" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 496 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 497 | |
| 498 | echo "prefix=$prefix" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 499 | echo "bindir=$bindir" >> $config_mak |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 500 | echo "mandir=$mandir" >> $config_mak |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 501 | echo "datadir=$datadir" >> $config_mak |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 502 | echo "docdir=$docdir" >> $config_mak |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 503 | echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 504 | echo "MAKE=$make" >> $config_mak |
| 505 | echo "CC=$cc" >> $config_mak |
| 506 | if test "$have_gcc3_options" = "yes" ; then |
| 507 | echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak |
| 508 | fi |
| 509 | echo "HOST_CC=$host_cc" >> $config_mak |
| 510 | echo "AR=$ar" >> $config_mak |
| 511 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak |
| 512 | echo "CFLAGS=$CFLAGS" >> $config_mak |
| 513 | echo "LDFLAGS=$LDFLAGS" >> $config_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 514 | echo "EXESUF=$EXESUF" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 515 | if test "$cpu" = "i386" ; then |
| 516 | echo "ARCH=i386" >> $config_mak |
| 517 | echo "#define HOST_I386 1" >> $config_h |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 518 | elif test "$cpu" = "x86_64" ; then |
| 519 | echo "ARCH=x86_64" >> $config_mak |
| 520 | echo "#define HOST_X86_64 1" >> $config_h |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 521 | elif test "$cpu" = "armv4b" ; then |
| 522 | echo "ARCH=arm" >> $config_mak |
| 523 | echo "#define HOST_ARM 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 524 | elif test "$cpu" = "armv4l" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 525 | echo "ARCH=arm" >> $config_mak |
| 526 | echo "#define HOST_ARM 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 527 | elif test "$cpu" = "powerpc" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 528 | echo "ARCH=ppc" >> $config_mak |
| 529 | echo "#define HOST_PPC 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 530 | elif test "$cpu" = "mips" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 531 | echo "ARCH=mips" >> $config_mak |
| 532 | echo "#define HOST_MIPS 1" >> $config_h |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 533 | elif test "$cpu" = "s390" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 534 | echo "ARCH=s390" >> $config_mak |
| 535 | echo "#define HOST_S390 1" >> $config_h |
bellard | 295defa | 2003-04-07 21:31:29 +0000 | [diff] [blame] | 536 | elif test "$cpu" = "alpha" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 537 | echo "ARCH=alpha" >> $config_mak |
| 538 | echo "#define HOST_ALPHA 1" >> $config_h |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 539 | elif test "$cpu" = "sparc" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 540 | echo "ARCH=sparc" >> $config_mak |
| 541 | echo "#define HOST_SPARC 1" >> $config_h |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 542 | elif test "$cpu" = "sparc64" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 543 | echo "ARCH=sparc64" >> $config_mak |
| 544 | echo "#define HOST_SPARC64 1" >> $config_h |
bellard | a8baa8c | 2003-04-29 20:53:31 +0000 | [diff] [blame] | 545 | elif test "$cpu" = "ia64" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 546 | echo "ARCH=ia64" >> $config_mak |
| 547 | echo "#define HOST_IA64 1" >> $config_h |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 548 | elif test "$cpu" = "m68k" ; then |
bellard | 38ca2ab | 2004-03-13 18:32:13 +0000 | [diff] [blame] | 549 | echo "ARCH=m68k" >> $config_mak |
| 550 | echo "#define HOST_M68K 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 551 | else |
| 552 | echo "Unsupported CPU" |
| 553 | exit 1 |
| 554 | fi |
| 555 | if test "$bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 556 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
| 557 | echo "#define WORDS_BIGENDIAN 1" >> $config_h |
| 558 | fi |
bellard | b685369 | 2005-06-05 17:10:39 +0000 | [diff] [blame] | 559 | echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 560 | if test "$mingw32" = "yes" ; then |
| 561 | echo "CONFIG_WIN32=yes" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 562 | echo "#define CONFIG_WIN32 1" >> $config_h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 563 | elif test -f "/usr/include/byteswap.h" ; then |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 564 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
| 565 | fi |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 566 | if test "$darwin" = "yes" ; then |
| 567 | echo "CONFIG_DARWIN=yes" >> $config_mak |
| 568 | echo "#define CONFIG_DARWIN 1" >> $config_h |
| 569 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 570 | if test "$gdbstub" = "yes" ; then |
| 571 | echo "CONFIG_GDBSTUB=yes" >> $config_mak |
| 572 | echo "#define CONFIG_GDBSTUB 1" >> $config_h |
| 573 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 574 | if test "$gprof" = "yes" ; then |
| 575 | echo "TARGET_GPROF=yes" >> $config_mak |
| 576 | echo "#define HAVE_GPROF 1" >> $config_h |
| 577 | fi |
| 578 | if test "$static" = "yes" ; then |
| 579 | echo "CONFIG_STATIC=yes" >> $config_mak |
bellard | 5086347 | 2003-10-28 23:04:01 +0000 | [diff] [blame] | 580 | echo "#define CONFIG_STATIC 1" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 581 | fi |
bellard | 05c2a3e | 2006-02-08 22:39:17 +0000 | [diff] [blame] | 582 | if test $profiler = "yes" ; then |
| 583 | echo "#define CONFIG_PROFILER 1" >> $config_h |
| 584 | fi |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame] | 585 | if test "$slirp" = "yes" ; then |
| 586 | echo "CONFIG_SLIRP=yes" >> $config_mak |
| 587 | echo "#define CONFIG_SLIRP 1" >> $config_h |
| 588 | fi |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 589 | if test "$adlib" = "yes" ; then |
| 590 | echo "CONFIG_ADLIB=yes" >> $config_mak |
| 591 | echo "#define CONFIG_ADLIB 1" >> $config_h |
| 592 | fi |
| 593 | if test "$oss" = "yes" ; then |
| 594 | echo "CONFIG_OSS=yes" >> $config_mak |
| 595 | echo "#define CONFIG_OSS 1" >> $config_h |
| 596 | fi |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 597 | if test "$coreaudio" = "yes" ; then |
| 598 | echo "CONFIG_COREAUDIO=yes" >> $config_mak |
| 599 | echo "#define CONFIG_COREAUDIO 1" >> $config_h |
| 600 | fi |
| 601 | if test "$alsa" = "yes" ; then |
| 602 | echo "CONFIG_ALSA=yes" >> $config_mak |
| 603 | echo "#define CONFIG_ALSA 1" >> $config_h |
| 604 | fi |
| 605 | if test "$dsound" = "yes" ; then |
| 606 | echo "CONFIG_DSOUND=yes" >> $config_mak |
| 607 | echo "#define CONFIG_DSOUND 1" >> $config_h |
| 608 | fi |
bellard | 102a52e | 2004-11-14 19:57:29 +0000 | [diff] [blame] | 609 | if test "$fmod" = "yes" ; then |
| 610 | echo "CONFIG_FMOD=yes" >> $config_mak |
| 611 | echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak |
| 612 | echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak |
| 613 | echo "#define CONFIG_FMOD 1" >> $config_h |
| 614 | fi |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 615 | qemu_version=`head $source_path/VERSION` |
| 616 | echo "VERSION=$qemu_version" >>$config_mak |
| 617 | echo "#define QEMU_VERSION $qemu_version" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 618 | |
| 619 | echo "SRC_PATH=$source_path" >> $config_mak |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 620 | if [ "$source_path_used" = "yes" ]; then |
| 621 | echo "VPATH=$source_path" >> $config_mak |
| 622 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 623 | echo "TARGET_DIRS=$target_list" >> $config_mak |
| 624 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 625 | # XXX: suppress that |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 626 | if [ "$bsd" = "yes" ] ; then |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 627 | echo "#define O_LARGEFILE 0" >> $config_h |
bellard | 4300304 | 2004-05-20 13:23:39 +0000 | [diff] [blame] | 628 | echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 629 | echo "#define _BSD 1" >> $config_h |
| 630 | fi |
| 631 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 632 | for target in $target_list; do |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 633 | target_dir="$target" |
| 634 | config_mak=$target_dir/config.mak |
| 635 | config_h=$target_dir/config.h |
| 636 | target_cpu=`echo $target | cut -d '-' -f 1` |
| 637 | target_bigendian="no" |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 638 | [ "$target_cpu" = "armeb" ] && target_bigendian=yes |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 639 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 640 | [ "$target_cpu" = "sparc64" ] && target_bigendian=yes |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 641 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 642 | [ "$target_cpu" = "ppc64" ] && target_bigendian=yes |
bellard | d325856 | 2005-07-02 15:37:12 +0000 | [diff] [blame] | 643 | [ "$target_cpu" = "mips" ] && target_bigendian=yes |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 644 | target_softmmu="no" |
| 645 | if expr $target : '.*-softmmu' > /dev/null ; then |
| 646 | target_softmmu="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 647 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 648 | target_user_only="no" |
| 649 | if expr $target : '.*-user' > /dev/null ; then |
| 650 | target_user_only="yes" |
| 651 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 652 | |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 653 | if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \ |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 654 | -a "$sdl" = "no" -a "$cocoa" = "no" ; then |
bellard | 97ccc68 | 2005-07-02 13:32:17 +0000 | [diff] [blame] | 655 | echo "ERROR: QEMU requires SDL or Cocoa for graphical output" |
| 656 | echo "To build QEMU with graphical output configure with --disable-gfx-check" |
| 657 | echo "Note that this will disable all output from the virtual graphics card." |
| 658 | exit 1; |
| 659 | fi |
| 660 | |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 661 | #echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 662 | |
| 663 | mkdir -p $target_dir |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 664 | mkdir -p $target_dir/fpu |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 665 | if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then |
bellard | 69de927 | 2004-02-16 21:40:43 +0000 | [diff] [blame] | 666 | mkdir -p $target_dir/nwfpe |
| 667 | fi |
bellard | a7e61ed | 2004-04-22 21:46:47 +0000 | [diff] [blame] | 668 | if test "$target_user_only" = "no" ; then |
| 669 | mkdir -p $target_dir/slirp |
| 670 | fi |
bellard | 69de927 | 2004-02-16 21:40:43 +0000 | [diff] [blame] | 671 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 672 | ln -sf $source_path/Makefile.target $target_dir/Makefile |
| 673 | |
| 674 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 675 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 676 | |
| 677 | |
| 678 | echo "include ../config-host.mak" >> $config_mak |
| 679 | echo "#include \"../config-host.h\"" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 680 | |
| 681 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
| 682 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 683 | |
| 684 | if test "$target_cpu" = "i386" ; then |
| 685 | echo "TARGET_ARCH=i386" >> $config_mak |
| 686 | echo "#define TARGET_ARCH \"i386\"" >> $config_h |
| 687 | echo "#define TARGET_I386 1" >> $config_h |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 688 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then |
bellard | 824d560 | 2005-02-12 18:58:00 +0000 | [diff] [blame] | 689 | echo "#define USE_KQEMU 1" >> $config_h |
| 690 | fi |
bellard | 808c495 | 2004-12-19 23:33:47 +0000 | [diff] [blame] | 691 | elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 692 | echo "TARGET_ARCH=arm" >> $config_mak |
| 693 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
| 694 | echo "#define TARGET_ARM 1" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 695 | elif test "$target_cpu" = "sparc" ; then |
| 696 | echo "TARGET_ARCH=sparc" >> $config_mak |
| 697 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h |
| 698 | echo "#define TARGET_SPARC 1" >> $config_h |
bellard | 64b3ab2 | 2005-01-30 22:43:42 +0000 | [diff] [blame] | 699 | elif test "$target_cpu" = "sparc64" ; then |
| 700 | echo "TARGET_ARCH=sparc64" >> $config_mak |
| 701 | echo "#define TARGET_ARCH \"sparc64\"" >> $config_h |
| 702 | echo "#define TARGET_SPARC 1" >> $config_h |
| 703 | echo "#define TARGET_SPARC64 1" >> $config_h |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 704 | elif test "$target_cpu" = "ppc" ; then |
| 705 | echo "TARGET_ARCH=ppc" >> $config_mak |
| 706 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h |
| 707 | echo "#define TARGET_PPC 1" >> $config_h |
bellard | a245862 | 2005-07-23 22:39:53 +0000 | [diff] [blame] | 708 | elif test "$target_cpu" = "ppc64" ; then |
| 709 | echo "TARGET_ARCH=ppc64" >> $config_mak |
| 710 | echo "#define TARGET_ARCH \"ppc64\"" >> $config_h |
| 711 | echo "#define TARGET_PPC 1" >> $config_h |
| 712 | echo "#define TARGET_PPC64 1" >> $config_h |
bellard | 0b0babc | 2005-01-03 23:38:40 +0000 | [diff] [blame] | 713 | elif test "$target_cpu" = "x86_64" ; then |
| 714 | echo "TARGET_ARCH=x86_64" >> $config_mak |
| 715 | echo "#define TARGET_ARCH \"x86_64\"" >> $config_h |
| 716 | echo "#define TARGET_I386 1" >> $config_h |
| 717 | echo "#define TARGET_X86_64 1" >> $config_h |
bellard | 07f4ddb | 2005-04-23 17:44:28 +0000 | [diff] [blame] | 718 | if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then |
| 719 | echo "#define USE_KQEMU 1" >> $config_h |
| 720 | fi |
bellard | c20eb47 | 2005-12-06 21:42:55 +0000 | [diff] [blame] | 721 | elif test "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" ; then |
bellard | d325856 | 2005-07-02 15:37:12 +0000 | [diff] [blame] | 722 | echo "TARGET_ARCH=mips" >> $config_mak |
| 723 | echo "#define TARGET_ARCH \"mips\"" >> $config_h |
| 724 | echo "#define TARGET_MIPS 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 725 | else |
| 726 | echo "Unsupported target CPU" |
| 727 | exit 1 |
| 728 | fi |
| 729 | if test "$target_bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 730 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
| 731 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h |
| 732 | fi |
| 733 | if test "$target_softmmu" = "yes" ; then |
| 734 | echo "CONFIG_SOFTMMU=yes" >> $config_mak |
| 735 | echo "#define CONFIG_SOFTMMU 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 736 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 737 | if test "$target_user_only" = "yes" ; then |
| 738 | echo "CONFIG_USER_ONLY=yes" >> $config_mak |
| 739 | echo "#define CONFIG_USER_ONLY 1" >> $config_h |
| 740 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 741 | |
bellard | 158142c | 2005-03-13 16:54:06 +0000 | [diff] [blame] | 742 | if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then |
| 743 | echo "CONFIG_SOFTFLOAT=yes" >> $config_mak |
| 744 | echo "#define CONFIG_SOFTFLOAT 1" >> $config_h |
| 745 | fi |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 746 | # sdl defines |
| 747 | |
| 748 | if test "$target_user_only" = "no"; then |
| 749 | if test "$target_softmmu" = "no" -o "$static" = "yes"; then |
bellard | dbb2c92 | 2004-10-24 22:17:47 +0000 | [diff] [blame] | 750 | sdl1=$sdl_static |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 751 | else |
bellard | dbb2c92 | 2004-10-24 22:17:47 +0000 | [diff] [blame] | 752 | sdl1=$sdl |
| 753 | fi |
| 754 | if test "$sdl1" = "yes" ; then |
| 755 | echo "#define CONFIG_SDL 1" >> $config_h |
| 756 | echo "CONFIG_SDL=yes" >> $config_mak |
| 757 | if test "$target_softmmu" = "no" -o "$static" = "yes"; then |
| 758 | echo "SDL_LIBS=$sdl_static_libs" >> $config_mak |
| 759 | else |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 760 | echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak |
| 761 | fi |
bellard | dbb2c92 | 2004-10-24 22:17:47 +0000 | [diff] [blame] | 762 | if [ "${aa}" = "yes" ] ; then |
pbrook | b1a550a | 2006-04-16 13:28:56 +0000 | [diff] [blame^] | 763 | echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak |
| 764 | else |
| 765 | echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak |
bellard | dbb2c92 | 2004-10-24 22:17:47 +0000 | [diff] [blame] | 766 | fi |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 767 | fi |
bellard | 7c1f25b | 2004-04-22 00:02:08 +0000 | [diff] [blame] | 768 | fi |
| 769 | |
bellard | 5b0753e | 2005-03-01 21:37:28 +0000 | [diff] [blame] | 770 | if test "$cocoa" = "yes" ; then |
| 771 | echo "#define CONFIG_COCOA 1" >> $config_h |
| 772 | echo "CONFIG_COCOA=yes" >> $config_mak |
| 773 | fi |
| 774 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 775 | done # for target in $targets |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 776 | |
| 777 | # build tree in object directory if source path is different from current one |
| 778 | if test "$source_path_used" = "yes" ; then |
| 779 | DIRS="tests" |
| 780 | FILES="Makefile tests/Makefile" |
| 781 | for dir in $DIRS ; do |
| 782 | mkdir -p $dir |
| 783 | done |
| 784 | for f in $FILES ; do |
| 785 | ln -sf $source_path/$f $f |
| 786 | done |
| 787 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 788 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 789 | rm -f $TMPO $TMPC $TMPE $TMPS |