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" 189d56d2dcSmalcTMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i" 19d4742de8SmalcTMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log" 207d13299dSbellard 21d4742de8Smalctrap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15 229ac81bbbSmalc 237d13299dSbellard# default parameters 2411d9f695Sbellardprefix="" 251e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M" 2643ce4dfeSbellardstatic="no" 277d13299dSbellardcross_prefix="" 287d13299dSbellardcc="gcc" 290c58ac1cSmalcaudio_drv_list="" 304c9b53e3Smalcaudio_card_list="ac97 es1370 sb16" 314c9b53e3Smalcaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" 327d13299dSbellardhost_cc="gcc" 337d13299dSbellardar="ar" 347d13299dSbellardmake="make" 356a882643Spbrookinstall="install" 367d13299dSbellardstrip="strip" 37*7aa486feSAnthony Liguoriobjcopy="objcopy" 38*7aa486feSAnthony Liguorild="ld" 39ac0df51dSaliguori 40ac0df51dSaliguori# parse CC options first 41ac0df51dSaliguorifor opt do 42ac0df51dSaliguori optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 43ac0df51dSaliguori case "$opt" in 44ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 45ac0df51dSaliguori ;; 46ac0df51dSaliguori --cc=*) cc="$optarg" 47ac0df51dSaliguori ;; 48ac0df51dSaliguori esac 49ac0df51dSaliguoridone 50ac0df51dSaliguori 51ac0df51dSaliguori# OS specific 52ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 53ac0df51dSaliguori# we can eliminate it's usage altogether 54ac0df51dSaliguori 55ac0df51dSaliguoricc="${cross_prefix}${cc}" 56ac0df51dSaliguoriar="${cross_prefix}${ar}" 57ac0df51dSaliguoristrip="${cross_prefix}${strip}" 58*7aa486feSAnthony Liguoriobjcopy="${cross_prefix}${objcopy}" 59*7aa486feSAnthony Liguorild="${cross_prefix}${ld}" 60ac0df51dSaliguori 61ac0df51dSaliguori# check that the C compiler works. 62ac0df51dSaliguoricat > $TMPC <<EOF 63ac0df51dSaliguoriint main(void) {} 64ac0df51dSaliguoriEOF 65ac0df51dSaliguori 66ac0df51dSaliguoriif $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then 67ac0df51dSaliguori : C compiler works ok 68ac0df51dSaliguorielse 69ac0df51dSaliguori echo "ERROR: \"$cc\" either does not exist or does not work" 70ac0df51dSaliguori exit 1 71ac0df51dSaliguorifi 72ac0df51dSaliguori 73ac0df51dSaliguoricheck_define() { 74ac0df51dSaliguoricat > $TMPC <<EOF 75ac0df51dSaliguori#if !defined($1) 76ac0df51dSaliguori#error Not defined 77ac0df51dSaliguori#endif 78ac0df51dSaliguoriint main(void) { return 0; } 79ac0df51dSaliguoriEOF 80ac0df51dSaliguori $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null 81ac0df51dSaliguori} 82ac0df51dSaliguori 83ac0df51dSaliguoriif check_define __i386__ ; then 84ac0df51dSaliguori cpu="i386" 85ac0df51dSaliguorielif check_define __x86_64__ ; then 86ac0df51dSaliguori cpu="x86_64" 873aa9bd6cSblueswir1elif check_define __sparc__ ; then 883aa9bd6cSblueswir1 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA 893aa9bd6cSblueswir1 # They must be specified using --sparc_cpu 903aa9bd6cSblueswir1 if check_define __arch64__ ; then 913aa9bd6cSblueswir1 cpu="sparc64" 923aa9bd6cSblueswir1 else 933aa9bd6cSblueswir1 cpu="sparc" 943aa9bd6cSblueswir1 fi 95fdf7ed96Smalcelif check_define _ARCH_PPC ; then 96fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 97fdf7ed96Smalc cpu="ppc64" 98ac0df51dSaliguori else 99fdf7ed96Smalc cpu="ppc" 100fdf7ed96Smalc fi 101fdf7ed96Smalcelse 102fdf7ed96Smalc cpu=`uname -m` 103ac0df51dSaliguorifi 104ac0df51dSaliguori 1055327cf48Sbellardtarget_list="" 1067d13299dSbellardcase "$cpu" in 1077d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 10897a847bcSbellard cpu="i386" 1097d13299dSbellard ;; 110aaa5fa14Saurel32 x86_64|amd64) 111aaa5fa14Saurel32 cpu="x86_64" 112aaa5fa14Saurel32 ;; 113aaa5fa14Saurel32 alpha) 114aaa5fa14Saurel32 cpu="alpha" 115aaa5fa14Saurel32 ;; 116ba68055eSbellard armv*b) 117808c4954Sbellard cpu="armv4b" 118808c4954Sbellard ;; 119ba68055eSbellard armv*l) 1207d13299dSbellard cpu="armv4l" 1217d13299dSbellard ;; 122aaa5fa14Saurel32 cris) 123aaa5fa14Saurel32 cpu="cris" 1247d13299dSbellard ;; 125f54b3f92Saurel32 parisc|parisc64) 126f54b3f92Saurel32 cpu="hppa" 127f54b3f92Saurel32 ;; 128aaa5fa14Saurel32 ia64) 129aaa5fa14Saurel32 cpu="ia64" 130aaa5fa14Saurel32 ;; 131aaa5fa14Saurel32 m68k) 132aaa5fa14Saurel32 cpu="m68k" 1337d13299dSbellard ;; 13472b675caSEdgar E. Iglesias microblaze) 13572b675caSEdgar E. Iglesias cpu="microblaze" 13672b675caSEdgar E. Iglesias ;; 1377d13299dSbellard mips) 1387d13299dSbellard cpu="mips" 1397d13299dSbellard ;; 140fbe4f65bSths mips64) 141fbe4f65bSths cpu="mips64" 142fbe4f65bSths ;; 143fdf7ed96Smalc ppc) 144fdf7ed96Smalc cpu="ppc" 145fdf7ed96Smalc ;; 146fdf7ed96Smalc ppc64) 147fdf7ed96Smalc cpu="ppc64" 148e7daa605Sths ;; 1490e7b8a9fSths s390*) 150fb3e5849Sbellard cpu="s390" 151fb3e5849Sbellard ;; 1523142255cSblueswir1 sparc|sun4[cdmuv]) 153ae228531Sbellard cpu="sparc" 154ae228531Sbellard ;; 155ae228531Sbellard sparc64) 156ae228531Sbellard cpu="sparc64" 157ae228531Sbellard ;; 1587d13299dSbellard *) 1597d13299dSbellard cpu="unknown" 1607d13299dSbellard ;; 1617d13299dSbellardesac 1627d13299dSbellardgprof="no" 163f8393946Saurel32debug_tcg="no" 164f3d08ee6SPaul Brookdebug="no" 16503b4fe7dSaliguorisparse="no" 1661625af87Saliguoristrip_opt="yes" 1677d13299dSbellardbigendian="no" 16867b915a5Sbellardmingw32="no" 16967b915a5SbellardEXESUF="" 170443f1376Sbellardslirp="yes" 171e0e6c8c0Saliguorivde="yes" 172102a52e4Sbellardfmod_lib="" 173102a52e4Sbellardfmod_inc="" 1742f6a1ab0Sblueswir1oss_lib="" 1758d5d2d4cSthsvnc_tls="yes" 1762f9606b3Saliguorivnc_sasl="yes" 177b1a550a0Spbrookbsd="no" 1785327cf48Sbellardlinux="no" 179d2c7c9b8Sblueswir1solaris="no" 180c9ec1fe4Sbellardkqemu="no" 18105c2a3e7Sbellardprofiler="no" 1825b0753e0Sbellardcocoa="no" 1830a8e90f4Spbrooksoftmmu="yes" 184831b7825Sthslinux_user="no" 185831b7825Sthsdarwin_user="no" 18684778508Sblueswir1bsd_user="no" 18770ec5dc0SAnthony Liguoribuild_docs="yes" 188c5937220Spbrookuname_release="" 1894d3b6f6eSbalrogcurses="yes" 190769ce76dSAlexander Grafcurl="yes" 191e5d355d1Saliguoripthread="yes" 192414f0dabSblueswir1aio="yes" 193e5d355d1Saliguoriio_thread="no" 194bd0c5661Spbrooknptl="yes" 1958ff9cbf7Smalcmixemu="no" 196fb599c9aSbalrogbluez="yes" 197dff84034SJan Kiszkakvm="no" 198eac30262Saliguorikerneldir="" 199b29fe3edSmalcaix="no" 20077755340Sthsblobs="yes" 201f652e6afSaurel32fdt="yes" 202f92f8afeSAnthony Liguorisdl="yes" 2035368a422Saliguorisdl_x11="no" 204e37630caSaliguorixen="yes" 2054a19f1ecSpbrookpkgversion="" 2067d13299dSbellard 2077d13299dSbellard# OS specific 208ac0df51dSaliguoriif check_define __linux__ ; then 209ac0df51dSaliguori targetos="Linux" 210ac0df51dSaliguorielif check_define _WIN32 ; then 211ac0df51dSaliguori targetos='MINGW32' 212169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then 213169dc5d3Sblueswir1 targetos='OpenBSD' 214169dc5d3Sblueswir1elif check_define __sun__ ; then 215169dc5d3Sblueswir1 targetos='SunOS' 216ac0df51dSaliguorielse 2177d13299dSbellard targetos=`uname -s` 218ac0df51dSaliguorifi 2197d13299dSbellardcase $targetos in 220c326e0afSbellardCYGWIN*) 221c326e0afSbellardmingw32="yes" 2226f30fa85SthsOS_CFLAGS="-mno-cygwin" 223db8d7dd1Sthsif [ "$cpu" = "i386" ] ; then 224db8d7dd1Sths kqemu="yes" 225db8d7dd1Sthsfi 226c2de5c91Smalcaudio_possible_drivers="sdl" 227c326e0afSbellard;; 22867b915a5SbellardMINGW32*) 22967b915a5Sbellardmingw32="yes" 230db8d7dd1Sthsif [ "$cpu" = "i386" ] ; then 231db8d7dd1Sths kqemu="yes" 232db8d7dd1Sthsfi 233c2de5c91Smalcaudio_possible_drivers="dsound sdl fmod" 23467b915a5Sbellard;; 2355c40d2bdSthsGNU/kFreeBSD) 2360c58ac1cSmalcaudio_drv_list="oss" 237f34af52cSaurel32audio_possible_drivers="oss sdl esd pa" 2385c40d2bdSthsif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 2395c40d2bdSths kqemu="yes" 2405c40d2bdSthsfi 2415c40d2bdSths;; 2427d3505c5SbellardFreeBSD) 2437d3505c5Sbellardbsd="yes" 2440c58ac1cSmalcaudio_drv_list="oss" 245f34af52cSaurel32audio_possible_drivers="oss sdl esd pa" 246e99f9060Sbellardif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 24707f4ddbfSbellard kqemu="yes" 24807f4ddbfSbellardfi 2497d3505c5Sbellard;; 250c5e97233Sblueswir1DragonFly) 251c5e97233Sblueswir1bsd="yes" 252c5e97233Sblueswir1audio_drv_list="oss" 253c5e97233Sblueswir1audio_possible_drivers="oss sdl esd pa" 254c5e97233Sblueswir1if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 255c5e97233Sblueswir1 kqemu="yes" 256c5e97233Sblueswir1fi 257c5e97233Sblueswir1aio="no" 258c5e97233Sblueswir1;; 2597d3505c5SbellardNetBSD) 2607d3505c5Sbellardbsd="yes" 2610c58ac1cSmalcaudio_drv_list="oss" 262c2de5c91Smalcaudio_possible_drivers="oss sdl esd" 2638ef92a88Sblueswir1oss_lib="-lossaudio" 2647d3505c5Sbellard;; 2657d3505c5SbellardOpenBSD) 2667d3505c5Sbellardbsd="yes" 267128ab2ffSblueswir1openbsd="yes" 2680c58ac1cSmalcaudio_drv_list="oss" 269c2de5c91Smalcaudio_possible_drivers="oss sdl esd" 2702f6a1ab0Sblueswir1oss_lib="-lossaudio" 2717d3505c5Sbellard;; 27283fb7adfSbellardDarwin) 27383fb7adfSbellardbsd="yes" 27483fb7adfSbellarddarwin="yes" 2751b0f9cc2Saliguori# on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code 276aab8588aSmalcif [ "$cpu" = "i386" ] ; then 2771b0f9cc2Saliguori is_x86_64=`sysctl -n hw.optional.x86_64` 278aab8588aSmalc [ "$is_x86_64" = "1" ] && cpu=x86_64 2791b0f9cc2Saliguorifi 2801b0f9cc2Saliguoriif [ "$cpu" = "x86_64" ] ; then 2811b0f9cc2Saliguori OS_CFLAGS="-arch x86_64" 2821b0f9cc2Saliguori LDFLAGS="-arch x86_64" 2831b0f9cc2Saliguorielse 2841b0f9cc2Saliguori OS_CFLAGS="-mdynamic-no-pic" 2851b0f9cc2Saliguorifi 286831b7825Sthsdarwin_user="yes" 287fd677642Sthscocoa="yes" 2880c58ac1cSmalcaudio_drv_list="coreaudio" 289c2de5c91Smalcaudio_possible_drivers="coreaudio sdl fmod" 290c2c59c3eSthsOS_LDFLAGS="-framework CoreFoundation -framework IOKit" 29183fb7adfSbellard;; 292ec530c81SbellardSunOS) 293ec530c81Sbellard solaris="yes" 294c2b84fabSths make="gmake" 295c2b84fabSths install="ginstall" 2960475a5caSths needs_libsunmath="no" 297c2b84fabSths solarisrev=`uname -r | cut -f2 -d.` 298ef18c883Sths # have to select again, because `uname -m` returns i86pc 299ef18c883Sths # even on an x86_64 box. 300ef18c883Sths solariscpu=`isainfo -k` 301ef18c883Sths if test "${solariscpu}" = "amd64" ; then 302ef18c883Sths cpu="x86_64" 303ef18c883Sths fi 304c2b84fabSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 3050475a5caSths if test "$solarisrev" -le 9 ; then 3060475a5caSths if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then 3070475a5caSths needs_libsunmath="yes" 3080475a5caSths else 3090475a5caSths echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" 3100475a5caSths echo "libsunmath from the Sun Studio compilers tools, due to a lack of" 3110475a5caSths echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" 3120475a5caSths echo "Studio 11 can be downloaded from www.sun.com." 3130475a5caSths exit 1 3140475a5caSths fi 3150475a5caSths fi 3160475a5caSths if test "$solarisrev" -ge 9 ; then 317c2b84fabSths kqemu="yes" 318c2b84fabSths fi 31986b2bd93Sths fi 3206b4d2ba1Sths if test -f /usr/include/sys/soundcard.h ; then 3210c58ac1cSmalc audio_drv_list="oss" 3226b4d2ba1Sths fi 323c2de5c91Smalc audio_possible_drivers="oss sdl" 32414d483ecSblueswir1 OS_CFLAGS=-std=gnu99 325ec530c81Sbellard;; 326b29fe3edSmalcAIX) 327b29fe3edSmalcaix="yes" 328b29fe3edSmalcmake="gmake" 329b29fe3edSmalc;; 330fb065187Sbellard*) 3310c58ac1cSmalcaudio_drv_list="oss" 332b8e59f18Smalcaudio_possible_drivers="oss alsa sdl esd pa" 3335327cf48Sbellardlinux="yes" 334831b7825Sthslinux_user="yes" 33568063649Sblueswir1usb="linux" 336dff84034SJan Kiszkakvm="yes" 33707f4ddbfSbellardif [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 338c9ec1fe4Sbellard kqemu="yes" 339c2de5c91Smalc audio_possible_drivers="$audio_possible_drivers fmod" 340c9ec1fe4Sbellardfi 341fb065187Sbellard;; 3427d13299dSbellardesac 3437d13299dSbellard 3447d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 345b1a550a0Spbrook if [ "$darwin" != "yes" ] ; then 3467d3505c5Sbellard make="gmake" 34768063649Sblueswir1 usb="bsd" 34883fb7adfSbellard fi 34984778508Sblueswir1 bsd_user="yes" 3507d3505c5Sbellardfi 3517d3505c5Sbellard 3527d13299dSbellard# find source path 353ad064840Spbrooksource_path=`dirname "$0"` 35459faef3aSbalrogsource_path_used="no" 35559faef3aSbalrogworkdir=`pwd` 356ad064840Spbrookif [ -z "$source_path" ]; then 35759faef3aSbalrog source_path=$workdir 358ad064840Spbrookelse 359ad064840Spbrook source_path=`cd "$source_path"; pwd` 3607d13299dSbellardfi 361724db118Spbrook[ -f "$workdir/vl.c" ] || source_path_used="yes" 3627d13299dSbellard 363487fefdbSAnthony Liguoriwerror="" 36485aa5189Sbellard 3657d13299dSbellardfor opt do 366a46e4035Spbrook optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 3677d13299dSbellard case "$opt" in 3682efc3265Sbellard --help|-h) show_help=yes 3692efc3265Sbellard ;; 370b1a550a0Spbrook --prefix=*) prefix="$optarg" 3717d13299dSbellard ;; 372b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 37332ce6337Sbellard ;; 374b1a550a0Spbrook --source-path=*) source_path="$optarg" 375ad064840Spbrook source_path_used="yes" 3767d13299dSbellard ;; 377ac0df51dSaliguori --cross-prefix=*) 3787d13299dSbellard ;; 379ac0df51dSaliguori --cc=*) 3807d13299dSbellard ;; 381b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 38283469015Sbellard ;; 383b1a550a0Spbrook --make=*) make="$optarg" 3847d13299dSbellard ;; 3856a882643Spbrook --install=*) install="$optarg" 3866a882643Spbrook ;; 387e3fc14c3SJan Kiszka --extra-cflags=*) EXTRA_CFLAGS="$optarg" 3887d13299dSbellard ;; 389e3fc14c3SJan Kiszka --extra-ldflags=*) EXTRA_LDFLAGS="$optarg" 3907d13299dSbellard ;; 391b1a550a0Spbrook --cpu=*) cpu="$optarg" 3927d13299dSbellard ;; 393b1a550a0Spbrook --target-list=*) target_list="$optarg" 394de83cd02Sbellard ;; 3957d13299dSbellard --enable-gprof) gprof="yes" 3967d13299dSbellard ;; 39743ce4dfeSbellard --static) static="yes" 39843ce4dfeSbellard ;; 39997a847bcSbellard --disable-sdl) sdl="no" 40097a847bcSbellard ;; 401b1a550a0Spbrook --fmod-lib=*) fmod_lib="$optarg" 402102a52e4Sbellard ;; 403c2de5c91Smalc --fmod-inc=*) fmod_inc="$optarg" 404c2de5c91Smalc ;; 4052f6a1ab0Sblueswir1 --oss-lib=*) oss_lib="$optarg" 4062f6a1ab0Sblueswir1 ;; 4072fa7d3bfSmalc --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` 4080c58ac1cSmalc ;; 4090c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 4100c58ac1cSmalc ;; 411f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 412f8393946Saurel32 ;; 413f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 414f8393946Saurel32 ;; 415f3d08ee6SPaul Brook --enable-debug) 416f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 417f3d08ee6SPaul Brook debug_tcg="yes" 418f3d08ee6SPaul Brook debug="yes" 419f3d08ee6SPaul Brook strip_opt="no" 420f3d08ee6SPaul Brook ;; 42103b4fe7dSaliguori --enable-sparse) sparse="yes" 42203b4fe7dSaliguori ;; 42303b4fe7dSaliguori --disable-sparse) sparse="no" 42403b4fe7dSaliguori ;; 4251625af87Saliguori --disable-strip) strip_opt="no" 4261625af87Saliguori ;; 4278d5d2d4cSths --disable-vnc-tls) vnc_tls="no" 4288d5d2d4cSths ;; 4292f9606b3Saliguori --disable-vnc-sasl) vnc_sasl="no" 4302f9606b3Saliguori ;; 431443f1376Sbellard --disable-slirp) slirp="no" 432c20709aaSbellard ;; 433e0e6c8c0Saliguori --disable-vde) vde="no" 4348a16d273Sths ;; 435c9ec1fe4Sbellard --disable-kqemu) kqemu="no" 436c9ec1fe4Sbellard ;; 437e37630caSaliguori --disable-xen) xen="no" 438e37630caSaliguori ;; 4392e4d9fb1Saurel32 --disable-brlapi) brlapi="no" 4402e4d9fb1Saurel32 ;; 441fb599c9aSbalrog --disable-bluez) bluez="no" 442fb599c9aSbalrog ;; 4437ba1e619Saliguori --disable-kvm) kvm="no" 4447ba1e619Saliguori ;; 44505c2a3e7Sbellard --enable-profiler) profiler="yes" 44605c2a3e7Sbellard ;; 447c2de5c91Smalc --enable-cocoa) 448c2de5c91Smalc cocoa="yes" ; 449c2de5c91Smalc sdl="no" ; 450c2de5c91Smalc audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" 4515b0753e0Sbellard ;; 452cad25d69Spbrook --disable-system) softmmu="no" 4530a8e90f4Spbrook ;; 454cad25d69Spbrook --enable-system) softmmu="yes" 4550a8e90f4Spbrook ;; 456831b7825Sths --disable-linux-user) linux_user="no" 4570a8e90f4Spbrook ;; 458831b7825Sths --enable-linux-user) linux_user="yes" 459831b7825Sths ;; 460831b7825Sths --disable-darwin-user) darwin_user="no" 461831b7825Sths ;; 462831b7825Sths --enable-darwin-user) darwin_user="yes" 4630a8e90f4Spbrook ;; 46484778508Sblueswir1 --disable-bsd-user) bsd_user="no" 46584778508Sblueswir1 ;; 46684778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 46784778508Sblueswir1 ;; 468c5937220Spbrook --enable-uname-release=*) uname_release="$optarg" 469c5937220Spbrook ;; 4703142255cSblueswir1 --sparc_cpu=*) 4713142255cSblueswir1 sparc_cpu="$optarg" 4723142255cSblueswir1 case $sparc_cpu in 4733142255cSblueswir1 v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" 474600309b6SBlue Swirl target_arch2="sparc"; cpu="sparc" ;; 4753142255cSblueswir1 v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" 476600309b6SBlue Swirl target_arch2="sparc"; cpu="sparc" ;; 4773142255cSblueswir1 v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64" 478600309b6SBlue Swirl target_arch2="sparc64"; cpu="sparc64" ;; 4793142255cSblueswir1 *) echo "undefined SPARC architecture. Exiting";exit 1;; 4803142255cSblueswir1 esac 4813142255cSblueswir1 ;; 48285aa5189Sbellard --enable-werror) werror="yes" 48385aa5189Sbellard ;; 48485aa5189Sbellard --disable-werror) werror="no" 48585aa5189Sbellard ;; 4864d3b6f6eSbalrog --disable-curses) curses="no" 4874d3b6f6eSbalrog ;; 488769ce76dSAlexander Graf --disable-curl) curl="no" 489769ce76dSAlexander Graf ;; 490bd0c5661Spbrook --disable-nptl) nptl="no" 491bd0c5661Spbrook ;; 4928ff9cbf7Smalc --enable-mixemu) mixemu="yes" 4938ff9cbf7Smalc ;; 494e5d355d1Saliguori --disable-pthread) pthread="no" 495e5d355d1Saliguori ;; 496414f0dabSblueswir1 --disable-aio) aio="no" 497414f0dabSblueswir1 ;; 498e5d355d1Saliguori --enable-io-thread) io_thread="yes" 499e5d355d1Saliguori ;; 50077755340Sths --disable-blobs) blobs="no" 50177755340Sths ;; 502eac30262Saliguori --kerneldir=*) kerneldir="$optarg" 503eac30262Saliguori ;; 5044a19f1ecSpbrook --with-pkgversion=*) pkgversion=" ($optarg)" 5054a19f1ecSpbrook ;; 50670ec5dc0SAnthony Liguori --disable-docs) build_docs="no" 50770ec5dc0SAnthony Liguori ;; 5087f1559c6Sbalrog *) echo "ERROR: unknown option $opt"; show_help="yes" 5097f1559c6Sbalrog ;; 5107d13299dSbellard esac 5117d13299dSbellarddone 5127d13299dSbellard 5136f30fa85Sths# default flags for all hosts 514f3d08ee6SPaul BrookCFLAGS="$CFLAGS -g -fno-strict-aliasing" 515f3d08ee6SPaul Brookif test "$debug" = "no" ; then 516f3d08ee6SPaul Brook CFLAGS="$CFLAGS -O2" 517f3d08ee6SPaul Brookfi 518e0e36fe9Sblueswir1CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls" 5196f30fa85SthsLDFLAGS="$LDFLAGS -g" 5201172f653SBlue Swirl 5211172f653SBlue Swirl# Consult white-list to determine whether to enable werror 5221172f653SBlue Swirl# by default. Only enable by default for git builds 5231172f653SBlue Swirlif test -z "$werror" ; then 5241172f653SBlue Swirl z_version=`cut -f3 -d. $source_path/VERSION` 5251172f653SBlue Swirl if test "$z_version" = "50" -a \ 5261172f653SBlue Swirl "$linux" = "yes" ; then 5271172f653SBlue Swirl werror="yes" 5281172f653SBlue Swirl else 5291172f653SBlue Swirl werror="no" 5301172f653SBlue Swirl fi 5311172f653SBlue Swirlfi 5321172f653SBlue Swirl 53385aa5189Sbellardif test "$werror" = "yes" ; then 53485aa5189Sbellard CFLAGS="$CFLAGS -Werror" 53585aa5189Sbellardfi 5366f30fa85Sths 537d2c7c9b8Sblueswir1if test "$solaris" = "no" ; then 538d2c7c9b8Sblueswir1 if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 53949237acdSblueswir1 LDFLAGS="$LDFLAGS -Wl,--warn-common" 54049237acdSblueswir1 fi 541d2c7c9b8Sblueswir1fi 54249237acdSblueswir1 5433142255cSblueswir1# 5443142255cSblueswir1# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right 5453142255cSblueswir1# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) 5463142255cSblueswir1# 54740293e58Sbellardcase "$cpu" in 5483142255cSblueswir1 sparc) if test -z "$sparc_cpu" ; then 5493142255cSblueswir1 ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__" 5503142255cSblueswir1 ARCH_LDFLAGS="-m32" 5513142255cSblueswir1 else 5523142255cSblueswir1 ARCH_CFLAGS="${SP_CFLAGS}" 5533142255cSblueswir1 ARCH_LDFLAGS="${SP_LDFLAGS}" 5543142255cSblueswir1 fi 555762e8230Sblueswir1 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3" 556762e8230Sblueswir1 if test "$solaris" = "no" ; then 557762e8230Sblueswir1 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g6" 558762e8230Sblueswir1 fi 5593142255cSblueswir1 ;; 5603142255cSblueswir1 sparc64) if test -z "$sparc_cpu" ; then 5613142255cSblueswir1 ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__" 5623142255cSblueswir1 ARCH_LDFLAGS="-m64" 5633142255cSblueswir1 else 5643142255cSblueswir1 ARCH_CFLAGS="${SP_CFLAGS}" 5653142255cSblueswir1 ARCH_LDFLAGS="${SP_LDFLAGS}" 5663142255cSblueswir1 fi 567762e8230Sblueswir1 if test "$solaris" = "no" ; then 568762e8230Sblueswir1 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7" 569762e8230Sblueswir1 else 570762e8230Sblueswir1 ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g1 -ffixed-g5 -ffixed-g6 -ffixed-g7" 571762e8230Sblueswir1 fi 5723142255cSblueswir1 ;; 57376d83bdeSths s390) 57476d83bdeSths ARCH_CFLAGS="-march=z900" 57576d83bdeSths ;; 57640293e58Sbellard i386) 57740293e58Sbellard ARCH_CFLAGS="-m32" 57840293e58Sbellard ARCH_LDFLAGS="-m32" 57940293e58Sbellard ;; 58040293e58Sbellard x86_64) 58140293e58Sbellard ARCH_CFLAGS="-m64" 58240293e58Sbellard ARCH_LDFLAGS="-m64" 58340293e58Sbellard ;; 5843142255cSblueswir1esac 5853142255cSblueswir1 586af5db58eSpbrookif test x"$show_help" = x"yes" ; then 587af5db58eSpbrookcat << EOF 588af5db58eSpbrook 589af5db58eSpbrookUsage: configure [options] 590af5db58eSpbrookOptions: [defaults in brackets after descriptions] 591af5db58eSpbrook 592af5db58eSpbrookEOF 593af5db58eSpbrookecho "Standard options:" 594af5db58eSpbrookecho " --help print this message" 595af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 596af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 597af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 598af5db58eSpbrookecho " --target-list=LIST set target list [$target_list]" 599af5db58eSpbrookecho "" 600af5db58eSpbrookecho "kqemu kernel acceleration support:" 601af5db58eSpbrookecho " --disable-kqemu disable kqemu support" 602af5db58eSpbrookecho "" 603af5db58eSpbrookecho "Advanced options (experts only):" 604af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 605af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 606af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 607af5db58eSpbrookecho " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." 608e3fc14c3SJan Kiszkaecho " --extra-cflags=CFLAGS append extra C compiler flags CFLAGS" 609e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 610af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 6116a882643Spbrookecho " --install=INSTALL use specified install [$install]" 612af5db58eSpbrookecho " --static enable static build [$static]" 613f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 614f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 61509695a4aSStefan Weilecho " --enable-debug enable common debug build options" 616890b1658Saliguoriecho " --enable-sparse enable sparse checker" 617890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 6181625af87Saliguoriecho " --disable-strip disable stripping binaries" 61985aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 620fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 621af5db58eSpbrookecho " --enable-cocoa enable COCOA (Mac OS X only)" 622c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 623c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 6244c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 6254c9b53e3Smalcecho " Available cards: $audio_possible_cards" 6268ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 627e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 6282e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 6298d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 6302f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 631af896aaaSpbrookecho " --disable-curses disable curses output" 632769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 633fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 6347ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 635bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 636af5db58eSpbrookecho " --enable-system enable all system emulation targets" 637af5db58eSpbrookecho " --disable-system disable all system emulation targets" 638831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 639831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 640831b7825Sthsecho " --enable-darwin-user enable all darwin usermode emulation targets" 641831b7825Sthsecho " --disable-darwin-user disable all darwin usermode emulation targets" 64284778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 64384778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 644af5db58eSpbrookecho " --fmod-lib path to FMOD library" 645af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 6462f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 647c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 6483142255cSblueswir1echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" 649e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 650e5d355d1Saliguoriecho " --disable-pthread disable pthread support" 651414f0dabSblueswir1echo " --disable-aio disable AIO support" 652e5d355d1Saliguoriecho " --enable-io-thread enable IO thread" 65377755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 654eac30262Saliguoriecho " --kerneldir=PATH look for kernel includes in PATH" 655af5db58eSpbrookecho "" 6565bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 657af5db58eSpbrookexit 1 658af5db58eSpbrookfi 659af5db58eSpbrook 66067b915a5Sbellardif test "$mingw32" = "yes" ; then 6615327cf48Sbellard linux="no" 66267b915a5Sbellard EXESUF=".exe" 6639f059ecaSbellard oss="no" 664cd01b4a3Saliguori linux_user="no" 66584778508Sblueswir1 bsd_user="no" 66649dc768dSaliguori OS_CFLAGS="$OS_CFLAGS -DWIN32_LEAN_AND_MEAN -DWINVER=0x501" 667cd01b4a3Saliguorifi 668cd01b4a3Saliguori 66903b4fe7dSaliguoriif test ! -x "$(which cgcc 2>/dev/null)"; then 67003b4fe7dSaliguori sparse="no" 67103b4fe7dSaliguorifi 67203b4fe7dSaliguori 673ec530c81Sbellard# 674ec530c81Sbellard# Solaris specific configure tool chain decisions 675ec530c81Sbellard# 676ec530c81Sbellardif test "$solaris" = "yes" ; then 677ec530c81Sbellard solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` 678ec530c81Sbellard if test -z "$solinst" ; then 679ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 680ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 681ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 682ec530c81Sbellard exit 1 683ec530c81Sbellard fi 684ec530c81Sbellard if test "$solinst" = "/usr/sbin/install" ; then 685ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 686ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 687ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 688ec530c81Sbellard exit 1 689ec530c81Sbellard fi 690ec530c81Sbellard sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` 691ec530c81Sbellard if test -z "$sol_ar" ; then 692ec530c81Sbellard echo "Error: No path includes ar" 693ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 694ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 695ec530c81Sbellard fi 696ec530c81Sbellard exit 1 697ec530c81Sbellard fi 698ec530c81Sbellardfi 699ec530c81Sbellard 700ec530c81Sbellard 7015327cf48Sbellardif test -z "$target_list" ; then 7025327cf48Sbellard# these targets are portable 7030a8e90f4Spbrook if [ "$softmmu" = "yes" ] ; then 7042408a527Saurel32 target_list="\ 7052408a527Saurel32i386-softmmu \ 7062408a527Saurel32x86_64-softmmu \ 7072408a527Saurel32arm-softmmu \ 7082408a527Saurel32cris-softmmu \ 7092408a527Saurel32m68k-softmmu \ 71072b675caSEdgar E. Iglesiasmicroblaze-softmmu \ 7112408a527Saurel32mips-softmmu \ 7122408a527Saurel32mipsel-softmmu \ 7132408a527Saurel32mips64-softmmu \ 7142408a527Saurel32mips64el-softmmu \ 7152408a527Saurel32ppc-softmmu \ 7162408a527Saurel32ppcemb-softmmu \ 7172408a527Saurel32ppc64-softmmu \ 7182408a527Saurel32sh4-softmmu \ 7192408a527Saurel32sh4eb-softmmu \ 7202408a527Saurel32sparc-softmmu \ 7211b64fcaeSIgor V. Kovalenkosparc64-softmmu \ 7222408a527Saurel32" 7230a8e90f4Spbrook fi 7245327cf48Sbellard# the following are Linux specific 725831b7825Sths if [ "$linux_user" = "yes" ] ; then 7262408a527Saurel32 target_list="${target_list}\ 7272408a527Saurel32i386-linux-user \ 7282408a527Saurel32x86_64-linux-user \ 7292408a527Saurel32alpha-linux-user \ 7302408a527Saurel32arm-linux-user \ 7312408a527Saurel32armeb-linux-user \ 7322408a527Saurel32cris-linux-user \ 7332408a527Saurel32m68k-linux-user \ 73472b675caSEdgar E. Iglesiasmicroblaze-linux-user \ 7352408a527Saurel32mips-linux-user \ 7362408a527Saurel32mipsel-linux-user \ 7372408a527Saurel32ppc-linux-user \ 7382408a527Saurel32ppc64-linux-user \ 7392408a527Saurel32ppc64abi32-linux-user \ 7402408a527Saurel32sh4-linux-user \ 7412408a527Saurel32sh4eb-linux-user \ 7422408a527Saurel32sparc-linux-user \ 7432408a527Saurel32sparc64-linux-user \ 7442408a527Saurel32sparc32plus-linux-user \ 7452408a527Saurel32" 746831b7825Sths fi 747831b7825Sths# the following are Darwin specific 748831b7825Sths if [ "$darwin_user" = "yes" ] ; then 7492408a527Saurel32 target_list="$target_list i386-darwin-user ppc-darwin-user " 7505327cf48Sbellard fi 75184778508Sblueswir1# the following are BSD specific 75284778508Sblueswir1 if [ "$bsd_user" = "yes" ] ; then 75384778508Sblueswir1 target_list="${target_list}\ 75431fc12dfSblueswir1i386-bsd-user \ 75531fc12dfSblueswir1x86_64-bsd-user \ 75631fc12dfSblueswir1sparc-bsd-user \ 75784778508Sblueswir1sparc64-bsd-user \ 75884778508Sblueswir1" 75984778508Sblueswir1 fi 7606e20a45fSbellardelse 761b1a550a0Spbrook target_list=`echo "$target_list" | sed -e 's/,/ /g'` 7625327cf48Sbellardfi 7630a8e90f4Spbrookif test -z "$target_list" ; then 7640a8e90f4Spbrook echo "No targets enabled" 7650a8e90f4Spbrook exit 1 7660a8e90f4Spbrookfi 7675327cf48Sbellard 7687d13299dSbellardif test -z "$cross_prefix" ; then 7697d13299dSbellard 7707d13299dSbellard# --- 7717d13299dSbellard# big/little endian test 7727d13299dSbellardcat > $TMPC << EOF 7737d13299dSbellard#include <inttypes.h> 7747d13299dSbellardint main(int argc, char ** argv){ 7757d13299dSbellard volatile uint32_t i=0x01234567; 7767d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 7777d13299dSbellard} 7787d13299dSbellardEOF 7797d13299dSbellard 780178baee6Saurel32if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 7817d13299dSbellard$TMPE && bigendian="yes" 7827d13299dSbellardelse 7837d13299dSbellardecho big/little test failed 7847d13299dSbellardfi 7857d13299dSbellard 7867d13299dSbellardelse 7877d13299dSbellard 7887d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 7890938cda5Saurel32if test "$cpu" = "armv4b" \ 790f54b3f92Saurel32 -o "$cpu" = "hppa" \ 7910938cda5Saurel32 -o "$cpu" = "m68k" \ 7920938cda5Saurel32 -o "$cpu" = "mips" \ 7930938cda5Saurel32 -o "$cpu" = "mips64" \ 794fdf7ed96Smalc -o "$cpu" = "ppc" \ 795fdf7ed96Smalc -o "$cpu" = "ppc64" \ 7960938cda5Saurel32 -o "$cpu" = "s390" \ 7970938cda5Saurel32 -o "$cpu" = "sparc" \ 7980938cda5Saurel32 -o "$cpu" = "sparc64"; then 7997d13299dSbellard bigendian="yes" 8007d13299dSbellardfi 8017d13299dSbellard 8027d13299dSbellardfi 8037d13299dSbellard 804b6853697Sbellard# host long bits test 805b6853697Sbellardhostlongbits="32" 8060938cda5Saurel32if test "$cpu" = "x86_64" \ 8070938cda5Saurel32 -o "$cpu" = "alpha" \ 8080938cda5Saurel32 -o "$cpu" = "ia64" \ 809fdf7ed96Smalc -o "$cpu" = "sparc64" \ 810fdf7ed96Smalc -o "$cpu" = "ppc64"; then 811b6853697Sbellard hostlongbits="64" 812b6853697Sbellardfi 813b6853697Sbellard 814bd0c5661Spbrook# Check host NPTL support 815bd0c5661Spbrookcat > $TMPC <<EOF 816bd0c5661Spbrook#include <sched.h> 81730813ceaSpbrook#include <linux/futex.h> 818bd0c5661Spbrookvoid foo() 819bd0c5661Spbrook{ 820bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 821bd0c5661Spbrook#error bork 822bd0c5661Spbrook#endif 823bd0c5661Spbrook} 824bd0c5661SpbrookEOF 825bd0c5661Spbrook 8268c7f7574Sbalrogif $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then 827bd0c5661Spbrook : 828bd0c5661Spbrookelse 829bd0c5661Spbrook nptl="no" 830bd0c5661Spbrookfi 831bd0c5661Spbrook 83211d9f695Sbellard########################################## 833ac62922eSbalrog# zlib check 834ac62922eSbalrog 835ac62922eSbalrogcat > $TMPC << EOF 836ac62922eSbalrog#include <zlib.h> 837ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 838ac62922eSbalrogEOF 8398c7f7574Sbalrogif $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then 840ac62922eSbalrog : 841ac62922eSbalrogelse 842ac62922eSbalrog echo 843ac62922eSbalrog echo "Error: zlib check failed" 844ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 845ac62922eSbalrog echo 846ac62922eSbalrog exit 1 847ac62922eSbalrogfi 848ac62922eSbalrog 849ac62922eSbalrog########################################## 850e37630caSaliguori# xen probe 851e37630caSaliguori 852e37630caSaliguoriif test "$xen" = "yes" ; then 853e37630caSaliguoricat > $TMPC <<EOF 854e37630caSaliguori#include <xenctrl.h> 855e37630caSaliguori#include <xs.h> 856df7a607bSChristoph Eggerint main(void) { xs_daemon_open(); xc_interface_open(); return 0; } 857e37630caSaliguoriEOF 858df7a607bSChristoph Egger if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then 859e37630caSaliguori : 860e37630caSaliguori else 861e37630caSaliguori xen="no" 862e37630caSaliguori fi 863e37630caSaliguorifi 864e37630caSaliguori 865e37630caSaliguori########################################## 86611d9f695Sbellard# SDL probe 86711d9f695Sbellard 86811d9f695Sbellardsdl_too_old=no 86911d9f695Sbellard 870f92f8afeSAnthony Liguoriif test "$sdl" = "yes" ; then 871a6e022adSbellard sdl_config="sdl-config" 872a6e022adSbellard sdl=no 8737c1f25b4Sbellard sdl_static=no 874a6e022adSbellard 87511d9f695Sbellardcat > $TMPC << EOF 87611d9f695Sbellard#include <SDL.h> 87711d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 87811d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 87911d9f695SbellardEOF 8808c7f7574Sbalrog if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then 881a6e022adSbellard _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'` 88211d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 88311d9f695Sbellard sdl_too_old=yes 88411d9f695Sbellard else 885fd677642Sths if test "$cocoa" = "no" ; then 88611d9f695Sbellard sdl=yes 88711d9f695Sbellard fi 888fd677642Sths fi 8897c1f25b4Sbellard 8907c1f25b4Sbellard # static link with sdl ? 8917c1f25b4Sbellard if test "$sdl" = "yes" ; then 8927c1f25b4Sbellard aa="no" 893e14a693dSths `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes" 894e14a693dSths sdl_static_libs=`$sdl_config --static-libs 2>/dev/null` 8957c1f25b4Sbellard if [ "$aa" = "yes" ] ; then 896d8d8aa4eSbellard sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" 89711d9f695Sbellard fi 89811d9f695Sbellard 8998c7f7574Sbalrog if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then 9007c1f25b4Sbellard sdl_static=yes 9017c1f25b4Sbellard fi 9027c1f25b4Sbellard fi # static link 9037c1f25b4Sbellard fi # sdl compile test 904fd677642Sthselse 905fd677642Sths # Make sure to disable cocoa if sdl was set 906fd677642Sths if test "$sdl" = "yes" ; then 907fd677642Sths cocoa="no" 908c2de5c91Smalc audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`" 909fd677642Sths fi 910a6e022adSbellardfi # -z $sdl 91111d9f695Sbellard 9125368a422Saliguoriif test "$sdl" = "yes" ; then 9135368a422Saliguoricat > $TMPC <<EOF 9145368a422Saliguori#include <SDL.h> 9155368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 9165368a422Saliguori#include <X11/XKBlib.h> 9175368a422Saliguori#else 9185368a422Saliguori#error No x11 support 9195368a422Saliguori#endif 9205368a422Saliguoriint main(void) { return 0; } 9215368a422SaliguoriEOF 9225368a422Saliguori if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > /dev/null 2>&1 ; then 9235368a422Saliguori sdl_x11="yes" 9245368a422Saliguori fi 9255368a422Saliguorifi 9265368a422Saliguori 9278f28f3fbSths########################################## 9288d5d2d4cSths# VNC TLS detection 9298d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 930ae6b5e5aSaliguoricat > $TMPC <<EOF 931ae6b5e5aSaliguori#include <gnutls/gnutls.h> 932ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 933ae6b5e5aSaliguoriEOF 934ae6b5e5aSaliguori vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` 935ae6b5e5aSaliguori vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` 936ae6b5e5aSaliguori if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \ 9378c7f7574Sbalrog $vnc_tls_libs > /dev/null 2> /dev/null ; then 938ae6b5e5aSaliguori : 939ae6b5e5aSaliguori else 940ae6b5e5aSaliguori vnc_tls="no" 9418d5d2d4cSths fi 9428d5d2d4cSthsfi 9438d5d2d4cSths 9448d5d2d4cSths########################################## 9452f9606b3Saliguori# VNC SASL detection 9462f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 9472f9606b3Saliguoricat > $TMPC <<EOF 9482f9606b3Saliguori#include <sasl/sasl.h> 9492f9606b3Saliguori#include <stdio.h> 9502f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 9512f9606b3SaliguoriEOF 9522f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 9532f9606b3Saliguori vnc_sasl_cflags="" 9542f9606b3Saliguori vnc_sasl_libs="-lsasl2" 9552f9606b3Saliguori if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \ 956918a608bSJan Kiszka $vnc_sasl_libs 2> /dev/null > /dev/null ; then 9572f9606b3Saliguori : 9582f9606b3Saliguori else 9592f9606b3Saliguori vnc_sasl="no" 9602f9606b3Saliguori fi 9612f9606b3Saliguorifi 9622f9606b3Saliguori 9632f9606b3Saliguori########################################## 96476655d6dSaliguori# fnmatch() probe, used for ACL routines 96576655d6dSaliguorifnmatch="no" 96676655d6dSaliguoricat > $TMPC << EOF 96776655d6dSaliguori#include <fnmatch.h> 96876655d6dSaliguoriint main(void) 96976655d6dSaliguori{ 97076655d6dSaliguori fnmatch("foo", "foo", 0); 97176655d6dSaliguori return 0; 97276655d6dSaliguori} 97376655d6dSaliguoriEOF 97476655d6dSaliguoriif $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 97576655d6dSaliguori fnmatch="yes" 97676655d6dSaliguorifi 97776655d6dSaliguori 97876655d6dSaliguori########################################## 9798a16d273Sths# vde libraries probe 9808a16d273Sthsif test "$vde" = "yes" ; then 9818a16d273Sths cat > $TMPC << EOF 9828a16d273Sths#include <libvdeplug.h> 9834a7f0e06Spbrookint main(void) 9844a7f0e06Spbrook{ 9854a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 9864a7f0e06Spbrook vde_open("", "", &a); 9874a7f0e06Spbrook return 0; 9884a7f0e06Spbrook} 9898a16d273SthsEOF 9908c7f7574Sbalrog if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then 9918a16d273Sths : 9928a16d273Sths else 993e0e6c8c0Saliguori vde="no" 9948a16d273Sths fi 9958a16d273Sthsfi 9968a16d273Sths 9978a16d273Sths########################################## 998c2de5c91Smalc# Sound support libraries probe 9998f28f3fbSths 1000c2de5c91Smalcaudio_drv_probe() 1001c2de5c91Smalc{ 1002c2de5c91Smalc drv=$1 1003c2de5c91Smalc hdr=$2 1004c2de5c91Smalc lib=$3 1005c2de5c91Smalc exp=$4 1006c2de5c91Smalc cfl=$5 10078f28f3fbSths cat > $TMPC << EOF 1008c2de5c91Smalc#include <$hdr> 1009c2de5c91Smalcint main(void) { $exp } 10108f28f3fbSthsEOF 10118c7f7574Sbalrog if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then 10128f28f3fbSths : 10138f28f3fbSths else 10148f28f3fbSths echo 1015c2de5c91Smalc echo "Error: $drv check failed" 1016c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 10178f28f3fbSths echo 10188f28f3fbSths exit 1 10198f28f3fbSths fi 1020c2de5c91Smalc} 1021c2de5c91Smalc 10222fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 1023c2de5c91Smalcfor drv in $audio_drv_list; do 1024c2de5c91Smalc case $drv in 1025c2de5c91Smalc alsa) 1026c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 1027c2de5c91Smalc "snd_pcm_t **handle; return snd_pcm_close(*handle);" 1028c2de5c91Smalc ;; 1029c2de5c91Smalc 1030c2de5c91Smalc fmod) 1031c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 1032c2de5c91Smalc echo 1033c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 1034c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 1035c2de5c91Smalc echo 1036c2de5c91Smalc exit 1 10378f28f3fbSths fi 1038c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 1039c2de5c91Smalc ;; 1040c2de5c91Smalc 1041c2de5c91Smalc esd) 1042c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 1043c2de5c91Smalc ;; 1044b8e59f18Smalc 1045b8e59f18Smalc pa) 1046b8e59f18Smalc audio_drv_probe $drv pulse/simple.h -lpulse-simple \ 1047b8e59f18Smalc "pa_simple *s = NULL; pa_simple_free(s); return 0;" 1048b8e59f18Smalc ;; 1049b8e59f18Smalc 10502f6a1ab0Sblueswir1 oss|sdl|core|wav|dsound) 10512f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 10522f6a1ab0Sblueswir1 ;; 10532f6a1ab0Sblueswir1 1054e4c63a6aSmalc *) 10551c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 1056e4c63a6aSmalc echo 1057e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 1058e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 1059e4c63a6aSmalc echo 1060e4c63a6aSmalc exit 1 1061e4c63a6aSmalc } 1062e4c63a6aSmalc ;; 1063c2de5c91Smalc esac 1064c2de5c91Smalcdone 10658f28f3fbSths 10664d3b6f6eSbalrog########################################## 10672e4d9fb1Saurel32# BrlAPI probe 10682e4d9fb1Saurel32 10692e4d9fb1Saurel32if test -z "$brlapi" ; then 10702e4d9fb1Saurel32 brlapi=no 10712e4d9fb1Saurel32cat > $TMPC << EOF 10722e4d9fb1Saurel32#include <brlapi.h> 10732e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 10742e4d9fb1Saurel32EOF 1075178baee6Saurel32 if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then 10762e4d9fb1Saurel32 brlapi=yes 10772e4d9fb1Saurel32 fi # brlapi compile test 10782e4d9fb1Saurel32fi # -z $brlapi 10792e4d9fb1Saurel32 10802e4d9fb1Saurel32########################################## 10814d3b6f6eSbalrog# curses probe 10824d3b6f6eSbalrog 10834d3b6f6eSbalrogif test "$curses" = "yes" ; then 10844d3b6f6eSbalrog curses=no 1085ab4e5602SJan Kiszka ncurses=no 10864d3b6f6eSbalrog cat > $TMPC << EOF 10874d3b6f6eSbalrog#include <curses.h> 10885a8ff3aaSblueswir1#ifdef __OpenBSD__ 10895a8ff3aaSblueswir1#define resize_term resizeterm 10905a8ff3aaSblueswir1#endif 10915a8ff3aaSblueswir1int main(void) { resize_term(0, 0); return curses_version(); } 10924d3b6f6eSbalrogEOF 1093ab4e5602SJan Kiszka if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lncurses > /dev/null 2> /dev/null ; then 1094ab4e5602SJan Kiszka curses=yes 1095ab4e5602SJan Kiszka ncurses=yes 1096ab4e5602SJan Kiszka elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then 10974d3b6f6eSbalrog curses=yes 10984d3b6f6eSbalrog fi 10994d3b6f6eSbalrogfi # test "$curses" 11004d3b6f6eSbalrog 1101414f0dabSblueswir1########################################## 1102769ce76dSAlexander Graf# curl probe 1103769ce76dSAlexander Graf 1104769ce76dSAlexander Grafif test "$curl" = "yes" ; then 1105769ce76dSAlexander Graf curl=no 1106769ce76dSAlexander Graf cat > $TMPC << EOF 1107769ce76dSAlexander Graf#include <curl/curl.h> 1108769ce76dSAlexander Grafint main(void) { return curl_easy_init(); } 1109769ce76dSAlexander GrafEOF 111052368552SPaul Brook curl_libs=`curl-config --libs 2>/dev/null` 1111769ce76dSAlexander Graf if $cc $ARCH_CFLAGS $curl_libs -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 1112769ce76dSAlexander Graf curl=yes 1113769ce76dSAlexander Graf fi 1114769ce76dSAlexander Graffi # test "$curl" 1115769ce76dSAlexander Graf 1116769ce76dSAlexander Graf########################################## 1117fb599c9aSbalrog# bluez support probe 1118fb599c9aSbalrogif test "$bluez" = "yes" ; then 1119efcfd0c5SBlue Swirl `pkg-config bluez 2> /dev/null` || bluez="no" 1120fb599c9aSbalrogfi 1121fb599c9aSbalrogif test "$bluez" = "yes" ; then 1122e820e3f4Sbalrog cat > $TMPC << EOF 1123e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 1124e820e3f4Sbalrogint main(void) { return bt_error(0); } 1125e820e3f4SbalrogEOF 1126efcfd0c5SBlue Swirl bluez_cflags=`pkg-config --cflags bluez 2> /dev/null` 1127efcfd0c5SBlue Swirl bluez_libs=`pkg-config --libs bluez 2> /dev/null` 112817e1592dSbalrog if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \ 11298c7f7574Sbalrog $bluez_libs > /dev/null 2> /dev/null ; then 1130e820e3f4Sbalrog : 1131e820e3f4Sbalrog else 1132e820e3f4Sbalrog bluez="no" 1133e820e3f4Sbalrog fi 1134fb599c9aSbalrogfi 1135fb599c9aSbalrog 1136fb599c9aSbalrog########################################## 11377ba1e619Saliguori# kvm probe 11387ba1e619Saliguoriif test "$kvm" = "yes" ; then 11397ba1e619Saliguori cat > $TMPC <<EOF 11407ba1e619Saliguori#include <linux/kvm.h> 11419fd8d8d7Saliguori#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12 11427ba1e619Saliguori#error Invalid KVM version 11437ba1e619Saliguori#endif 11449fd8d8d7Saliguori#if !defined(KVM_CAP_USER_MEMORY) 11459fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_USER_MEMORY 11469fd8d8d7Saliguori#endif 11479fd8d8d7Saliguori#if !defined(KVM_CAP_SET_TSS_ADDR) 11489fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_SET_TSS_ADDR 11499fd8d8d7Saliguori#endif 11509fd8d8d7Saliguori#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) 11519fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS 11529fd8d8d7Saliguori#endif 11537ba1e619Saliguoriint main(void) { return 0; } 11547ba1e619SaliguoriEOF 1155eac30262Saliguori if test "$kerneldir" != "" ; then 1156eac30262Saliguori kvm_cflags=-I"$kerneldir"/include 11578444eb6eSaliguori if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \ 11588444eb6eSaliguori -a -d "$kerneldir/arch/x86/include" ; then 11598444eb6eSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include" 1160406b430dSaliguori elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then 1161406b430dSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include" 11628444eb6eSaliguori elif test -d "$kerneldir/arch/$cpu/include" ; then 11638444eb6eSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include" 11648444eb6eSaliguori fi 1165eac30262Saliguori else 1166eac30262Saliguori kvm_cflags="" 1167eac30262Saliguori fi 11687ba1e619Saliguori if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \ 11698c7f7574Sbalrog > /dev/null 2>/dev/null ; then 11707ba1e619Saliguori : 11717ba1e619Saliguori else 11729fd8d8d7Saliguori kvm="no"; 11739fd8d8d7Saliguori if [ -x "`which awk 2>/dev/null`" ] && \ 11749fd8d8d7Saliguori [ -x "`which grep 2>/dev/null`" ]; then 1175e4f5100cSblueswir1 kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \ 11769fd8d8d7Saliguori | grep "error: " \ 11779fd8d8d7Saliguori | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'` 11789fd8d8d7Saliguori if test "$kvmerr" != "" ; then 1179168ccc11SJan Kiszka kvm="no - (${kvmerr})\n\ 1180168ccc11SJan Kiszka NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \ 1181168ccc11SJan Kiszkarecent kvm-kmod from http://sourceforge.net/projects/kvm." 11829fd8d8d7Saliguori fi 11839fd8d8d7Saliguori fi 11847ba1e619Saliguori fi 11857ba1e619Saliguorifi 11867ba1e619Saliguori 11877ba1e619Saliguori########################################## 1188e5d355d1Saliguori# pthread probe 1189de65fe0fSSebastian HerbsztPTHREADLIBS_LIST="-lpthread -lpthreadGC2" 1190e5d355d1SaliguoriPTHREADLIBS="" 11913c529d93Saliguori 1192e5d355d1Saliguoriif test "$pthread" = yes; then 1193e5d355d1Saliguori pthread=no 1194414f0dabSblueswir1cat > $TMPC << EOF 11953c529d93Saliguori#include <pthread.h> 1196de65fe0fSSebastian Herbsztint main(void) { pthread_create(0,0,0,0); return 0; } 1197414f0dabSblueswir1EOF 1198de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 1199de65fe0fSSebastian Herbszt if $cc $ARCH_CFLAGS -o $TMPE $TMPC $pthread_lib 2> /dev/null > /dev/null ; then 1200e5d355d1Saliguori pthread=yes 1201de65fe0fSSebastian Herbszt PTHREADLIBS="$pthread_lib" 1202de65fe0fSSebastian Herbszt break 1203414f0dabSblueswir1 fi 1204de65fe0fSSebastian Herbszt done 1205414f0dabSblueswir1fi 1206414f0dabSblueswir1 1207e5d355d1Saliguoriif test "$pthread" = no; then 1208e5d355d1Saliguori aio=no 1209e5d355d1Saliguori io_thread=no 1210e5d355d1Saliguorifi 1211e5d355d1Saliguori 1212bf9298b9Saliguori########################################## 1213bf9298b9Saliguori# iovec probe 1214bf9298b9Saliguoricat > $TMPC <<EOF 1215db34f0b3Sblueswir1#include <sys/types.h> 1216bf9298b9Saliguori#include <sys/uio.h> 1217db34f0b3Sblueswir1#include <unistd.h> 1218bf9298b9Saliguoriint main(void) { struct iovec iov; return 0; } 1219bf9298b9SaliguoriEOF 1220bf9298b9Saliguoriiovec=no 12218c7f7574Sbalrogif $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 1222bf9298b9Saliguori iovec=yes 1223bf9298b9Saliguorifi 1224bf9298b9Saliguori 1225f652e6afSaurel32########################################## 1226ceb42de8Saliguori# preadv probe 1227ceb42de8Saliguoricat > $TMPC <<EOF 1228ceb42de8Saliguori#include <sys/types.h> 1229ceb42de8Saliguori#include <sys/uio.h> 1230ceb42de8Saliguori#include <unistd.h> 1231ceb42de8Saliguoriint main(void) { preadv; } 1232ceb42de8SaliguoriEOF 1233ceb42de8Saliguoripreadv=no 1234ceb42de8Saliguoriif $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 1235ceb42de8Saliguori preadv=yes 1236ceb42de8Saliguorifi 1237ceb42de8Saliguori 1238ceb42de8Saliguori########################################## 1239f652e6afSaurel32# fdt probe 1240f652e6afSaurel32if test "$fdt" = "yes" ; then 1241f652e6afSaurel32 fdt=no 1242f652e6afSaurel32 cat > $TMPC << EOF 1243f652e6afSaurel32int main(void) { return 0; } 1244f652e6afSaurel32EOF 1245918a608bSJan Kiszka if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then 1246f652e6afSaurel32 fdt=yes 1247f652e6afSaurel32 fi 1248f652e6afSaurel32fi 1249f652e6afSaurel32 12503b3f24adSaurel32# 12513b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 12523b3f24adSaurel32# emulator. This is done because older glibc versions don't 12533b3f24adSaurel32# have syscall stubs for these implemented. 12543b3f24adSaurel32# 12553b3f24adSaurel32atfile=no 12563b3f24adSaurel32cat > $TMPC << EOF 12573b3f24adSaurel32#define _ATFILE_SOURCE 12583b3f24adSaurel32#include <sys/types.h> 12593b3f24adSaurel32#include <fcntl.h> 12603b3f24adSaurel32#include <unistd.h> 12613b3f24adSaurel32 12623b3f24adSaurel32int 12633b3f24adSaurel32main(void) 12643b3f24adSaurel32{ 12653b3f24adSaurel32 /* try to unlink nonexisting file */ 12663b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 12673b3f24adSaurel32} 12683b3f24adSaurel32EOF 1269918a608bSJan Kiszkaif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then 12703b3f24adSaurel32 atfile=yes 12713b3f24adSaurel32fi 12723b3f24adSaurel32 127339386ac7Saurel32# Check for inotify functions when we are building linux-user 12743b3f24adSaurel32# emulator. This is done because older glibc versions don't 12753b3f24adSaurel32# have syscall stubs for these implemented. In that case we 12763b3f24adSaurel32# don't provide them even if kernel supports them. 12773b3f24adSaurel32# 12783b3f24adSaurel32inotify=no 12793b3f24adSaurel32cat > $TMPC << EOF 12803b3f24adSaurel32#include <sys/inotify.h> 12813b3f24adSaurel32 12823b3f24adSaurel32int 12833b3f24adSaurel32main(void) 12843b3f24adSaurel32{ 12853b3f24adSaurel32 /* try to start inotify */ 12868690e420Saurel32 return inotify_init(); 12873b3f24adSaurel32} 12883b3f24adSaurel32EOF 1289918a608bSJan Kiszkaif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then 12903b3f24adSaurel32 inotify=yes 12913b3f24adSaurel32fi 12923b3f24adSaurel32 1293ebc996f3SRiku Voipio# check if utimensat and futimens are supported 1294ebc996f3SRiku Voipioutimens=no 1295ebc996f3SRiku Voipiocat > $TMPC << EOF 1296ebc996f3SRiku Voipio#define _ATFILE_SOURCE 1297ebc996f3SRiku Voipio#define _GNU_SOURCE 1298ebc996f3SRiku Voipio#include <stddef.h> 1299ebc996f3SRiku Voipio#include <fcntl.h> 1300ebc996f3SRiku Voipio 1301ebc996f3SRiku Voipioint main(void) 1302ebc996f3SRiku Voipio{ 1303ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 1304ebc996f3SRiku Voipio futimens(0, NULL); 1305ebc996f3SRiku Voipio return 0; 1306ebc996f3SRiku Voipio} 1307ebc996f3SRiku VoipioEOF 1308ebc996f3SRiku Voipioif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then 1309ebc996f3SRiku Voipio utimens=yes 1310ebc996f3SRiku Voipiofi 1311ebc996f3SRiku Voipio 1312099d6b0fSRiku Voipio# check if pipe2 is there 1313099d6b0fSRiku Voipiopipe2=no 1314099d6b0fSRiku Voipiocat > $TMPC << EOF 1315099d6b0fSRiku Voipio#define _GNU_SOURCE 1316099d6b0fSRiku Voipio#include <unistd.h> 1317099d6b0fSRiku Voipio#include <fcntl.h> 1318099d6b0fSRiku Voipio 1319099d6b0fSRiku Voipioint main(void) 1320099d6b0fSRiku Voipio{ 1321099d6b0fSRiku Voipio int pipefd[2]; 1322099d6b0fSRiku Voipio pipe2(pipefd, O_CLOEXEC); 1323099d6b0fSRiku Voipio return 0; 1324099d6b0fSRiku Voipio} 1325099d6b0fSRiku VoipioEOF 1326099d6b0fSRiku Voipioif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then 1327099d6b0fSRiku Voipio pipe2=yes 1328099d6b0fSRiku Voipiofi 1329099d6b0fSRiku Voipio 13303ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 13313ce34dfbSvibisreenivasansplice=no 13323ce34dfbSvibisreenivasancat > $TMPC << EOF 13333ce34dfbSvibisreenivasan#define _GNU_SOURCE 13343ce34dfbSvibisreenivasan#include <unistd.h> 13353ce34dfbSvibisreenivasan#include <fcntl.h> 13363ce34dfbSvibisreenivasan#include <limits.h> 13373ce34dfbSvibisreenivasan 13383ce34dfbSvibisreenivasanint main(void) 13393ce34dfbSvibisreenivasan{ 13403ce34dfbSvibisreenivasan int len, fd; 13413ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 13423ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 13433ce34dfbSvibisreenivasan return 0; 13443ce34dfbSvibisreenivasan} 13453ce34dfbSvibisreenivasanEOF 13463ce34dfbSvibisreenivasanif $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then 13473ce34dfbSvibisreenivasan splice=yes 13483ce34dfbSvibisreenivasanfi 13493ce34dfbSvibisreenivasan 1350cc8ae6deSpbrook# Check if tools are available to build documentation. 135170ec5dc0SAnthony Liguoriif test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then 135270ec5dc0SAnthony Liguori build_docs="no" 1353cc8ae6deSpbrookfi 1354cc8ae6deSpbrook 1355da93a1fdSaliguori########################################## 1356da93a1fdSaliguori# Do we need librt 1357e5d355d1SaliguoriCLOCKLIBS="" 1358da93a1fdSaliguoricat > $TMPC <<EOF 1359da93a1fdSaliguori#include <signal.h> 1360da93a1fdSaliguori#include <time.h> 1361da93a1fdSaliguoriint main(void) { clockid_t id; return clock_gettime(id, NULL); } 1362da93a1fdSaliguoriEOF 1363da93a1fdSaliguori 1364da93a1fdSaliguorirt=no 13658c7f7574Sbalrogif $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then 1366da93a1fdSaliguori : 13678c7f7574Sbalrogelif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then 1368da93a1fdSaliguori rt=yes 1369da93a1fdSaliguorifi 1370da93a1fdSaliguori 1371da93a1fdSaliguoriif test "$rt" = "yes" ; then 1372e5d355d1Saliguori CLOCKLIBS="-lrt" 1373da93a1fdSaliguorifi 1374da93a1fdSaliguori 137511d9f695Sbellardif test "$mingw32" = "yes" ; then 137611d9f695Sbellard if test -z "$prefix" ; then 137717e90973Saliguori prefix="c:\\\\Program Files\\\\Qemu" 137811d9f695Sbellard fi 1379308c3593Spbrook mansuffix="" 1380308c3593Spbrook datasuffix="" 1381308c3593Spbrook docsuffix="" 1382308c3593Spbrook binsuffix="" 138311d9f695Sbellardelse 138411d9f695Sbellard if test -z "$prefix" ; then 138511d9f695Sbellard prefix="/usr/local" 138611d9f695Sbellard fi 1387308c3593Spbrook mansuffix="/share/man" 1388308c3593Spbrook datasuffix="/share/qemu" 1389308c3593Spbrook docsuffix="/share/doc/qemu" 1390308c3593Spbrook binsuffix="/bin" 139111d9f695Sbellardfi 13925a67135aSbellard 13937d13299dSbellardecho "Install prefix $prefix" 1394308c3593Spbrookecho "BIOS directory $prefix$datasuffix" 1395308c3593Spbrookecho "binary directory $prefix$binsuffix" 139611d9f695Sbellardif test "$mingw32" = "no" ; then 1397308c3593Spbrookecho "Manual directory $prefix$mansuffix" 139843ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 139911d9f695Sbellardfi 14005a67135aSbellardecho "Source path $source_path" 14017d13299dSbellardecho "C compiler $cc" 140283469015Sbellardecho "Host C compiler $host_cc" 1403db7287edSpbrookecho "ARCH_CFLAGS $ARCH_CFLAGS" 14047d13299dSbellardecho "make $make" 14056a882643Spbrookecho "install $install" 1406a98fd896Sbellardecho "host CPU $cpu" 1407de83cd02Sbellardecho "host big endian $bigendian" 140897a847bcSbellardecho "target list $target_list" 1409ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 14107d13299dSbellardecho "gprof enabled $gprof" 141103b4fe7dSaliguoriecho "sparse enabled $sparse" 14121625af87Saliguoriecho "strip binaries $strip_opt" 141305c2a3e7Sbellardecho "profiler $profiler" 141443ce4dfeSbellardecho "static build $static" 141585aa5189Sbellardecho "-Werror enabled $werror" 14165b0753e0Sbellardif test "$darwin" = "yes" ; then 14175b0753e0Sbellard echo "Cocoa support $cocoa" 14185b0753e0Sbellardfi 141997a847bcSbellardecho "SDL support $sdl" 1420e4afee97Sbellardif test "$sdl" != "no" ; then 14217c1f25b4Sbellard echo "SDL static link $sdl_static" 1422e4afee97Sbellardfi 14234d3b6f6eSbalrogecho "curses support $curses" 1424769ce76dSAlexander Grafecho "curl support $curl" 142567b915a5Sbellardecho "mingw32 support $mingw32" 14260c58ac1cSmalcecho "Audio drivers $audio_drv_list" 14270c58ac1cSmalcecho "Extra audio cards $audio_card_list" 14288ff9cbf7Smalcecho "Mixer emulation $mixemu" 14298d5d2d4cSthsecho "VNC TLS support $vnc_tls" 14308d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 14318d5d2d4cSths echo " TLS CFLAGS $vnc_tls_cflags" 14328d5d2d4cSths echo " TLS LIBS $vnc_tls_libs" 14338d5d2d4cSthsfi 14342f9606b3Saliguoriecho "VNC SASL support $vnc_sasl" 14352f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 14362f9606b3Saliguori echo " SASL CFLAGS $vnc_sasl_cflags" 14372f9606b3Saliguori echo " SASL LIBS $vnc_sasl_libs" 14382f9606b3Saliguorifi 14393142255cSblueswir1if test -n "$sparc_cpu"; then 14403142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 14413142255cSblueswir1fi 144207f4ddbfSbellardecho "kqemu support $kqemu" 1443e37630caSaliguoriecho "xen support $xen" 14442e4d9fb1Saurel32echo "brlapi support $brlapi" 1445cc8ae6deSpbrookecho "Documentation $build_docs" 1446c5937220Spbrook[ ! -z "$uname_release" ] && \ 1447c5937220Spbrookecho "uname -r $uname_release" 1448bd0c5661Spbrookecho "NPTL support $nptl" 14498a16d273Sthsecho "vde support $vde" 1450414f0dabSblueswir1echo "AIO support $aio" 1451e5d355d1Saliguoriecho "IO thread $io_thread" 145277755340Sthsecho "Install blobs $blobs" 1453168ccc11SJan Kiszkaecho -e "KVM support $kvm" 1454f652e6afSaurel32echo "fdt support $fdt" 1455ceb42de8Saliguoriecho "preadv support $preadv" 145667b915a5Sbellard 145797a847bcSbellardif test $sdl_too_old = "yes"; then 145824b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 1459e8cd23deSbellardfi 146024b55b96Sbellard#if test "$sdl_static" = "no"; then 146124b55b96Sbellard# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output" 146224b55b96Sbellard#fi 146397a847bcSbellardconfig_mak="config-host.mak" 146497a847bcSbellardconfig_h="config-host.h" 146597a847bcSbellard 14667c1f25b4Sbellard#echo "Creating $config_mak and $config_h" 146797a847bcSbellard 146815d9ca0fSthstest -f $config_h && mv $config_h ${config_h}~ 146915d9ca0fSths 147097a847bcSbellardecho "# Automatically generated by configure - do not modify" > $config_mak 1471fc9902d9Smalcprintf "# Configured with:" >> $config_mak 1472fd69fe2bSmalcprintf " '%s'" "$0" "$@" >> $config_mak 1473fd69fe2bSmalcecho >> $config_mak 147497a847bcSbellardecho "/* Automatically generated by configure - do not modify */" > $config_h 147597a847bcSbellard 147697a847bcSbellardecho "prefix=$prefix" >> $config_mak 1477308c3593Spbrookecho "bindir=\${prefix}$binsuffix" >> $config_mak 1478308c3593Spbrookecho "mandir=\${prefix}$mansuffix" >> $config_mak 1479308c3593Spbrookecho "datadir=\${prefix}$datasuffix" >> $config_mak 14804ad5b06dSthsecho "docdir=\${prefix}$docsuffix" >> $config_mak 1481308c3593Spbrookecho "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h 148297a847bcSbellardecho "MAKE=$make" >> $config_mak 14836a882643Spbrookecho "INSTALL=$install" >> $config_mak 148458f8aeadSaliguoriecho "INSTALL_DIR=$install -d -m0755 -p" >> $config_mak 148558f8aeadSaliguoriecho "INSTALL_DATA=$install -m0644 -p" >> $config_mak 148658f8aeadSaliguoriecho "INSTALL_PROG=$install -m0755 -p" >> $config_mak 148797a847bcSbellardecho "CC=$cc" >> $config_mak 148897a847bcSbellardecho "HOST_CC=$host_cc" >> $config_mak 148997a847bcSbellardecho "AR=$ar" >> $config_mak 1490*7aa486feSAnthony Liguoriecho "OBJCOPY=$objcopy" >> $config_mak 1491*7aa486feSAnthony Liguoriecho "LD=$ld" >> $config_mak 149240293e58Sbellard# XXX: only use CFLAGS and LDFLAGS ? 149340293e58Sbellard# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross 149440293e58Sbellard# compilation of dyngen tool (useful for win32 build on Linux host) 14956f30fa85Sthsecho "OS_CFLAGS=$OS_CFLAGS" >> $config_mak 14963142255cSblueswir1echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak 14973142255cSblueswir1echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak 14983142255cSblueswir1echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak 1499e3fc14c3SJan Kiszkaecho "CFLAGS=$CFLAGS $EXTRA_CFLAGS" >> $config_mak 1500e3fc14c3SJan Kiszkaecho "LDFLAGS=$LDFLAGS $EXTRA_LDFLAGS" >> $config_mak 150167b915a5Sbellardecho "EXESUF=$EXESUF" >> $config_mak 1502e5d355d1Saliguoriecho "PTHREADLIBS=$PTHREADLIBS" >> $config_mak 1503e5d355d1Saliguoriecho "CLOCKLIBS=$CLOCKLIBS" >> $config_mak 15042408a527Saurel32case "$cpu" in 15052408a527Saurel32 i386) 150697a847bcSbellard echo "ARCH=i386" >> $config_mak 150797a847bcSbellard echo "#define HOST_I386 1" >> $config_h 15082408a527Saurel32 ;; 15092408a527Saurel32 x86_64) 15100b0babc6Sbellard echo "ARCH=x86_64" >> $config_mak 15110b0babc6Sbellard echo "#define HOST_X86_64 1" >> $config_h 15122408a527Saurel32 ;; 15132408a527Saurel32 alpha) 15140938cda5Saurel32 echo "ARCH=alpha" >> $config_mak 15150938cda5Saurel32 echo "#define HOST_ALPHA 1" >> $config_h 15162408a527Saurel32 ;; 15172408a527Saurel32 armv4b) 1518808c4954Sbellard echo "ARCH=arm" >> $config_mak 1519808c4954Sbellard echo "#define HOST_ARM 1" >> $config_h 15202408a527Saurel32 ;; 15212408a527Saurel32 armv4l) 152297a847bcSbellard echo "ARCH=arm" >> $config_mak 152397a847bcSbellard echo "#define HOST_ARM 1" >> $config_h 15242408a527Saurel32 ;; 15252408a527Saurel32 cris) 1526e7daa605Sths echo "ARCH=cris" >> $config_mak 1527e7daa605Sths echo "#define HOST_CRIS 1" >> $config_h 15282408a527Saurel32 ;; 15292408a527Saurel32 hppa) 1530f54b3f92Saurel32 echo "ARCH=hppa" >> $config_mak 1531f54b3f92Saurel32 echo "#define HOST_HPPA 1" >> $config_h 15322408a527Saurel32 ;; 15332408a527Saurel32 ia64) 153497a847bcSbellard echo "ARCH=ia64" >> $config_mak 153597a847bcSbellard echo "#define HOST_IA64 1" >> $config_h 15362408a527Saurel32 ;; 15372408a527Saurel32 m68k) 153838ca2abcSbellard echo "ARCH=m68k" >> $config_mak 153938ca2abcSbellard echo "#define HOST_M68K 1" >> $config_h 15402408a527Saurel32 ;; 154172b675caSEdgar E. Iglesias microblaze) 154272b675caSEdgar E. Iglesias echo "ARCH=microblaze" >> $config_mak 154372b675caSEdgar E. Iglesias echo "#define HOST_MICROBLAZE 1" >> $config_h 154472b675caSEdgar E. Iglesias ;; 15452408a527Saurel32 mips) 15460938cda5Saurel32 echo "ARCH=mips" >> $config_mak 15470938cda5Saurel32 echo "#define HOST_MIPS 1" >> $config_h 15482408a527Saurel32 ;; 15492408a527Saurel32 mips64) 15500938cda5Saurel32 echo "ARCH=mips64" >> $config_mak 15510938cda5Saurel32 echo "#define HOST_MIPS64 1" >> $config_h 15522408a527Saurel32 ;; 1553fdf7ed96Smalc ppc) 15540938cda5Saurel32 echo "ARCH=ppc" >> $config_mak 15550938cda5Saurel32 echo "#define HOST_PPC 1" >> $config_h 1556fdf7ed96Smalc ;; 1557fdf7ed96Smalc ppc64) 1558810260a8Smalc echo "ARCH=ppc64" >> $config_mak 1559810260a8Smalc echo "#define HOST_PPC64 1" >> $config_h 15602408a527Saurel32 ;; 15612408a527Saurel32 s390) 15620938cda5Saurel32 echo "ARCH=s390" >> $config_mak 15630938cda5Saurel32 echo "#define HOST_S390 1" >> $config_h 15642408a527Saurel32 ;; 15652408a527Saurel32 sparc) 15660938cda5Saurel32 echo "ARCH=sparc" >> $config_mak 15670938cda5Saurel32 echo "#define HOST_SPARC 1" >> $config_h 15682408a527Saurel32 ;; 15692408a527Saurel32 sparc64) 15700938cda5Saurel32 echo "ARCH=sparc64" >> $config_mak 15710938cda5Saurel32 echo "#define HOST_SPARC64 1" >> $config_h 15722408a527Saurel32 ;; 15732408a527Saurel32 *) 15743142255cSblueswir1 echo "Unsupported CPU = $cpu" 15757d13299dSbellard exit 1 15762408a527Saurel32 ;; 15772408a527Saurel32esac 1578f8393946Saurel32if test "$debug_tcg" = "yes" ; then 1579f8393946Saurel32 echo "#define DEBUG_TCG 1" >> $config_h 1580f8393946Saurel32fi 1581f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 1582f3d08ee6SPaul Brook echo "#define DEBUG_EXEC 1" >> $config_h 1583f3d08ee6SPaul Brookfi 158403b4fe7dSaliguoriif test "$sparse" = "yes" ; then 158503b4fe7dSaliguori echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_mak 158603b4fe7dSaliguori echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_mak 158703b4fe7dSaliguori echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak 158803b4fe7dSaliguorifi 15891625af87Saliguoriif test "$strip_opt" = "yes" ; then 15901625af87Saliguori echo "STRIP_OPT=-s" >> $config_mak 15911625af87Saliguorifi 15927d13299dSbellardif test "$bigendian" = "yes" ; then 159397a847bcSbellard echo "WORDS_BIGENDIAN=yes" >> $config_mak 159497a847bcSbellard echo "#define WORDS_BIGENDIAN 1" >> $config_h 159597a847bcSbellardfi 1596b6853697Sbellardecho "#define HOST_LONG_BITS $hostlongbits" >> $config_h 159767b915a5Sbellardif test "$mingw32" = "yes" ; then 1598e34af2ceSJuan Quintela echo "CONFIG_WIN32=y" >> $config_mak 159911d9f695Sbellard echo "#define CONFIG_WIN32 1" >> $config_h 1600210fa556Spbrookelse 1601210fa556Spbrook cat > $TMPC << EOF 1602210fa556Spbrook#include <byteswap.h> 1603210fa556Spbrookint main(void) { return bswap_32(0); } 1604210fa556SpbrookEOF 1605178baee6Saurel32 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then 160697a847bcSbellard echo "#define HAVE_BYTESWAP_H 1" >> $config_h 160767b915a5Sbellard fi 16081360677cSblueswir1 cat > $TMPC << EOF 16091360677cSblueswir1#include <sys/endian.h> 16101360677cSblueswir1#include <sys/types.h> 16111360677cSblueswir1#include <machine/bswap.h> 16121360677cSblueswir1int main(void) { return bswap32(0); } 16131360677cSblueswir1EOF 1614178baee6Saurel32 if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then 16151360677cSblueswir1 echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h 16161360677cSblueswir1 fi 1617210fa556Spbrookfi 1618128ab2ffSblueswir1 1619128ab2ffSblueswir1if [ "$openbsd" = "yes" ] ; then 1620128ab2ffSblueswir1 echo "#define ENOTSUP 4096" >> $config_h 1621128ab2ffSblueswir1fi 1622128ab2ffSblueswir1 162383fb7adfSbellardif test "$darwin" = "yes" ; then 1624e34af2ceSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_mak 162583fb7adfSbellard echo "#define CONFIG_DARWIN 1" >> $config_h 162683fb7adfSbellardfi 1627b29fe3edSmalc 1628b29fe3edSmalcif test "$aix" = "yes" ; then 1629e34af2ceSJuan Quintela echo "CONFIG_AIX=y" >> $config_mak 1630b29fe3edSmalc echo "#define CONFIG_AIX 1" >> $config_h 1631b29fe3edSmalcfi 1632b29fe3edSmalc 1633ec530c81Sbellardif test "$solaris" = "yes" ; then 1634e34af2ceSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_mak 163538cfa06cSbellard echo "#define HOST_SOLARIS $solarisrev" >> $config_h 16360475a5caSths if test "$needs_libsunmath" = "yes" ; then 16370475a5caSths echo "NEEDS_LIBSUNMATH=yes" >> $config_mak 16380475a5caSths echo "#define NEEDS_LIBSUNMATH 1" >> $config_h 16390475a5caSths fi 1640ec530c81Sbellardfi 16413142255cSblueswir1if test -n "$sparc_cpu"; then 1642e34af2ceSJuan Quintela echo "CONFIG__sparc_${sparc_cpu}__=y" >> $config_mak 16433142255cSblueswir1 echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h 16443142255cSblueswir1fi 164597a847bcSbellardif test "$gprof" = "yes" ; then 164697a847bcSbellard echo "TARGET_GPROF=yes" >> $config_mak 164797a847bcSbellard echo "#define HAVE_GPROF 1" >> $config_h 164897a847bcSbellardfi 164997a847bcSbellardif test "$static" = "yes" ; then 1650e34af2ceSJuan Quintela echo "CONFIG_STATIC=y" >> $config_mak 165150863472Sbellard echo "#define CONFIG_STATIC 1" >> $config_h 165297a847bcSbellardfi 165305c2a3e7Sbellardif test $profiler = "yes" ; then 165405c2a3e7Sbellard echo "#define CONFIG_PROFILER 1" >> $config_h 165505c2a3e7Sbellardfi 1656c20709aaSbellardif test "$slirp" = "yes" ; then 1657e34af2ceSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_mak 1658c20709aaSbellard echo "#define CONFIG_SLIRP 1" >> $config_h 1659c20709aaSbellardfi 16608a16d273Sthsif test "$vde" = "yes" ; then 1661e34af2ceSJuan Quintela echo "CONFIG_VDE=y" >> $config_mak 16628a16d273Sths echo "#define CONFIG_VDE 1" >> $config_h 16638a16d273Sths echo "VDE_LIBS=-lvdeplug" >> $config_mak 16648a16d273Sthsfi 16650c58ac1cSmalcfor card in $audio_card_list; do 1666f6e5889eSpbrook def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` 1667e34af2ceSJuan Quintela echo "$def=y" >> $config_mak 16680c58ac1cSmalc echo "#define $def 1" >> $config_h 16690c58ac1cSmalcdone 16700c58ac1cSmalcecho "#define AUDIO_DRIVERS \\" >> $config_h 16710c58ac1cSmalcfor drv in $audio_drv_list; do 16720c58ac1cSmalc echo " &${drv}_audio_driver, \\" >>$config_h 1673f6e5889eSpbrook def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` 1674e34af2ceSJuan Quintela echo "$def=y" >> $config_mak 1675923e4521Smalc if test "$drv" = "fmod"; then 16760c58ac1cSmalc echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak 16770c58ac1cSmalc echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak 16782f6a1ab0Sblueswir1 elif test "$drv" = "oss"; then 16792f6a1ab0Sblueswir1 echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak 1680fb065187Sbellard fi 16810c58ac1cSmalcdone 16820c58ac1cSmalcecho "" >>$config_h 16838ff9cbf7Smalcif test "$mixemu" = "yes" ; then 1684e34af2ceSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_mak 16858ff9cbf7Smalc echo "#define CONFIG_MIXEMU 1" >> $config_h 16868ff9cbf7Smalcfi 16878d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 1688e34af2ceSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_mak 16898d5d2d4cSths echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak 16908d5d2d4cSths echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak 16918d5d2d4cSths echo "#define CONFIG_VNC_TLS 1" >> $config_h 16928d5d2d4cSthsfi 16932f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 1694e34af2ceSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_mak 16952f9606b3Saliguori echo "CONFIG_VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_mak 16962f9606b3Saliguori echo "CONFIG_VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_mak 16972f9606b3Saliguori echo "#define CONFIG_VNC_SASL 1" >> $config_h 16982f9606b3Saliguorifi 169976655d6dSaliguoriif test "$fnmatch" = "yes" ; then 170076655d6dSaliguori echo "#define HAVE_FNMATCH_H 1" >> $config_h 170176655d6dSaliguorifi 1702b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 1703b1a550a0Spbrookecho "VERSION=$qemu_version" >>$config_mak 1704d4b8f039Spbrookecho "#define QEMU_VERSION \"$qemu_version\"" >> $config_h 170597a847bcSbellard 17064a19f1ecSpbrookecho "#define QEMU_PKGVERSION \"$pkgversion\"" >> $config_h 17074a19f1ecSpbrook 170897a847bcSbellardecho "SRC_PATH=$source_path" >> $config_mak 1709ad064840Spbrookif [ "$source_path_used" = "yes" ]; then 1710ad064840Spbrook echo "VPATH=$source_path" >> $config_mak 1711ad064840Spbrookfi 171297a847bcSbellardecho "TARGET_DIRS=$target_list" >> $config_mak 1713cc8ae6deSpbrookif [ "$build_docs" = "yes" ] ; then 1714cc8ae6deSpbrook echo "BUILD_DOCS=yes" >> $config_mak 1715cc8ae6deSpbrookfi 171649ecc3faSbellardif test "$static" = "yes"; then 171749ecc3faSbellard sdl1=$sdl_static 171849ecc3faSbellardelse 171949ecc3faSbellard sdl1=$sdl 172049ecc3faSbellardfi 172149ecc3faSbellardif test "$sdl1" = "yes" ; then 172249ecc3faSbellard echo "#define CONFIG_SDL 1" >> $config_h 1723e34af2ceSJuan Quintela echo "CONFIG_SDL=y" >> $config_mak 172449ecc3faSbellard if test "$target_softmmu" = "no" -o "$static" = "yes"; then 172549ecc3faSbellard echo "SDL_LIBS=$sdl_static_libs" >> $config_mak 17265368a422Saliguori elif test "$sdl_x11" = "yes" ; then 17275368a422Saliguori echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak 172849ecc3faSbellard else 172949ecc3faSbellard echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak 173049ecc3faSbellard fi 173149ecc3faSbellard if [ "${aa}" = "yes" ] ; then 173249ecc3faSbellard echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak 173349ecc3faSbellard else 173449ecc3faSbellard echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak 173549ecc3faSbellard fi 173649ecc3faSbellardfi 173749ecc3faSbellardif test "$cocoa" = "yes" ; then 173849ecc3faSbellard echo "#define CONFIG_COCOA 1" >> $config_h 1739e34af2ceSJuan Quintela echo "CONFIG_COCOA=y" >> $config_mak 174049ecc3faSbellardfi 17414d3b6f6eSbalrogif test "$curses" = "yes" ; then 17424d3b6f6eSbalrog echo "#define CONFIG_CURSES 1" >> $config_h 1743e34af2ceSJuan Quintela echo "CONFIG_CURSES=y" >> $config_mak 1744ab4e5602SJan Kiszka if test "$ncurses" = "yes" ; then 1745ab4e5602SJan Kiszka echo "CURSES_LIBS=-lncurses" >> $config_mak 1746ab4e5602SJan Kiszka else 17474d3b6f6eSbalrog echo "CURSES_LIBS=-lcurses" >> $config_mak 17484d3b6f6eSbalrog fi 1749ab4e5602SJan Kiszkafi 17503b3f24adSaurel32if test "$atfile" = "yes" ; then 17513b3f24adSaurel32 echo "#define CONFIG_ATFILE 1" >> $config_h 17523b3f24adSaurel32fi 1753ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 1754ebc996f3SRiku Voipio echo "#define CONFIG_UTIMENSAT 1" >> $config_h 1755ebc996f3SRiku Voipiofi 1756099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 1757099d6b0fSRiku Voipio echo "#define CONFIG_PIPE2 1" >> $config_h 1758099d6b0fSRiku Voipiofi 17593ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 17603ce34dfbSvibisreenivasan echo "#define CONFIG_SPLICE 1" >> $config_h 17613ce34dfbSvibisreenivasanfi 17623b3f24adSaurel32if test "$inotify" = "yes" ; then 17633b3f24adSaurel32 echo "#define CONFIG_INOTIFY 1" >> $config_h 17643b3f24adSaurel32fi 1765769ce76dSAlexander Grafif test "$curl" = "yes" ; then 1766e34af2ceSJuan Quintela echo "CONFIG_CURL=y" >> $config_mak 1767769ce76dSAlexander Graf echo "CURL_LIBS=$curl_libs" >> $config_mak 1768769ce76dSAlexander Graf echo "#define CONFIG_CURL 1" >> $config_h 1769769ce76dSAlexander Graffi 17702e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 1771e34af2ceSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_mak 17722e4d9fb1Saurel32 echo "#define CONFIG_BRLAPI 1" >> $config_h 17732e4d9fb1Saurel32 echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak 17742e4d9fb1Saurel32fi 1775fb599c9aSbalrogif test "$bluez" = "yes" ; then 1776e34af2ceSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_mak 1777fb599c9aSbalrog echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak 1778fb599c9aSbalrog echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak 1779fb599c9aSbalrog echo "#define CONFIG_BLUEZ 1" >> $config_h 1780fb599c9aSbalrogfi 1781e37630caSaliguoriif test "$xen" = "yes" ; then 17829306acb5Saliguori echo "XEN_LIBS=-lxenstore -lxenctrl -lxenguest" >> $config_mak 1783e37630caSaliguorifi 1784414f0dabSblueswir1if test "$aio" = "yes" ; then 1785414f0dabSblueswir1 echo "#define CONFIG_AIO 1" >> $config_h 1786e34af2ceSJuan Quintela echo "CONFIG_AIO=y" >> $config_mak 1787414f0dabSblueswir1fi 1788e5d355d1Saliguoriif test "$io_thread" = "yes" ; then 1789e34af2ceSJuan Quintela echo "CONFIG_IOTHREAD=y" >> $config_mak 1790e5d355d1Saliguori echo "#define CONFIG_IOTHREAD 1" >> $config_h 1791e5d355d1Saliguorifi 179277755340Sthsif test "$blobs" = "yes" ; then 179377755340Sths echo "INSTALL_BLOBS=yes" >> $config_mak 179477755340Sthsfi 1795bf9298b9Saliguoriif test "$iovec" = "yes" ; then 1796bf9298b9Saliguori echo "#define HAVE_IOVEC 1" >> $config_h 1797bf9298b9Saliguorifi 1798ceb42de8Saliguoriif test "$preadv" = "yes" ; then 1799ceb42de8Saliguori echo "#define HAVE_PREADV 1" >> $config_h 1800ceb42de8Saliguorifi 1801f652e6afSaurel32if test "$fdt" = "yes" ; then 1802f652e6afSaurel32 echo "#define HAVE_FDT 1" >> $config_h 1803f652e6afSaurel32 echo "FDT_LIBS=-lfdt" >> $config_mak 1804f652e6afSaurel32fi 180597a847bcSbellard 180683fb7adfSbellard# XXX: suppress that 18077d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 180843003046Sbellard echo "#define O_LARGEFILE 0" >> $config_h 180943003046Sbellard echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h 1810179a2c19Sblueswir1 echo "#define HOST_BSD 1" >> $config_h 18117d3505c5Sbellardfi 18127d3505c5Sbellard 1813c5937220Spbrookecho "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h 1814c5937220Spbrook 181568063649Sblueswir1# USB host support 181668063649Sblueswir1case "$usb" in 181768063649Sblueswir1linux) 181868063649Sblueswir1 echo "HOST_USB=linux" >> $config_mak 181968063649Sblueswir1;; 182068063649Sblueswir1bsd) 182168063649Sblueswir1 echo "HOST_USB=bsd" >> $config_mak 182268063649Sblueswir1;; 182368063649Sblueswir1*) 182468063649Sblueswir1 echo "HOST_USB=stub" >> $config_mak 182568063649Sblueswir1;; 182668063649Sblueswir1esac 182768063649Sblueswir1 18289abbdbfeSAnthony Liguori# Determine what linker flags to use to force archive inclusion 18299abbdbfeSAnthony Liguoricheck_linker_flags() 18309abbdbfeSAnthony Liguori{ 183108b9d66bSAnthony Liguori w2= 183208b9d66bSAnthony Liguori if test "$2" ; then 183308b9d66bSAnthony Liguori w2=-Wl,$2 183408b9d66bSAnthony Liguori fi 183508b9d66bSAnthony Liguori $cc $ARCH_CFLAGS -o $TMPE $OS_CFLAGS $TMPC -Wl,$1 ${w2} >/dev/null 2>/dev/null 18369abbdbfeSAnthony Liguori} 18379abbdbfeSAnthony Liguori 18389abbdbfeSAnthony Liguoricat > $TMPC << EOF 18399abbdbfeSAnthony Liguoriint main(void) { } 18409abbdbfeSAnthony LiguoriEOF 18419abbdbfeSAnthony Liguoriif check_linker_flags --whole-archive --no-whole-archive ; then 18429abbdbfeSAnthony Liguori # GNU ld 18439abbdbfeSAnthony Liguori echo "ARLIBS_BEGIN=-Wl,--whole-archive" >> $config_mak 18449abbdbfeSAnthony Liguori echo "ARLIBS_END=-Wl,--no-whole-archive" >> $config_mak 18459abbdbfeSAnthony Liguorielif check_linker_flags -z,allextract -z,defaultextract ; then 18469abbdbfeSAnthony Liguori # Solaris ld 18479abbdbfeSAnthony Liguori echo "ARLIBS_BEGIN=-Wl,-z,allextract" >> $config_mak 18489abbdbfeSAnthony Liguori echo "ARLIBS_END=-Wl,-z,defaultextract" >> $config_mak 184908b9d66bSAnthony Liguorielif check_linker_flags -all_load ; then 185008b9d66bSAnthony Liguori # Mac OS X 185108b9d66bSAnthony Liguori echo "ARLIBS_BEGIN=-all_load" >> $config_mak 185208b9d66bSAnthony Liguori echo "ARLIBS_END=" >> $config_mak 18539abbdbfeSAnthony Liguorielse 18549abbdbfeSAnthony Liguori echo "Error: your linker does not support --whole-archive or -z." 18559abbdbfeSAnthony Liguori echo "Please report to qemu-devel@nongnu.org" 18569abbdbfeSAnthony Liguori exit 1 18579abbdbfeSAnthony Liguorifi 18589abbdbfeSAnthony Liguori 18592567f579SBlue Swirlif test "$xen" = "yes" ; 18602567f579SBlue Swirl then 1861e34af2ceSJuan Quintela echo "CONFIG_XEN=y" >> $config_mak 18622567f579SBlue Swirlfi 18632567f579SBlue Swirl 1864c39e3338Spbrooktools= 1865c39e3338Spbrookif test `expr "$target_list" : ".*softmmu.*"` != 0 ; then 18663dd1f8efSaliguori tools="qemu-img\$(EXESUF) $tools" 18677a5ca864Sbellard if [ "$linux" = "yes" ] ; then 18683dd1f8efSaliguori tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" 18697a5ca864Sbellard fi 1870c39e3338Spbrookfi 1871c39e3338Spbrookecho "TOOLS=$tools" >> $config_mak 1872c39e3338Spbrook 1873253d0942SAlexander Grafroms= 1874253d0942SAlexander Grafif test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then 1875253d0942SAlexander Graf roms="pc-bios/optionrom" 1876253d0942SAlexander Graffi 1877253d0942SAlexander Grafecho "ROMS=$roms" >> $config_mak 1878253d0942SAlexander Graf 1879370ab986SPaul Brookif test -f ${config_h}~ ; then 1880370ab986SPaul Brook if cmp -s $config_h ${config_h}~ ; then 1881370ab986SPaul Brook mv ${config_h}~ $config_h 1882370ab986SPaul Brook else 1883370ab986SPaul Brook rm ${config_h}~ 1884370ab986SPaul Brook fi 1885370ab986SPaul Brookfi 1886370ab986SPaul Brook 18871ad2134fSPaul Brookconfig_host_mak=${config_mak} 188815d9ca0fSths 188997a847bcSbellardfor target in $target_list; do 189097a847bcSbellardtarget_dir="$target" 189197a847bcSbellardconfig_mak=$target_dir/config.mak 189297a847bcSbellardconfig_h=$target_dir/config.h 1893600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 189497a847bcSbellardtarget_bigendian="no" 1895600309b6SBlue Swirl[ "$target_arch2" = "armeb" ] && target_bigendian=yes 1896600309b6SBlue Swirl[ "$target_arch2" = "m68k" ] && target_bigendian=yes 1897600309b6SBlue Swirl[ "$target_arch2" = "microblaze" ] && target_bigendian=yes 1898600309b6SBlue Swirl[ "$target_arch2" = "mips" ] && target_bigendian=yes 1899600309b6SBlue Swirl[ "$target_arch2" = "mipsn32" ] && target_bigendian=yes 1900600309b6SBlue Swirl[ "$target_arch2" = "mips64" ] && target_bigendian=yes 1901600309b6SBlue Swirl[ "$target_arch2" = "ppc" ] && target_bigendian=yes 1902600309b6SBlue Swirl[ "$target_arch2" = "ppcemb" ] && target_bigendian=yes 1903600309b6SBlue Swirl[ "$target_arch2" = "ppc64" ] && target_bigendian=yes 1904600309b6SBlue Swirl[ "$target_arch2" = "ppc64abi32" ] && target_bigendian=yes 1905600309b6SBlue Swirl[ "$target_arch2" = "sh4eb" ] && target_bigendian=yes 1906600309b6SBlue Swirl[ "$target_arch2" = "sparc" ] && target_bigendian=yes 1907600309b6SBlue Swirl[ "$target_arch2" = "sparc64" ] && target_bigendian=yes 1908600309b6SBlue Swirl[ "$target_arch2" = "sparc32plus" ] && target_bigendian=yes 190997a847bcSbellardtarget_softmmu="no" 1910997344f3Sbellardtarget_user_only="no" 1911831b7825Sthstarget_linux_user="no" 1912831b7825Sthstarget_darwin_user="no" 191384778508Sblueswir1target_bsd_user="no" 19149e407a85Spbrookcase "$target" in 1915600309b6SBlue Swirl ${target_arch2}-softmmu) 19169e407a85Spbrook target_softmmu="yes" 19179e407a85Spbrook ;; 1918600309b6SBlue Swirl ${target_arch2}-linux-user) 19199e407a85Spbrook target_user_only="yes" 19209e407a85Spbrook target_linux_user="yes" 19219e407a85Spbrook ;; 1922600309b6SBlue Swirl ${target_arch2}-darwin-user) 19239e407a85Spbrook target_user_only="yes" 1924831b7825Sths target_darwin_user="yes" 19259e407a85Spbrook ;; 1926600309b6SBlue Swirl ${target_arch2}-bsd-user) 192784778508Sblueswir1 target_user_only="yes" 192884778508Sblueswir1 target_bsd_user="yes" 192984778508Sblueswir1 ;; 19309e407a85Spbrook *) 19319e407a85Spbrook echo "ERROR: Target '$target' not recognised" 19329e407a85Spbrook exit 1 19339e407a85Spbrook ;; 19349e407a85Spbrookesac 1935831b7825Sths 19367c1f25b4Sbellard#echo "Creating $config_mak, $config_h and $target_dir/Makefile" 193797a847bcSbellard 193815d9ca0fSthstest -f $config_h && mv $config_h ${config_h}~ 193915d9ca0fSths 194097a847bcSbellardmkdir -p $target_dir 1941158142c2Sbellardmkdir -p $target_dir/fpu 194257fec1feSbellardmkdir -p $target_dir/tcg 194384778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then 194469de927cSbellard mkdir -p $target_dir/nwfpe 194569de927cSbellardfi 194669de927cSbellard 1947ec530c81Sbellard# 1948ec530c81Sbellard# don't use ln -sf as not all "ln -sf" over write the file/link 1949ec530c81Sbellard# 1950ec530c81Sbellardrm -f $target_dir/Makefile 1951ec530c81Sbellardln -s $source_path/Makefile.target $target_dir/Makefile 1952ec530c81Sbellard 195397a847bcSbellard 195497a847bcSbellardecho "# Automatically generated by configure - do not modify" > $config_mak 195597a847bcSbellardecho "/* Automatically generated by configure - do not modify */" > $config_h 195697a847bcSbellard 195797a847bcSbellard 195897a847bcSbellardecho "include ../config-host.mak" >> $config_mak 195997a847bcSbellardecho "#include \"../config-host.h\"" >> $config_h 19601e43adfcSbellard 1961e5fe0c52Spbrookbflt="no" 1962cb33da57Sblueswir1elfload32="no" 1963bd0c5661Spbrooktarget_nptl="no" 1964600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 19651e43adfcSbellardecho "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h 196656aebc89Spbrookgdb_xml_files="" 19674ca1a9c6SBlue Swirltarget_kvm="$kvm" 196897a847bcSbellard 19695985eceeSaliguori# Make sure the target and host cpus are compatible 1970600309b6SBlue Swirlif test ! \( "$target_arch2" = "$cpu" -o \ 1971600309b6SBlue Swirl \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 1972600309b6SBlue Swirl \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 1973600309b6SBlue Swirl \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 19744ca1a9c6SBlue Swirl target_kvm="no" 19757ba1e619Saliguorifi 19767ba1e619Saliguori# Disable KVM for linux-user 19774ca1a9c6SBlue Swirlif test "$target_softmmu" = "no" ; then 19784ca1a9c6SBlue Swirl target_kvm="no" 19797ba1e619Saliguorifi 19807ba1e619Saliguori 1981600309b6SBlue Swirlcase "$target_arch2" in 19822408a527Saurel32 i386) 198397a847bcSbellard echo "TARGET_ARCH=i386" >> $config_mak 198497a847bcSbellard echo "#define TARGET_ARCH \"i386\"" >> $config_h 198597a847bcSbellard echo "#define TARGET_I386 1" >> $config_h 1986da260249Sbellard if test $kqemu = "yes" -a "$target_softmmu" = "yes" 19872408a527Saurel32 then 1988e34af2ceSJuan Quintela echo "CONFIG_KQEMU=y" >> $config_mak 1989640f42e4Sblueswir1 echo "#define CONFIG_KQEMU 1" >> $config_h 1990824d560fSbellard fi 19914ca1a9c6SBlue Swirl if test "$target_kvm" = "yes" ; then 1992e34af2ceSJuan Quintela echo "CONFIG_KVM=y" >> $config_mak 19937ba1e619Saliguori echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak 19945985eceeSaliguori echo "#define CONFIG_KVM 1" >> $config_h 19957ba1e619Saliguori fi 1996e37630caSaliguori if test "$xen" = "yes" -a "$target_softmmu" = "yes"; 1997e37630caSaliguori then 1998e34af2ceSJuan Quintela echo "CONFIG_XEN=y" >> $config_mak 1999e37630caSaliguori echo "#define CONFIG_XEN 1" >> $config_h 2000e37630caSaliguori fi 20011ad2134fSPaul Brook target_phys_bits=32 20022408a527Saurel32 ;; 20032408a527Saurel32 x86_64) 20040938cda5Saurel32 echo "TARGET_ARCH=x86_64" >> $config_mak 20050938cda5Saurel32 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h 20060938cda5Saurel32 echo "#define TARGET_I386 1" >> $config_h 20070938cda5Saurel32 echo "#define TARGET_X86_64 1" >> $config_h 20082408a527Saurel32 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" 20092408a527Saurel32 then 2010e34af2ceSJuan Quintela echo "CONFIG_KQEMU=y" >> $config_mak 2011640f42e4Sblueswir1 echo "#define CONFIG_KQEMU 1" >> $config_h 20120938cda5Saurel32 fi 20134ca1a9c6SBlue Swirl if test "$target_kvm" = "yes" ; then 2014e34af2ceSJuan Quintela echo "CONFIG_KVM=y" >> $config_mak 20157ba1e619Saliguori echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak 20167ba1e619Saliguori echo "#define CONFIG_KVM 1" >> $config_h 20177ba1e619Saliguori fi 2018e37630caSaliguori if test "$xen" = "yes" -a "$target_softmmu" = "yes" 2019e37630caSaliguori then 2020e34af2ceSJuan Quintela echo "CONFIG_XEN=y" >> $config_mak 2021e37630caSaliguori echo "#define CONFIG_XEN 1" >> $config_h 2022e37630caSaliguori fi 20231ad2134fSPaul Brook target_phys_bits=64 20242408a527Saurel32 ;; 20252408a527Saurel32 alpha) 20260938cda5Saurel32 echo "TARGET_ARCH=alpha" >> $config_mak 20270938cda5Saurel32 echo "#define TARGET_ARCH \"alpha\"" >> $config_h 20280938cda5Saurel32 echo "#define TARGET_ALPHA 1" >> $config_h 20291ad2134fSPaul Brook target_phys_bits=64 20302408a527Saurel32 ;; 20312408a527Saurel32 arm|armeb) 203297a847bcSbellard echo "TARGET_ARCH=arm" >> $config_mak 203397a847bcSbellard echo "#define TARGET_ARCH \"arm\"" >> $config_h 203497a847bcSbellard echo "#define TARGET_ARM 1" >> $config_h 2035e5fe0c52Spbrook bflt="yes" 2036bd0c5661Spbrook target_nptl="yes" 203756aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 20381ad2134fSPaul Brook target_phys_bits=32 20392408a527Saurel32 ;; 20402408a527Saurel32 cris) 20410938cda5Saurel32 echo "TARGET_ARCH=cris" >> $config_mak 20420938cda5Saurel32 echo "#define TARGET_ARCH \"cris\"" >> $config_h 20430938cda5Saurel32 echo "#define TARGET_CRIS 1" >> $config_h 2044253bd7f8Sedgar_igl target_nptl="yes" 20451ad2134fSPaul Brook target_phys_bits=32 20462408a527Saurel32 ;; 20472408a527Saurel32 m68k) 20480938cda5Saurel32 echo "TARGET_ARCH=m68k" >> $config_mak 20490938cda5Saurel32 echo "#define TARGET_ARCH \"m68k\"" >> $config_h 20500938cda5Saurel32 echo "#define TARGET_M68K 1" >> $config_h 20510938cda5Saurel32 bflt="yes" 205256aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 20531ad2134fSPaul Brook target_phys_bits=32 20542408a527Saurel32 ;; 205572b675caSEdgar E. Iglesias microblaze) 205672b675caSEdgar E. Iglesias echo "TARGET_ARCH=microblaze" >> $config_mak 205772b675caSEdgar E. Iglesias echo "#define TARGET_ARCH \"microblaze\"" >> $config_h 205872b675caSEdgar E. Iglesias echo "#define TARGET_MICROBLAZE 1" >> $config_h 205972b675caSEdgar E. Iglesias bflt="yes" 206072b675caSEdgar E. Iglesias target_nptl="yes" 206172b675caSEdgar E. Iglesias target_phys_bits=32 206272b675caSEdgar E. Iglesias ;; 20632408a527Saurel32 mips|mipsel) 20640938cda5Saurel32 echo "TARGET_ARCH=mips" >> $config_mak 20650938cda5Saurel32 echo "#define TARGET_ARCH \"mips\"" >> $config_h 20660938cda5Saurel32 echo "#define TARGET_MIPS 1" >> $config_h 20670938cda5Saurel32 echo "#define TARGET_ABI_MIPSO32 1" >> $config_h 2068f04dc72fSPaul Brook target_nptl="yes" 20691ad2134fSPaul Brook target_phys_bits=64 20702408a527Saurel32 ;; 20712408a527Saurel32 mipsn32|mipsn32el) 20720938cda5Saurel32 echo "TARGET_ARCH=mipsn32" >> $config_mak 20730938cda5Saurel32 echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h 20740938cda5Saurel32 echo "#define TARGET_MIPS 1" >> $config_h 20750938cda5Saurel32 echo "#define TARGET_ABI_MIPSN32 1" >> $config_h 20761ad2134fSPaul Brook target_phys_bits=64 20772408a527Saurel32 ;; 20782408a527Saurel32 mips64|mips64el) 20790938cda5Saurel32 echo "TARGET_ARCH=mips64" >> $config_mak 20800938cda5Saurel32 echo "#define TARGET_ARCH \"mips64\"" >> $config_h 20810938cda5Saurel32 echo "#define TARGET_MIPS 1" >> $config_h 20820938cda5Saurel32 echo "#define TARGET_MIPS64 1" >> $config_h 20830938cda5Saurel32 echo "#define TARGET_ABI_MIPSN64 1" >> $config_h 20841ad2134fSPaul Brook target_phys_bits=64 20852408a527Saurel32 ;; 20862408a527Saurel32 ppc) 208767867308Sbellard echo "TARGET_ARCH=ppc" >> $config_mak 208867867308Sbellard echo "#define TARGET_ARCH \"ppc\"" >> $config_h 208967867308Sbellard echo "#define TARGET_PPC 1" >> $config_h 2090c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 20911ad2134fSPaul Brook target_phys_bits=32 20922408a527Saurel32 ;; 20932408a527Saurel32 ppcemb) 2094d4082e95Sj_mayer echo "TARGET_ARCH=ppcemb" >> $config_mak 2095e85e7c6eSj_mayer echo "TARGET_ABI_DIR=ppc" >> $config_mak 2096d4082e95Sj_mayer echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h 2097d4082e95Sj_mayer echo "#define TARGET_PPC 1" >> $config_h 2098d4082e95Sj_mayer echo "#define TARGET_PPCEMB 1" >> $config_h 20994ca1a9c6SBlue Swirl if test "$target_kvm" = "yes" ; then 2100e34af2ceSJuan Quintela echo "CONFIG_KVM=y" >> $config_mak 2101d76d1650Saurel32 echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak 2102d76d1650Saurel32 echo "#define CONFIG_KVM 1" >> $config_h 2103d76d1650Saurel32 fi 2104c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 21051ad2134fSPaul Brook target_phys_bits=64 21062408a527Saurel32 ;; 21072408a527Saurel32 ppc64) 210822f8a8b3Sj_mayer echo "TARGET_ARCH=ppc64" >> $config_mak 2109f85e9a68Sj_mayer echo "TARGET_ABI_DIR=ppc" >> $config_mak 21105e692ecdSj_mayer echo "#define TARGET_ARCH \"ppc64\"" >> $config_h 211122f8a8b3Sj_mayer echo "#define TARGET_PPC 1" >> $config_h 211222f8a8b3Sj_mayer echo "#define TARGET_PPC64 1" >> $config_h 2113c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 21141ad2134fSPaul Brook target_phys_bits=64 21152408a527Saurel32 ;; 21162408a527Saurel32 ppc64abi32) 2117e85e7c6eSj_mayer echo "TARGET_ARCH=ppc64" >> $config_mak 2118e85e7c6eSj_mayer echo "TARGET_ABI_DIR=ppc" >> $config_mak 21190c64b9cdSbellard echo "TARGET_ARCH2=ppc64abi32" >> $config_mak 21205e692ecdSj_mayer echo "#define TARGET_ARCH \"ppc64\"" >> $config_h 2121e85e7c6eSj_mayer echo "#define TARGET_PPC 1" >> $config_h 2122e85e7c6eSj_mayer echo "#define TARGET_PPC64 1" >> $config_h 2123e85e7c6eSj_mayer echo "#define TARGET_ABI32 1" >> $config_h 2124c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 21251ad2134fSPaul Brook target_phys_bits=64 21262408a527Saurel32 ;; 21272408a527Saurel32 sh4|sh4eb) 2128fdf9b3e8Sbellard echo "TARGET_ARCH=sh4" >> $config_mak 2129fdf9b3e8Sbellard echo "#define TARGET_ARCH \"sh4\"" >> $config_h 2130fdf9b3e8Sbellard echo "#define TARGET_SH4 1" >> $config_h 21314dbed897Spbrook bflt="yes" 21320b6d3ae0Saurel32 target_nptl="yes" 21331ad2134fSPaul Brook target_phys_bits=32 21342408a527Saurel32 ;; 21352408a527Saurel32 sparc) 21360938cda5Saurel32 echo "TARGET_ARCH=sparc" >> $config_mak 21370938cda5Saurel32 echo "#define TARGET_ARCH \"sparc\"" >> $config_h 21380938cda5Saurel32 echo "#define TARGET_SPARC 1" >> $config_h 21391ad2134fSPaul Brook target_phys_bits=64 21402408a527Saurel32 ;; 21412408a527Saurel32 sparc64) 21420938cda5Saurel32 echo "TARGET_ARCH=sparc64" >> $config_mak 21430938cda5Saurel32 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h 21440938cda5Saurel32 echo "#define TARGET_SPARC 1" >> $config_h 21450938cda5Saurel32 echo "#define TARGET_SPARC64 1" >> $config_h 21460938cda5Saurel32 elfload32="yes" 21471ad2134fSPaul Brook target_phys_bits=64 21482408a527Saurel32 ;; 21492408a527Saurel32 sparc32plus) 21500938cda5Saurel32 echo "TARGET_ARCH=sparc64" >> $config_mak 21510938cda5Saurel32 echo "TARGET_ABI_DIR=sparc" >> $config_mak 21520938cda5Saurel32 echo "TARGET_ARCH2=sparc32plus" >> $config_mak 21530938cda5Saurel32 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h 21540938cda5Saurel32 echo "#define TARGET_SPARC 1" >> $config_h 21550938cda5Saurel32 echo "#define TARGET_SPARC64 1" >> $config_h 21560938cda5Saurel32 echo "#define TARGET_ABI32 1" >> $config_h 21571ad2134fSPaul Brook target_phys_bits=64 21582408a527Saurel32 ;; 21592408a527Saurel32 *) 2160de83cd02Sbellard echo "Unsupported target CPU" 2161de83cd02Sbellard exit 1 21622408a527Saurel32 ;; 21632408a527Saurel32esac 21641ad2134fSPaul Brookif [ $target_phys_bits -lt $hostlongbits ] ; then 21651ad2134fSPaul Brook target_phys_bits=$hostlongbits 21661ad2134fSPaul Brookfi 21671ad2134fSPaul Brookecho "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak 21681ad2134fSPaul Brookecho "#define TARGET_PHYS_ADDR_BITS $target_phys_bits" >> $config_h 21691ad2134fSPaul Brookecho "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak 2170de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 217197a847bcSbellard echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak 217297a847bcSbellard echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h 217397a847bcSbellardfi 217497a847bcSbellardif test "$target_softmmu" = "yes" ; then 2175e34af2ceSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_mak 217697a847bcSbellard echo "#define CONFIG_SOFTMMU 1" >> $config_h 2177de83cd02Sbellardfi 2178997344f3Sbellardif test "$target_user_only" = "yes" ; then 2179e34af2ceSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_mak 2180997344f3Sbellard echo "#define CONFIG_USER_ONLY 1" >> $config_h 2181997344f3Sbellardfi 2182831b7825Sthsif test "$target_linux_user" = "yes" ; then 2183e34af2ceSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_mak 2184831b7825Sths echo "#define CONFIG_LINUX_USER 1" >> $config_h 2185831b7825Sthsfi 2186831b7825Sthsif test "$target_darwin_user" = "yes" ; then 2187e34af2ceSJuan Quintela echo "CONFIG_DARWIN_USER=y" >> $config_mak 2188831b7825Sths echo "#define CONFIG_DARWIN_USER 1" >> $config_h 2189831b7825Sthsfi 219056aebc89Spbrooklist="" 219156aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 219256aebc89Spbrook for x in $gdb_xml_files; do 219356aebc89Spbrook list="$list $source_path/gdb-xml/$x" 219456aebc89Spbrook done 219556aebc89Spbrookfi 219656aebc89Spbrookecho "TARGET_XML_FILES=$list" >> $config_mak 2197de83cd02Sbellard 2198600309b6SBlue Swirlif test "$target_arch2" = "arm" \ 2199600309b6SBlue Swirl -o "$target_arch2" = "armeb" \ 2200600309b6SBlue Swirl -o "$target_arch2" = "m68k" \ 2201600309b6SBlue Swirl -o "$target_arch2" = "microblaze" \ 2202600309b6SBlue Swirl -o "$target_arch2" = "mips" \ 2203600309b6SBlue Swirl -o "$target_arch2" = "mipsel" \ 2204600309b6SBlue Swirl -o "$target_arch2" = "mipsn32" \ 2205600309b6SBlue Swirl -o "$target_arch2" = "mipsn32el" \ 2206600309b6SBlue Swirl -o "$target_arch2" = "mips64" \ 2207600309b6SBlue Swirl -o "$target_arch2" = "mips64el" \ 2208600309b6SBlue Swirl -o "$target_arch2" = "ppc" \ 2209600309b6SBlue Swirl -o "$target_arch2" = "ppc64" \ 2210600309b6SBlue Swirl -o "$target_arch2" = "ppc64abi32" \ 2211600309b6SBlue Swirl -o "$target_arch2" = "ppcemb" \ 2212600309b6SBlue Swirl -o "$target_arch2" = "sparc" \ 2213600309b6SBlue Swirl -o "$target_arch2" = "sparc64" \ 2214600309b6SBlue Swirl -o "$target_arch2" = "sparc32plus"; then 2215e34af2ceSJuan Quintela echo "CONFIG_SOFTFLOAT=y" >> $config_mak 2216158142c2Sbellard echo "#define CONFIG_SOFTFLOAT 1" >> $config_h 2217158142c2Sbellardfi 2218e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 2219e34af2ceSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_mak 2220e5fe0c52Spbrook echo "#define TARGET_HAS_BFLT 1" >> $config_h 2221e5fe0c52Spbrookfi 2222bd0c5661Spbrookif test "$target_user_only" = "yes" \ 2223bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 2224bd0c5661Spbrook echo "#define USE_NPTL 1" >> $config_h 2225bd0c5661Spbrookfi 2226cb33da57Sblueswir1# 32 bit ELF loader in addition to native 64 bit loader? 2227cb33da57Sblueswir1if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then 2228e34af2ceSJuan Quintela echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak 2229cb33da57Sblueswir1 echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h 2230cb33da57Sblueswir1fi 223184778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 2232e34af2ceSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_mak 223384778508Sblueswir1 echo "#define CONFIG_BSD_USER 1" >> $config_h 223484778508Sblueswir1fi 22355b0753e0Sbellard 223615d9ca0fSthstest -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h 223715d9ca0fSths 223897a847bcSbellarddone # for target in $targets 22397d13299dSbellard 22407d13299dSbellard# build tree in object directory if source path is different from current one 22417d13299dSbellardif test "$source_path_used" = "yes" ; then 2242253d0942SAlexander Graf DIRS="tests tests/cris slirp audio block pc-bios/optionrom" 22437d13299dSbellard FILES="Makefile tests/Makefile" 2244e7daa605Sths FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" 2245e1ffb0f1Sedgar_igl FILES="$FILES tests/test-mmap.c" 2246253d0942SAlexander Graf FILES="$FILES pc-bios/optionrom/Makefile" 22477d13299dSbellard for dir in $DIRS ; do 22487d13299dSbellard mkdir -p $dir 22497d13299dSbellard done 2250ec530c81Sbellard # remove the link and recreate it, as not all "ln -sf" overwrite the link 22517d13299dSbellard for f in $FILES ; do 2252ec530c81Sbellard rm -f $f 2253ec530c81Sbellard ln -s $source_path/$f $f 22547d13299dSbellard done 22557d13299dSbellardfi 22561ad2134fSPaul Brook 22571ad2134fSPaul Brookfor hwlib in 32 64; do 22581ad2134fSPaul Brook d=libhw$hwlib 22591ad2134fSPaul Brook mkdir -p $d 22601ad2134fSPaul Brook rm -f $d/Makefile 22611ad2134fSPaul Brook ln -s $source_path/Makefile.hw $d/Makefile 22621ad2134fSPaul Brook echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak 22631ad2134fSPaul Brook echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak 22641ad2134fSPaul Brookdone 2265