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 | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 30 | target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-softmmu" |
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 | ;; |
| 35 | armv4l) |
| 36 | cpu="armv4l" |
| 37 | ;; |
| 38 | alpha) |
| 39 | cpu="alpha" |
| 40 | ;; |
bellard | 295defa | 2003-04-07 21:31:29 +0000 | [diff] [blame] | 41 | "Power Macintosh"|ppc|ppc64) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 42 | cpu="powerpc" |
| 43 | ;; |
| 44 | mips) |
| 45 | cpu="mips" |
| 46 | ;; |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 47 | s390) |
| 48 | cpu="s390" |
| 49 | ;; |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 50 | sparc) |
| 51 | cpu="sparc" |
| 52 | ;; |
| 53 | sparc64) |
| 54 | cpu="sparc64" |
| 55 | ;; |
bellard | a8baa8c | 2003-04-29 20:53:31 +0000 | [diff] [blame] | 56 | ia64) |
| 57 | cpu="ia64" |
| 58 | ;; |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 59 | m68k) |
| 60 | cpu="m68k" |
| 61 | ;; |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 62 | x86_64|amd64) |
| 63 | cpu="amd64" |
| 64 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 65 | *) |
| 66 | cpu="unknown" |
| 67 | ;; |
| 68 | esac |
| 69 | gprof="no" |
| 70 | bigendian="no" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 71 | mingw32="no" |
| 72 | EXESUF="" |
| 73 | gdbstub="yes" |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame^] | 74 | slirp="no" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 75 | |
| 76 | # OS specific |
| 77 | targetos=`uname -s` |
| 78 | case $targetos in |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 79 | MINGW32*) |
| 80 | mingw32="yes" |
| 81 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 82 | *) ;; |
| 83 | esac |
| 84 | |
| 85 | # find source path |
| 86 | # XXX: we assume an absolute path is given when launching configure, |
| 87 | # except in './configure' case. |
| 88 | source_path=${0%configure} |
| 89 | source_path=${source_path%/} |
| 90 | source_path_used="yes" |
| 91 | if test -z "$source_path" -o "$source_path" = "." ; then |
| 92 | source_path=`pwd` |
| 93 | source_path_used="no" |
| 94 | fi |
| 95 | |
| 96 | for opt do |
| 97 | case "$opt" in |
| 98 | --prefix=*) prefix=`echo $opt | cut -d '=' -f 2` |
| 99 | ;; |
bellard | 32ce633 | 2003-04-11 00:16:16 +0000 | [diff] [blame] | 100 | --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2` |
| 101 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 102 | --source-path=*) source_path=`echo $opt | cut -d '=' -f 2` |
| 103 | ;; |
| 104 | --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2` |
| 105 | ;; |
| 106 | --cc=*) cc=`echo $opt | cut -d '=' -f 2` |
| 107 | ;; |
| 108 | --make=*) make=`echo $opt | cut -d '=' -f 2` |
| 109 | ;; |
| 110 | --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}" |
| 111 | ;; |
| 112 | --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}" |
| 113 | ;; |
| 114 | --extra-libs=*) extralibs=${opt#--extra-libs=} |
| 115 | ;; |
| 116 | --cpu=*) cpu=`echo $opt | cut -d '=' -f 2` |
| 117 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 118 | --target-list=*) target_list=${opt#--target-list=} |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 119 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 120 | --enable-gprof) gprof="yes" |
| 121 | ;; |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 122 | --static) static="yes" |
| 123 | ;; |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 124 | --disable-sdl) sdl="no" |
| 125 | ;; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 126 | --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-" |
| 127 | ;; |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame^] | 128 | --enable-slirp) slirp="yes" |
| 129 | ;; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 130 | esac |
| 131 | done |
| 132 | |
| 133 | # Checking for CFLAGS |
| 134 | if test -z "$CFLAGS"; then |
| 135 | CFLAGS="-O2" |
| 136 | fi |
| 137 | |
| 138 | cc="${cross_prefix}${cc}" |
| 139 | ar="${cross_prefix}${ar}" |
| 140 | strip="${cross_prefix}${strip}" |
| 141 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 142 | if test "$mingw32" = "yes" ; then |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 143 | target_list="i386-softmmu" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 144 | EXESUF=".exe" |
| 145 | gdbstub="no" |
| 146 | fi |
| 147 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 148 | if test -z "$cross_prefix" ; then |
| 149 | |
| 150 | # --- |
| 151 | # big/little endian test |
| 152 | cat > $TMPC << EOF |
| 153 | #include <inttypes.h> |
| 154 | int main(int argc, char ** argv){ |
| 155 | volatile uint32_t i=0x01234567; |
| 156 | return (*((uint8_t*)(&i))) == 0x67; |
| 157 | } |
| 158 | EOF |
| 159 | |
| 160 | if $cc -o $TMPE $TMPC 2>/dev/null ; then |
| 161 | $TMPE && bigendian="yes" |
| 162 | else |
| 163 | echo big/little test failed |
| 164 | fi |
| 165 | |
| 166 | else |
| 167 | |
| 168 | # if cross compiling, cannot launch a program, so make a static guess |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 169 | if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 170 | bigendian="yes" |
| 171 | fi |
| 172 | |
| 173 | fi |
| 174 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 175 | # check gcc options support |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 176 | cat > $TMPC <<EOF |
| 177 | int main(void) { |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 178 | } |
| 179 | EOF |
| 180 | |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 181 | have_gcc3_options="no" |
| 182 | if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then |
| 183 | have_gcc3_options="yes" |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 184 | fi |
bellard | ca73520 | 2003-03-18 20:41:34 +0000 | [diff] [blame] | 185 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 186 | ########################################## |
| 187 | # SDL probe |
| 188 | |
| 189 | sdl_too_old=no |
| 190 | |
| 191 | if test -z "$sdl" ; then |
| 192 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 193 | sdl_config="sdl-config" |
| 194 | sdl=no |
| 195 | |
| 196 | if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then |
| 197 | # win32 cross compilation case |
| 198 | sdl_config="i386-mingw32msvc-sdl-config" |
| 199 | sdl=yes |
| 200 | else |
| 201 | # normal SDL probe |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 202 | cat > $TMPC << EOF |
| 203 | #include <SDL.h> |
| 204 | #undef main /* We don't want SDL to override our main() */ |
| 205 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
| 206 | EOF |
| 207 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 208 | if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then |
| 209 | _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 210 | if test "$_sdlversion" -lt 121 ; then |
| 211 | sdl_too_old=yes |
| 212 | else |
| 213 | sdl=yes |
| 214 | fi |
| 215 | fi |
| 216 | |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 217 | fi # cross compilation |
| 218 | fi # -z $sdl |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 219 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 220 | if test x"$1" = x"-h" -o x"$1" = x"--help" ; then |
| 221 | cat << EOF |
| 222 | |
| 223 | Usage: configure [options] |
| 224 | Options: [defaults in brackets after descriptions] |
| 225 | |
| 226 | EOF |
| 227 | echo "Standard options:" |
| 228 | echo " --help print this message" |
| 229 | echo " --prefix=PREFIX install in PREFIX [$prefix]" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 230 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
| 231 | echo " use %M for cpu name [$interp_prefix]" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 232 | echo " --target-list=LIST set target list [$target_list]" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 233 | echo "" |
| 234 | echo "Advanced options (experts only):" |
| 235 | echo " --source-path=PATH path of source code [$source_path]" |
| 236 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" |
| 237 | echo " --cc=CC use C compiler CC [$cc]" |
| 238 | echo " --make=MAKE use specified make [$make]" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 239 | echo " --static enable static build [$static]" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 240 | echo " --enable-mingw32 enable Win32 cross compilation with mingw32" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 241 | echo "" |
| 242 | echo "NOTE: The object files are build at the place where configure is launched" |
| 243 | exit 1 |
| 244 | fi |
| 245 | |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 246 | if test "$mingw32" = "yes" ; then |
| 247 | if test -z "$prefix" ; then |
| 248 | prefix="/c/Program Files/Qemu" |
| 249 | fi |
| 250 | mandir="$prefix" |
| 251 | sharedir="$prefix" |
| 252 | bindir="$prefix" |
| 253 | else |
| 254 | if test -z "$prefix" ; then |
| 255 | prefix="/usr/local" |
| 256 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 257 | mandir="$prefix/share/man" |
| 258 | sharedir="$prefix/share/qemu" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 259 | bindir="$prefix/bin" |
| 260 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 261 | |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 262 | echo "Install prefix $prefix" |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 263 | echo "BIOS directory $sharedir" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 264 | echo "binary directory $bindir" |
| 265 | if test "$mingw32" = "no" ; then |
| 266 | echo "Manual directory $mandir" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 267 | echo "ELF interp prefix $interp_prefix" |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 268 | fi |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 269 | echo "Source path $source_path" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 270 | echo "C compiler $cc" |
| 271 | echo "make $make" |
| 272 | echo "host CPU $cpu" |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 273 | echo "host big endian $bigendian" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 274 | echo "target list $target_list" |
bellard | 43ce4df | 2003-06-09 19:53:12 +0000 | [diff] [blame] | 275 | echo "gprof enabled $gprof" |
| 276 | echo "static build $static" |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 277 | echo "SDL support $sdl" |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 278 | echo "mingw32 support $mingw32" |
| 279 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 280 | if test $sdl_too_old = "yes"; then |
| 281 | echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support" |
bellard | e8cd23d | 2003-06-25 16:08:13 +0000 | [diff] [blame] | 282 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 283 | |
| 284 | config_mak="config-host.mak" |
| 285 | config_h="config-host.h" |
| 286 | |
| 287 | echo "Creating $config_mak and $config_h" |
| 288 | |
| 289 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 290 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 291 | |
| 292 | echo "prefix=$prefix" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 293 | echo "bindir=$bindir" >> $config_mak |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 294 | echo "mandir=$mandir" >> $config_mak |
| 295 | echo "sharedir=$sharedir" >> $config_mak |
| 296 | echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 297 | echo "MAKE=$make" >> $config_mak |
| 298 | echo "CC=$cc" >> $config_mak |
| 299 | if test "$have_gcc3_options" = "yes" ; then |
| 300 | echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak |
| 301 | fi |
| 302 | echo "HOST_CC=$host_cc" >> $config_mak |
| 303 | echo "AR=$ar" >> $config_mak |
| 304 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak |
| 305 | echo "CFLAGS=$CFLAGS" >> $config_mak |
| 306 | echo "LDFLAGS=$LDFLAGS" >> $config_mak |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 307 | echo "EXESUF=$EXESUF" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 308 | if test "$cpu" = "i386" ; then |
| 309 | echo "ARCH=i386" >> $config_mak |
| 310 | echo "#define HOST_I386 1" >> $config_h |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 311 | elif test "$cpu" = "amd64" ; then |
| 312 | echo "ARCH=amd64" >> $config_mak |
| 313 | echo "#define HOST_AMD64 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 314 | elif test "$cpu" = "armv4l" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 315 | echo "ARCH=arm" >> $config_mak |
| 316 | echo "#define HOST_ARM 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 317 | elif test "$cpu" = "powerpc" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 318 | echo "ARCH=ppc" >> $config_mak |
| 319 | echo "#define HOST_PPC 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 320 | elif test "$cpu" = "mips" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 321 | echo "ARCH=mips" >> $config_mak |
| 322 | echo "#define HOST_MIPS 1" >> $config_h |
bellard | fb3e584 | 2003-03-29 17:32:36 +0000 | [diff] [blame] | 323 | elif test "$cpu" = "s390" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 324 | echo "ARCH=s390" >> $config_mak |
| 325 | echo "#define HOST_S390 1" >> $config_h |
bellard | 295defa | 2003-04-07 21:31:29 +0000 | [diff] [blame] | 326 | elif test "$cpu" = "alpha" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 327 | echo "ARCH=alpha" >> $config_mak |
| 328 | echo "#define HOST_ALPHA 1" >> $config_h |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 329 | elif test "$cpu" = "sparc" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 330 | echo "ARCH=sparc" >> $config_mak |
| 331 | echo "#define HOST_SPARC 1" >> $config_h |
bellard | ae22853 | 2003-05-13 18:59:59 +0000 | [diff] [blame] | 332 | elif test "$cpu" = "sparc64" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 333 | echo "ARCH=sparc64" >> $config_mak |
| 334 | echo "#define HOST_SPARC64 1" >> $config_h |
bellard | a8baa8c | 2003-04-29 20:53:31 +0000 | [diff] [blame] | 335 | elif test "$cpu" = "ia64" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 336 | echo "ARCH=ia64" >> $config_mak |
| 337 | echo "#define HOST_IA64 1" >> $config_h |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 338 | elif test "$cpu" = "m68k" ; then |
bellard | 38ca2ab | 2004-03-13 18:32:13 +0000 | [diff] [blame] | 339 | echo "ARCH=m68k" >> $config_mak |
| 340 | echo "#define HOST_M68K 1" >> $config_h |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 341 | else |
| 342 | echo "Unsupported CPU" |
| 343 | exit 1 |
| 344 | fi |
| 345 | if test "$bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 346 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
| 347 | echo "#define WORDS_BIGENDIAN 1" >> $config_h |
| 348 | fi |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 349 | if test "$mingw32" = "yes" ; then |
| 350 | echo "CONFIG_WIN32=yes" >> $config_mak |
bellard | 11d9f69 | 2004-04-02 20:55:59 +0000 | [diff] [blame] | 351 | echo "#define CONFIG_WIN32 1" >> $config_h |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 352 | else |
| 353 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h |
| 354 | fi |
| 355 | if test "$gdbstub" = "yes" ; then |
| 356 | echo "CONFIG_GDBSTUB=yes" >> $config_mak |
| 357 | echo "#define CONFIG_GDBSTUB 1" >> $config_h |
| 358 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 359 | if test "$gprof" = "yes" ; then |
| 360 | echo "TARGET_GPROF=yes" >> $config_mak |
| 361 | echo "#define HAVE_GPROF 1" >> $config_h |
| 362 | fi |
| 363 | if test "$static" = "yes" ; then |
| 364 | echo "CONFIG_STATIC=yes" >> $config_mak |
bellard | 5086347 | 2003-10-28 23:04:01 +0000 | [diff] [blame] | 365 | echo "#define CONFIG_STATIC 1" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 366 | fi |
| 367 | if test "$sdl" = "yes" ; then |
| 368 | echo "CONFIG_SDL=yes" >> $config_mak |
| 369 | echo "#define CONFIG_SDL 1" >> $config_h |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 370 | echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak |
bellard | 590b7ee | 2004-01-04 23:49:02 +0000 | [diff] [blame] | 371 | aa="no" |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 372 | `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes" |
| 373 | echo -n "SDL_STATIC_LIBS=`$sdl_config --static-libs`" >> $config_mak |
bellard | 590b7ee | 2004-01-04 23:49:02 +0000 | [diff] [blame] | 374 | if [ "${aa}" = "yes" ] ; then |
| 375 | echo -n " `aalib-config --libs`" >> $config_mak ; |
| 376 | fi |
| 377 | echo "" >> $config_mak |
bellard | a6e022a | 2004-04-02 21:55:47 +0000 | [diff] [blame] | 378 | echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak |
bellard | 590b7ee | 2004-01-04 23:49:02 +0000 | [diff] [blame] | 379 | if [ "${aa}" = "yes" ] ; then |
| 380 | echo -n " `aalib-config --cflags`" >> $config_mak ; |
| 381 | fi |
| 382 | echo "" >> $config_mak |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 383 | fi |
bellard | c20709a | 2004-04-21 23:27:19 +0000 | [diff] [blame^] | 384 | if test "$slirp" = "yes" ; then |
| 385 | echo "CONFIG_SLIRP=yes" >> $config_mak |
| 386 | echo "#define CONFIG_SLIRP 1" >> $config_h |
| 387 | fi |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 388 | echo -n "VERSION=" >>$config_mak |
| 389 | head $source_path/VERSION >>$config_mak |
| 390 | echo "" >>$config_mak |
| 391 | echo -n "#define QEMU_VERSION \"" >> $config_h |
| 392 | head $source_path/VERSION >> $config_h |
| 393 | echo "\"" >> $config_h |
| 394 | |
| 395 | echo "SRC_PATH=$source_path" >> $config_mak |
| 396 | echo "TARGET_DIRS=$target_list" >> $config_mak |
| 397 | |
| 398 | for target in $target_list; do |
| 399 | |
| 400 | target_dir="$target" |
| 401 | config_mak=$target_dir/config.mak |
| 402 | config_h=$target_dir/config.h |
| 403 | target_cpu=`echo $target | cut -d '-' -f 1` |
| 404 | target_bigendian="no" |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 405 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 406 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 407 | target_softmmu="no" |
| 408 | if expr $target : '.*-softmmu' > /dev/null ; then |
| 409 | target_softmmu="yes" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 410 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 411 | target_user_only="no" |
| 412 | if expr $target : '.*-user' > /dev/null ; then |
| 413 | target_user_only="yes" |
| 414 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 415 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 416 | echo "Creating $config_mak, $config_h and $target_dir/Makefile" |
| 417 | |
| 418 | mkdir -p $target_dir |
bellard | 69de927 | 2004-02-16 21:40:43 +0000 | [diff] [blame] | 419 | if test "$target" = "arm-user" ; then |
| 420 | mkdir -p $target_dir/nwfpe |
| 421 | fi |
| 422 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 423 | ln -sf $source_path/Makefile.target $target_dir/Makefile |
| 424 | |
| 425 | echo "# Automatically generated by configure - do not modify" > $config_mak |
| 426 | echo "/* Automatically generated by configure - do not modify */" > $config_h |
| 427 | |
| 428 | |
| 429 | echo "include ../config-host.mak" >> $config_mak |
| 430 | echo "#include \"../config-host.h\"" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 431 | |
| 432 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` |
| 433 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 434 | |
| 435 | if test "$target_cpu" = "i386" ; then |
| 436 | echo "TARGET_ARCH=i386" >> $config_mak |
| 437 | echo "#define TARGET_ARCH \"i386\"" >> $config_h |
| 438 | echo "#define TARGET_I386 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 439 | elif test "$target_cpu" = "arm" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 440 | echo "TARGET_ARCH=arm" >> $config_mak |
| 441 | echo "#define TARGET_ARCH \"arm\"" >> $config_h |
| 442 | echo "#define TARGET_ARM 1" >> $config_h |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 443 | elif test "$target_cpu" = "sparc" ; then |
| 444 | echo "TARGET_ARCH=sparc" >> $config_mak |
| 445 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h |
| 446 | echo "#define TARGET_SPARC 1" >> $config_h |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 447 | elif test "$target_cpu" = "ppc" ; then |
| 448 | echo "TARGET_ARCH=ppc" >> $config_mak |
| 449 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h |
| 450 | echo "#define TARGET_PPC 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 451 | else |
| 452 | echo "Unsupported target CPU" |
| 453 | exit 1 |
| 454 | fi |
| 455 | if test "$target_bigendian" = "yes" ; then |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 456 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
| 457 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h |
| 458 | fi |
| 459 | if test "$target_softmmu" = "yes" ; then |
| 460 | echo "CONFIG_SOFTMMU=yes" >> $config_mak |
| 461 | echo "#define CONFIG_SOFTMMU 1" >> $config_h |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 462 | fi |
bellard | 997344f | 2003-10-27 21:10:39 +0000 | [diff] [blame] | 463 | if test "$target_user_only" = "yes" ; then |
| 464 | echo "CONFIG_USER_ONLY=yes" >> $config_mak |
| 465 | echo "#define CONFIG_USER_ONLY 1" >> $config_h |
| 466 | fi |
bellard | de83cd0 | 2003-06-15 20:25:43 +0000 | [diff] [blame] | 467 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 468 | done # for target in $targets |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 469 | |
| 470 | # build tree in object directory if source path is different from current one |
| 471 | if test "$source_path_used" = "yes" ; then |
| 472 | DIRS="tests" |
| 473 | FILES="Makefile tests/Makefile" |
| 474 | for dir in $DIRS ; do |
| 475 | mkdir -p $dir |
| 476 | done |
| 477 | for f in $FILES ; do |
| 478 | ln -sf $source_path/$f $f |
| 479 | done |
| 480 | fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 481 | |
bellard | 97a847b | 2003-08-10 21:36:04 +0000 | [diff] [blame] | 482 | rm -f $TMPO $TMPC $TMPE $TMPS |