]> git.proxmox.com Git - qemu.git/blame - configure
Conditionalize more syscall implementations, by Mike Frysinger.
[qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d
FB
4#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
3ef693a0
FB
14TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
7d13299d
FB
18
19# default parameters
11d9f695 20prefix=""
1e43adfc 21interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 22static="no"
7d13299d
FB
23cross_prefix=""
24cc="gcc"
328a4240
PB
25gcc3_search="yes"
26gcc3_list="gcc-3.4 gcc34 gcc-3.3 gcc33 gcc-3.2 gcc32"
7d13299d
FB
27host_cc="gcc"
28ar="ar"
29make="make"
6a882643 30install="install"
7d13299d
FB
31strip="strip"
32cpu=`uname -m`
5327cf48 33target_list=""
7d13299d
FB
34case "$cpu" in
35 i386|i486|i586|i686|i86pc|BePC)
97a847bc 36 cpu="i386"
7d13299d 37 ;;
ba68055e 38 armv*b)
808c4954
FB
39 cpu="armv4b"
40 ;;
ba68055e 41 armv*l)
7d13299d
FB
42 cpu="armv4l"
43 ;;
44 alpha)
45 cpu="alpha"
46 ;;
295defa5 47 "Power Macintosh"|ppc|ppc64)
7d13299d
FB
48 cpu="powerpc"
49 ;;
50 mips)
51 cpu="mips"
52 ;;
fbe4f65b
TS
53 mips64)
54 cpu="mips64"
55 ;;
fb3e5849
FB
56 s390)
57 cpu="s390"
58 ;;
94ac5158 59 sparc|sun4[muv])
ae228531
FB
60 cpu="sparc"
61 ;;
62 sparc64)
63 cpu="sparc64"
64 ;;
a8baa8c5
FB
65 ia64)
66 cpu="ia64"
67 ;;
38e584a0
FB
68 m68k)
69 cpu="m68k"
70 ;;
bc51c5c9 71 x86_64|amd64)
0b0babc6 72 cpu="x86_64"
bc51c5c9 73 ;;
7d13299d
FB
74 *)
75 cpu="unknown"
76 ;;
77esac
78gprof="no"
79bigendian="no"
67b915a5
FB
80mingw32="no"
81EXESUF=""
82gdbstub="yes"
443f1376 83slirp="yes"
fb065187
FB
84adlib="no"
85oss="no"
1d14ffa9
FB
86dsound="no"
87coreaudio="no"
88alsa="no"
102a52e4
FB
89fmod="no"
90fmod_lib=""
91fmod_inc=""
b1a550a0 92bsd="no"
5327cf48 93linux="no"
c9ec1fe4 94kqemu="no"
05c2a3e7 95profiler="no"
5b0753e0 96cocoa="no"
97ccc689 97check_gfx="yes"
1aff381f 98check_gcc="yes"
0a8e90f4 99softmmu="yes"
831b7825
TS
100linux_user="no"
101darwin_user="no"
cc8ae6de 102build_docs="no"
c5937220 103uname_release=""
7d13299d
FB
104
105# OS specific
106targetos=`uname -s`
107case $targetos in
c326e0af
FB
108CYGWIN*)
109mingw32="yes"
6f30fa85 110OS_CFLAGS="-mno-cygwin"
c326e0af 111;;
67b915a5
FB
112MINGW32*)
113mingw32="yes"
114;;
7d3505c5
FB
115FreeBSD)
116bsd="yes"
fb065187 117oss="yes"
e99f9060 118if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
07f4ddbf
FB
119 kqemu="yes"
120fi
7d3505c5
FB
121;;
122NetBSD)
123bsd="yes"
fb065187 124oss="yes"
7d3505c5
FB
125;;
126OpenBSD)
127bsd="yes"
fb065187 128oss="yes"
7d3505c5 129;;
83fb7adf
FB
130Darwin)
131bsd="yes"
132darwin="yes"
831b7825 133darwin_user="yes"
fd677642
TS
134cocoa="yes"
135coreaudio="yes"
6f30fa85 136OS_CFLAGS="-mdynamic-no-pic"
83fb7adf 137;;
ec530c81 138SunOS)
c2b84fab
TS
139 solaris="yes"
140 make="gmake"
141 install="ginstall"
142 solarisrev=`uname -r | cut -f2 -d.`
143 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
144 if test "$solarisrev" -ge 10 ; then
145 kqemu="yes"
146 fi
86b2bd93
TS
147 fi
148;;
1d14ffa9 149*)
fb065187 150oss="yes"
5327cf48 151linux="yes"
831b7825 152linux_user="yes"
07f4ddbf 153if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c9ec1fe4
FB
154 kqemu="yes"
155fi
fb065187 156;;
7d13299d
FB
157esac
158
7d3505c5 159if [ "$bsd" = "yes" ] ; then
b1a550a0 160 if [ "$darwin" != "yes" ] ; then
83fb7adf
FB
161 make="gmake"
162 fi
7d3505c5
FB
163fi
164
7d13299d 165# find source path
ad064840
PB
166source_path=`dirname "$0"`
167if [ -z "$source_path" ]; then
7d13299d 168 source_path=`pwd`
ad064840
PB
169else
170 source_path=`cd "$source_path"; pwd`
171fi
172if test "$source_path" = `pwd` ; then
7d13299d 173 source_path_used="no"
ad064840
PB
174else
175 source_path_used="yes"
7d13299d
FB
176fi
177
178for opt do
a46e4035 179 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
7d13299d 180 case "$opt" in
2efc3265
FB
181 --help|-h) show_help=yes
182 ;;
b1a550a0 183 --prefix=*) prefix="$optarg"
7d13299d 184 ;;
b1a550a0 185 --interp-prefix=*) interp_prefix="$optarg"
32ce6337 186 ;;
b1a550a0 187 --source-path=*) source_path="$optarg"
ad064840 188 source_path_used="yes"
7d13299d 189 ;;
b1a550a0 190 --cross-prefix=*) cross_prefix="$optarg"
7d13299d 191 ;;
b1a550a0 192 --cc=*) cc="$optarg"
328a4240 193 gcc3_search="no"
7d13299d 194 ;;
b1a550a0 195 --host-cc=*) host_cc="$optarg"
83469015 196 ;;
b1a550a0 197 --make=*) make="$optarg"
7d13299d 198 ;;
6a882643
PB
199 --install=*) install="$optarg"
200 ;;
b1a550a0 201 --extra-cflags=*) CFLAGS="$optarg"
7d13299d 202 ;;
b1a550a0 203 --extra-ldflags=*) LDFLAGS="$optarg"
7d13299d 204 ;;
b1a550a0 205 --cpu=*) cpu="$optarg"
7d13299d 206 ;;
b1a550a0 207 --target-list=*) target_list="$optarg"
de83cd02 208 ;;
7d13299d
FB
209 --enable-gprof) gprof="yes"
210 ;;
43ce4dfe
FB
211 --static) static="yes"
212 ;;
97a847bc
FB
213 --disable-sdl) sdl="no"
214 ;;
1d14ffa9
FB
215 --enable-coreaudio) coreaudio="yes"
216 ;;
217 --enable-alsa) alsa="yes"
218 ;;
219 --enable-dsound) dsound="yes"
220 ;;
102a52e4
FB
221 --enable-fmod) fmod="yes"
222 ;;
b1a550a0 223 --fmod-lib=*) fmod_lib="$optarg"
102a52e4 224 ;;
b1a550a0 225 --fmod-inc=*) fmod_inc="$optarg"
102a52e4 226 ;;
b93aebec 227 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-" ; linux_user="no"
1d14ffa9 228 ;;
443f1376 229 --disable-slirp) slirp="no"
1d14ffa9 230 ;;
fb065187 231 --enable-adlib) adlib="yes"
1d14ffa9 232 ;;
c9ec1fe4 233 --disable-kqemu) kqemu="no"
1d14ffa9 234 ;;
05c2a3e7
FB
235 --enable-profiler) profiler="yes"
236 ;;
1d14ffa9
FB
237 --enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no"
238 ;;
97ccc689
FB
239 --disable-gfx-check) check_gfx="no"
240 ;;
1aff381f
FB
241 --disable-gcc-check) check_gcc="no"
242 ;;
cad25d69 243 --disable-system) softmmu="no"
0a8e90f4 244 ;;
cad25d69 245 --enable-system) softmmu="yes"
0a8e90f4 246 ;;
831b7825 247 --disable-linux-user) linux_user="no"
0a8e90f4 248 ;;
831b7825
TS
249 --enable-linux-user) linux_user="yes"
250 ;;
251 --disable-darwin-user) darwin_user="no"
252 ;;
253 --enable-darwin-user) darwin_user="yes"
0a8e90f4 254 ;;
c5937220
PB
255 --enable-uname-release=*) uname_release="$optarg"
256 ;;
7d13299d
FB
257 esac
258done
259
209afb9e
TS
260if [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
261 AIOLIBS=
262else
263 AIOLIBS="-lrt"
264fi
265
6f30fa85
TS
266# default flags for all hosts
267CFLAGS="$CFLAGS -Wall -O2 -g -fno-strict-aliasing"
268LDFLAGS="$LDFLAGS -g"
269
af5db58e
PB
270if test x"$show_help" = x"yes" ; then
271cat << EOF
272
273Usage: configure [options]
274Options: [defaults in brackets after descriptions]
275
276EOF
277echo "Standard options:"
278echo " --help print this message"
279echo " --prefix=PREFIX install in PREFIX [$prefix]"
280echo " --interp-prefix=PREFIX where to find shared libraries, etc."
281echo " use %M for cpu name [$interp_prefix]"
282echo " --target-list=LIST set target list [$target_list]"
283echo ""
284echo "kqemu kernel acceleration support:"
285echo " --disable-kqemu disable kqemu support"
af5db58e
PB
286echo ""
287echo "Advanced options (experts only):"
288echo " --source-path=PATH path of source code [$source_path]"
289echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
290echo " --cc=CC use C compiler CC [$cc]"
291echo " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc."
292echo " --make=MAKE use specified make [$make]"
6a882643 293echo " --install=INSTALL use specified install [$install]"
af5db58e
PB
294echo " --static enable static build [$static]"
295echo " --enable-cocoa enable COCOA (Mac OS X only)"
296echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
297echo " --enable-adlib enable Adlib emulation"
298echo " --enable-coreaudio enable Coreaudio audio driver"
299echo " --enable-alsa enable ALSA audio driver"
300echo " --enable-fmod enable FMOD audio driver"
ed5065e1 301echo " --enable-dsound enable DirectSound audio driver"
af5db58e
PB
302echo " --enable-system enable all system emulation targets"
303echo " --disable-system disable all system emulation targets"
831b7825
TS
304echo " --enable-linux-user enable all linux usermode emulation targets"
305echo " --disable-linux-user disable all linux usermode emulation targets"
306echo " --enable-darwin-user enable all darwin usermode emulation targets"
307echo " --disable-darwin-user disable all darwin usermode emulation targets"
af5db58e
PB
308echo " --fmod-lib path to FMOD library"
309echo " --fmod-inc path to FMOD includes"
c5937220 310echo " --enable-uname-release=R Return R for uname -r in usermode emulation"
af5db58e 311echo ""
5bf08934 312echo "NOTE: The object files are built at the place where configure is launched"
af5db58e
PB
313exit 1
314fi
315
7d13299d
FB
316cc="${cross_prefix}${cc}"
317ar="${cross_prefix}${ar}"
318strip="${cross_prefix}${strip}"
319
064aae13
PB
320# check that the C compiler works.
321cat > $TMPC <<EOF
322int main(void) {}
323EOF
324
cf257238 325if $cc -c -o $TMPO $TMPC 2> /dev/null ; then
064aae13
PB
326 : C compiler works ok
327else
328 echo "ERROR: \"$cc\" either does not exist or does not work"
329 exit 1
a7350fa1
FB
330fi
331
67b915a5 332if test "$mingw32" = "yes" ; then
5327cf48 333 linux="no"
67b915a5 334 EXESUF=".exe"
9f059eca 335 oss="no"
07f4ddbf
FB
336 if [ "$cpu" = "i386" ] ; then
337 kqemu="yes"
338 fi
67b915a5
FB
339fi
340
328a4240
PB
341# Check for gcc4, error if pre-gcc4
342if test "$check_gcc" = "yes" ; then
343 cat > $TMPC <<EOF
344#if __GNUC__ < 4
345#error gcc3
346#endif
347int main(){return 0;}
348EOF
349 check_cc() {
cf257238 350 which "$1" 2> /dev/null
328a4240
PB
351 return $?
352 }
353
cf257238 354 if "$cc" -o $TMPE $TMPC 2> /dev/null ; then
328a4240
PB
355 echo "WARNING: \"$cc\" looks like gcc 4.x"
356 found_compat_cc="no"
357 if test "$gcc3_search" = "yes" ; then
358 echo "Looking for gcc 3.x"
359 for compat_cc in $gcc3_list ; do
1124426a 360 if check_cc "$cross_prefix$compat_cc" ; then
328a4240 361 echo "Found \"$compat_cc\""
1124426a 362 cc="$cross_prefix$compat_cc"
328a4240
PB
363 found_compat_cc="yes"
364 break
365 fi
366 done
367 if test "$found_compat_cc" = "no" ; then
368 echo "gcc 3.x not found!"
369 fi
370 fi
371 if test "$found_compat_cc" = "no" ; then
372 echo "QEMU is known to have problems when compiled with gcc 4.x"
373 echo "It is recommended that you use gcc 3.x to build QEMU"
374 echo "To use this compiler anyway, configure with --disable-gcc-check"
375 exit 1;
376 fi
377 fi
378fi
379
ec530c81
FB
380#
381# Solaris specific configure tool chain decisions
382#
383if test "$solaris" = "yes" ; then
384 #
385 # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly
386 # override the check with --disable-gcc-check
387 #
388 if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then
389 solgcc=`which $cc`
390 if test "$solgcc" = "/usr/sfw/bin/gcc" ; then
391 echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."
392 echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"
393 echo "or get the latest patch from SunSolve for gcc"
394 exit 1
395 fi
396 fi
397 solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
398 if test -z "$solinst" ; then
399 echo "Solaris install program not found. Use --install=/usr/ucb/install or"
400 echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
401 echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
402 exit 1
403 fi
404 if test "$solinst" = "/usr/sbin/install" ; then
405 echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
406 echo "try ginstall from the GNU fileutils available from www.blastwave.org"
407 echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
408 exit 1
409 fi
ec530c81
FB
410 sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
411 if test -z "$sol_ar" ; then
412 echo "Error: No path includes ar"
413 if test -f /usr/ccs/bin/ar ; then
414 echo "Add /usr/ccs/bin to your path and rerun configure"
415 fi
416 exit 1
417 fi
418fi
419
420
5327cf48
FB
421if test -z "$target_list" ; then
422# these targets are portable
0a8e90f4 423 if [ "$softmmu" = "yes" ] ; then
fbe4f65b 424 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu arm-softmmu ppc64-softmmu"
0a8e90f4 425 fi
5327cf48 426# the following are Linux specific
831b7825
TS
427 if [ "$linux_user" = "yes" ] ; then
428 target_list="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user ppc-linux-user mips-linux-user mipsel-linux-user m68k-linux-user $target_list"
429 fi
430# the following are Darwin specific
431 if [ "$darwin_user" = "yes" ] ; then
432 target_list="i386-darwin-user ppc-darwin-user $target_list"
5327cf48 433 fi
6e20a45f 434else
b1a550a0 435 target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5327cf48 436fi
0a8e90f4
PB
437if test -z "$target_list" ; then
438 echo "No targets enabled"
439 exit 1
440fi
5327cf48 441
7d13299d
FB
442if test -z "$cross_prefix" ; then
443
444# ---
445# big/little endian test
446cat > $TMPC << EOF
447#include <inttypes.h>
448int main(int argc, char ** argv){
1d14ffa9
FB
449 volatile uint32_t i=0x01234567;
450 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
451}
452EOF
453
cf257238 454if $cc -o $TMPE $TMPC 2> /dev/null ; then
7d13299d
FB
455$TMPE && bigendian="yes"
456else
457echo big/little test failed
458fi
459
460else
461
462# if cross compiling, cannot launch a program, so make a static guess
fbe4f65b 463if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "mips64" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
7d13299d
FB
464 bigendian="yes"
465fi
466
467fi
468
b6853697
FB
469# host long bits test
470hostlongbits="32"
471if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
472 hostlongbits="64"
473fi
474
e8cd23de 475# check gcc options support
04369ff2
FB
476cat > $TMPC <<EOF
477int main(void) {
04369ff2
FB
478}
479EOF
480
11d9f695
FB
481##########################################
482# SDL probe
483
484sdl_too_old=no
485
486if test -z "$sdl" ; then
487
a6e022ad
FB
488sdl_config="sdl-config"
489sdl=no
7c1f25b4 490sdl_static=no
a6e022ad
FB
491
492if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
493# win32 cross compilation case
494 sdl_config="i386-mingw32msvc-sdl-config"
495 sdl=yes
496else
497# normal SDL probe
11d9f695
FB
498cat > $TMPC << EOF
499#include <SDL.h>
500#undef main /* We don't want SDL to override our main() */
501int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
502EOF
503
a6e022ad
FB
504if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
505_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
11d9f695
FB
506if test "$_sdlversion" -lt 121 ; then
507sdl_too_old=yes
508else
fd677642
TS
509 if test "$cocoa" = "no" ; then
510 sdl=yes
511 fi
11d9f695 512fi
7c1f25b4
FB
513
514# static link with sdl ?
515if test "$sdl" = "yes" ; then
516aa="no"
517`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
518sdl_static_libs=`$sdl_config --static-libs`
519if [ "$aa" = "yes" ] ; then
d8d8aa4e 520 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
7c1f25b4
FB
521fi
522
523if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
524 sdl_static=yes
11d9f695
FB
525fi
526
7c1f25b4
FB
527fi # static link
528
529fi # sdl compile test
530
a6e022ad 531fi # cross compilation
fd677642
TS
532
533else
534 # Make sure to disable cocoa if sdl was set
535 if test "$sdl" = "yes" ; then
536 cocoa="no"
537 coreaudio="no"
538 fi
a6e022ad 539fi # -z $sdl
11d9f695 540
8f28f3fb
TS
541##########################################
542# alsa sound support libraries
543
544if test "$alsa" = "yes" ; then
545 cat > $TMPC << EOF
546#include <alsa/asoundlib.h>
547int main(void) { snd_pcm_t **handle; return snd_pcm_close(*handle); }
548EOF
549 if $cc -o $TMPE $TMPC -lasound 2> /dev/null ; then
550 :
551 else
552 echo
553 echo "Error: Could not find alsa"
554 echo "Make sure to have the alsa libs and headers installed."
555 echo
556 exit 1
557 fi
558fi
559
cc8ae6de 560# Check if tools are available to build documentation.
94ac5158 561if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then
cc8ae6de
PB
562 build_docs="yes"
563fi
564
11d9f695 565if test "$mingw32" = "yes" ; then
308c3593
PB
566 if test -z "$prefix" ; then
567 prefix="/c/Program Files/Qemu"
568 fi
569 mansuffix=""
570 datasuffix=""
571 docsuffix=""
572 binsuffix=""
11d9f695 573else
308c3593
PB
574 if test -z "$prefix" ; then
575 prefix="/usr/local"
576 fi
577 mansuffix="/share/man"
578 datasuffix="/share/qemu"
579 docsuffix="/share/doc/qemu"
580 binsuffix="/bin"
11d9f695 581fi
5a67135a 582
43ce4dfe 583echo "Install prefix $prefix"
308c3593
PB
584echo "BIOS directory $prefix$datasuffix"
585echo "binary directory $prefix$binsuffix"
11d9f695 586if test "$mingw32" = "no" ; then
308c3593 587echo "Manual directory $prefix$mansuffix"
43ce4dfe 588echo "ELF interp prefix $interp_prefix"
11d9f695 589fi
5a67135a 590echo "Source path $source_path"
43ce4dfe 591echo "C compiler $cc"
83469015 592echo "Host C compiler $host_cc"
43ce4dfe 593echo "make $make"
6a882643 594echo "install $install"
43ce4dfe 595echo "host CPU $cpu"
de83cd02 596echo "host big endian $bigendian"
97a847bc 597echo "target list $target_list"
43ce4dfe 598echo "gprof enabled $gprof"
05c2a3e7 599echo "profiler $profiler"
43ce4dfe 600echo "static build $static"
5b0753e0
FB
601if test "$darwin" = "yes" ; then
602 echo "Cocoa support $cocoa"
603fi
97a847bc 604echo "SDL support $sdl"
e4afee97
FB
605if test "$sdl" != "no" ; then
606 echo "SDL static link $sdl_static"
607fi
67b915a5 608echo "mingw32 support $mingw32"
fb065187 609echo "Adlib support $adlib"
1d14ffa9
FB
610echo "CoreAudio support $coreaudio"
611echo "ALSA support $alsa"
612echo "DSound support $dsound"
1d14ffa9
FB
613if test "$fmod" = "yes"; then
614 if test -z $fmod_lib || test -z $fmod_inc; then
615 echo
616 echo "Error: You must specify path to FMOD library and headers"
617 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
618 echo
619 exit 1
620 fi
b1a550a0
PB
621 fmod_support=" (lib='$fmod_lib' include='$fmod_inc')"
622else
623 fmod_support=""
102a52e4 624fi
b1a550a0 625echo "FMOD support $fmod $fmod_support"
07f4ddbf 626echo "kqemu support $kqemu"
cc8ae6de 627echo "Documentation $build_docs"
c5937220
PB
628[ ! -z "$uname_release" ] && \
629echo "uname -r $uname_release"
67b915a5 630
97a847bc 631if test $sdl_too_old = "yes"; then
24b55b96 632echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 633fi
24b55b96
FB
634#if test "$sdl_static" = "no"; then
635# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
636#fi
97a847bc
FB
637config_mak="config-host.mak"
638config_h="config-host.h"
7d13299d 639
7c1f25b4 640#echo "Creating $config_mak and $config_h"
7d13299d 641
97a847bc 642echo "# Automatically generated by configure - do not modify" > $config_mak
29517134 643echo "# Configured with: $0 $@" >> $config_mak
97a847bc 644echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 645
97a847bc 646echo "prefix=$prefix" >> $config_mak
308c3593
PB
647echo "bindir=\${prefix}$binsuffix" >> $config_mak
648echo "mandir=\${prefix}$mansuffix" >> $config_mak
649echo "datadir=\${prefix}$datasuffix" >> $config_mak
4ad5b06d 650echo "docdir=\${prefix}$docsuffix" >> $config_mak
308c3593 651echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
97a847bc 652echo "MAKE=$make" >> $config_mak
6a882643 653echo "INSTALL=$install" >> $config_mak
97a847bc 654echo "CC=$cc" >> $config_mak
97a847bc
FB
655echo "HOST_CC=$host_cc" >> $config_mak
656echo "AR=$ar" >> $config_mak
657echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
6f30fa85 658echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
97a847bc
FB
659echo "CFLAGS=$CFLAGS" >> $config_mak
660echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 661echo "EXESUF=$EXESUF" >> $config_mak
70956b77 662echo "AIOLIBS=$AIOLIBS" >> $config_mak
97a847bc
FB
663if test "$cpu" = "i386" ; then
664 echo "ARCH=i386" >> $config_mak
665 echo "#define HOST_I386 1" >> $config_h
0b0babc6
FB
666elif test "$cpu" = "x86_64" ; then
667 echo "ARCH=x86_64" >> $config_mak
668 echo "#define HOST_X86_64 1" >> $config_h
808c4954
FB
669elif test "$cpu" = "armv4b" ; then
670 echo "ARCH=arm" >> $config_mak
671 echo "#define HOST_ARM 1" >> $config_h
7d13299d 672elif test "$cpu" = "armv4l" ; then
97a847bc
FB
673 echo "ARCH=arm" >> $config_mak
674 echo "#define HOST_ARM 1" >> $config_h
7d13299d 675elif test "$cpu" = "powerpc" ; then
97a847bc
FB
676 echo "ARCH=ppc" >> $config_mak
677 echo "#define HOST_PPC 1" >> $config_h
7d13299d 678elif test "$cpu" = "mips" ; then
97a847bc
FB
679 echo "ARCH=mips" >> $config_mak
680 echo "#define HOST_MIPS 1" >> $config_h
fbe4f65b
TS
681elif test "$cpu" = "mips64" ; then
682 echo "ARCH=mips64" >> $config_mak
683 echo "#define HOST_MIPS64 1" >> $config_h
fb3e5849 684elif test "$cpu" = "s390" ; then
97a847bc
FB
685 echo "ARCH=s390" >> $config_mak
686 echo "#define HOST_S390 1" >> $config_h
295defa5 687elif test "$cpu" = "alpha" ; then
97a847bc
FB
688 echo "ARCH=alpha" >> $config_mak
689 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 690elif test "$cpu" = "sparc" ; then
97a847bc
FB
691 echo "ARCH=sparc" >> $config_mak
692 echo "#define HOST_SPARC 1" >> $config_h
ae228531 693elif test "$cpu" = "sparc64" ; then
97a847bc
FB
694 echo "ARCH=sparc64" >> $config_mak
695 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 696elif test "$cpu" = "ia64" ; then
97a847bc
FB
697 echo "ARCH=ia64" >> $config_mak
698 echo "#define HOST_IA64 1" >> $config_h
38e584a0 699elif test "$cpu" = "m68k" ; then
38ca2abc
FB
700 echo "ARCH=m68k" >> $config_mak
701 echo "#define HOST_M68K 1" >> $config_h
7d13299d
FB
702else
703 echo "Unsupported CPU"
704 exit 1
705fi
706if test "$bigendian" = "yes" ; then
97a847bc
FB
707 echo "WORDS_BIGENDIAN=yes" >> $config_mak
708 echo "#define WORDS_BIGENDIAN 1" >> $config_h
709fi
b6853697 710echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
67b915a5
FB
711if test "$mingw32" = "yes" ; then
712 echo "CONFIG_WIN32=yes" >> $config_mak
11d9f695 713 echo "#define CONFIG_WIN32 1" >> $config_h
210fa556
PB
714else
715 cat > $TMPC << EOF
716#include <byteswap.h>
717int main(void) { return bswap_32(0); }
718EOF
719 if $cc -o $TMPE $TMPC 2> /dev/null ; then
720 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
721 fi
67b915a5 722fi
83fb7adf
FB
723if test "$darwin" = "yes" ; then
724 echo "CONFIG_DARWIN=yes" >> $config_mak
725 echo "#define CONFIG_DARWIN 1" >> $config_h
726fi
ec530c81
FB
727if test "$solaris" = "yes" ; then
728 echo "CONFIG_SOLARIS=yes" >> $config_mak
38cfa06c 729 echo "#define HOST_SOLARIS $solarisrev" >> $config_h
ec530c81 730fi
67b915a5
FB
731if test "$gdbstub" = "yes" ; then
732 echo "CONFIG_GDBSTUB=yes" >> $config_mak
733 echo "#define CONFIG_GDBSTUB 1" >> $config_h
734fi
97a847bc
FB
735if test "$gprof" = "yes" ; then
736 echo "TARGET_GPROF=yes" >> $config_mak
737 echo "#define HAVE_GPROF 1" >> $config_h
738fi
739if test "$static" = "yes" ; then
740 echo "CONFIG_STATIC=yes" >> $config_mak
50863472 741 echo "#define CONFIG_STATIC 1" >> $config_h
7d13299d 742fi
05c2a3e7
FB
743if test $profiler = "yes" ; then
744 echo "#define CONFIG_PROFILER 1" >> $config_h
745fi
c20709aa
FB
746if test "$slirp" = "yes" ; then
747 echo "CONFIG_SLIRP=yes" >> $config_mak
748 echo "#define CONFIG_SLIRP 1" >> $config_h
749fi
fb065187
FB
750if test "$adlib" = "yes" ; then
751 echo "CONFIG_ADLIB=yes" >> $config_mak
752 echo "#define CONFIG_ADLIB 1" >> $config_h
753fi
754if test "$oss" = "yes" ; then
755 echo "CONFIG_OSS=yes" >> $config_mak
756 echo "#define CONFIG_OSS 1" >> $config_h
757fi
1d14ffa9
FB
758if test "$coreaudio" = "yes" ; then
759 echo "CONFIG_COREAUDIO=yes" >> $config_mak
760 echo "#define CONFIG_COREAUDIO 1" >> $config_h
761fi
762if test "$alsa" = "yes" ; then
763 echo "CONFIG_ALSA=yes" >> $config_mak
764 echo "#define CONFIG_ALSA 1" >> $config_h
765fi
766if test "$dsound" = "yes" ; then
767 echo "CONFIG_DSOUND=yes" >> $config_mak
768 echo "#define CONFIG_DSOUND 1" >> $config_h
769fi
102a52e4
FB
770if test "$fmod" = "yes" ; then
771 echo "CONFIG_FMOD=yes" >> $config_mak
772 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
773 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
774 echo "#define CONFIG_FMOD 1" >> $config_h
775fi
b1a550a0
PB
776qemu_version=`head $source_path/VERSION`
777echo "VERSION=$qemu_version" >>$config_mak
d4b8f039 778echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
97a847bc
FB
779
780echo "SRC_PATH=$source_path" >> $config_mak
ad064840
PB
781if [ "$source_path_used" = "yes" ]; then
782 echo "VPATH=$source_path" >> $config_mak
783fi
97a847bc 784echo "TARGET_DIRS=$target_list" >> $config_mak
cc8ae6de
PB
785if [ "$build_docs" = "yes" ] ; then
786 echo "BUILD_DOCS=yes" >> $config_mak
787fi
97a847bc 788
83fb7adf 789# XXX: suppress that
7d3505c5 790if [ "$bsd" = "yes" ] ; then
43003046 791 echo "#define O_LARGEFILE 0" >> $config_h
43003046 792 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
7d3505c5
FB
793 echo "#define _BSD 1" >> $config_h
794fi
795
c5937220
PB
796echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
797
1d14ffa9 798for target in $target_list; do
97a847bc
FB
799target_dir="$target"
800config_mak=$target_dir/config.mak
801config_h=$target_dir/config.h
802target_cpu=`echo $target | cut -d '-' -f 1`
803target_bigendian="no"
808c4954 804[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1e43adfc 805[ "$target_cpu" = "sparc" ] && target_bigendian=yes
64b3ab24 806[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
67867308 807[ "$target_cpu" = "ppc" ] && target_bigendian=yes
a2458627 808[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
d3258560 809[ "$target_cpu" = "mips" ] && target_bigendian=yes
fbe4f65b 810[ "$target_cpu" = "mips64" ] && target_bigendian=yes
908f52b0 811[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
e6e5906b 812[ "$target_cpu" = "m68k" ] && target_bigendian=yes
97a847bc
FB
813target_softmmu="no"
814if expr $target : '.*-softmmu' > /dev/null ; then
815 target_softmmu="yes"
816fi
997344f3
FB
817target_user_only="no"
818if expr $target : '.*-user' > /dev/null ; then
819 target_user_only="yes"
820fi
97a847bc 821
831b7825
TS
822target_linux_user="no"
823if expr $target : '.*-linux-user' > /dev/null ; then
824 target_linux_user="yes"
825fi
826
827target_darwin_user="no"
828if expr $target : '.*-darwin-user' > /dev/null ; then
829 target_darwin_user="yes"
830fi
831
97ccc689 832if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1d14ffa9 833 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
97ccc689 834 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
9c038506 835 echo "To build QEMU without graphical output configure with --disable-gfx-check"
97ccc689
FB
836 echo "Note that this will disable all output from the virtual graphics card."
837 exit 1;
838fi
839
7c1f25b4 840#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc
FB
841
842mkdir -p $target_dir
158142c2 843mkdir -p $target_dir/fpu
831b7825 844if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" ; then
69de927c
FB
845 mkdir -p $target_dir/nwfpe
846fi
a7e61ed4
FB
847if test "$target_user_only" = "no" ; then
848 mkdir -p $target_dir/slirp
849fi
69de927c 850
ec530c81
FB
851#
852# don't use ln -sf as not all "ln -sf" over write the file/link
853#
854rm -f $target_dir/Makefile
855ln -s $source_path/Makefile.target $target_dir/Makefile
856
97a847bc
FB
857
858echo "# Automatically generated by configure - do not modify" > $config_mak
859echo "/* Automatically generated by configure - do not modify */" > $config_h
860
de83cd02 861
97a847bc
FB
862echo "include ../config-host.mak" >> $config_mak
863echo "#include \"../config-host.h\"" >> $config_h
1e43adfc 864
e5fe0c52 865bflt="no"
1e43adfc
FB
866interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
867echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
97a847bc
FB
868
869if test "$target_cpu" = "i386" ; then
870 echo "TARGET_ARCH=i386" >> $config_mak
871 echo "#define TARGET_ARCH \"i386\"" >> $config_h
872 echo "#define TARGET_I386 1" >> $config_h
07f4ddbf 873 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
824d560f
FB
874 echo "#define USE_KQEMU 1" >> $config_h
875 fi
808c4954 876elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
97a847bc
FB
877 echo "TARGET_ARCH=arm" >> $config_mak
878 echo "#define TARGET_ARCH \"arm\"" >> $config_h
879 echo "#define TARGET_ARM 1" >> $config_h
e5fe0c52 880 bflt="yes"
1e43adfc
FB
881elif test "$target_cpu" = "sparc" ; then
882 echo "TARGET_ARCH=sparc" >> $config_mak
883 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
884 echo "#define TARGET_SPARC 1" >> $config_h
64b3ab24
FB
885elif test "$target_cpu" = "sparc64" ; then
886 echo "TARGET_ARCH=sparc64" >> $config_mak
887 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
888 echo "#define TARGET_SPARC 1" >> $config_h
889 echo "#define TARGET_SPARC64 1" >> $config_h
67867308
FB
890elif test "$target_cpu" = "ppc" ; then
891 echo "TARGET_ARCH=ppc" >> $config_mak
892 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
893 echo "#define TARGET_PPC 1" >> $config_h
a2458627
FB
894elif test "$target_cpu" = "ppc64" ; then
895 echo "TARGET_ARCH=ppc64" >> $config_mak
896 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
897 echo "#define TARGET_PPC 1" >> $config_h
898 echo "#define TARGET_PPC64 1" >> $config_h
0b0babc6
FB
899elif test "$target_cpu" = "x86_64" ; then
900 echo "TARGET_ARCH=x86_64" >> $config_mak
901 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
902 echo "#define TARGET_I386 1" >> $config_h
903 echo "#define TARGET_X86_64 1" >> $config_h
07f4ddbf
FB
904 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
905 echo "#define USE_KQEMU 1" >> $config_h
906 fi
c20eb473 907elif test "$target_cpu" = "mips" -o "$target_cpu" = "mipsel" ; then
d3258560
FB
908 echo "TARGET_ARCH=mips" >> $config_mak
909 echo "#define TARGET_ARCH \"mips\"" >> $config_h
910 echo "#define TARGET_MIPS 1" >> $config_h
6ea83fed
FB
911 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
912 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
fbe4f65b
TS
913elif test "$target_cpu" = "mips64" -o "$target_cpu" = "mips64el" ; then
914 echo "TARGET_ARCH=mips64" >> $config_mak
915 echo "#define TARGET_ARCH \"mips64\"" >> $config_h
916 echo "#define TARGET_MIPS 1" >> $config_h
917 echo "#define TARGET_MIPS64 1" >> $config_h
918 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
919 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
908f52b0 920elif test "$target_cpu" = "sh4" -o "$target_cpu" = "sh4eb" ; then
fdf9b3e8
FB
921 echo "TARGET_ARCH=sh4" >> $config_mak
922 echo "#define TARGET_ARCH \"sh4\"" >> $config_h
923 echo "#define TARGET_SH4 1" >> $config_h
4dbed897 924 bflt="yes"
e6e5906b
PB
925elif test "$target_cpu" = "m68k" ; then
926 echo "TARGET_ARCH=m68k" >> $config_mak
927 echo "#define TARGET_ARCH \"m68k\"" >> $config_h
928 echo "#define TARGET_M68K 1" >> $config_h
929 bflt="yes"
de83cd02
FB
930else
931 echo "Unsupported target CPU"
932 exit 1
933fi
934if test "$target_bigendian" = "yes" ; then
97a847bc
FB
935 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
936 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 937fi
97a847bc
FB
938if test "$target_softmmu" = "yes" ; then
939 echo "CONFIG_SOFTMMU=yes" >> $config_mak
940 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 941fi
997344f3
FB
942if test "$target_user_only" = "yes" ; then
943 echo "CONFIG_USER_ONLY=yes" >> $config_mak
944 echo "#define CONFIG_USER_ONLY 1" >> $config_h
945fi
831b7825
TS
946if test "$target_linux_user" = "yes" ; then
947 echo "CONFIG_LINUX_USER=yes" >> $config_mak
948 echo "#define CONFIG_LINUX_USER 1" >> $config_h
949fi
950if test "$target_darwin_user" = "yes" ; then
951 echo "CONFIG_DARWIN_USER=yes" >> $config_mak
952 echo "#define CONFIG_DARWIN_USER 1" >> $config_h
953fi
97a847bc 954
e6e5906b 955if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" -o "$target_cpu" = "sparc" -o "$target_cpu" = "sparc64" -o "$target_cpu" = "m68k"; then
158142c2
FB
956 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
957 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
958fi
e5fe0c52
PB
959if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
960 echo "TARGET_HAS_BFLT=yes" >> $config_mak
961 echo "#define TARGET_HAS_BFLT 1" >> $config_h
962fi
7c1f25b4
FB
963# sdl defines
964
965if test "$target_user_only" = "no"; then
966 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
dbb2c921 967 sdl1=$sdl_static
7c1f25b4 968 else
dbb2c921
FB
969 sdl1=$sdl
970 fi
971 if test "$sdl1" = "yes" ; then
972 echo "#define CONFIG_SDL 1" >> $config_h
973 echo "CONFIG_SDL=yes" >> $config_mak
974 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
975 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
976 else
7c1f25b4
FB
977 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
978 fi
dbb2c921 979 if [ "${aa}" = "yes" ] ; then
b1a550a0
PB
980 echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
981 else
982 echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
dbb2c921 983 fi
7c1f25b4 984 fi
7c1f25b4
FB
985fi
986
5b0753e0
FB
987if test "$cocoa" = "yes" ; then
988 echo "#define CONFIG_COCOA 1" >> $config_h
989 echo "CONFIG_COCOA=yes" >> $config_mak
990fi
991
97a847bc 992done # for target in $targets
7d13299d
FB
993
994# build tree in object directory if source path is different from current one
995if test "$source_path_used" = "yes" ; then
996 DIRS="tests"
997 FILES="Makefile tests/Makefile"
998 for dir in $DIRS ; do
999 mkdir -p $dir
1000 done
ec530c81 1001 # remove the link and recreate it, as not all "ln -sf" overwrite the link
7d13299d 1002 for f in $FILES ; do
ec530c81
FB
1003 rm -f $f
1004 ln -s $source_path/$f $f
7d13299d
FB
1005 done
1006fi
7d13299d 1007
97a847bc 1008rm -f $TMPO $TMPC $TMPE $TMPS