xref: /qemu/configure (revision 16b98a97a95274a4e8522f0f6610ea7f71014c0c)
17d13299dSbellard#!/bin/sh
27d13299dSbellard#
33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard
47d13299dSbellard#
57d13299dSbellard# set temporary file name
67d13299dSbellardif test ! -z "$TMPDIR" ; then
77d13299dSbellard    TMPDIR1="${TMPDIR}"
87d13299dSbellardelif test ! -z "$TEMPDIR" ; then
97d13299dSbellard    TMPDIR1="${TEMPDIR}"
107d13299dSbellardelse
117d13299dSbellard    TMPDIR1="/tmp"
127d13299dSbellardfi
137d13299dSbellard
143ef693a0SbellardTMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
153ef693a0SbellardTMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
163ef693a0SbellardTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
173ef693a0SbellardTMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
187d13299dSbellard
197d13299dSbellard# default parameters
2011d9f695Sbellardprefix=""
211e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M"
2243ce4dfeSbellardstatic="no"
237d13299dSbellardcross_prefix=""
247d13299dSbellardcc="gcc"
25328a4240Spbrookgcc3_search="yes"
26fe8f78e4Sbalroggcc3_list="gcc-3.4.6 gcc-3.4 gcc34 gcc-3.3.6 gcc-3.3 gcc33 gcc-3.2 gcc32"
270c58ac1cSmalcaudio_drv_list=""
280c58ac1cSmalcaudio_card_list=""
297d13299dSbellardhost_cc="gcc"
307d13299dSbellardar="ar"
317d13299dSbellardmake="make"
326a882643Spbrookinstall="install"
337d13299dSbellardstrip="strip"
347d13299dSbellardcpu=`uname -m`
355327cf48Sbellardtarget_list=""
367d13299dSbellardcase "$cpu" in
377d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
3897a847bcSbellard    cpu="i386"
397d13299dSbellard  ;;
40aaa5fa14Saurel32  x86_64|amd64)
41aaa5fa14Saurel32    cpu="x86_64"
42aaa5fa14Saurel32  ;;
43aaa5fa14Saurel32  alpha)
44aaa5fa14Saurel32    cpu="alpha"
45aaa5fa14Saurel32  ;;
46ba68055eSbellard  armv*b)
47808c4954Sbellard    cpu="armv4b"
48808c4954Sbellard  ;;
49ba68055eSbellard  armv*l)
507d13299dSbellard    cpu="armv4l"
517d13299dSbellard  ;;
52aaa5fa14Saurel32  cris)
53aaa5fa14Saurel32    cpu="cris"
547d13299dSbellard  ;;
55f54b3f92Saurel32  parisc|parisc64)
56f54b3f92Saurel32    cpu="hppa"
57f54b3f92Saurel32  ;;
58aaa5fa14Saurel32  ia64)
59aaa5fa14Saurel32    cpu="ia64"
60aaa5fa14Saurel32  ;;
61aaa5fa14Saurel32  m68k)
62aaa5fa14Saurel32    cpu="m68k"
637d13299dSbellard  ;;
647d13299dSbellard  mips)
657d13299dSbellard    cpu="mips"
667d13299dSbellard  ;;
67fbe4f65bSths  mips64)
68fbe4f65bSths    cpu="mips64"
69fbe4f65bSths  ;;
70aaa5fa14Saurel32  "Power Macintosh"|ppc|ppc64)
71aaa5fa14Saurel32    cpu="powerpc"
72e7daa605Sths  ;;
730e7b8a9fSths  s390*)
74fb3e5849Sbellard    cpu="s390"
75fb3e5849Sbellard  ;;
763142255cSblueswir1  sparc|sun4[cdmuv])
77ae228531Sbellard    cpu="sparc"
78ae228531Sbellard  ;;
79ae228531Sbellard  sparc64)
80ae228531Sbellard    cpu="sparc64"
81ae228531Sbellard  ;;
827d13299dSbellard  *)
837d13299dSbellard    cpu="unknown"
847d13299dSbellard  ;;
857d13299dSbellardesac
867d13299dSbellardgprof="no"
877d13299dSbellardbigendian="no"
8867b915a5Sbellardmingw32="no"
8967b915a5SbellardEXESUF=""
9067b915a5Sbellardgdbstub="yes"
91443f1376Sbellardslirp="yes"
92e0e6c8c0Saliguorivde="yes"
93102a52e4Sbellardfmod_lib=""
94102a52e4Sbellardfmod_inc=""
958d5d2d4cSthsvnc_tls="yes"
96b1a550a0Spbrookbsd="no"
975327cf48Sbellardlinux="no"
98c9ec1fe4Sbellardkqemu="no"
9905c2a3e7Sbellardprofiler="no"
1005b0753e0Sbellardcocoa="no"
10197ccc689Sbellardcheck_gfx="yes"
1021aff381fSbellardcheck_gcc="yes"
1030a8e90f4Spbrooksoftmmu="yes"
104831b7825Sthslinux_user="no"
105831b7825Sthsdarwin_user="no"
106cc8ae6deSpbrookbuild_docs="no"
107c5937220Spbrookuname_release=""
1084d3b6f6eSbalrogcurses="yes"
109bd0c5661Spbrooknptl="yes"
1108ff9cbf7Smalcmixemu="no"
1117d13299dSbellard
1127d13299dSbellard# OS specific
1137d13299dSbellardtargetos=`uname -s`
1147d13299dSbellardcase $targetos in
115c326e0afSbellardCYGWIN*)
116c326e0afSbellardmingw32="yes"
1176f30fa85SthsOS_CFLAGS="-mno-cygwin"
118db8d7dd1Sthsif [ "$cpu" = "i386" ] ; then
119db8d7dd1Sths    kqemu="yes"
120db8d7dd1Sthsfi
121c2de5c91Smalcaudio_possible_drivers="sdl"
122c326e0afSbellard;;
12367b915a5SbellardMINGW32*)
12467b915a5Sbellardmingw32="yes"
125db8d7dd1Sthsif [ "$cpu" = "i386" ] ; then
126db8d7dd1Sths    kqemu="yes"
127db8d7dd1Sthsfi
128c2de5c91Smalcaudio_possible_drivers="dsound sdl fmod"
12967b915a5Sbellard;;
1305c40d2bdSthsGNU/kFreeBSD)
1310c58ac1cSmalcaudio_drv_list="oss"
132c2de5c91Smalcaudio_possible_drivers="oss sdl esd"
1335c40d2bdSthsif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
1345c40d2bdSths    kqemu="yes"
1355c40d2bdSthsfi
1365c40d2bdSths;;
1377d3505c5SbellardFreeBSD)
1387d3505c5Sbellardbsd="yes"
1390c58ac1cSmalcaudio_drv_list="oss"
140c2de5c91Smalcaudio_possible_drivers="oss sdl esd"
141e99f9060Sbellardif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
14207f4ddbfSbellard    kqemu="yes"
14307f4ddbfSbellardfi
1447d3505c5Sbellard;;
1457d3505c5SbellardNetBSD)
1467d3505c5Sbellardbsd="yes"
1470c58ac1cSmalcaudio_drv_list="oss"
148c2de5c91Smalcaudio_possible_drivers="oss sdl esd"
1497d3505c5Sbellard;;
1507d3505c5SbellardOpenBSD)
1517d3505c5Sbellardbsd="yes"
1520c58ac1cSmalcaudio_drv_list="oss"
153c2de5c91Smalcaudio_possible_drivers="oss sdl esd"
1547d3505c5Sbellard;;
15583fb7adfSbellardDarwin)
15683fb7adfSbellardbsd="yes"
15783fb7adfSbellarddarwin="yes"
158831b7825Sthsdarwin_user="yes"
159fd677642Sthscocoa="yes"
1600c58ac1cSmalcaudio_drv_list="coreaudio"
161c2de5c91Smalcaudio_possible_drivers="coreaudio sdl fmod"
1626f30fa85SthsOS_CFLAGS="-mdynamic-no-pic"
163c2c59c3eSthsOS_LDFLAGS="-framework CoreFoundation -framework IOKit"
16483fb7adfSbellard;;
165ec530c81SbellardSunOS)
166ec530c81Sbellard    solaris="yes"
167c2b84fabSths    make="gmake"
168c2b84fabSths    install="ginstall"
1690475a5caSths    needs_libsunmath="no"
170c2b84fabSths    solarisrev=`uname -r | cut -f2 -d.`
171ef18c883Sths    # have to select again, because `uname -m` returns i86pc
172ef18c883Sths    # even on an x86_64 box.
173ef18c883Sths    solariscpu=`isainfo -k`
174ef18c883Sths    if test "${solariscpu}" = "amd64" ; then
175ef18c883Sths        cpu="x86_64"
176ef18c883Sths    fi
177c2b84fabSths    if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
1780475a5caSths        if test "$solarisrev" -le 9 ; then
1790475a5caSths            if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
1800475a5caSths                needs_libsunmath="yes"
1810475a5caSths            else
1820475a5caSths                echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
1830475a5caSths                echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
1840475a5caSths                echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
1850475a5caSths                echo "Studio 11 can be downloaded from www.sun.com."
1860475a5caSths                exit 1
1870475a5caSths            fi
1880475a5caSths        fi
1890475a5caSths        if test "$solarisrev" -ge 9 ; then
190c2b84fabSths            kqemu="yes"
191c2b84fabSths        fi
19286b2bd93Sths    fi
1936b4d2ba1Sths    if test -f /usr/include/sys/soundcard.h ; then
1940c58ac1cSmalc        audio_drv_list="oss"
1956b4d2ba1Sths    fi
196c2de5c91Smalc    audio_possible_drivers="oss sdl"
197ec530c81Sbellard;;
198fb065187Sbellard*)
1990c58ac1cSmalcaudio_drv_list="oss"
200b8e59f18Smalcaudio_possible_drivers="oss alsa sdl esd pa"
2015327cf48Sbellardlinux="yes"
202831b7825Sthslinux_user="yes"
20307f4ddbfSbellardif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
204c9ec1fe4Sbellard    kqemu="yes"
205c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
206c9ec1fe4Sbellardfi
207fb065187Sbellard;;
2087d13299dSbellardesac
2097d13299dSbellard
2107d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
211b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
2127d3505c5Sbellard    make="gmake"
21383fb7adfSbellard  fi
2147d3505c5Sbellardfi
2157d3505c5Sbellard
2167d13299dSbellard# find source path
217ad064840Spbrooksource_path=`dirname "$0"`
21859faef3aSbalrogsource_path_used="no"
21959faef3aSbalrogworkdir=`pwd`
220ad064840Spbrookif [ -z "$source_path" ]; then
22159faef3aSbalrog    source_path=$workdir
222ad064840Spbrookelse
223ad064840Spbrook    source_path=`cd "$source_path"; pwd`
2247d13299dSbellardfi
225724db118Spbrook[ -f "$workdir/vl.c" ] || source_path_used="yes"
2267d13299dSbellard
22785aa5189Sbellardwerror="no"
2280d1e2394Sbellard# generate compile errors on warnings for development builds
2290d1e2394Sbellard#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
2300d1e2394Sbellard#werror="yes";
2310d1e2394Sbellard#fi
23285aa5189Sbellard
2337d13299dSbellardfor opt do
234a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
2357d13299dSbellard  case "$opt" in
2362efc3265Sbellard  --help|-h) show_help=yes
2372efc3265Sbellard  ;;
238b1a550a0Spbrook  --prefix=*) prefix="$optarg"
2397d13299dSbellard  ;;
240b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
24132ce6337Sbellard  ;;
242b1a550a0Spbrook  --source-path=*) source_path="$optarg"
243ad064840Spbrook  source_path_used="yes"
2447d13299dSbellard  ;;
245b1a550a0Spbrook  --cross-prefix=*) cross_prefix="$optarg"
2467d13299dSbellard  ;;
247b1a550a0Spbrook  --cc=*) cc="$optarg"
248328a4240Spbrook  gcc3_search="no"
2497d13299dSbellard  ;;
250b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
25183469015Sbellard  ;;
252b1a550a0Spbrook  --make=*) make="$optarg"
2537d13299dSbellard  ;;
2546a882643Spbrook  --install=*) install="$optarg"
2556a882643Spbrook  ;;
256b1a550a0Spbrook  --extra-cflags=*) CFLAGS="$optarg"
2577d13299dSbellard  ;;
258b1a550a0Spbrook  --extra-ldflags=*) LDFLAGS="$optarg"
2597d13299dSbellard  ;;
260b1a550a0Spbrook  --cpu=*) cpu="$optarg"
2617d13299dSbellard  ;;
262b1a550a0Spbrook  --target-list=*) target_list="$optarg"
263de83cd02Sbellard  ;;
2647d13299dSbellard  --enable-gprof) gprof="yes"
2657d13299dSbellard  ;;
26643ce4dfeSbellard  --static) static="yes"
26743ce4dfeSbellard  ;;
26897a847bcSbellard  --disable-sdl) sdl="no"
26997a847bcSbellard  ;;
270b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
271102a52e4Sbellard  ;;
272c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
273c2de5c91Smalc  ;;
2742fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
2750c58ac1cSmalc  ;;
2760c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
2770c58ac1cSmalc  ;;
2788d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
2798d5d2d4cSths  ;;
280b93aebecSbellard  --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-" ; linux_user="no"
28167b915a5Sbellard  ;;
282443f1376Sbellard  --disable-slirp) slirp="no"
283c20709aaSbellard  ;;
284e0e6c8c0Saliguori  --disable-vde) vde="no"
2858a16d273Sths  ;;
286c9ec1fe4Sbellard  --disable-kqemu) kqemu="no"
287c9ec1fe4Sbellard  ;;
2882e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
2892e4d9fb1Saurel32  ;;
29005c2a3e7Sbellard  --enable-profiler) profiler="yes"
29105c2a3e7Sbellard  ;;
292c2de5c91Smalc  --enable-cocoa)
293c2de5c91Smalc      cocoa="yes" ;
294c2de5c91Smalc      sdl="no" ;
295c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
2965b0753e0Sbellard  ;;
29797ccc689Sbellard  --disable-gfx-check) check_gfx="no"
29897ccc689Sbellard  ;;
2991aff381fSbellard  --disable-gcc-check) check_gcc="no"
3001aff381fSbellard  ;;
301cad25d69Spbrook  --disable-system) softmmu="no"
3020a8e90f4Spbrook  ;;
303cad25d69Spbrook  --enable-system) softmmu="yes"
3040a8e90f4Spbrook  ;;
305831b7825Sths  --disable-linux-user) linux_user="no"
3060a8e90f4Spbrook  ;;
307831b7825Sths  --enable-linux-user) linux_user="yes"
308831b7825Sths  ;;
309831b7825Sths  --disable-darwin-user) darwin_user="no"
310831b7825Sths  ;;
311831b7825Sths  --enable-darwin-user) darwin_user="yes"
3120a8e90f4Spbrook  ;;
313c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
314c5937220Spbrook  ;;
3153142255cSblueswir1  --sparc_cpu=*)
3163142255cSblueswir1      sparc_cpu="$optarg"
3173142255cSblueswir1      case $sparc_cpu in
3183142255cSblueswir1        v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
3193142255cSblueswir1                 target_cpu="sparc"; cpu="sparc" ;;
3203142255cSblueswir1        v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
3213142255cSblueswir1                 target_cpu="sparc"; cpu="sparc" ;;
3223142255cSblueswir1        v9)    SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
3233142255cSblueswir1                 target_cpu="sparc64"; cpu="sparc64" ;;
3243142255cSblueswir1        *)     echo "undefined SPARC architecture. Exiting";exit 1;;
3253142255cSblueswir1      esac
3263142255cSblueswir1  ;;
32785aa5189Sbellard  --enable-werror) werror="yes"
32885aa5189Sbellard  ;;
32985aa5189Sbellard  --disable-werror) werror="no"
33085aa5189Sbellard  ;;
3314d3b6f6eSbalrog  --disable-curses) curses="no"
3324d3b6f6eSbalrog  ;;
333bd0c5661Spbrook  --disable-nptl) nptl="no"
334bd0c5661Spbrook  ;;
3358ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
3368ff9cbf7Smalc  ;;
3377f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
3387f1559c6Sbalrog  ;;
3397d13299dSbellard  esac
3407d13299dSbellarddone
3417d13299dSbellard
342209afb9eSthsif [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
343209afb9eSths    AIOLIBS=
344209afb9eSthselse
3454259e1a5Sths    # Some Linux architectures (e.g. s390) don't imply -lpthread automatically.
3464259e1a5Sths    AIOLIBS="-lrt -lpthread"
347209afb9eSthsfi
348209afb9eSths
3496f30fa85Sths# default flags for all hosts
3506f30fa85SthsCFLAGS="$CFLAGS -Wall -O2 -g -fno-strict-aliasing"
3516f30fa85SthsLDFLAGS="$LDFLAGS -g"
35285aa5189Sbellardif test "$werror" = "yes" ; then
35385aa5189SbellardCFLAGS="$CFLAGS -Werror"
35485aa5189Sbellardfi
3556f30fa85Sths
3563142255cSblueswir1#
3573142255cSblueswir1# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
3583142255cSblueswir1# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
3593142255cSblueswir1#
36040293e58Sbellardcase "$cpu" in
3613142255cSblueswir1    sparc) if test -z "$sparc_cpu" ; then
3623142255cSblueswir1               ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
3633142255cSblueswir1               ARCH_LDFLAGS="-m32"
3643142255cSblueswir1           else
3653142255cSblueswir1               ARCH_CFLAGS="${SP_CFLAGS}"
3663142255cSblueswir1               ARCH_LDFLAGS="${SP_LDFLAGS}"
3673142255cSblueswir1           fi
3683142255cSblueswir1           ;;
3693142255cSblueswir1    sparc64) if test -z "$sparc_cpu" ; then
3703142255cSblueswir1               ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
3713142255cSblueswir1               ARCH_LDFLAGS="-m64"
3723142255cSblueswir1           else
3733142255cSblueswir1               ARCH_CFLAGS="${SP_CFLAGS}"
3743142255cSblueswir1               ARCH_LDFLAGS="${SP_LDFLAGS}"
3753142255cSblueswir1           fi
3763142255cSblueswir1           ;;
37776d83bdeSths    s390)
37876d83bdeSths           ARCH_CFLAGS="-march=z900"
37976d83bdeSths           ;;
38040293e58Sbellard    i386)
38140293e58Sbellard           ARCH_CFLAGS="-m32"
38240293e58Sbellard           ARCH_LDFLAGS="-m32"
38340293e58Sbellard           ;;
38440293e58Sbellard    x86_64)
38540293e58Sbellard           ARCH_CFLAGS="-m64"
38640293e58Sbellard           ARCH_LDFLAGS="-m64"
38740293e58Sbellard           ;;
3883142255cSblueswir1esac
3893142255cSblueswir1
390af5db58eSpbrookif test x"$show_help" = x"yes" ; then
391af5db58eSpbrookcat << EOF
392af5db58eSpbrook
393af5db58eSpbrookUsage: configure [options]
394af5db58eSpbrookOptions: [defaults in brackets after descriptions]
395af5db58eSpbrook
396af5db58eSpbrookEOF
397af5db58eSpbrookecho "Standard options:"
398af5db58eSpbrookecho "  --help                   print this message"
399af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
400af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
401af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
402af5db58eSpbrookecho "  --target-list=LIST       set target list [$target_list]"
403af5db58eSpbrookecho ""
404af5db58eSpbrookecho "kqemu kernel acceleration support:"
405af5db58eSpbrookecho "  --disable-kqemu          disable kqemu support"
406af5db58eSpbrookecho ""
407af5db58eSpbrookecho "Advanced options (experts only):"
408af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
409af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
410af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
411af5db58eSpbrookecho "  --host-cc=CC             use C compiler CC [$host_cc] for dyngen etc."
412af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
4136a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
414af5db58eSpbrookecho "  --static                 enable static build [$static]"
41585aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
416fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
417af5db58eSpbrookecho "  --enable-cocoa           enable COCOA (Mac OS X only)"
418af5db58eSpbrookecho "  --enable-mingw32         enable Win32 cross compilation with mingw32"
419c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
420c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
421c2de5c91Smalcecho "  --audio-card-list=LIST   set list of additional emulated audio cards"
422c2de5c91Smalcecho "                           Available cards: ac97 adlib cs4231a gus"
4238ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
4242e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
4258d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
426af896aaaSpbrookecho "  --disable-curses         disable curses output"
427bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
428af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
429af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
430831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
431831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
432831b7825Sthsecho "  --enable-darwin-user     enable all darwin usermode emulation targets"
433831b7825Sthsecho "  --disable-darwin-user    disable all darwin usermode emulation targets"
434af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
435af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
436c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
4373142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
438e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
439af5db58eSpbrookecho ""
4405bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
441af5db58eSpbrookexit 1
442af5db58eSpbrookfi
443af5db58eSpbrook
4447d13299dSbellardcc="${cross_prefix}${cc}"
4457d13299dSbellardar="${cross_prefix}${ar}"
4467d13299dSbellardstrip="${cross_prefix}${strip}"
4477d13299dSbellard
448064aae13Spbrook# check that the C compiler works.
449064aae13Spbrookcat > $TMPC <<EOF
450064aae13Spbrookint main(void) {}
451064aae13SpbrookEOF
452064aae13Spbrook
453db7287edSpbrookif $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then
454064aae13Spbrook  : C compiler works ok
455064aae13Spbrookelse
456064aae13Spbrook    echo "ERROR: \"$cc\" either does not exist or does not work"
457064aae13Spbrook    exit 1
458a7350fa1Sbellardfi
459a7350fa1Sbellard
46067b915a5Sbellardif test "$mingw32" = "yes" ; then
4615327cf48Sbellard    linux="no"
46267b915a5Sbellard    EXESUF=".exe"
4639f059ecaSbellard    oss="no"
46467b915a5Sbellardfi
46567b915a5Sbellard
466328a4240Spbrook# Check for gcc4, error if pre-gcc4
467328a4240Spbrookif test "$check_gcc" = "yes" ; then
468328a4240Spbrook    cat > $TMPC <<EOF
469328a4240Spbrook#if __GNUC__ < 4
470328a4240Spbrook#error gcc3
471328a4240Spbrook#endif
472328a4240Spbrookint main(){return 0;}
473328a4240SpbrookEOF
474db7287edSpbrook    if "$cc" $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
475328a4240Spbrook	echo "WARNING: \"$cc\" looks like gcc 4.x"
476328a4240Spbrook	found_compat_cc="no"
477328a4240Spbrook	if test "$gcc3_search" = "yes" ; then
478328a4240Spbrook	    echo "Looking for gcc 3.x"
479328a4240Spbrook	    for compat_cc in $gcc3_list ; do
480d4af3de2Sbalrog		if "$cross_prefix$compat_cc" --version 2> /dev/null | fgrep '(GCC) 3.' > /dev/null 2>&1 ; then
481328a4240Spbrook		    echo "Found \"$compat_cc\""
4821124426aSpbrook		    cc="$cross_prefix$compat_cc"
483328a4240Spbrook		    found_compat_cc="yes"
484328a4240Spbrook		    break
485328a4240Spbrook		fi
486328a4240Spbrook	    done
487328a4240Spbrook	    if test "$found_compat_cc" = "no" ; then
488328a4240Spbrook		echo "gcc 3.x not found!"
489328a4240Spbrook	    fi
490328a4240Spbrook	fi
491328a4240Spbrook	if test "$found_compat_cc" = "no" ; then
492328a4240Spbrook	    echo "QEMU is known to have problems when compiled with gcc 4.x"
493328a4240Spbrook	    echo "It is recommended that you use gcc 3.x to build QEMU"
494328a4240Spbrook	    echo "To use this compiler anyway, configure with --disable-gcc-check"
495328a4240Spbrook	    exit 1;
496328a4240Spbrook	fi
497328a4240Spbrook    fi
498328a4240Spbrookfi
499328a4240Spbrook
500ec530c81Sbellard#
501ec530c81Sbellard# Solaris specific configure tool chain decisions
502ec530c81Sbellard#
503ec530c81Sbellardif test "$solaris" = "yes" ; then
504ec530c81Sbellard  #
505ec530c81Sbellard  # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly
506ec530c81Sbellard  # override the check with --disable-gcc-check
507ec530c81Sbellard  #
508ec530c81Sbellard  if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then
509ec530c81Sbellard    solgcc=`which $cc`
510ec530c81Sbellard    if test "$solgcc" = "/usr/sfw/bin/gcc" ; then
511ec530c81Sbellard      echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."
512ec530c81Sbellard      echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"
513ec530c81Sbellard      echo "or get the latest patch from SunSolve for gcc"
514ec530c81Sbellard      exit 1
515ec530c81Sbellard    fi
516ec530c81Sbellard  fi
517ec530c81Sbellard  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
518ec530c81Sbellard  if test -z "$solinst" ; then
519ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
520ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
521ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
522ec530c81Sbellard    exit 1
523ec530c81Sbellard  fi
524ec530c81Sbellard  if test "$solinst" = "/usr/sbin/install" ; then
525ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
526ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
527ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
528ec530c81Sbellard    exit 1
529ec530c81Sbellard  fi
530ec530c81Sbellard  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
531ec530c81Sbellard  if test -z "$sol_ar" ; then
532ec530c81Sbellard    echo "Error: No path includes ar"
533ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
534ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
535ec530c81Sbellard    fi
536ec530c81Sbellard    exit 1
537ec530c81Sbellard  fi
538ec530c81Sbellardfi
539ec530c81Sbellard
540ec530c81Sbellard
5415327cf48Sbellardif test -z "$target_list" ; then
5425327cf48Sbellard# these targets are portable
5430a8e90f4Spbrook    if [ "$softmmu" = "yes" ] ; then
5442408a527Saurel32        target_list="\
5452408a527Saurel32i386-softmmu \
5462408a527Saurel32x86_64-softmmu \
5472408a527Saurel32arm-softmmu \
5482408a527Saurel32cris-softmmu \
5492408a527Saurel32m68k-softmmu \
5502408a527Saurel32mips-softmmu \
5512408a527Saurel32mipsel-softmmu \
5522408a527Saurel32mips64-softmmu \
5532408a527Saurel32mips64el-softmmu \
5542408a527Saurel32ppc-softmmu \
5552408a527Saurel32ppcemb-softmmu \
5562408a527Saurel32ppc64-softmmu \
5572408a527Saurel32sh4-softmmu \
5582408a527Saurel32sh4eb-softmmu \
5592408a527Saurel32sparc-softmmu \
5602408a527Saurel32"
5610a8e90f4Spbrook    fi
5625327cf48Sbellard# the following are Linux specific
563831b7825Sths    if [ "$linux_user" = "yes" ] ; then
5642408a527Saurel32        target_list="${target_list}\
5652408a527Saurel32i386-linux-user \
5662408a527Saurel32x86_64-linux-user \
5672408a527Saurel32alpha-linux-user \
5682408a527Saurel32arm-linux-user \
5692408a527Saurel32armeb-linux-user \
5702408a527Saurel32cris-linux-user \
5712408a527Saurel32m68k-linux-user \
5722408a527Saurel32mips-linux-user \
5732408a527Saurel32mipsel-linux-user \
5742408a527Saurel32ppc-linux-user \
5752408a527Saurel32ppc64-linux-user \
5762408a527Saurel32ppc64abi32-linux-user \
5772408a527Saurel32sh4-linux-user \
5782408a527Saurel32sh4eb-linux-user \
5792408a527Saurel32sparc-linux-user \
5802408a527Saurel32sparc64-linux-user \
5812408a527Saurel32sparc32plus-linux-user \
5822408a527Saurel32"
583831b7825Sths    fi
584831b7825Sths# the following are Darwin specific
585831b7825Sths    if [ "$darwin_user" = "yes" ] ; then
5862408a527Saurel32        target_list="$target_list i386-darwin-user ppc-darwin-user"
5875327cf48Sbellard    fi
5886e20a45fSbellardelse
589b1a550a0Spbrook    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
5905327cf48Sbellardfi
5910a8e90f4Spbrookif test -z "$target_list" ; then
5920a8e90f4Spbrook    echo "No targets enabled"
5930a8e90f4Spbrook    exit 1
5940a8e90f4Spbrookfi
5955327cf48Sbellard
5967d13299dSbellardif test -z "$cross_prefix" ; then
5977d13299dSbellard
5987d13299dSbellard# ---
5997d13299dSbellard# big/little endian test
6007d13299dSbellardcat > $TMPC << EOF
6017d13299dSbellard#include <inttypes.h>
6027d13299dSbellardint main(int argc, char ** argv){
6037d13299dSbellard        volatile uint32_t i=0x01234567;
6047d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
6057d13299dSbellard}
6067d13299dSbellardEOF
6077d13299dSbellard
608db7287edSpbrookif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
6097d13299dSbellard$TMPE && bigendian="yes"
6107d13299dSbellardelse
6117d13299dSbellardecho big/little test failed
6127d13299dSbellardfi
6137d13299dSbellard
6147d13299dSbellardelse
6157d13299dSbellard
6167d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
6170938cda5Saurel32if test "$cpu" = "armv4b" \
618f54b3f92Saurel32     -o "$cpu" = "hppa" \
6190938cda5Saurel32     -o "$cpu" = "m68k" \
6200938cda5Saurel32     -o "$cpu" = "mips" \
6210938cda5Saurel32     -o "$cpu" = "mips64" \
6220938cda5Saurel32     -o "$cpu" = "powerpc" \
6230938cda5Saurel32     -o "$cpu" = "s390" \
6240938cda5Saurel32     -o "$cpu" = "sparc" \
6250938cda5Saurel32     -o "$cpu" = "sparc64"; then
6267d13299dSbellard    bigendian="yes"
6277d13299dSbellardfi
6287d13299dSbellard
6297d13299dSbellardfi
6307d13299dSbellard
631b6853697Sbellard# host long bits test
632b6853697Sbellardhostlongbits="32"
6330938cda5Saurel32if test "$cpu" = "x86_64" \
6340938cda5Saurel32     -o "$cpu" = "alpha" \
6350938cda5Saurel32     -o "$cpu" = "ia64" \
6360938cda5Saurel32     -o "$cpu" = "sparc64"; then
637b6853697Sbellard    hostlongbits="64"
638b6853697Sbellardfi
639b6853697Sbellard
640810260a8Smalc# ppc specific hostlongbits selection
641810260a8Smalcif test "$cpu" = "powerpc" ; then
642810260a8Smalc    cat > $TMPC <<EOF
643810260a8Smalcint main(void){return sizeof(long);}
644810260a8SmalcEOF
645810260a8Smalc
646810260a8Smalc    if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null; then
647810260a8Smalc        $TMPE
648810260a8Smalc        case $? in
649810260a8Smalc            4) hostlongbits="32";;
650810260a8Smalc            8) hostlongbits="64";;
651ba69a08aSmalc            *) echo "Couldn't determine bits per long value"; exit 1;;
652810260a8Smalc        esac
653810260a8Smalc    else
654810260a8Smalc        echo hostlongbits test failed
655ba69a08aSmalc        exit 1
656810260a8Smalc    fi
657810260a8Smalcfi
658810260a8Smalc
659e8cd23deSbellard# check gcc options support
66004369ff2Sbellardcat > $TMPC <<EOF
66104369ff2Sbellardint main(void) {
66204369ff2Sbellard}
66304369ff2SbellardEOF
66404369ff2Sbellard
665bd0c5661Spbrook# Check host NPTL support
666bd0c5661Spbrookcat > $TMPC <<EOF
667bd0c5661Spbrook#include <sched.h>
66830813ceaSpbrook#include <linux/futex.h>
669bd0c5661Spbrookvoid foo()
670bd0c5661Spbrook{
671bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
672bd0c5661Spbrook#error bork
673bd0c5661Spbrook#endif
674bd0c5661Spbrook}
675bd0c5661SpbrookEOF
676bd0c5661Spbrook
677bd0c5661Spbrookif $cc $ARCH_CFLAGS -c -o $TMPO $TMPC 2> /dev/null ; then
678bd0c5661Spbrook  :
679bd0c5661Spbrookelse
680bd0c5661Spbrook   nptl="no"
681bd0c5661Spbrookfi
682bd0c5661Spbrook
68311d9f695Sbellard##########################################
68411d9f695Sbellard# SDL probe
68511d9f695Sbellard
68611d9f695Sbellardsdl_too_old=no
68711d9f695Sbellard
68811d9f695Sbellardif test -z "$sdl" ; then
689a6e022adSbellard    sdl_config="sdl-config"
690a6e022adSbellard    sdl=no
6917c1f25b4Sbellard    sdl_static=no
692a6e022adSbellard
693a6e022adSbellard    if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
694a6e022adSbellard    # win32 cross compilation case
695a6e022adSbellard        sdl_config="i386-mingw32msvc-sdl-config"
696a6e022adSbellard        sdl=yes
697a6e022adSbellard    else
698a6e022adSbellard        # normal SDL probe
69911d9f695Sbellardcat > $TMPC << EOF
70011d9f695Sbellard#include <SDL.h>
70111d9f695Sbellard#undef main /* We don't want SDL to override our main() */
70211d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
70311d9f695SbellardEOF
704db7287edSpbrook        if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then
705a6e022adSbellard            _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
70611d9f695Sbellard            if test "$_sdlversion" -lt 121 ; then
70711d9f695Sbellard                sdl_too_old=yes
70811d9f695Sbellard            else
709fd677642Sths                if test "$cocoa" = "no" ; then
71011d9f695Sbellard                    sdl=yes
71111d9f695Sbellard                fi
712fd677642Sths            fi
7137c1f25b4Sbellard
7147c1f25b4Sbellard            # static link with sdl ?
7157c1f25b4Sbellard            if test "$sdl" = "yes" ; then
7167c1f25b4Sbellard                aa="no"
717e14a693dSths                `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
718e14a693dSths                sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
7197c1f25b4Sbellard                if [ "$aa" = "yes" ] ; then
720d8d8aa4eSbellard                    sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
72111d9f695Sbellard                fi
72211d9f695Sbellard
7238281db4dSths                if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
7247c1f25b4Sbellard                    sdl_static=yes
7257c1f25b4Sbellard                fi
7267c1f25b4Sbellard            fi # static link
7277c1f25b4Sbellard        fi # sdl compile test
728a6e022adSbellard    fi # cross compilation
729fd677642Sthselse
730fd677642Sths    # Make sure to disable cocoa if sdl was set
731fd677642Sths    if test "$sdl" = "yes" ; then
732fd677642Sths       cocoa="no"
733c2de5c91Smalc       audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
734fd677642Sths    fi
735a6e022adSbellardfi # -z $sdl
73611d9f695Sbellard
7378f28f3fbSths##########################################
7388d5d2d4cSths# VNC TLS detection
7398d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
740ae6b5e5aSaliguoricat > $TMPC <<EOF
741ae6b5e5aSaliguori#include <gnutls/gnutls.h>
742ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
743ae6b5e5aSaliguoriEOF
744ae6b5e5aSaliguori    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
745ae6b5e5aSaliguori    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
746ae6b5e5aSaliguori    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
747ae6b5e5aSaliguori           $vnc_tls_libs 2> /dev/null ; then
748ae6b5e5aSaliguori	:
749ae6b5e5aSaliguori    else
750ae6b5e5aSaliguori	vnc_tls="no"
7518d5d2d4cSths    fi
7528d5d2d4cSthsfi
7538d5d2d4cSths
7548d5d2d4cSths##########################################
7558a16d273Sths# vde libraries probe
7568a16d273Sthsif test "$vde" = "yes" ; then
7578a16d273Sths  cat > $TMPC << EOF
7588a16d273Sths#include <libvdeplug.h>
7598a16d273Sthsint main(void) { struct vde_open_args a = {0, 0, 0} ; return 0;}
7608a16d273SthsEOF
7618a16d273Sths    if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
7628a16d273Sths        :
7638a16d273Sths    else
764e0e6c8c0Saliguori        vde="no"
7658a16d273Sths    fi
7668a16d273Sthsfi
7678a16d273Sths
7688a16d273Sths##########################################
769c2de5c91Smalc# Sound support libraries probe
7708f28f3fbSths
771c2de5c91Smalcaudio_drv_probe()
772c2de5c91Smalc{
773c2de5c91Smalc    drv=$1
774c2de5c91Smalc    hdr=$2
775c2de5c91Smalc    lib=$3
776c2de5c91Smalc    exp=$4
777c2de5c91Smalc    cfl=$5
7788f28f3fbSths        cat > $TMPC << EOF
779c2de5c91Smalc#include <$hdr>
780c2de5c91Smalcint main(void) { $exp }
7818f28f3fbSthsEOF
782c2de5c91Smalc    if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib 2> /dev/null ; then
7838f28f3fbSths        :
7848f28f3fbSths    else
7858f28f3fbSths        echo
786c2de5c91Smalc        echo "Error: $drv check failed"
787c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
7888f28f3fbSths        echo
7898f28f3fbSths        exit 1
7908f28f3fbSths    fi
791c2de5c91Smalc}
792c2de5c91Smalc
7932fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
794c2de5c91Smalcfor drv in $audio_drv_list; do
795c2de5c91Smalc    case $drv in
796c2de5c91Smalc    alsa)
797c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
798c2de5c91Smalc        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
799c2de5c91Smalc    ;;
800c2de5c91Smalc
801c2de5c91Smalc    fmod)
802c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
803c2de5c91Smalc        echo
804c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
805c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
806c2de5c91Smalc        echo
807c2de5c91Smalc        exit 1
8088f28f3fbSths    fi
809c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
810c2de5c91Smalc    ;;
811c2de5c91Smalc
812c2de5c91Smalc    esd)
813c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
814c2de5c91Smalc    ;;
815b8e59f18Smalc
816b8e59f18Smalc    pa)
817b8e59f18Smalc    audio_drv_probe $drv pulse/simple.h -lpulse-simple \
818b8e59f18Smalc        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
819b8e59f18Smalc    ;;
820b8e59f18Smalc
821e4c63a6aSmalc    *)
8221c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
823e4c63a6aSmalc        echo
824e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
825e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
826e4c63a6aSmalc        echo
827e4c63a6aSmalc        exit 1
828e4c63a6aSmalc    }
829e4c63a6aSmalc    ;;
830e4c63a6aSmalc
831*16b98a97Smalc    oss|sdl|core|wav|dsound)
832*16b98a97Smalc    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
833*16b98a97Smalc    ;;
834*16b98a97Smalc
835c2de5c91Smalc    esac
836c2de5c91Smalcdone
8378f28f3fbSths
8384d3b6f6eSbalrog##########################################
8392e4d9fb1Saurel32# BrlAPI probe
8402e4d9fb1Saurel32
8412e4d9fb1Saurel32if test -z "$brlapi" ; then
8422e4d9fb1Saurel32    brlapi=no
8432e4d9fb1Saurel32cat > $TMPC << EOF
8442e4d9fb1Saurel32#include <brlapi.h>
8452e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
8462e4d9fb1Saurel32EOF
847a40e56d5Saurel32    if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi 2> /dev/null ; then
8482e4d9fb1Saurel32	    brlapi=yes
8492e4d9fb1Saurel32    fi # brlapi compile test
8502e4d9fb1Saurel32fi # -z $brlapi
8512e4d9fb1Saurel32
8522e4d9fb1Saurel32##########################################
8534d3b6f6eSbalrog# curses probe
8544d3b6f6eSbalrog
8554d3b6f6eSbalrogif test "$curses" = "yes" ; then
8564d3b6f6eSbalrog  curses=no
8574d3b6f6eSbalrog  cat > $TMPC << EOF
8584d3b6f6eSbalrog#include <curses.h>
8594d3b6f6eSbalrogint main(void) { return curses_version(); }
8604d3b6f6eSbalrogEOF
861af896aaaSpbrook  if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses 2> /dev/null ; then
8624d3b6f6eSbalrog    curses=yes
8634d3b6f6eSbalrog  fi
8644d3b6f6eSbalrogfi # test "$curses"
8654d3b6f6eSbalrog
866cc8ae6deSpbrook# Check if tools are available to build documentation.
8676c591867Sthsif [ -x "`which texi2html 2>/dev/null`" ] && \
8686c591867Sths   [ -x "`which pod2man 2>/dev/null`" ]; then
869cc8ae6deSpbrook  build_docs="yes"
870cc8ae6deSpbrookfi
871cc8ae6deSpbrook
87211d9f695Sbellardif test "$mingw32" = "yes" ; then
87311d9f695Sbellard  if test -z "$prefix" ; then
87411d9f695Sbellard      prefix="/c/Program Files/Qemu"
87511d9f695Sbellard  fi
876308c3593Spbrook  mansuffix=""
877308c3593Spbrook  datasuffix=""
878308c3593Spbrook  docsuffix=""
879308c3593Spbrook  binsuffix=""
88011d9f695Sbellardelse
88111d9f695Sbellard  if test -z "$prefix" ; then
88211d9f695Sbellard      prefix="/usr/local"
88311d9f695Sbellard  fi
884308c3593Spbrook  mansuffix="/share/man"
885308c3593Spbrook  datasuffix="/share/qemu"
886308c3593Spbrook  docsuffix="/share/doc/qemu"
887308c3593Spbrook  binsuffix="/bin"
88811d9f695Sbellardfi
8895a67135aSbellard
8907d13299dSbellardecho "Install prefix    $prefix"
891308c3593Spbrookecho "BIOS directory    $prefix$datasuffix"
892308c3593Spbrookecho "binary directory  $prefix$binsuffix"
89311d9f695Sbellardif test "$mingw32" = "no" ; then
894308c3593Spbrookecho "Manual directory  $prefix$mansuffix"
89543ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
89611d9f695Sbellardfi
8975a67135aSbellardecho "Source path       $source_path"
8987d13299dSbellardecho "C compiler        $cc"
89983469015Sbellardecho "Host C compiler   $host_cc"
900db7287edSpbrookecho "ARCH_CFLAGS       $ARCH_CFLAGS"
9017d13299dSbellardecho "make              $make"
9026a882643Spbrookecho "install           $install"
903a98fd896Sbellardecho "host CPU          $cpu"
904de83cd02Sbellardecho "host big endian   $bigendian"
90597a847bcSbellardecho "target list       $target_list"
9067d13299dSbellardecho "gprof enabled     $gprof"
90705c2a3e7Sbellardecho "profiler          $profiler"
90843ce4dfeSbellardecho "static build      $static"
90985aa5189Sbellardecho "-Werror enabled   $werror"
9105b0753e0Sbellardif test "$darwin" = "yes" ; then
9115b0753e0Sbellard    echo "Cocoa support     $cocoa"
9125b0753e0Sbellardfi
91397a847bcSbellardecho "SDL support       $sdl"
914e4afee97Sbellardif test "$sdl" != "no" ; then
9157c1f25b4Sbellard    echo "SDL static link   $sdl_static"
916e4afee97Sbellardfi
9174d3b6f6eSbalrogecho "curses support    $curses"
91867b915a5Sbellardecho "mingw32 support   $mingw32"
9190c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
9200c58ac1cSmalcecho "Extra audio cards $audio_card_list"
9218ff9cbf7Smalcecho "Mixer emulation   $mixemu"
9228d5d2d4cSthsecho "VNC TLS support   $vnc_tls"
9238d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
9248d5d2d4cSths    echo "    TLS CFLAGS    $vnc_tls_cflags"
9258d5d2d4cSths    echo "    TLS LIBS      $vnc_tls_libs"
9268d5d2d4cSthsfi
9273142255cSblueswir1if test -n "$sparc_cpu"; then
9283142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
9293142255cSblueswir1fi
93007f4ddbfSbellardecho "kqemu support     $kqemu"
9312e4d9fb1Saurel32echo "brlapi support    $brlapi"
932cc8ae6deSpbrookecho "Documentation     $build_docs"
933c5937220Spbrook[ ! -z "$uname_release" ] && \
934c5937220Spbrookecho "uname -r          $uname_release"
935bd0c5661Spbrookecho "NPTL support      $nptl"
9368a16d273Sthsecho "vde support       $vde"
93767b915a5Sbellard
93897a847bcSbellardif test $sdl_too_old = "yes"; then
93924b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
940e8cd23deSbellardfi
94120b40c6aSthsif [ -s /tmp/qemu-$$-sdl-config.log ]; then
94220b40c6aSths  echo "The error log from compiling the libSDL test is: "
94320b40c6aSths  cat /tmp/qemu-$$-sdl-config.log
94420b40c6aSthsfi
94520b40c6aSthsrm -f /tmp/qemu-$$-sdl-config.log
94624b55b96Sbellard#if test "$sdl_static" = "no"; then
94724b55b96Sbellard#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
94824b55b96Sbellard#fi
94997a847bcSbellardconfig_mak="config-host.mak"
95097a847bcSbellardconfig_h="config-host.h"
95197a847bcSbellard
9527c1f25b4Sbellard#echo "Creating $config_mak and $config_h"
95397a847bcSbellard
95415d9ca0fSthstest -f $config_h && mv $config_h ${config_h}~
95515d9ca0fSths
95697a847bcSbellardecho "# Automatically generated by configure - do not modify" > $config_mak
95729517134Spbrookecho "# Configured with: $0 $@" >> $config_mak
95897a847bcSbellardecho "/* Automatically generated by configure - do not modify */" > $config_h
95997a847bcSbellard
96097a847bcSbellardecho "prefix=$prefix" >> $config_mak
961308c3593Spbrookecho "bindir=\${prefix}$binsuffix" >> $config_mak
962308c3593Spbrookecho "mandir=\${prefix}$mansuffix" >> $config_mak
963308c3593Spbrookecho "datadir=\${prefix}$datasuffix" >> $config_mak
9644ad5b06dSthsecho "docdir=\${prefix}$docsuffix" >> $config_mak
965308c3593Spbrookecho "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
96697a847bcSbellardecho "MAKE=$make" >> $config_mak
9676a882643Spbrookecho "INSTALL=$install" >> $config_mak
96897a847bcSbellardecho "CC=$cc" >> $config_mak
96997a847bcSbellardecho "HOST_CC=$host_cc" >> $config_mak
97097a847bcSbellardecho "AR=$ar" >> $config_mak
97197a847bcSbellardecho "STRIP=$strip -s -R .comment -R .note" >> $config_mak
97240293e58Sbellard# XXX: only use CFLAGS and LDFLAGS ?
97340293e58Sbellard# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
97440293e58Sbellard# compilation of dyngen tool (useful for win32 build on Linux host)
9756f30fa85Sthsecho "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
9763142255cSblueswir1echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
9773142255cSblueswir1echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
9783142255cSblueswir1echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
97997a847bcSbellardecho "CFLAGS=$CFLAGS" >> $config_mak
98097a847bcSbellardecho "LDFLAGS=$LDFLAGS" >> $config_mak
98167b915a5Sbellardecho "EXESUF=$EXESUF" >> $config_mak
98270956b77Sthsecho "AIOLIBS=$AIOLIBS" >> $config_mak
9832408a527Saurel32case "$cpu" in
9842408a527Saurel32  i386)
98597a847bcSbellard    echo "ARCH=i386" >> $config_mak
98697a847bcSbellard    echo "#define HOST_I386 1" >> $config_h
9872408a527Saurel32  ;;
9882408a527Saurel32  x86_64)
9890b0babc6Sbellard    echo "ARCH=x86_64" >> $config_mak
9900b0babc6Sbellard    echo "#define HOST_X86_64 1" >> $config_h
9912408a527Saurel32  ;;
9922408a527Saurel32  alpha)
9930938cda5Saurel32    echo "ARCH=alpha" >> $config_mak
9940938cda5Saurel32    echo "#define HOST_ALPHA 1" >> $config_h
9952408a527Saurel32  ;;
9962408a527Saurel32  armv4b)
997808c4954Sbellard    echo "ARCH=arm" >> $config_mak
998808c4954Sbellard    echo "#define HOST_ARM 1" >> $config_h
9992408a527Saurel32  ;;
10002408a527Saurel32  armv4l)
100197a847bcSbellard    echo "ARCH=arm" >> $config_mak
100297a847bcSbellard    echo "#define HOST_ARM 1" >> $config_h
10032408a527Saurel32  ;;
10042408a527Saurel32  cris)
1005e7daa605Sths    echo "ARCH=cris" >> $config_mak
1006e7daa605Sths    echo "#define HOST_CRIS 1" >> $config_h
10072408a527Saurel32  ;;
10082408a527Saurel32  hppa)
1009f54b3f92Saurel32    echo "ARCH=hppa" >> $config_mak
1010f54b3f92Saurel32    echo "#define HOST_HPPA 1" >> $config_h
10112408a527Saurel32  ;;
10122408a527Saurel32  ia64)
101397a847bcSbellard    echo "ARCH=ia64" >> $config_mak
101497a847bcSbellard    echo "#define HOST_IA64 1" >> $config_h
10152408a527Saurel32  ;;
10162408a527Saurel32  m68k)
101738ca2abcSbellard    echo "ARCH=m68k" >> $config_mak
101838ca2abcSbellard    echo "#define HOST_M68K 1" >> $config_h
10192408a527Saurel32  ;;
10202408a527Saurel32  mips)
10210938cda5Saurel32    echo "ARCH=mips" >> $config_mak
10220938cda5Saurel32    echo "#define HOST_MIPS 1" >> $config_h
10232408a527Saurel32  ;;
10242408a527Saurel32  mips64)
10250938cda5Saurel32    echo "ARCH=mips64" >> $config_mak
10260938cda5Saurel32    echo "#define HOST_MIPS64 1" >> $config_h
10272408a527Saurel32  ;;
10282408a527Saurel32  powerpc)
1029810260a8Smalc  if test "$hostlongbits" = "32"; then
10300938cda5Saurel32      echo "ARCH=ppc" >> $config_mak
10310938cda5Saurel32      echo "#define HOST_PPC 1" >> $config_h
1032810260a8Smalc  else
1033810260a8Smalc      echo "ARCH=ppc64" >> $config_mak
1034810260a8Smalc      echo "#define HOST_PPC64 1" >> $config_h
1035810260a8Smalc  fi
10362408a527Saurel32  ;;
10372408a527Saurel32  s390)
10380938cda5Saurel32    echo "ARCH=s390" >> $config_mak
10390938cda5Saurel32    echo "#define HOST_S390 1" >> $config_h
10402408a527Saurel32  ;;
10412408a527Saurel32  sparc)
10420938cda5Saurel32    echo "ARCH=sparc" >> $config_mak
10430938cda5Saurel32    echo "#define HOST_SPARC 1" >> $config_h
10442408a527Saurel32  ;;
10452408a527Saurel32  sparc64)
10460938cda5Saurel32    echo "ARCH=sparc64" >> $config_mak
10470938cda5Saurel32    echo "#define HOST_SPARC64 1" >> $config_h
10482408a527Saurel32  ;;
10492408a527Saurel32  *)
10503142255cSblueswir1    echo "Unsupported CPU = $cpu"
10517d13299dSbellard    exit 1
10522408a527Saurel32  ;;
10532408a527Saurel32esac
10547d13299dSbellardif test "$bigendian" = "yes" ; then
105597a847bcSbellard  echo "WORDS_BIGENDIAN=yes" >> $config_mak
105697a847bcSbellard  echo "#define WORDS_BIGENDIAN 1" >> $config_h
105797a847bcSbellardfi
1058b6853697Sbellardecho "#define HOST_LONG_BITS $hostlongbits" >> $config_h
105967b915a5Sbellardif test "$mingw32" = "yes" ; then
106067b915a5Sbellard  echo "CONFIG_WIN32=yes" >> $config_mak
106111d9f695Sbellard  echo "#define CONFIG_WIN32 1" >> $config_h
1062210fa556Spbrookelse
1063210fa556Spbrook  cat > $TMPC << EOF
1064210fa556Spbrook#include <byteswap.h>
1065210fa556Spbrookint main(void) { return bswap_32(0); }
1066210fa556SpbrookEOF
1067db7287edSpbrook  if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
106897a847bcSbellard    echo "#define HAVE_BYTESWAP_H 1" >> $config_h
106967b915a5Sbellard  fi
1070210fa556Spbrookfi
107183fb7adfSbellardif test "$darwin" = "yes" ; then
107283fb7adfSbellard  echo "CONFIG_DARWIN=yes" >> $config_mak
107383fb7adfSbellard  echo "#define CONFIG_DARWIN 1" >> $config_h
107483fb7adfSbellardfi
1075ec530c81Sbellardif test "$solaris" = "yes" ; then
1076ec530c81Sbellard  echo "CONFIG_SOLARIS=yes" >> $config_mak
107738cfa06cSbellard  echo "#define HOST_SOLARIS $solarisrev" >> $config_h
10780475a5caSths  if test "$needs_libsunmath" = "yes" ; then
10790475a5caSths    echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
10800475a5caSths    echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
10810475a5caSths  fi
1082ec530c81Sbellardfi
10833142255cSblueswir1if test -n "$sparc_cpu"; then
10843142255cSblueswir1  echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
10853142255cSblueswir1  echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
10863142255cSblueswir1fi
108767b915a5Sbellardif test "$gdbstub" = "yes" ; then
108867b915a5Sbellard  echo "CONFIG_GDBSTUB=yes" >> $config_mak
108967b915a5Sbellard  echo "#define CONFIG_GDBSTUB 1" >> $config_h
109067b915a5Sbellardfi
109197a847bcSbellardif test "$gprof" = "yes" ; then
109297a847bcSbellard  echo "TARGET_GPROF=yes" >> $config_mak
109397a847bcSbellard  echo "#define HAVE_GPROF 1" >> $config_h
109497a847bcSbellardfi
109597a847bcSbellardif test "$static" = "yes" ; then
109697a847bcSbellard  echo "CONFIG_STATIC=yes" >> $config_mak
109750863472Sbellard  echo "#define CONFIG_STATIC 1" >> $config_h
109897a847bcSbellardfi
109905c2a3e7Sbellardif test $profiler = "yes" ; then
110005c2a3e7Sbellard  echo "#define CONFIG_PROFILER 1" >> $config_h
110105c2a3e7Sbellardfi
1102c20709aaSbellardif test "$slirp" = "yes" ; then
1103c20709aaSbellard  echo "CONFIG_SLIRP=yes" >> $config_mak
1104c20709aaSbellard  echo "#define CONFIG_SLIRP 1" >> $config_h
1105c20709aaSbellardfi
11068a16d273Sthsif test "$vde" = "yes" ; then
11078a16d273Sths  echo "CONFIG_VDE=yes" >> $config_mak
11088a16d273Sths  echo "#define CONFIG_VDE 1" >> $config_h
11098a16d273Sths  echo "VDE_LIBS=-lvdeplug" >> $config_mak
11108a16d273Sthsfi
11110c58ac1cSmalcfor card in $audio_card_list; do
1112f6e5889eSpbrook    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
11130c58ac1cSmalc    echo "$def=yes" >> $config_mak
11140c58ac1cSmalc    echo "#define $def 1" >> $config_h
11150c58ac1cSmalcdone
11160c58ac1cSmalcecho "#define AUDIO_DRIVERS \\" >> $config_h
11170c58ac1cSmalcfor drv in $audio_drv_list; do
11180c58ac1cSmalc    echo "    &${drv}_audio_driver, \\" >>$config_h
1119f6e5889eSpbrook    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
11200c58ac1cSmalc    echo "$def=yes" >> $config_mak
1121923e4521Smalc    if test "$drv" = "fmod"; then
11220c58ac1cSmalc        echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
11230c58ac1cSmalc        echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1124fb065187Sbellard    fi
11250c58ac1cSmalcdone
11260c58ac1cSmalcecho "" >>$config_h
11278ff9cbf7Smalcif test "$mixemu" = "yes" ; then
11288ff9cbf7Smalc  echo "CONFIG_MIXEMU=yes" >> $config_mak
11298ff9cbf7Smalc  echo "#define CONFIG_MIXEMU 1" >> $config_h
11308ff9cbf7Smalcfi
11318d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
11328d5d2d4cSths  echo "CONFIG_VNC_TLS=yes" >> $config_mak
11338d5d2d4cSths  echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
11348d5d2d4cSths  echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
11358d5d2d4cSths  echo "#define CONFIG_VNC_TLS 1" >> $config_h
11368d5d2d4cSthsfi
1137b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
1138b1a550a0Spbrookecho "VERSION=$qemu_version" >>$config_mak
1139d4b8f039Spbrookecho "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
114097a847bcSbellard
114197a847bcSbellardecho "SRC_PATH=$source_path" >> $config_mak
1142ad064840Spbrookif [ "$source_path_used" = "yes" ]; then
1143ad064840Spbrook  echo "VPATH=$source_path" >> $config_mak
1144ad064840Spbrookfi
114597a847bcSbellardecho "TARGET_DIRS=$target_list" >> $config_mak
1146cc8ae6deSpbrookif [ "$build_docs" = "yes" ] ; then
1147cc8ae6deSpbrook  echo "BUILD_DOCS=yes" >> $config_mak
1148cc8ae6deSpbrookfi
114949ecc3faSbellardif test "$static" = "yes"; then
115049ecc3faSbellard  sdl1=$sdl_static
115149ecc3faSbellardelse
115249ecc3faSbellard  sdl1=$sdl
115349ecc3faSbellardfi
115449ecc3faSbellardif test "$sdl1" = "yes" ; then
115549ecc3faSbellard  echo "#define CONFIG_SDL 1" >> $config_h
115649ecc3faSbellard  echo "CONFIG_SDL=yes" >> $config_mak
115749ecc3faSbellard  if test "$target_softmmu" = "no" -o "$static" = "yes"; then
115849ecc3faSbellard    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
115949ecc3faSbellard  else
116049ecc3faSbellard    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
116149ecc3faSbellard  fi
116249ecc3faSbellard  if [ "${aa}" = "yes" ] ; then
116349ecc3faSbellard    echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
116449ecc3faSbellard  else
116549ecc3faSbellard    echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
116649ecc3faSbellard  fi
116749ecc3faSbellardfi
116849ecc3faSbellardif test "$cocoa" = "yes" ; then
116949ecc3faSbellard  echo "#define CONFIG_COCOA 1" >> $config_h
117049ecc3faSbellard  echo "CONFIG_COCOA=yes" >> $config_mak
117149ecc3faSbellardfi
11724d3b6f6eSbalrogif test "$curses" = "yes" ; then
11734d3b6f6eSbalrog  echo "#define CONFIG_CURSES 1" >> $config_h
11744d3b6f6eSbalrog  echo "CONFIG_CURSES=yes" >> $config_mak
11754d3b6f6eSbalrog  echo "CURSES_LIBS=-lcurses" >> $config_mak
11764d3b6f6eSbalrogfi
11772e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
11782e4d9fb1Saurel32  echo "CONFIG_BRLAPI=yes" >> $config_mak
11792e4d9fb1Saurel32  echo "#define CONFIG_BRLAPI 1" >> $config_h
11802e4d9fb1Saurel32  echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
11812e4d9fb1Saurel32fi
118297a847bcSbellard
118383fb7adfSbellard# XXX: suppress that
11847d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
118543003046Sbellard  echo "#define O_LARGEFILE 0" >> $config_h
118643003046Sbellard  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
11877d3505c5Sbellard  echo "#define _BSD 1" >> $config_h
11887d3505c5Sbellardfi
11897d3505c5Sbellard
1190c5937220Spbrookecho "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1191c5937220Spbrook
1192c39e3338Spbrooktools=
1193c39e3338Spbrookif test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1194c39e3338Spbrook  tools="qemu-img\$(EXESUF) $tools"
11957a5ca864Sbellard  if [ "$linux" = "yes" ] ; then
11967a5ca864Sbellard      tools="qemu-nbd\$(EXESUF) $tools"
11977a5ca864Sbellard  fi
1198c39e3338Spbrookfi
1199c39e3338Spbrookecho "TOOLS=$tools" >> $config_mak
1200c39e3338Spbrook
120115d9ca0fSthstest -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
120215d9ca0fSths
120397a847bcSbellardfor target in $target_list; do
120497a847bcSbellardtarget_dir="$target"
120597a847bcSbellardconfig_mak=$target_dir/config.mak
120697a847bcSbellardconfig_h=$target_dir/config.h
120797a847bcSbellardtarget_cpu=`echo $target | cut -d '-' -f 1`
120897a847bcSbellardtarget_bigendian="no"
1209808c4954Sbellard[ "$target_cpu" = "armeb" ] && target_bigendian=yes
12100938cda5Saurel32[ "$target_cpu" = "m68k" ] && target_bigendian=yes
12110938cda5Saurel32[ "$target_cpu" = "mips" ] && target_bigendian=yes
12120938cda5Saurel32[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
12130938cda5Saurel32[ "$target_cpu" = "mips64" ] && target_bigendian=yes
121467867308Sbellard[ "$target_cpu" = "ppc" ] && target_bigendian=yes
1215d4082e95Sj_mayer[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
121622f8a8b3Sj_mayer[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1217e85e7c6eSj_mayer[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1218908f52b0Spbrook[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
12190938cda5Saurel32[ "$target_cpu" = "sparc" ] && target_bigendian=yes
12200938cda5Saurel32[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
12210938cda5Saurel32[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
122297a847bcSbellardtarget_softmmu="no"
1223997344f3Sbellardtarget_user_only="no"
1224831b7825Sthstarget_linux_user="no"
1225831b7825Sthstarget_darwin_user="no"
12269e407a85Spbrookcase "$target" in
12279e407a85Spbrook  ${target_cpu}-softmmu)
12289e407a85Spbrook    target_softmmu="yes"
12299e407a85Spbrook    ;;
12309e407a85Spbrook  ${target_cpu}-linux-user)
12319e407a85Spbrook    target_user_only="yes"
12329e407a85Spbrook    target_linux_user="yes"
12339e407a85Spbrook    ;;
12349e407a85Spbrook  ${target_cpu}-darwin-user)
12359e407a85Spbrook    target_user_only="yes"
1236831b7825Sths    target_darwin_user="yes"
12379e407a85Spbrook    ;;
12389e407a85Spbrook  *)
12399e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
12409e407a85Spbrook    exit 1
12419e407a85Spbrook    ;;
12429e407a85Spbrookesac
1243831b7825Sths
124497ccc689Sbellardif test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
124597ccc689Sbellard        -a "$sdl" = "no" -a "$cocoa" = "no" ; then
124697ccc689Sbellard    echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
12479c038506Spbrook    echo "To build QEMU without graphical output configure with --disable-gfx-check"
12484d3b6f6eSbalrog    echo "Note that this will disable all output from the virtual graphics card"
12494d3b6f6eSbalrog    echo "except through VNC or curses."
125097ccc689Sbellard    exit 1;
125197ccc689Sbellardfi
125297ccc689Sbellard
12537c1f25b4Sbellard#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
125497a847bcSbellard
125515d9ca0fSthstest -f $config_h && mv $config_h ${config_h}~
125615d9ca0fSths
125797a847bcSbellardmkdir -p $target_dir
1258158142c2Sbellardmkdir -p $target_dir/fpu
125957fec1feSbellardmkdir -p $target_dir/tcg
1260831b7825Sthsif test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" ; then
126169de927cSbellard  mkdir -p $target_dir/nwfpe
126269de927cSbellardfi
126369de927cSbellard
1264ec530c81Sbellard#
1265ec530c81Sbellard# don't use ln -sf as not all "ln -sf" over write the file/link
1266ec530c81Sbellard#
1267ec530c81Sbellardrm -f $target_dir/Makefile
1268ec530c81Sbellardln -s $source_path/Makefile.target $target_dir/Makefile
1269ec530c81Sbellard
127097a847bcSbellard
127197a847bcSbellardecho "# Automatically generated by configure - do not modify" > $config_mak
127297a847bcSbellardecho "/* Automatically generated by configure - do not modify */" > $config_h
127397a847bcSbellard
127497a847bcSbellard
127597a847bcSbellardecho "include ../config-host.mak" >> $config_mak
127697a847bcSbellardecho "#include \"../config-host.h\"" >> $config_h
12771e43adfcSbellard
1278e5fe0c52Spbrookbflt="no"
1279cb33da57Sblueswir1elfload32="no"
1280bd0c5661Spbrooktarget_nptl="no"
12811e43adfcSbellardinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
12821e43adfcSbellardecho "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
128397a847bcSbellard
12842408a527Saurel32case "$target_cpu" in
12852408a527Saurel32  i386)
128697a847bcSbellard    echo "TARGET_ARCH=i386" >> $config_mak
128797a847bcSbellard    echo "#define TARGET_ARCH \"i386\"" >> $config_h
128897a847bcSbellard    echo "#define TARGET_I386 1" >> $config_h
1289da260249Sbellard    if test $kqemu = "yes" -a "$target_softmmu" = "yes"
12902408a527Saurel32    then
1291824d560fSbellard      echo "#define USE_KQEMU 1" >> $config_h
1292824d560fSbellard    fi
1293f2bf094eSaurel32    gcc3minver=`$cc --version 2> /dev/null| fgrep "(GCC) 3." | awk '{ print $3 }' | cut -f2 -d.`
129411d1fdb0Spbrook    if test -n "$gcc3minver" && test $gcc3minver -gt 3
1295f2bf094eSaurel32    then
1296f2bf094eSaurel32      echo "HAVE_GT_GCC_3_3=true" >> $config_mak
1297f2bf094eSaurel32    else
1298f2bf094eSaurel32      echo "HAVE_GT_GCC_3_3=false" >> $config_mak
1299f2bf094eSaurel32    fi
13002408a527Saurel32  ;;
13012408a527Saurel32  x86_64)
13020938cda5Saurel32    echo "TARGET_ARCH=x86_64" >> $config_mak
13030938cda5Saurel32    echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
13040938cda5Saurel32    echo "#define TARGET_I386 1" >> $config_h
13050938cda5Saurel32    echo "#define TARGET_X86_64 1" >> $config_h
13062408a527Saurel32    if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
13072408a527Saurel32    then
13080938cda5Saurel32      echo "#define USE_KQEMU 1" >> $config_h
13090938cda5Saurel32    fi
13102408a527Saurel32  ;;
13112408a527Saurel32  alpha)
13120938cda5Saurel32    echo "TARGET_ARCH=alpha" >> $config_mak
1313bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
13140938cda5Saurel32    echo "#define TARGET_ARCH \"alpha\"" >> $config_h
13150938cda5Saurel32    echo "#define TARGET_ALPHA 1" >> $config_h
1316bf6247fbSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13172408a527Saurel32  ;;
13182408a527Saurel32  arm|armeb)
131997a847bcSbellard    echo "TARGET_ARCH=arm" >> $config_mak
132097a847bcSbellard    echo "#define TARGET_ARCH \"arm\"" >> $config_h
132197a847bcSbellard    echo "#define TARGET_ARM 1" >> $config_h
1322e5fe0c52Spbrook    bflt="yes"
1323bd0c5661Spbrook    target_nptl="yes"
13242408a527Saurel32  ;;
13252408a527Saurel32  cris)
13260938cda5Saurel32    echo "TARGET_ARCH=cris" >> $config_mak
13270938cda5Saurel32    echo "#define TARGET_ARCH \"cris\"" >> $config_h
13280938cda5Saurel32    echo "#define TARGET_CRIS 1" >> $config_h
13292408a527Saurel32  ;;
13302408a527Saurel32  m68k)
13310938cda5Saurel32    echo "TARGET_ARCH=m68k" >> $config_mak
13320938cda5Saurel32    echo "#define TARGET_ARCH \"m68k\"" >> $config_h
13330938cda5Saurel32    echo "#define TARGET_M68K 1" >> $config_h
13340938cda5Saurel32    bflt="yes"
13352408a527Saurel32  ;;
13362408a527Saurel32  mips|mipsel)
13370938cda5Saurel32    echo "TARGET_ARCH=mips" >> $config_mak
13380938cda5Saurel32    echo "#define TARGET_ARCH \"mips\"" >> $config_h
13390938cda5Saurel32    echo "#define TARGET_MIPS 1" >> $config_h
13400938cda5Saurel32    echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
13412408a527Saurel32  ;;
13422408a527Saurel32  mipsn32|mipsn32el)
13430938cda5Saurel32    echo "TARGET_ARCH=mipsn32" >> $config_mak
13440938cda5Saurel32    echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
13450938cda5Saurel32    echo "#define TARGET_MIPS 1" >> $config_h
13460938cda5Saurel32    echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
13472408a527Saurel32  ;;
13482408a527Saurel32  mips64|mips64el)
13490938cda5Saurel32    echo "TARGET_ARCH=mips64" >> $config_mak
13500938cda5Saurel32    echo "#define TARGET_ARCH \"mips64\"" >> $config_h
13510938cda5Saurel32    echo "#define TARGET_MIPS 1" >> $config_h
13520938cda5Saurel32    echo "#define TARGET_MIPS64 1" >> $config_h
13530938cda5Saurel32    echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
13542408a527Saurel32  ;;
13552408a527Saurel32  ppc)
135667867308Sbellard    echo "TARGET_ARCH=ppc" >> $config_mak
1357bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
135867867308Sbellard    echo "#define TARGET_ARCH \"ppc\"" >> $config_h
135967867308Sbellard    echo "#define TARGET_PPC 1" >> $config_h
1360bf6247fbSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13612408a527Saurel32  ;;
13622408a527Saurel32  ppcemb)
1363d4082e95Sj_mayer    echo "TARGET_ARCH=ppcemb" >> $config_mak
1364e85e7c6eSj_mayer    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1365bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
1366d4082e95Sj_mayer    echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1367d4082e95Sj_mayer    echo "#define TARGET_PPC 1" >> $config_h
1368d4082e95Sj_mayer    echo "#define TARGET_PPCEMB 1" >> $config_h
1369ec5b78cdSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13702408a527Saurel32  ;;
13712408a527Saurel32  ppc64)
137222f8a8b3Sj_mayer    echo "TARGET_ARCH=ppc64" >> $config_mak
1373f85e9a68Sj_mayer    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1374bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
13755e692ecdSj_mayer    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
137622f8a8b3Sj_mayer    echo "#define TARGET_PPC 1" >> $config_h
137722f8a8b3Sj_mayer    echo "#define TARGET_PPC64 1" >> $config_h
1378bf6247fbSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13792408a527Saurel32  ;;
13802408a527Saurel32  ppc64abi32)
1381e85e7c6eSj_mayer    echo "TARGET_ARCH=ppc64" >> $config_mak
1382e85e7c6eSj_mayer    echo "TARGET_ABI_DIR=ppc" >> $config_mak
13830c64b9cdSbellard    echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1384bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
13855e692ecdSj_mayer    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1386e85e7c6eSj_mayer    echo "#define TARGET_PPC 1" >> $config_h
1387e85e7c6eSj_mayer    echo "#define TARGET_PPC64 1" >> $config_h
1388e85e7c6eSj_mayer    echo "#define TARGET_ABI32 1" >> $config_h
1389bf6247fbSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13902408a527Saurel32  ;;
13912408a527Saurel32  sh4|sh4eb)
1392fdf9b3e8Sbellard    echo "TARGET_ARCH=sh4" >> $config_mak
1393bf6247fbSblueswir1    echo "CONFIG_DYNGEN_OP=yes" >> $config_mak
1394fdf9b3e8Sbellard    echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1395fdf9b3e8Sbellard    echo "#define TARGET_SH4 1" >> $config_h
1396bf6247fbSblueswir1    echo "#define CONFIG_DYNGEN_OP 1" >> $config_h
13974dbed897Spbrook    bflt="yes"
13982408a527Saurel32  ;;
13992408a527Saurel32  sparc)
14000938cda5Saurel32    echo "TARGET_ARCH=sparc" >> $config_mak
14010938cda5Saurel32    echo "#define TARGET_ARCH \"sparc\"" >> $config_h
14020938cda5Saurel32    echo "#define TARGET_SPARC 1" >> $config_h
14032408a527Saurel32  ;;
14042408a527Saurel32  sparc64)
14050938cda5Saurel32    echo "TARGET_ARCH=sparc64" >> $config_mak
14060938cda5Saurel32    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
14070938cda5Saurel32    echo "#define TARGET_SPARC 1" >> $config_h
14080938cda5Saurel32    echo "#define TARGET_SPARC64 1" >> $config_h
14090938cda5Saurel32    elfload32="yes"
14102408a527Saurel32  ;;
14112408a527Saurel32  sparc32plus)
14120938cda5Saurel32    echo "TARGET_ARCH=sparc64" >> $config_mak
14130938cda5Saurel32    echo "TARGET_ABI_DIR=sparc" >> $config_mak
14140938cda5Saurel32    echo "TARGET_ARCH2=sparc32plus" >> $config_mak
14150938cda5Saurel32    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
14160938cda5Saurel32    echo "#define TARGET_SPARC 1" >> $config_h
14170938cda5Saurel32    echo "#define TARGET_SPARC64 1" >> $config_h
14180938cda5Saurel32    echo "#define TARGET_ABI32 1" >> $config_h
14192408a527Saurel32  ;;
14202408a527Saurel32  *)
1421de83cd02Sbellard    echo "Unsupported target CPU"
1422de83cd02Sbellard    exit 1
14232408a527Saurel32  ;;
14242408a527Saurel32esac
1425de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
142697a847bcSbellard  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
142797a847bcSbellard  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
142897a847bcSbellardfi
142997a847bcSbellardif test "$target_softmmu" = "yes" ; then
143097a847bcSbellard  echo "CONFIG_SOFTMMU=yes" >> $config_mak
143197a847bcSbellard  echo "#define CONFIG_SOFTMMU 1" >> $config_h
1432de83cd02Sbellardfi
1433997344f3Sbellardif test "$target_user_only" = "yes" ; then
1434997344f3Sbellard  echo "CONFIG_USER_ONLY=yes" >> $config_mak
1435997344f3Sbellard  echo "#define CONFIG_USER_ONLY 1" >> $config_h
1436997344f3Sbellardfi
1437831b7825Sthsif test "$target_linux_user" = "yes" ; then
1438831b7825Sths  echo "CONFIG_LINUX_USER=yes" >> $config_mak
1439831b7825Sths  echo "#define CONFIG_LINUX_USER 1" >> $config_h
1440831b7825Sthsfi
1441831b7825Sthsif test "$target_darwin_user" = "yes" ; then
1442831b7825Sths  echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1443831b7825Sths  echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1444831b7825Sthsfi
1445de83cd02Sbellard
14460938cda5Saurel32if test "$target_cpu" = "arm" \
14470938cda5Saurel32     -o "$target_cpu" = "armeb" \
14480938cda5Saurel32     -o "$target_cpu" = "m68k" \
14490938cda5Saurel32     -o "$target_cpu" = "mips" \
14500938cda5Saurel32     -o "$target_cpu" = "mipsel" \
14510938cda5Saurel32     -o "$target_cpu" = "mipsn32" \
14520938cda5Saurel32     -o "$target_cpu" = "mipsn32el" \
14530938cda5Saurel32     -o "$target_cpu" = "mips64" \
14540938cda5Saurel32     -o "$target_cpu" = "mips64el" \
14550938cda5Saurel32     -o "$target_cpu" = "sparc" \
14560938cda5Saurel32     -o "$target_cpu" = "sparc64" \
14570938cda5Saurel32     -o "$target_cpu" = "sparc32plus"; then
1458158142c2Sbellard  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1459158142c2Sbellard  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1460158142c2Sbellardfi
1461e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1462e5fe0c52Spbrook  echo "TARGET_HAS_BFLT=yes" >> $config_mak
1463e5fe0c52Spbrook  echo "#define TARGET_HAS_BFLT 1" >> $config_h
1464e5fe0c52Spbrookfi
1465bd0c5661Spbrookif test "$target_user_only" = "yes" \
1466bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1467bd0c5661Spbrook  echo "#define USE_NPTL 1" >> $config_h
1468bd0c5661Spbrookfi
1469cb33da57Sblueswir1# 32 bit ELF loader in addition to native 64 bit loader?
1470cb33da57Sblueswir1if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1471cb33da57Sblueswir1  echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1472cb33da57Sblueswir1  echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1473cb33da57Sblueswir1fi
14745b0753e0Sbellard
147515d9ca0fSthstest -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
147615d9ca0fSths
147797a847bcSbellarddone # for target in $targets
14787d13299dSbellard
14797d13299dSbellard# build tree in object directory if source path is different from current one
14807d13299dSbellardif test "$source_path_used" = "yes" ; then
148149ecc3faSbellard    DIRS="tests tests/cris slirp audio"
14827d13299dSbellard    FILES="Makefile tests/Makefile"
1483e7daa605Sths    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1484e1ffb0f1Sedgar_igl    FILES="$FILES tests/test-mmap.c"
14857d13299dSbellard    for dir in $DIRS ; do
14867d13299dSbellard            mkdir -p $dir
14877d13299dSbellard    done
1488ec530c81Sbellard    # remove the link and recreate it, as not all "ln -sf" overwrite the link
14897d13299dSbellard    for f in $FILES ; do
1490ec530c81Sbellard        rm -f $f
1491ec530c81Sbellard        ln -s $source_path/$f $f
14927d13299dSbellard    done
14937d13299dSbellardfi
14947d13299dSbellard
149597a847bcSbellardrm -f $TMPO $TMPC $TMPE $TMPS
1496