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" 16a91b857cSmalcTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe" 177d13299dSbellard 180ba8681eSLoïc Minier# NB: do not call "exit" in the trap handler; this is buggy with some shells; 190ba8681eSLoïc Minier# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org> 200ba8681eSLoïc Miniertrap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM 21da1d85e3SGerd Hoffmannrm -f config.log 229ac81bbbSmalc 2352166aa0SJuan Quintelacompile_object() { 24da1d85e3SGerd Hoffmann echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 25da1d85e3SGerd Hoffmann $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1 2652166aa0SJuan Quintela} 2752166aa0SJuan Quintela 2852166aa0SJuan Quintelacompile_prog() { 2952166aa0SJuan Quintela local_cflags="$1" 3052166aa0SJuan Quintela local_ldflags="$2" 31da1d85e3SGerd Hoffmann echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 32da1d85e3SGerd Hoffmann $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1 3352166aa0SJuan Quintela} 3452166aa0SJuan Quintela 3511568d6dSPaolo Bonzini# symbolically link $1 to $2. Portable version of "ln -sf". 3611568d6dSPaolo Bonzinisymlink() { 3711568d6dSPaolo Bonzini rm -f $2 3811568d6dSPaolo Bonzini ln -s $1 $2 3911568d6dSPaolo Bonzini} 4011568d6dSPaolo Bonzini 410dba6195SLoïc Minier# check whether a command is available to this shell (may be either an 420dba6195SLoïc Minier# executable or a builtin) 430dba6195SLoïc Minierhas() { 440dba6195SLoïc Minier type "$1" >/dev/null 2>&1 450dba6195SLoïc Minier} 460dba6195SLoïc Minier 470dba6195SLoïc Minier# search for an executable in PATH 480dba6195SLoïc Minierpath_of() { 490dba6195SLoïc Minier local_command="$1" 500dba6195SLoïc Minier local_ifs="$IFS" 510dba6195SLoïc Minier local_dir="" 520dba6195SLoïc Minier 530dba6195SLoïc Minier # pathname has a dir component? 540dba6195SLoïc Minier if [ "${local_command#*/}" != "$local_command" ]; then 550dba6195SLoïc Minier if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then 560dba6195SLoïc Minier echo "$local_command" 570dba6195SLoïc Minier return 0 580dba6195SLoïc Minier fi 590dba6195SLoïc Minier fi 600dba6195SLoïc Minier if [ -z "$local_command" ]; then 610dba6195SLoïc Minier return 1 620dba6195SLoïc Minier fi 630dba6195SLoïc Minier 640dba6195SLoïc Minier IFS=: 650dba6195SLoïc Minier for local_dir in $PATH; do 660dba6195SLoïc Minier if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then 670dba6195SLoïc Minier echo "$local_dir/$local_command" 680dba6195SLoïc Minier IFS="${local_ifs:-$(printf ' \t\n')}" 690dba6195SLoïc Minier return 0 700dba6195SLoïc Minier fi 710dba6195SLoïc Minier done 720dba6195SLoïc Minier # not found 730dba6195SLoïc Minier IFS="${local_ifs:-$(printf ' \t\n')}" 740dba6195SLoïc Minier return 1 750dba6195SLoïc Minier} 760dba6195SLoïc Minier 777d13299dSbellard# default parameters 78ca4deeb1SPaolo Bonzinisource_path=`dirname "$0"` 792ff6b91eSJuan Quintelacpu="" 801e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M" 8143ce4dfeSbellardstatic="no" 82ed968ff1SJuan Quintelasparc_cpu="" 837d13299dSbellardcross_prefix="" 840c58ac1cSmalcaudio_drv_list="" 85d61a4ce8SGerd Hoffmannaudio_card_list="ac97 es1370 sb16 hda" 86d61a4ce8SGerd Hoffmannaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda" 87eb852011SMarkus Armbrusterblock_drv_whitelist="" 887d13299dSbellardhost_cc="gcc" 89c81da56eSJuan Quintelahelper_cflags="" 9073da375eSJuan Quintelalibs_softmmu="" 913e2e0e6bSJuan Quintelalibs_tools="" 9267f86e8eSJuan Quintelaaudio_pt_int="" 93d5631638Smalcaudio_win_int="" 942b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc 95ac0df51dSaliguori 96377529c0SPaolo Bonzinitarget_list="" 97377529c0SPaolo Bonzini 98377529c0SPaolo Bonzini# Default value for a variable defining feature "foo". 99377529c0SPaolo Bonzini# * foo="no" feature will only be used if --enable-foo arg is given 100377529c0SPaolo Bonzini# * foo="" feature will be searched for, and if found, will be used 101377529c0SPaolo Bonzini# unless --disable-foo is given 102377529c0SPaolo Bonzini# * foo="yes" this value will only be set by --enable-foo flag. 103377529c0SPaolo Bonzini# feature will searched for, 104377529c0SPaolo Bonzini# if not found, configure exits with error 105377529c0SPaolo Bonzini# 106377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args. 107377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it 108377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found. 109377529c0SPaolo Bonzini 110377529c0SPaolo Bonzinibluez="" 111377529c0SPaolo Bonzinibrlapi="" 112377529c0SPaolo Bonzinicurl="" 113377529c0SPaolo Bonzinicurses="" 114377529c0SPaolo Bonzinidocs="" 115377529c0SPaolo Bonzinifdt="" 116af2be207SJan Kiszkakvm="" 117377529c0SPaolo Bonzininptl="" 118377529c0SPaolo Bonzinisdl="" 119821601eaSJes Sorensenvnc="yes" 120377529c0SPaolo Bonzinisparse="no" 121377529c0SPaolo Bonziniuuid="" 122377529c0SPaolo Bonzinivde="" 123377529c0SPaolo Bonzinivnc_tls="" 124377529c0SPaolo Bonzinivnc_sasl="" 125377529c0SPaolo Bonzinivnc_jpeg="" 126377529c0SPaolo Bonzinivnc_png="" 127377529c0SPaolo Bonzinivnc_thread="no" 128377529c0SPaolo Bonzinixen="" 129d5b93ddfSAnthony PERARDxen_ctrl_version="" 130377529c0SPaolo Bonzinilinux_aio="" 131377529c0SPaolo Bonziniattr="" 132af2be207SJan Kiszkavhost_net="" 133377529c0SPaolo Bonzinixfs="" 134377529c0SPaolo Bonzini 135377529c0SPaolo Bonzinigprof="no" 136377529c0SPaolo Bonzinidebug_tcg="no" 137377529c0SPaolo Bonzinidebug_mon="no" 138377529c0SPaolo Bonzinidebug="no" 139377529c0SPaolo Bonzinistrip_opt="yes" 140377529c0SPaolo Bonzinibigendian="no" 141377529c0SPaolo Bonzinimingw32="no" 142377529c0SPaolo BonziniEXESUF="" 143377529c0SPaolo Bonziniprefix="/usr/local" 144377529c0SPaolo Bonzinimandir="\${prefix}/share/man" 145377529c0SPaolo Bonzinidatadir="\${prefix}/share/qemu" 146377529c0SPaolo Bonzinidocdir="\${prefix}/share/doc/qemu" 147377529c0SPaolo Bonzinibindir="\${prefix}/bin" 1483aa5d2beSAlon Levylibdir="\${prefix}/lib" 149377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc" 150377529c0SPaolo Bonziniconfsuffix="/qemu" 151377529c0SPaolo Bonzinislirp="yes" 152377529c0SPaolo Bonzinifmod_lib="" 153377529c0SPaolo Bonzinifmod_inc="" 154377529c0SPaolo Bonzinioss_lib="" 155377529c0SPaolo Bonzinibsd="no" 156377529c0SPaolo Bonzinilinux="no" 157377529c0SPaolo Bonzinisolaris="no" 158377529c0SPaolo Bonziniprofiler="no" 159377529c0SPaolo Bonzinicocoa="no" 160377529c0SPaolo Bonzinisoftmmu="yes" 161377529c0SPaolo Bonzinilinux_user="no" 162377529c0SPaolo Bonzinidarwin_user="no" 163377529c0SPaolo Bonzinibsd_user="no" 164377529c0SPaolo Bonziniguest_base="" 165377529c0SPaolo Bonziniuname_release="" 166377529c0SPaolo Bonziniio_thread="no" 167377529c0SPaolo Bonzinimixemu="no" 168377529c0SPaolo Bonziniaix="no" 169377529c0SPaolo Bonziniblobs="yes" 170377529c0SPaolo Bonzinipkgversion="" 171377529c0SPaolo Bonzinicheck_utests="no" 172377529c0SPaolo Bonziniuser_pie="no" 173377529c0SPaolo Bonzinizero_malloc="" 174377529c0SPaolo Bonzinitrace_backend="nop" 175377529c0SPaolo Bonzinitrace_file="trace" 176377529c0SPaolo Bonzinispice="" 177377529c0SPaolo Bonzinirbd="" 17836707144SAlon Levysmartcard="" 179111a38b0SRobert Relyeasmartcard_nss="" 180*69354a83SHans de Goedeusb_redir="" 181430a3c18SMichael Walleopengl="" 182377529c0SPaolo Bonzini 183ac0df51dSaliguori# parse CC options first 184ac0df51dSaliguorifor opt do 185ac0df51dSaliguori optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 186ac0df51dSaliguori case "$opt" in 187ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 188ac0df51dSaliguori ;; 1893d8df640SPaolo Bonzini --cc=*) CC="$optarg" 190ac0df51dSaliguori ;; 191ca4deeb1SPaolo Bonzini --source-path=*) source_path="$optarg" 192ca4deeb1SPaolo Bonzini ;; 1932ff6b91eSJuan Quintela --cpu=*) cpu="$optarg" 1942ff6b91eSJuan Quintela ;; 195a558ee17SJuan Quintela --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" 196e2a2ed06SJuan Quintela ;; 197e2a2ed06SJuan Quintela --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" 198e2a2ed06SJuan Quintela ;; 19950e7b1a0SJuan Quintela --sparc_cpu=*) 20050e7b1a0SJuan Quintela sparc_cpu="$optarg" 20150e7b1a0SJuan Quintela case $sparc_cpu in 202ed968ff1SJuan Quintela v7|v8|v8plus|v8plusa) 20350e7b1a0SJuan Quintela cpu="sparc" 20450e7b1a0SJuan Quintela ;; 20550e7b1a0SJuan Quintela v9) 20650e7b1a0SJuan Quintela cpu="sparc64" 20750e7b1a0SJuan Quintela ;; 20850e7b1a0SJuan Quintela *) 20950e7b1a0SJuan Quintela echo "undefined SPARC architecture. Exiting"; 21050e7b1a0SJuan Quintela exit 1 21150e7b1a0SJuan Quintela ;; 21250e7b1a0SJuan Quintela esac 21350e7b1a0SJuan Quintela ;; 214ac0df51dSaliguori esac 215ac0df51dSaliguoridone 216ac0df51dSaliguori# OS specific 217ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 218ac0df51dSaliguori# we can eliminate it's usage altogether 219ac0df51dSaliguori 2203d8df640SPaolo Bonzinicc="${cross_prefix}${CC-gcc}" 2213d8df640SPaolo Bonziniar="${cross_prefix}${AR-ar}" 2223d8df640SPaolo Bonziniobjcopy="${cross_prefix}${OBJCOPY-objcopy}" 2233d8df640SPaolo Bonzinild="${cross_prefix}${LD-ld}" 2243d8df640SPaolo Bonzinistrip="${cross_prefix}${STRIP-strip}" 2253d8df640SPaolo Bonziniwindres="${cross_prefix}${WINDRES-windres}" 226a8bd70adSPaolo Bonzinipkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}" 2273ec87ffeSPaolo Bonzinisdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}" 228ac0df51dSaliguori 229be17dc90SMichael S. Tsirkin# default flags for all hosts 230be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" 231be17dc90SMichael S. TsirkinCFLAGS="-g $CFLAGS" 232f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS" 233be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS" 234be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS" 23584958305SKirill A. ShutemovQEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" 236f9728943SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH)" 237be17dc90SMichael S. TsirkinLDFLAGS="-g $LDFLAGS" 238be17dc90SMichael S. Tsirkin 239ca4deeb1SPaolo Bonzini# make source path absolute 240ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd` 241ca4deeb1SPaolo Bonzini 242ac0df51dSaliguoricheck_define() { 243ac0df51dSaliguoricat > $TMPC <<EOF 244ac0df51dSaliguori#if !defined($1) 245ac0df51dSaliguori#error Not defined 246ac0df51dSaliguori#endif 247ac0df51dSaliguoriint main(void) { return 0; } 248ac0df51dSaliguoriEOF 24952166aa0SJuan Quintela compile_object 250ac0df51dSaliguori} 251ac0df51dSaliguori 2522ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then 2532ff6b91eSJuan Quintela # command line argument 2542ff6b91eSJuan Quintela : 2552ff6b91eSJuan Quintelaelif check_define __i386__ ; then 256ac0df51dSaliguori cpu="i386" 257ac0df51dSaliguorielif check_define __x86_64__ ; then 258ac0df51dSaliguori cpu="x86_64" 2593aa9bd6cSblueswir1elif check_define __sparc__ ; then 2603aa9bd6cSblueswir1 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA 2613aa9bd6cSblueswir1 # They must be specified using --sparc_cpu 2623aa9bd6cSblueswir1 if check_define __arch64__ ; then 2633aa9bd6cSblueswir1 cpu="sparc64" 2643aa9bd6cSblueswir1 else 2653aa9bd6cSblueswir1 cpu="sparc" 2663aa9bd6cSblueswir1 fi 267fdf7ed96Smalcelif check_define _ARCH_PPC ; then 268fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 269fdf7ed96Smalc cpu="ppc64" 270ac0df51dSaliguori else 271fdf7ed96Smalc cpu="ppc" 272fdf7ed96Smalc fi 273afa05235SAurelien Jarnoelif check_define __mips__ ; then 274afa05235SAurelien Jarno cpu="mips" 275477ba620SAurelien Jarnoelif check_define __ia64__ ; then 276477ba620SAurelien Jarno cpu="ia64" 277d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then 278d66ed0eaSAurelien Jarno if check_define __s390x__ ; then 279d66ed0eaSAurelien Jarno cpu="s390x" 280d66ed0eaSAurelien Jarno else 281d66ed0eaSAurelien Jarno cpu="s390" 282d66ed0eaSAurelien Jarno fi 283fdf7ed96Smalcelse 284fdf7ed96Smalc cpu=`uname -m` 285ac0df51dSaliguorifi 286ac0df51dSaliguori 2877d13299dSbellardcase "$cpu" in 288d2fbca94SGuan Xuetao alpha|cris|ia64|lm32|m68k|microblaze|ppc|ppc64|sparc64|unicore32) 289ea8f20f8SJuan Quintela cpu="$cpu" 290ea8f20f8SJuan Quintela ;; 2917d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 29297a847bcSbellard cpu="i386" 2937d13299dSbellard ;; 294aaa5fa14Saurel32 x86_64|amd64) 295aaa5fa14Saurel32 cpu="x86_64" 296aaa5fa14Saurel32 ;; 297ba68055eSbellard armv*b) 298808c4954Sbellard cpu="armv4b" 299808c4954Sbellard ;; 300ba68055eSbellard armv*l) 3017d13299dSbellard cpu="armv4l" 3027d13299dSbellard ;; 303f54b3f92Saurel32 parisc|parisc64) 304f54b3f92Saurel32 cpu="hppa" 305f54b3f92Saurel32 ;; 306afa05235SAurelien Jarno mips*) 307afa05235SAurelien Jarno cpu="mips" 308afa05235SAurelien Jarno ;; 30924e804ecSAlexander Graf s390) 310fb3e5849Sbellard cpu="s390" 311fb3e5849Sbellard ;; 31224e804ecSAlexander Graf s390x) 31324e804ecSAlexander Graf cpu="s390x" 31424e804ecSAlexander Graf ;; 3153142255cSblueswir1 sparc|sun4[cdmuv]) 316ae228531Sbellard cpu="sparc" 317ae228531Sbellard ;; 3187d13299dSbellard *) 319a447d4dcSPaolo Bonzini echo "Unsupported CPU = $cpu" 320a447d4dcSPaolo Bonzini exit 1 3217d13299dSbellard ;; 3227d13299dSbellardesac 323e2d52ad3SJuan Quintela 3247d13299dSbellard# OS specific 325ac0df51dSaliguoriif check_define __linux__ ; then 326ac0df51dSaliguori targetos="Linux" 327ac0df51dSaliguorielif check_define _WIN32 ; then 328ac0df51dSaliguori targetos='MINGW32' 329169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then 330169dc5d3Sblueswir1 targetos='OpenBSD' 331169dc5d3Sblueswir1elif check_define __sun__ ; then 332169dc5d3Sblueswir1 targetos='SunOS' 333179cf400SAndreas Färberelif check_define __HAIKU__ ; then 334179cf400SAndreas Färber targetos='Haiku' 335ac0df51dSaliguorielse 3367d13299dSbellard targetos=`uname -s` 337ac0df51dSaliguorifi 3380dbfc675SJuan Quintela 3397d13299dSbellardcase $targetos in 340c326e0afSbellardCYGWIN*) 341c326e0afSbellard mingw32="yes" 342a558ee17SJuan Quintela QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS" 343d5631638Smalc audio_possible_drivers="winwave sdl" 344d5631638Smalc audio_drv_list="winwave" 345c326e0afSbellard;; 34667b915a5SbellardMINGW32*) 34767b915a5Sbellard mingw32="yes" 348d5631638Smalc audio_possible_drivers="winwave dsound sdl fmod" 349d5631638Smalc audio_drv_list="winwave" 35067b915a5Sbellard;; 3515c40d2bdSthsGNU/kFreeBSD) 352a167ba50SAurelien Jarno bsd="yes" 3530c58ac1cSmalc audio_drv_list="oss" 354f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 3555c40d2bdSths;; 3567d3505c5SbellardFreeBSD) 3577d3505c5Sbellard bsd="yes" 3580db4a067SPaolo Bonzini make="${MAKE-gmake}" 3590c58ac1cSmalc audio_drv_list="oss" 360f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 361f01576f1SJuergen Lock # needed for kinfo_getvmmap(3) in libutil.h 362f01576f1SJuergen Lock LIBS="-lutil $LIBS" 3637d3505c5Sbellard;; 364c5e97233Sblueswir1DragonFly) 365c5e97233Sblueswir1 bsd="yes" 3660db4a067SPaolo Bonzini make="${MAKE-gmake}" 367c5e97233Sblueswir1 audio_drv_list="oss" 368c5e97233Sblueswir1 audio_possible_drivers="oss sdl esd pa" 369c5e97233Sblueswir1;; 3707d3505c5SbellardNetBSD) 3717d3505c5Sbellard bsd="yes" 3720db4a067SPaolo Bonzini make="${MAKE-gmake}" 3730c58ac1cSmalc audio_drv_list="oss" 374c2de5c91Smalc audio_possible_drivers="oss sdl esd" 3758ef92a88Sblueswir1 oss_lib="-lossaudio" 3767d3505c5Sbellard;; 3777d3505c5SbellardOpenBSD) 3787d3505c5Sbellard bsd="yes" 3790db4a067SPaolo Bonzini make="${MAKE-gmake}" 3800c58ac1cSmalc audio_drv_list="oss" 381c2de5c91Smalc audio_possible_drivers="oss sdl esd" 3822f6a1ab0Sblueswir1 oss_lib="-lossaudio" 3837d3505c5Sbellard;; 38483fb7adfSbellardDarwin) 38583fb7adfSbellard bsd="yes" 38683fb7adfSbellard darwin="yes" 3870dbfc675SJuan Quintela # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can 3880dbfc675SJuan Quintela # run 64-bit userspace code 389aab8588aSmalc if [ "$cpu" = "i386" ] ; then 3901b0f9cc2Saliguori is_x86_64=`sysctl -n hw.optional.x86_64` 391aab8588aSmalc [ "$is_x86_64" = "1" ] && cpu=x86_64 3921b0f9cc2Saliguori fi 3931b0f9cc2Saliguori if [ "$cpu" = "x86_64" ] ; then 394a558ee17SJuan Quintela QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS" 3950c439cbfSJuan Quintela LDFLAGS="-arch x86_64 $LDFLAGS" 3961b0f9cc2Saliguori else 397a558ee17SJuan Quintela QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS" 3981b0f9cc2Saliguori fi 399831b7825Sths darwin_user="yes" 400fd677642Sths cocoa="yes" 4010c58ac1cSmalc audio_drv_list="coreaudio" 402c2de5c91Smalc audio_possible_drivers="coreaudio sdl fmod" 4030c439cbfSJuan Quintela LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" 4047973f21cSJuan Quintela libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu" 40583fb7adfSbellard;; 406ec530c81SbellardSunOS) 407ec530c81Sbellard solaris="yes" 4080db4a067SPaolo Bonzini make="${MAKE-gmake}" 4090db4a067SPaolo Bonzini install="${INSTALL-ginstall}" 410fa58948dSBlue Swirl ld="gld" 4110475a5caSths needs_libsunmath="no" 412c2b84fabSths solarisrev=`uname -r | cut -f2 -d.` 413ef18c883Sths # have to select again, because `uname -m` returns i86pc 414ef18c883Sths # even on an x86_64 box. 415ef18c883Sths solariscpu=`isainfo -k` 416ef18c883Sths if test "${solariscpu}" = "amd64" ; then 417ef18c883Sths cpu="x86_64" 418ef18c883Sths fi 419c2b84fabSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 4200475a5caSths if test "$solarisrev" -le 9 ; then 4210475a5caSths if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then 4220475a5caSths needs_libsunmath="yes" 423f14bfdf9SJuan Quintela QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS" 424f14bfdf9SJuan Quintela LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS" 425f14bfdf9SJuan Quintela LIBS="-lsunmath $LIBS" 4260475a5caSths else 4270475a5caSths echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" 4280475a5caSths echo "libsunmath from the Sun Studio compilers tools, due to a lack of" 4290475a5caSths echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" 4300475a5caSths echo "Studio 11 can be downloaded from www.sun.com." 4310475a5caSths exit 1 4320475a5caSths fi 4330475a5caSths fi 43486b2bd93Sths fi 4356b4d2ba1Sths if test -f /usr/include/sys/soundcard.h ; then 4360c58ac1cSmalc audio_drv_list="oss" 4376b4d2ba1Sths fi 438c2de5c91Smalc audio_possible_drivers="oss sdl" 439d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h 440d741429aSBlue Swirl QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS" 441d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h 442d741429aSBlue Swirl QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS" 443a558ee17SJuan Quintela QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS" 444e174c0bbSJuan Quintela LIBS="-lsocket -lnsl -lresolv $LIBS" 445ec530c81Sbellard;; 446b29fe3edSmalcAIX) 447b29fe3edSmalc aix="yes" 4480db4a067SPaolo Bonzini make="${MAKE-gmake}" 449b29fe3edSmalc;; 450179cf400SAndreas FärberHaiku) 451179cf400SAndreas Färber haiku="yes" 452179cf400SAndreas Färber QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS" 453179cf400SAndreas Färber LIBS="-lposix_error_mapper -lnetwork $LIBS" 454179cf400SAndreas Färber;; 455fb065187Sbellard*) 4560c58ac1cSmalc audio_drv_list="oss" 457b8e59f18Smalc audio_possible_drivers="oss alsa sdl esd pa" 4585327cf48Sbellard linux="yes" 459831b7825Sths linux_user="yes" 46068063649Sblueswir1 usb="linux" 461af2be207SJan Kiszka kvm="yes" 462af2be207SJan Kiszka vhost_net="yes" 46307f4ddbfSbellard if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 464c2de5c91Smalc audio_possible_drivers="$audio_possible_drivers fmod" 465c9ec1fe4Sbellard fi 466fb065187Sbellard;; 4677d13299dSbellardesac 4687d13299dSbellard 4697d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 470b1a550a0Spbrook if [ "$darwin" != "yes" ] ; then 47168063649Sblueswir1 usb="bsd" 47283fb7adfSbellard fi 47384778508Sblueswir1 bsd_user="yes" 4747d3505c5Sbellardfi 4757d3505c5Sbellard 4760db4a067SPaolo Bonzini: ${make=${MAKE-make}} 4770db4a067SPaolo Bonzini: ${install=${INSTALL-install}} 4780db4a067SPaolo Bonzini 4793457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then 4803457a3f8SJuan Quintela EXESUF=".exe" 481a558ee17SJuan Quintela QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS" 482e94a7936SStefan Weil # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) 483e94a7936SStefan Weil QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS" 48408f3896aSStefan Weil LIBS="-lwinmm -lws2_32 -liberty -liphlpapi $LIBS" 485683035deSPaolo Bonzini prefix="c:/Program Files/Qemu" 486683035deSPaolo Bonzini mandir="\${prefix}" 487683035deSPaolo Bonzini datadir="\${prefix}" 488683035deSPaolo Bonzini docdir="\${prefix}" 489683035deSPaolo Bonzini bindir="\${prefix}" 490683035deSPaolo Bonzini sysconfdir="\${prefix}" 491683035deSPaolo Bonzini confsuffix="" 4923457a3f8SJuan Quintelafi 4933457a3f8SJuan Quintela 494487fefdbSAnthony Liguoriwerror="" 49585aa5189Sbellard 4967d13299dSbellardfor opt do 497a46e4035Spbrook optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 4987d13299dSbellard case "$opt" in 4992efc3265Sbellard --help|-h) show_help=yes 5002efc3265Sbellard ;; 50199123e13SMike Frysinger --version|-V) exec cat $source_path/VERSION 50299123e13SMike Frysinger ;; 503b1a550a0Spbrook --prefix=*) prefix="$optarg" 5047d13299dSbellard ;; 505b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 50632ce6337Sbellard ;; 507ca4deeb1SPaolo Bonzini --source-path=*) 5087d13299dSbellard ;; 509ac0df51dSaliguori --cross-prefix=*) 5107d13299dSbellard ;; 511ac0df51dSaliguori --cc=*) 5127d13299dSbellard ;; 513b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 51483469015Sbellard ;; 515b1a550a0Spbrook --make=*) make="$optarg" 5167d13299dSbellard ;; 5176a882643Spbrook --install=*) install="$optarg" 5186a882643Spbrook ;; 519e2a2ed06SJuan Quintela --extra-cflags=*) 5207d13299dSbellard ;; 521e2a2ed06SJuan Quintela --extra-ldflags=*) 5227d13299dSbellard ;; 5232ff6b91eSJuan Quintela --cpu=*) 5247d13299dSbellard ;; 525b1a550a0Spbrook --target-list=*) target_list="$optarg" 526de83cd02Sbellard ;; 52774242e0fSPaolo Bonzini --enable-trace-backend=*) trace_backend="$optarg" 52894a420b1SStefan Hajnoczi ;; 52974242e0fSPaolo Bonzini --with-trace-file=*) trace_file="$optarg" 5309410b56cSPrerna Saxena ;; 5317d13299dSbellard --enable-gprof) gprof="yes" 5327d13299dSbellard ;; 53379427693SLoïc Minier --static) 53479427693SLoïc Minier static="yes" 53579427693SLoïc Minier LDFLAGS="-static $LDFLAGS" 53643ce4dfeSbellard ;; 5370b24e75fSPaolo Bonzini --mandir=*) mandir="$optarg" 5380b24e75fSPaolo Bonzini ;; 5390b24e75fSPaolo Bonzini --bindir=*) bindir="$optarg" 5400b24e75fSPaolo Bonzini ;; 5413aa5d2beSAlon Levy --libdir=*) libdir="$optarg" 5423aa5d2beSAlon Levy ;; 5430b24e75fSPaolo Bonzini --datadir=*) datadir="$optarg" 5440b24e75fSPaolo Bonzini ;; 5450b24e75fSPaolo Bonzini --docdir=*) docdir="$optarg" 5460b24e75fSPaolo Bonzini ;; 547ca2fb938SAndre Przywara --sysconfdir=*) sysconfdir="$optarg" 54807381cc1SAnthony Liguori ;; 54997a847bcSbellard --disable-sdl) sdl="no" 55097a847bcSbellard ;; 551c4198157SJuan Quintela --enable-sdl) sdl="yes" 552c4198157SJuan Quintela ;; 553821601eaSJes Sorensen --disable-vnc) vnc="no" 554821601eaSJes Sorensen ;; 555821601eaSJes Sorensen --enable-vnc) vnc="yes" 556821601eaSJes Sorensen ;; 557b1a550a0Spbrook --fmod-lib=*) fmod_lib="$optarg" 558102a52e4Sbellard ;; 559c2de5c91Smalc --fmod-inc=*) fmod_inc="$optarg" 560c2de5c91Smalc ;; 5612f6a1ab0Sblueswir1 --oss-lib=*) oss_lib="$optarg" 5622f6a1ab0Sblueswir1 ;; 5632fa7d3bfSmalc --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` 5640c58ac1cSmalc ;; 5650c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 5660c58ac1cSmalc ;; 567eb852011SMarkus Armbruster --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'` 568eb852011SMarkus Armbruster ;; 569f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 570f8393946Saurel32 ;; 571f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 572f8393946Saurel32 ;; 573b4475aa2SLuiz Capitulino --enable-debug-mon) debug_mon="yes" 574b4475aa2SLuiz Capitulino ;; 575b4475aa2SLuiz Capitulino --disable-debug-mon) debug_mon="no" 576b4475aa2SLuiz Capitulino ;; 577f3d08ee6SPaul Brook --enable-debug) 578f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 579f3d08ee6SPaul Brook debug_tcg="yes" 580b4475aa2SLuiz Capitulino debug_mon="yes" 581f3d08ee6SPaul Brook debug="yes" 582f3d08ee6SPaul Brook strip_opt="no" 583f3d08ee6SPaul Brook ;; 58403b4fe7dSaliguori --enable-sparse) sparse="yes" 58503b4fe7dSaliguori ;; 58603b4fe7dSaliguori --disable-sparse) sparse="no" 58703b4fe7dSaliguori ;; 5881625af87Saliguori --disable-strip) strip_opt="no" 5891625af87Saliguori ;; 5908d5d2d4cSths --disable-vnc-tls) vnc_tls="no" 5918d5d2d4cSths ;; 5921be10ad2SJuan Quintela --enable-vnc-tls) vnc_tls="yes" 5931be10ad2SJuan Quintela ;; 5942f9606b3Saliguori --disable-vnc-sasl) vnc_sasl="no" 5952f9606b3Saliguori ;; 596ea784e3bSJuan Quintela --enable-vnc-sasl) vnc_sasl="yes" 597ea784e3bSJuan Quintela ;; 5982f6f5c7aSCorentin Chary --disable-vnc-jpeg) vnc_jpeg="no" 5992f6f5c7aSCorentin Chary ;; 6002f6f5c7aSCorentin Chary --enable-vnc-jpeg) vnc_jpeg="yes" 6012f6f5c7aSCorentin Chary ;; 602efe556adSCorentin Chary --disable-vnc-png) vnc_png="no" 603efe556adSCorentin Chary ;; 604efe556adSCorentin Chary --enable-vnc-png) vnc_png="yes" 605efe556adSCorentin Chary ;; 606bd023f95SCorentin Chary --disable-vnc-thread) vnc_thread="no" 607bd023f95SCorentin Chary ;; 608bd023f95SCorentin Chary --enable-vnc-thread) vnc_thread="yes" 609bd023f95SCorentin Chary ;; 610443f1376Sbellard --disable-slirp) slirp="no" 611c20709aaSbellard ;; 612ee682d27SStefan Weil --disable-uuid) uuid="no" 613ee682d27SStefan Weil ;; 614ee682d27SStefan Weil --enable-uuid) uuid="yes" 615ee682d27SStefan Weil ;; 616e0e6c8c0Saliguori --disable-vde) vde="no" 6178a16d273Sths ;; 618dfb278bdSJuan Quintela --enable-vde) vde="yes" 619dfb278bdSJuan Quintela ;; 620e37630caSaliguori --disable-xen) xen="no" 621e37630caSaliguori ;; 622fc321b4bSJuan Quintela --enable-xen) xen="yes" 623fc321b4bSJuan Quintela ;; 6242e4d9fb1Saurel32 --disable-brlapi) brlapi="no" 6252e4d9fb1Saurel32 ;; 6264ffcedb6SJuan Quintela --enable-brlapi) brlapi="yes" 6274ffcedb6SJuan Quintela ;; 628fb599c9aSbalrog --disable-bluez) bluez="no" 629fb599c9aSbalrog ;; 630a20a6f46SJuan Quintela --enable-bluez) bluez="yes" 631a20a6f46SJuan Quintela ;; 6327ba1e619Saliguori --disable-kvm) kvm="no" 6337ba1e619Saliguori ;; 634b31a0277SJuan Quintela --enable-kvm) kvm="yes" 635b31a0277SJuan Quintela ;; 636cd4ec0b4SGerd Hoffmann --disable-spice) spice="no" 637cd4ec0b4SGerd Hoffmann ;; 638cd4ec0b4SGerd Hoffmann --enable-spice) spice="yes" 639cd4ec0b4SGerd Hoffmann ;; 64005c2a3e7Sbellard --enable-profiler) profiler="yes" 64105c2a3e7Sbellard ;; 642c2de5c91Smalc --enable-cocoa) 643c2de5c91Smalc cocoa="yes" ; 644c2de5c91Smalc sdl="no" ; 645c2de5c91Smalc audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" 6465b0753e0Sbellard ;; 647cad25d69Spbrook --disable-system) softmmu="no" 6480a8e90f4Spbrook ;; 649cad25d69Spbrook --enable-system) softmmu="yes" 6500a8e90f4Spbrook ;; 6510953a80fSZachary Amsden --disable-user) 6520953a80fSZachary Amsden linux_user="no" ; 6530953a80fSZachary Amsden bsd_user="no" ; 6540953a80fSZachary Amsden darwin_user="no" 6550953a80fSZachary Amsden ;; 6560953a80fSZachary Amsden --enable-user) ;; 657831b7825Sths --disable-linux-user) linux_user="no" 6580a8e90f4Spbrook ;; 659831b7825Sths --enable-linux-user) linux_user="yes" 660831b7825Sths ;; 661831b7825Sths --disable-darwin-user) darwin_user="no" 662831b7825Sths ;; 663831b7825Sths --enable-darwin-user) darwin_user="yes" 6640a8e90f4Spbrook ;; 66584778508Sblueswir1 --disable-bsd-user) bsd_user="no" 66684778508Sblueswir1 ;; 66784778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 66884778508Sblueswir1 ;; 669379f6698SPaul Brook --enable-guest-base) guest_base="yes" 670379f6698SPaul Brook ;; 671379f6698SPaul Brook --disable-guest-base) guest_base="no" 672379f6698SPaul Brook ;; 67334005a00SKirill A. Shutemov --enable-user-pie) user_pie="yes" 67434005a00SKirill A. Shutemov ;; 67534005a00SKirill A. Shutemov --disable-user-pie) user_pie="no" 67634005a00SKirill A. Shutemov ;; 677c5937220Spbrook --enable-uname-release=*) uname_release="$optarg" 678c5937220Spbrook ;; 6793142255cSblueswir1 --sparc_cpu=*) 6803142255cSblueswir1 ;; 68185aa5189Sbellard --enable-werror) werror="yes" 68285aa5189Sbellard ;; 68385aa5189Sbellard --disable-werror) werror="no" 68485aa5189Sbellard ;; 6854d3b6f6eSbalrog --disable-curses) curses="no" 6864d3b6f6eSbalrog ;; 687c584a6d0SJuan Quintela --enable-curses) curses="yes" 688c584a6d0SJuan Quintela ;; 689769ce76dSAlexander Graf --disable-curl) curl="no" 690769ce76dSAlexander Graf ;; 691788c8196SJuan Quintela --enable-curl) curl="yes" 692788c8196SJuan Quintela ;; 6932df87df7SJuan Quintela --disable-fdt) fdt="no" 6942df87df7SJuan Quintela ;; 6952df87df7SJuan Quintela --enable-fdt) fdt="yes" 6962df87df7SJuan Quintela ;; 6975495ed11SLuiz Capitulino --disable-check-utests) check_utests="no" 6985495ed11SLuiz Capitulino ;; 6995495ed11SLuiz Capitulino --enable-check-utests) check_utests="yes" 7005495ed11SLuiz Capitulino ;; 701bd0c5661Spbrook --disable-nptl) nptl="no" 702bd0c5661Spbrook ;; 703b0a47e79SJuan Quintela --enable-nptl) nptl="yes" 704b0a47e79SJuan Quintela ;; 7058ff9cbf7Smalc --enable-mixemu) mixemu="yes" 7068ff9cbf7Smalc ;; 7075c6c3a6cSChristoph Hellwig --disable-linux-aio) linux_aio="no" 7085c6c3a6cSChristoph Hellwig ;; 7095c6c3a6cSChristoph Hellwig --enable-linux-aio) linux_aio="yes" 7105c6c3a6cSChristoph Hellwig ;; 711758e8e38SVenkateswararao Jujjuri (JV) --disable-attr) attr="no" 712758e8e38SVenkateswararao Jujjuri (JV) ;; 713758e8e38SVenkateswararao Jujjuri (JV) --enable-attr) attr="yes" 714758e8e38SVenkateswararao Jujjuri (JV) ;; 715e5d355d1Saliguori --enable-io-thread) io_thread="yes" 716e5d355d1Saliguori ;; 71777755340Sths --disable-blobs) blobs="no" 71877755340Sths ;; 7194a19f1ecSpbrook --with-pkgversion=*) pkgversion=" ($optarg)" 7204a19f1ecSpbrook ;; 721a25dba17SJuan Quintela --disable-docs) docs="no" 72270ec5dc0SAnthony Liguori ;; 723a25dba17SJuan Quintela --enable-docs) docs="yes" 72483a3ab8bSJuan Quintela ;; 725d5970055SMichael S. Tsirkin --disable-vhost-net) vhost_net="no" 726d5970055SMichael S. Tsirkin ;; 727d5970055SMichael S. Tsirkin --enable-vhost-net) vhost_net="yes" 728d5970055SMichael S. Tsirkin ;; 72920ff075bSMichael Walle --disable-opengl) opengl="no" 73020ff075bSMichael Walle ;; 73120ff075bSMichael Walle --enable-opengl) opengl="yes" 73220ff075bSMichael Walle ;; 7336bde81cbSPaolo Bonzini --*dir) 7346bde81cbSPaolo Bonzini ;; 735f27aaf4bSChristian Brunner --disable-rbd) rbd="no" 736f27aaf4bSChristian Brunner ;; 737f27aaf4bSChristian Brunner --enable-rbd) rbd="yes" 738f27aaf4bSChristian Brunner ;; 73936707144SAlon Levy --disable-smartcard) smartcard="no" 74036707144SAlon Levy ;; 74136707144SAlon Levy --enable-smartcard) smartcard="yes" 74236707144SAlon Levy ;; 743111a38b0SRobert Relyea --disable-smartcard-nss) smartcard_nss="no" 744111a38b0SRobert Relyea ;; 745111a38b0SRobert Relyea --enable-smartcard-nss) smartcard_nss="yes" 746111a38b0SRobert Relyea ;; 747*69354a83SHans de Goede --disable-usb-redir) usb_redir="no" 748*69354a83SHans de Goede ;; 749*69354a83SHans de Goede --enable-usb-redir) usb_redir="yes" 750*69354a83SHans de Goede ;; 7517f1559c6Sbalrog *) echo "ERROR: unknown option $opt"; show_help="yes" 7527f1559c6Sbalrog ;; 7537d13299dSbellard esac 7547d13299dSbellarddone 7557d13299dSbellard 7563142255cSblueswir1# 7573142255cSblueswir1# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right 758a558ee17SJuan Quintela# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) 7593142255cSblueswir1# 760379f6698SPaul Brookhost_guest_base="no" 76140293e58Sbellardcase "$cpu" in 762ed968ff1SJuan Quintela sparc) case $sparc_cpu in 763ed968ff1SJuan Quintela v7|v8) 764a558ee17SJuan Quintela QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" 765ed968ff1SJuan Quintela ;; 766ed968ff1SJuan Quintela v8plus|v8plusa) 767a558ee17SJuan Quintela QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS" 768ed968ff1SJuan Quintela ;; 769ed968ff1SJuan Quintela *) # sparc_cpu not defined in the command line 770a558ee17SJuan Quintela QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS" 771ed968ff1SJuan Quintela esac 7720c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 773a558ee17SJuan Quintela QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS" 774762e8230Sblueswir1 if test "$solaris" = "no" ; then 775a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS" 776c81da56eSJuan Quintela helper_cflags="-ffixed-i0" 777762e8230Sblueswir1 fi 7783142255cSblueswir1 ;; 779ed968ff1SJuan Quintela sparc64) 780a558ee17SJuan Quintela QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS" 7810c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 782a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS" 783ed968ff1SJuan Quintela if test "$solaris" != "no" ; then 784a558ee17SJuan Quintela QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS" 785762e8230Sblueswir1 fi 7863142255cSblueswir1 ;; 78776d83bdeSths s390) 78828d7cc49SRichard Henderson QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS" 78928d7cc49SRichard Henderson LDFLAGS="-m31 $LDFLAGS" 79048bb3750SRichard Henderson host_guest_base="yes" 79128d7cc49SRichard Henderson ;; 79228d7cc49SRichard Henderson s390x) 79328d7cc49SRichard Henderson QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" 79428d7cc49SRichard Henderson LDFLAGS="-m64 $LDFLAGS" 79548bb3750SRichard Henderson host_guest_base="yes" 79676d83bdeSths ;; 79740293e58Sbellard i386) 798a558ee17SJuan Quintela QEMU_CFLAGS="-m32 $QEMU_CFLAGS" 7990c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 8002b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 801c81da56eSJuan Quintela helper_cflags="-fomit-frame-pointer" 802379f6698SPaul Brook host_guest_base="yes" 80340293e58Sbellard ;; 80440293e58Sbellard x86_64) 805a558ee17SJuan Quintela QEMU_CFLAGS="-m64 $QEMU_CFLAGS" 8060c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 8072b2e59e6SPaolo Bonzini cc_i386='$(CC) -m32' 808379f6698SPaul Brook host_guest_base="yes" 809379f6698SPaul Brook ;; 810379f6698SPaul Brook arm*) 811379f6698SPaul Brook host_guest_base="yes" 81240293e58Sbellard ;; 813f6548c0aSmalc ppc*) 814f6548c0aSmalc host_guest_base="yes" 815f6548c0aSmalc ;; 816cc01cc8eSAurelien Jarno mips*) 817cc01cc8eSAurelien Jarno host_guest_base="yes" 818cc01cc8eSAurelien Jarno ;; 819477ba620SAurelien Jarno ia64*) 820477ba620SAurelien Jarno host_guest_base="yes" 821477ba620SAurelien Jarno ;; 822fd76e73aSRichard Henderson hppa*) 823fd76e73aSRichard Henderson host_guest_base="yes" 824fd76e73aSRichard Henderson ;; 825d2fbca94SGuan Xuetao unicore32*) 826d2fbca94SGuan Xuetao host_guest_base="yes" 827d2fbca94SGuan Xuetao ;; 8283142255cSblueswir1esac 8293142255cSblueswir1 830379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base" 831379f6698SPaul Brook 83260e0df25SPeter Maydell 83360e0df25SPeter Maydelldefault_target_list="" 83460e0df25SPeter Maydell 83560e0df25SPeter Maydell# these targets are portable 83660e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then 83760e0df25SPeter Maydell default_target_list="\ 83860e0df25SPeter Maydelli386-softmmu \ 83960e0df25SPeter Maydellx86_64-softmmu \ 840b758aca1SRichard Hendersonalpha-softmmu \ 84160e0df25SPeter Maydellarm-softmmu \ 84260e0df25SPeter Maydellcris-softmmu \ 84360e0df25SPeter Maydelllm32-softmmu \ 84460e0df25SPeter Maydellm68k-softmmu \ 84560e0df25SPeter Maydellmicroblaze-softmmu \ 84660e0df25SPeter Maydellmicroblazeel-softmmu \ 84760e0df25SPeter Maydellmips-softmmu \ 84860e0df25SPeter Maydellmipsel-softmmu \ 84960e0df25SPeter Maydellmips64-softmmu \ 85060e0df25SPeter Maydellmips64el-softmmu \ 85160e0df25SPeter Maydellppc-softmmu \ 85260e0df25SPeter Maydellppcemb-softmmu \ 85360e0df25SPeter Maydellppc64-softmmu \ 85460e0df25SPeter Maydellsh4-softmmu \ 85560e0df25SPeter Maydellsh4eb-softmmu \ 85660e0df25SPeter Maydellsparc-softmmu \ 85760e0df25SPeter Maydellsparc64-softmmu \ 8580f3301d4SAlexander Grafs390x-softmmu \ 85960e0df25SPeter Maydell" 86060e0df25SPeter Maydellfi 86160e0df25SPeter Maydell# the following are Linux specific 86260e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then 86360e0df25SPeter Maydell default_target_list="${default_target_list}\ 86460e0df25SPeter Maydelli386-linux-user \ 86560e0df25SPeter Maydellx86_64-linux-user \ 86660e0df25SPeter Maydellalpha-linux-user \ 86760e0df25SPeter Maydellarm-linux-user \ 86860e0df25SPeter Maydellarmeb-linux-user \ 86960e0df25SPeter Maydellcris-linux-user \ 87060e0df25SPeter Maydellm68k-linux-user \ 87160e0df25SPeter Maydellmicroblaze-linux-user \ 87260e0df25SPeter Maydellmicroblazeel-linux-user \ 87360e0df25SPeter Maydellmips-linux-user \ 87460e0df25SPeter Maydellmipsel-linux-user \ 87560e0df25SPeter Maydellppc-linux-user \ 87660e0df25SPeter Maydellppc64-linux-user \ 87760e0df25SPeter Maydellppc64abi32-linux-user \ 87860e0df25SPeter Maydellsh4-linux-user \ 87960e0df25SPeter Maydellsh4eb-linux-user \ 88060e0df25SPeter Maydellsparc-linux-user \ 88160e0df25SPeter Maydellsparc64-linux-user \ 88260e0df25SPeter Maydellsparc32plus-linux-user \ 88360e0df25SPeter Maydellunicore32-linux-user \ 8840f3301d4SAlexander Grafs390x-linux-user \ 88560e0df25SPeter Maydell" 88660e0df25SPeter Maydellfi 88760e0df25SPeter Maydell# the following are Darwin specific 88860e0df25SPeter Maydellif [ "$darwin_user" = "yes" ] ; then 88960e0df25SPeter Maydell default_target_list="$default_target_list i386-darwin-user ppc-darwin-user " 89060e0df25SPeter Maydellfi 89160e0df25SPeter Maydell# the following are BSD specific 89260e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then 89360e0df25SPeter Maydell default_target_list="${default_target_list}\ 89460e0df25SPeter Maydelli386-bsd-user \ 89560e0df25SPeter Maydellx86_64-bsd-user \ 89660e0df25SPeter Maydellsparc-bsd-user \ 89760e0df25SPeter Maydellsparc64-bsd-user \ 89860e0df25SPeter Maydell" 89960e0df25SPeter Maydellfi 90060e0df25SPeter Maydell 901af5db58eSpbrookif test x"$show_help" = x"yes" ; then 902af5db58eSpbrookcat << EOF 903af5db58eSpbrook 904af5db58eSpbrookUsage: configure [options] 905af5db58eSpbrookOptions: [defaults in brackets after descriptions] 906af5db58eSpbrook 907af5db58eSpbrookEOF 908af5db58eSpbrookecho "Standard options:" 909af5db58eSpbrookecho " --help print this message" 910af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 911af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 912af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 91360e0df25SPeter Maydellecho " --target-list=LIST set target list (default: build everything)" 91460e0df25SPeter Maydellecho "Available targets: $default_target_list" | \ 91560e0df25SPeter Maydell fold -s -w 53 | sed -e 's/^/ /' 916af5db58eSpbrookecho "" 917af5db58eSpbrookecho "Advanced options (experts only):" 918af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 919af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 920af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 9210bfe8cc0SPaolo Bonziniecho " --host-cc=CC use C compiler CC [$host_cc] for code run at" 9220bfe8cc0SPaolo Bonziniecho " build time" 923a558ee17SJuan Quintelaecho " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" 924e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 925af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 9266a882643Spbrookecho " --install=INSTALL use specified install [$install]" 927af5db58eSpbrookecho " --static enable static build [$static]" 9280b24e75fSPaolo Bonziniecho " --mandir=PATH install man pages in PATH" 9290b24e75fSPaolo Bonziniecho " --datadir=PATH install firmware in PATH" 9300b24e75fSPaolo Bonziniecho " --docdir=PATH install documentation in PATH" 9310b24e75fSPaolo Bonziniecho " --bindir=PATH install binaries in PATH" 9320b24e75fSPaolo Bonziniecho " --sysconfdir=PATH install config in PATH/qemu" 933f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 934f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 93509695a4aSStefan Weilecho " --enable-debug enable common debug build options" 936890b1658Saliguoriecho " --enable-sparse enable sparse checker" 937890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 9381625af87Saliguoriecho " --disable-strip disable stripping binaries" 93985aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 940fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 941c4198157SJuan Quintelaecho " --enable-sdl enable SDL" 942821601eaSJes Sorensenecho " --disable-vnc disable VNC" 943821601eaSJes Sorensenecho " --enable-vnc enable VNC" 944af5db58eSpbrookecho " --enable-cocoa enable COCOA (Mac OS X only)" 945c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 946c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 9474c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 9484c9b53e3Smalcecho " Available cards: $audio_possible_cards" 949eb852011SMarkus Armbrusterecho " --block-drv-whitelist=L set block driver whitelist" 950eb852011SMarkus Armbrusterecho " (affects only QEMU, not qemu-img)" 9518ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 952e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 953fc321b4bSJuan Quintelaecho " --enable-xen enable xen backend driver support" 9542e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 9554ffcedb6SJuan Quintelaecho " --enable-brlapi enable BrlAPI" 9568d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 9571be10ad2SJuan Quintelaecho " --enable-vnc-tls enable TLS encryption for VNC server" 9582f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 959ea784e3bSJuan Quintelaecho " --enable-vnc-sasl enable SASL encryption for VNC server" 9602f6f5c7aSCorentin Charyecho " --disable-vnc-jpeg disable JPEG lossy compression for VNC server" 9612f6f5c7aSCorentin Charyecho " --enable-vnc-jpeg enable JPEG lossy compression for VNC server" 96296763cf9SCorentin Charyecho " --disable-vnc-png disable PNG compression for VNC server (default)" 963efe556adSCorentin Charyecho " --enable-vnc-png enable PNG compression for VNC server" 964bd023f95SCorentin Charyecho " --disable-vnc-thread disable threaded VNC server" 965bd023f95SCorentin Charyecho " --enable-vnc-thread enable threaded VNC server" 966af896aaaSpbrookecho " --disable-curses disable curses output" 967c584a6d0SJuan Quintelaecho " --enable-curses enable curses output" 968769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 969788c8196SJuan Quintelaecho " --enable-curl enable curl connectivity" 9702df87df7SJuan Quintelaecho " --disable-fdt disable fdt device tree" 9712df87df7SJuan Quintelaecho " --enable-fdt enable fdt device tree" 9725495ed11SLuiz Capitulinoecho " --disable-check-utests disable check unit-tests" 9735495ed11SLuiz Capitulinoecho " --enable-check-utests enable check unit-tests" 974fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 975a20a6f46SJuan Quintelaecho " --enable-bluez enable bluez stack connectivity" 9766093d3d4SPeter Maydellecho " --disable-slirp disable SLIRP userspace network connectivity" 9777ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 978b31a0277SJuan Quintelaecho " --enable-kvm enable KVM acceleration support" 979bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 980e5934d33SAndre Przywaraecho " --enable-nptl enable usermode NPTL support" 981af5db58eSpbrookecho " --enable-system enable all system emulation targets" 982af5db58eSpbrookecho " --disable-system disable all system emulation targets" 9830953a80fSZachary Amsdenecho " --enable-user enable supported user emulation targets" 9840953a80fSZachary Amsdenecho " --disable-user disable all user emulation targets" 985831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 986831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 987831b7825Sthsecho " --enable-darwin-user enable all darwin usermode emulation targets" 988831b7825Sthsecho " --disable-darwin-user disable all darwin usermode emulation targets" 98984778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 99084778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 991379f6698SPaul Brookecho " --enable-guest-base enable GUEST_BASE support for usermode" 992379f6698SPaul Brookecho " emulation targets" 993379f6698SPaul Brookecho " --disable-guest-base disable GUEST_BASE support" 99434005a00SKirill A. Shutemovecho " --enable-user-pie build usermode emulation targets as PIE" 99534005a00SKirill A. Shutemovecho " --disable-user-pie do not build usermode emulation targets as PIE" 996af5db58eSpbrookecho " --fmod-lib path to FMOD library" 997af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 9982f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 999c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 10003142255cSblueswir1echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" 1001ee682d27SStefan Weilecho " --disable-uuid disable uuid support" 1002ee682d27SStefan Weilecho " --enable-uuid enable uuid support" 1003e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 1004dfb278bdSJuan Quintelaecho " --enable-vde enable support for vde network" 10055c6c3a6cSChristoph Hellwigecho " --disable-linux-aio disable Linux AIO support" 10065c6c3a6cSChristoph Hellwigecho " --enable-linux-aio enable Linux AIO support" 1007758e8e38SVenkateswararao Jujjuri (JV)echo " --disable-attr disables attr and xattr support" 1008758e8e38SVenkateswararao Jujjuri (JV)echo " --enable-attr enable attr and xattr support" 1009e5d355d1Saliguoriecho " --enable-io-thread enable IO thread" 101077755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 1011d2807bc9SDirk Ullrichecho " --enable-docs enable documentation build" 1012d2807bc9SDirk Ullrichecho " --disable-docs disable documentation build" 1013d5970055SMichael S. Tsirkinecho " --disable-vhost-net disable vhost-net acceleration support" 1014d5970055SMichael S. Tsirkinecho " --enable-vhost-net enable vhost-net acceleration support" 1015320fba2aSFabien Chouteauecho " --enable-trace-backend=B Set trace backend" 1016320fba2aSFabien Chouteauecho " Available backends:" $("$source_path"/scripts/tracetool --list-backends) 101774242e0fSPaolo Bonziniecho " --with-trace-file=NAME Full PATH,NAME of file to store traces" 10189410b56cSPrerna Saxenaecho " Default:trace-<pid>" 1019cd4ec0b4SGerd Hoffmannecho " --disable-spice disable spice" 1020cd4ec0b4SGerd Hoffmannecho " --enable-spice enable spice" 1021f27aaf4bSChristian Brunnerecho " --enable-rbd enable building the rados block device (rbd)" 102236707144SAlon Levyecho " --disable-smartcard disable smartcard support" 102336707144SAlon Levyecho " --enable-smartcard enable smartcard support" 1024111a38b0SRobert Relyeaecho " --disable-smartcard-nss disable smartcard nss support" 1025111a38b0SRobert Relyeaecho " --enable-smartcard-nss enable smartcard nss support" 1026*69354a83SHans de Goedeecho " --disable-usb-redir disable usb network redirection support" 1027*69354a83SHans de Goedeecho " --enable-usb-redir enable usb network redirection support" 1028af5db58eSpbrookecho "" 10295bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 1030af5db58eSpbrookexit 1 1031af5db58eSpbrookfi 1032af5db58eSpbrook 10338d05095cSPaolo Bonzini# check that the C compiler works. 10348d05095cSPaolo Bonzinicat > $TMPC <<EOF 10358d05095cSPaolo Bonziniint main(void) {} 10368d05095cSPaolo BonziniEOF 10378d05095cSPaolo Bonzini 10388d05095cSPaolo Bonziniif compile_object ; then 10398d05095cSPaolo Bonzini : C compiler works ok 10408d05095cSPaolo Bonzinielse 10418d05095cSPaolo Bonzini echo "ERROR: \"$cc\" either does not exist or does not work" 10428d05095cSPaolo Bonzini exit 1 10438d05095cSPaolo Bonzinifi 10448d05095cSPaolo Bonzini 10458d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits" 10468d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags" 10478d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags" 1048f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags" 10498d05095cSPaolo Bonzinicat > $TMPC << EOF 10508d05095cSPaolo Bonziniint main(void) { return 0; } 10518d05095cSPaolo BonziniEOF 10528d05095cSPaolo Bonzinifor flag in $gcc_flags; do 10538d05095cSPaolo Bonzini if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then 10548d05095cSPaolo Bonzini QEMU_CFLAGS="$QEMU_CFLAGS $flag" 10558d05095cSPaolo Bonzini fi 10568d05095cSPaolo Bonzinidone 10578d05095cSPaolo Bonzini 1058ec530c81Sbellard# 1059ec530c81Sbellard# Solaris specific configure tool chain decisions 1060ec530c81Sbellard# 1061ec530c81Sbellardif test "$solaris" = "yes" ; then 10626792aa11SLoïc Minier if has $install; then 10636792aa11SLoïc Minier : 10646792aa11SLoïc Minier else 1065ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 1066ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 1067ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 1068ec530c81Sbellard exit 1 1069ec530c81Sbellard fi 10706792aa11SLoïc Minier if test "`path_of $install`" = "/usr/sbin/install" ; then 1071ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 1072ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 1073ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 1074ec530c81Sbellard exit 1 1075ec530c81Sbellard fi 10766792aa11SLoïc Minier if has ar; then 10776792aa11SLoïc Minier : 10786792aa11SLoïc Minier else 1079ec530c81Sbellard echo "Error: No path includes ar" 1080ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 1081ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 1082ec530c81Sbellard fi 1083ec530c81Sbellard exit 1 1084ec530c81Sbellard fi 1085ec530c81Sbellardfi 1086ec530c81Sbellard 10875327cf48Sbellardif test -z "$target_list" ; then 108860e0df25SPeter Maydell target_list="$default_target_list" 10896e20a45fSbellardelse 1090b1a550a0Spbrook target_list=`echo "$target_list" | sed -e 's/,/ /g'` 10915327cf48Sbellardfi 10920a8e90f4Spbrookif test -z "$target_list" ; then 10930a8e90f4Spbrook echo "No targets enabled" 10940a8e90f4Spbrook exit 1 10950a8e90f4Spbrookfi 1096f55fe278SPaolo Bonzini# see if system emulation was really requested 1097f55fe278SPaolo Bonzinicase " $target_list " in 1098f55fe278SPaolo Bonzini *"-softmmu "*) softmmu=yes 1099f55fe278SPaolo Bonzini ;; 1100f55fe278SPaolo Bonzini *) softmmu=no 1101f55fe278SPaolo Bonzini ;; 1102f55fe278SPaolo Bonziniesac 11035327cf48Sbellard 1104249247c9SJuan Quintelafeature_not_found() { 1105249247c9SJuan Quintela feature=$1 1106249247c9SJuan Quintela 1107249247c9SJuan Quintela echo "ERROR" 1108249247c9SJuan Quintela echo "ERROR: User requested feature $feature" 11099332f6a2SSebastian Herbszt echo "ERROR: configure was not able to find it" 1110249247c9SJuan Quintela echo "ERROR" 1111249247c9SJuan Quintela exit 1; 1112249247c9SJuan Quintela} 1113249247c9SJuan Quintela 11147d13299dSbellardif test -z "$cross_prefix" ; then 11157d13299dSbellard 11167d13299dSbellard# --- 11177d13299dSbellard# big/little endian test 11187d13299dSbellardcat > $TMPC << EOF 11197d13299dSbellard#include <inttypes.h> 11207d13299dSbellardint main(int argc, char ** argv){ 11217d13299dSbellard volatile uint32_t i=0x01234567; 11227d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 11237d13299dSbellard} 11247d13299dSbellardEOF 11257d13299dSbellard 112652166aa0SJuan Quintelaif compile_prog "" "" ; then 11277d13299dSbellard$TMPE && bigendian="yes" 11287d13299dSbellardelse 11297d13299dSbellardecho big/little test failed 11307d13299dSbellardfi 11317d13299dSbellard 11327d13299dSbellardelse 11337d13299dSbellard 11347d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 1135ea8f20f8SJuan Quintelacase "$cpu" in 113624e804ecSAlexander Graf armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64) 1137ea8f20f8SJuan Quintela bigendian=yes 1138ea8f20f8SJuan Quintela ;; 1139ea8f20f8SJuan Quintelaesac 11407d13299dSbellard 11417d13299dSbellardfi 11427d13299dSbellard 114370be1a2eSPaolo Bonzini# host long bits test, actually a pointer size test 114470be1a2eSPaolo Bonzinicat > $TMPC << EOF 114570be1a2eSPaolo Bonziniint sizeof_pointer_is_8[sizeof(void *) == 8 ? 1 : -1]; 114670be1a2eSPaolo BonziniEOF 114770be1a2eSPaolo Bonziniif compile_object; then 1148ea8f20f8SJuan Quintelahostlongbits=64 114970be1a2eSPaolo Bonzinielse 115070be1a2eSPaolo Bonzinihostlongbits=32 115170be1a2eSPaolo Bonzinifi 1152b6853697Sbellard 1153b0a47e79SJuan Quintela 1154b0a47e79SJuan Quintela########################################## 1155b0a47e79SJuan Quintela# NPTL probe 1156b0a47e79SJuan Quintela 1157b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then 1158bd0c5661Spbrook cat > $TMPC <<EOF 1159bd0c5661Spbrook#include <sched.h> 116030813ceaSpbrook#include <linux/futex.h> 1161bd0c5661Spbrookvoid foo() 1162bd0c5661Spbrook{ 1163bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 1164bd0c5661Spbrook#error bork 1165bd0c5661Spbrook#endif 1166bd0c5661Spbrook} 1167bd0c5661SpbrookEOF 1168bd0c5661Spbrook 116952166aa0SJuan Quintela if compile_object ; then 1170b0a47e79SJuan Quintela nptl=yes 1171bd0c5661Spbrook else 1172b0a47e79SJuan Quintela if test "$nptl" = "yes" ; then 1173b0a47e79SJuan Quintela feature_not_found "nptl" 1174b0a47e79SJuan Quintela fi 1175b0a47e79SJuan Quintela nptl=no 1176b0a47e79SJuan Quintela fi 1177bd0c5661Spbrookfi 1178bd0c5661Spbrook 117911d9f695Sbellard########################################## 1180ac62922eSbalrog# zlib check 1181ac62922eSbalrog 1182ac62922eSbalrogcat > $TMPC << EOF 1183ac62922eSbalrog#include <zlib.h> 1184ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 1185ac62922eSbalrogEOF 118652166aa0SJuan Quintelaif compile_prog "" "-lz" ; then 1187ac62922eSbalrog : 1188ac62922eSbalrogelse 1189ac62922eSbalrog echo 1190ac62922eSbalrog echo "Error: zlib check failed" 1191ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 1192ac62922eSbalrog echo 1193ac62922eSbalrog exit 1 1194ac62922eSbalrogfi 1195ac62922eSbalrog 1196ac62922eSbalrog########################################## 1197e37630caSaliguori# xen probe 1198e37630caSaliguori 1199fc321b4bSJuan Quintelaif test "$xen" != "no" ; then 1200b2266beeSJuan Quintela xen_libs="-lxenstore -lxenctrl -lxenguest" 1201d5b93ddfSAnthony PERARD 1202d5b93ddfSAnthony PERARD # Xen unstable 1203e37630caSaliguori cat > $TMPC <<EOF 1204e37630caSaliguori#include <xenctrl.h> 1205e37630caSaliguori#include <xs.h> 1206d5b93ddfSAnthony PERARD#include <stdint.h> 1207d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1208d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1209d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1210d5b93ddfSAnthony PERARD#endif 1211d5b93ddfSAnthony PERARDint main(void) { 1212d5b93ddfSAnthony PERARD xc_interface *xc; 1213d5b93ddfSAnthony PERARD xs_daemon_open(); 1214d5b93ddfSAnthony PERARD xc = xc_interface_open(0, 0, 0); 1215d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1216d5b93ddfSAnthony PERARD xc_gnttab_open(NULL, 0); 1217b87de24eSAnthony PERARD xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); 1218d5b93ddfSAnthony PERARD return 0; 1219d5b93ddfSAnthony PERARD} 1220e37630caSaliguoriEOF 122152166aa0SJuan Quintela if compile_prog "" "$xen_libs" ; then 1222d5b93ddfSAnthony PERARD xen_ctrl_version=410 1223fc321b4bSJuan Quintela xen=yes 1224d5b93ddfSAnthony PERARD 1225d5b93ddfSAnthony PERARD # Xen 4.0.0 1226d5b93ddfSAnthony PERARD elif ( 1227d5b93ddfSAnthony PERARD cat > $TMPC <<EOF 1228d5b93ddfSAnthony PERARD#include <xenctrl.h> 1229d5b93ddfSAnthony PERARD#include <xs.h> 1230d5b93ddfSAnthony PERARD#include <stdint.h> 1231d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h> 1232d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS) 1233d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined 1234d5b93ddfSAnthony PERARD#endif 1235d5b93ddfSAnthony PERARDint main(void) { 1236b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1237b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1238b87de24eSAnthony PERARD }; 1239d5b93ddfSAnthony PERARD xs_daemon_open(); 1240d5b93ddfSAnthony PERARD xc_interface_open(); 1241d5b93ddfSAnthony PERARD xc_gnttab_open(); 1242d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1243b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1244d5b93ddfSAnthony PERARD return 0; 1245d5b93ddfSAnthony PERARD} 1246d5b93ddfSAnthony PERARDEOF 1247d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 1248d5b93ddfSAnthony PERARD ) ; then 1249d5b93ddfSAnthony PERARD xen_ctrl_version=400 1250d5b93ddfSAnthony PERARD xen=yes 1251d5b93ddfSAnthony PERARD 1252b87de24eSAnthony PERARD # Xen 3.4.0 1253b87de24eSAnthony PERARD elif ( 1254b87de24eSAnthony PERARD cat > $TMPC <<EOF 1255b87de24eSAnthony PERARD#include <xenctrl.h> 1256b87de24eSAnthony PERARD#include <xs.h> 1257b87de24eSAnthony PERARDint main(void) { 1258b87de24eSAnthony PERARD struct xen_add_to_physmap xatp = { 1259b87de24eSAnthony PERARD .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0, 1260b87de24eSAnthony PERARD }; 1261b87de24eSAnthony PERARD xs_daemon_open(); 1262b87de24eSAnthony PERARD xc_interface_open(); 1263b87de24eSAnthony PERARD xc_gnttab_open(); 1264b87de24eSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1265b87de24eSAnthony PERARD xc_memory_op(0, XENMEM_add_to_physmap, &xatp); 1266b87de24eSAnthony PERARD return 0; 1267b87de24eSAnthony PERARD} 1268b87de24eSAnthony PERARDEOF 1269b87de24eSAnthony PERARD compile_prog "" "$xen_libs" 1270b87de24eSAnthony PERARD ) ; then 1271b87de24eSAnthony PERARD xen_ctrl_version=340 1272b87de24eSAnthony PERARD xen=yes 1273b87de24eSAnthony PERARD 1274b87de24eSAnthony PERARD # Xen 3.3.0 1275d5b93ddfSAnthony PERARD elif ( 1276d5b93ddfSAnthony PERARD cat > $TMPC <<EOF 1277d5b93ddfSAnthony PERARD#include <xenctrl.h> 1278d5b93ddfSAnthony PERARD#include <xs.h> 1279d5b93ddfSAnthony PERARDint main(void) { 1280d5b93ddfSAnthony PERARD xs_daemon_open(); 1281d5b93ddfSAnthony PERARD xc_interface_open(); 1282d5b93ddfSAnthony PERARD xc_gnttab_open(); 1283d5b93ddfSAnthony PERARD xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0); 1284d5b93ddfSAnthony PERARD return 0; 1285d5b93ddfSAnthony PERARD} 1286d5b93ddfSAnthony PERARDEOF 1287d5b93ddfSAnthony PERARD compile_prog "" "$xen_libs" 1288d5b93ddfSAnthony PERARD ) ; then 1289d5b93ddfSAnthony PERARD xen_ctrl_version=330 1290d5b93ddfSAnthony PERARD xen=yes 1291d5b93ddfSAnthony PERARD 1292d5b93ddfSAnthony PERARD # Xen not found or unsupported 1293e37630caSaliguori else 1294fc321b4bSJuan Quintela if test "$xen" = "yes" ; then 1295fc321b4bSJuan Quintela feature_not_found "xen" 1296fc321b4bSJuan Quintela fi 1297fc321b4bSJuan Quintela xen=no 1298e37630caSaliguori fi 1299d5b93ddfSAnthony PERARD 1300d5b93ddfSAnthony PERARD if test "$xen" = yes; then 1301d5b93ddfSAnthony PERARD libs_softmmu="$xen_libs $libs_softmmu" 1302d5b93ddfSAnthony PERARD fi 1303e37630caSaliguorifi 1304e37630caSaliguori 1305e37630caSaliguori########################################## 1306a8bd70adSPaolo Bonzini# pkg-config probe 1307f91672e5SPaolo Bonzini 1308a8bd70adSPaolo Bonziniif ! has $pkg_config; then 130908421541SPaolo Bonzini echo warning: proceeding without "$pkg_config" >&2 131008421541SPaolo Bonzini pkg_config=/bin/false 1311f91672e5SPaolo Bonzinifi 1312f91672e5SPaolo Bonzini 1313f91672e5SPaolo Bonzini########################################## 131444dc0ca3SAlon Levy# libtool probe 131544dc0ca3SAlon Levy 131644dc0ca3SAlon Levyif ! has libtool; then 131744dc0ca3SAlon Levy libtool= 131844dc0ca3SAlon Levyelse 131944dc0ca3SAlon Levy libtool=libtool 132044dc0ca3SAlon Levyfi 132144dc0ca3SAlon Levy 132244dc0ca3SAlon Levy########################################## 1323dfffc653SJuan Quintela# Sparse probe 1324dfffc653SJuan Quintelaif test "$sparse" != "no" ; then 13250dba6195SLoïc Minier if has cgcc; then 1326dfffc653SJuan Quintela sparse=yes 1327dfffc653SJuan Quintela else 1328dfffc653SJuan Quintela if test "$sparse" = "yes" ; then 1329dfffc653SJuan Quintela feature_not_found "sparse" 1330dfffc653SJuan Quintela fi 1331dfffc653SJuan Quintela sparse=no 1332dfffc653SJuan Quintela fi 1333dfffc653SJuan Quintelafi 1334dfffc653SJuan Quintela 1335dfffc653SJuan Quintela########################################## 133611d9f695Sbellard# SDL probe 133711d9f695Sbellard 13383ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config). Try 13393ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config. 13403ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then 13413ec87ffeSPaolo Bonzini sdl_config=sdl-config 13423ec87ffeSPaolo Bonzinifi 13433ec87ffeSPaolo Bonzini 13443ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then 1345a8bd70adSPaolo Bonzini sdlconfig="$pkg_config sdl" 1346fec0e3e8SStefan Weil _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` 13473ec87ffeSPaolo Bonzinielif has ${sdl_config}; then 13483ec87ffeSPaolo Bonzini sdlconfig="$sdl_config" 13499316f803SPaolo Bonzini _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` 1350a0dfd8a4SLoïc Minierelse 1351a0dfd8a4SLoïc Minier if test "$sdl" = "yes" ; then 1352a0dfd8a4SLoïc Minier feature_not_found "sdl" 1353a0dfd8a4SLoïc Minier fi 1354a0dfd8a4SLoïc Minier sdl=no 13559316f803SPaolo Bonzinifi 135629e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then 13573ec87ffeSPaolo Bonzini echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2 13583ec87ffeSPaolo Bonzinifi 135911d9f695Sbellard 13609316f803SPaolo Bonzinisdl_too_old=no 1361c4198157SJuan Quintelaif test "$sdl" != "no" ; then 136211d9f695Sbellard cat > $TMPC << EOF 136311d9f695Sbellard#include <SDL.h> 136411d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 136511d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 136611d9f695SbellardEOF 13679316f803SPaolo Bonzini sdl_cflags=`$sdlconfig --cflags 2> /dev/null` 136874f42e18STeLeMan if test "$static" = "yes" ; then 136974f42e18STeLeMan sdl_libs=`$sdlconfig --static-libs 2>/dev/null` 137074f42e18STeLeMan else 13719316f803SPaolo Bonzini sdl_libs=`$sdlconfig --libs 2> /dev/null` 137274f42e18STeLeMan fi 137352166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 137411d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 137511d9f695Sbellard sdl_too_old=yes 137611d9f695Sbellard else 1377fd677642Sths if test "$cocoa" = "no" ; then 137811d9f695Sbellard sdl=yes 137911d9f695Sbellard fi 1380fd677642Sths fi 13817c1f25b4Sbellard 138267c274d3SPaolo Bonzini # static link with sdl ? (note: sdl.pc's --static --libs is broken) 13831ac88f28SJuan Quintela if test "$sdl" = "yes" -a "$static" = "yes" ; then 138467c274d3SPaolo Bonzini if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then 1385f8aa6c7bSStefan Weil sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`" 1386f8aa6c7bSStefan Weil sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`" 138711d9f695Sbellard fi 138852166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 13891ac88f28SJuan Quintela : 13901ac88f28SJuan Quintela else 13911ac88f28SJuan Quintela sdl=no 13927c1f25b4Sbellard fi 13937c1f25b4Sbellard fi # static link 1394c4198157SJuan Quintela else # sdl not found 1395c4198157SJuan Quintela if test "$sdl" = "yes" ; then 1396c4198157SJuan Quintela feature_not_found "sdl" 1397c4198157SJuan Quintela fi 1398c4198157SJuan Quintela sdl=no 13997c1f25b4Sbellard fi # sdl compile test 1400fd677642Sthsfi 140111d9f695Sbellard 14025368a422Saliguoriif test "$sdl" = "yes" ; then 14035368a422Saliguori cat > $TMPC <<EOF 14045368a422Saliguori#include <SDL.h> 14055368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 14065368a422Saliguori#include <X11/XKBlib.h> 14075368a422Saliguori#else 14085368a422Saliguori#error No x11 support 14095368a422Saliguori#endif 14105368a422Saliguoriint main(void) { return 0; } 14115368a422SaliguoriEOF 141252166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 1413681306dfSJuan Quintela sdl_libs="$sdl_libs -lX11" 14145368a422Saliguori fi 141507d9ac44SJuan Quintela if test "$mingw32" = "yes" ; then 141607d9ac44SJuan Quintela sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole" 141707d9ac44SJuan Quintela fi 14180705667eSJuan Quintela libs_softmmu="$sdl_libs $libs_softmmu" 14195368a422Saliguorifi 14205368a422Saliguori 14218f28f3fbSths########################################## 14228d5d2d4cSths# VNC TLS detection 1423821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then 1424ae6b5e5aSaliguori cat > $TMPC <<EOF 1425ae6b5e5aSaliguori#include <gnutls/gnutls.h> 1426ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 1427ae6b5e5aSaliguoriEOF 1428a8bd70adSPaolo Bonzini vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null` 1429a8bd70adSPaolo Bonzini vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null` 143052166aa0SJuan Quintela if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then 14311be10ad2SJuan Quintela vnc_tls=yes 1432a5e32cc9SJuan Quintela libs_softmmu="$vnc_tls_libs $libs_softmmu" 1433ae6b5e5aSaliguori else 14341be10ad2SJuan Quintela if test "$vnc_tls" = "yes" ; then 14351be10ad2SJuan Quintela feature_not_found "vnc-tls" 14361be10ad2SJuan Quintela fi 14371be10ad2SJuan Quintela vnc_tls=no 14388d5d2d4cSths fi 14398d5d2d4cSthsfi 14408d5d2d4cSths 14418d5d2d4cSths########################################## 14422f9606b3Saliguori# VNC SASL detection 1443821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then 14442f9606b3Saliguori cat > $TMPC <<EOF 14452f9606b3Saliguori#include <sasl/sasl.h> 14462f9606b3Saliguori#include <stdio.h> 14472f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 14482f9606b3SaliguoriEOF 14492f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 14502f9606b3Saliguori vnc_sasl_cflags="" 14512f9606b3Saliguori vnc_sasl_libs="-lsasl2" 145252166aa0SJuan Quintela if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then 1453ea784e3bSJuan Quintela vnc_sasl=yes 1454fa838301SJuan Quintela libs_softmmu="$vnc_sasl_libs $libs_softmmu" 14552f9606b3Saliguori else 1456ea784e3bSJuan Quintela if test "$vnc_sasl" = "yes" ; then 1457ea784e3bSJuan Quintela feature_not_found "vnc-sasl" 1458ea784e3bSJuan Quintela fi 1459ea784e3bSJuan Quintela vnc_sasl=no 14602f9606b3Saliguori fi 14612f9606b3Saliguorifi 14622f9606b3Saliguori 14632f9606b3Saliguori########################################## 14642f6f5c7aSCorentin Chary# VNC JPEG detection 1465821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then 14662f6f5c7aSCorentin Charycat > $TMPC <<EOF 14672f6f5c7aSCorentin Chary#include <stdio.h> 14682f6f5c7aSCorentin Chary#include <jpeglib.h> 14692f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; } 14702f6f5c7aSCorentin CharyEOF 14712f6f5c7aSCorentin Chary vnc_jpeg_cflags="" 14722f6f5c7aSCorentin Chary vnc_jpeg_libs="-ljpeg" 14732f6f5c7aSCorentin Chary if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then 14742f6f5c7aSCorentin Chary vnc_jpeg=yes 14752f6f5c7aSCorentin Chary libs_softmmu="$vnc_jpeg_libs $libs_softmmu" 14762f6f5c7aSCorentin Chary else 14772f6f5c7aSCorentin Chary if test "$vnc_jpeg" = "yes" ; then 14782f6f5c7aSCorentin Chary feature_not_found "vnc-jpeg" 14792f6f5c7aSCorentin Chary fi 14802f6f5c7aSCorentin Chary vnc_jpeg=no 14812f6f5c7aSCorentin Chary fi 14822f6f5c7aSCorentin Charyfi 14832f6f5c7aSCorentin Chary 14842f6f5c7aSCorentin Chary########################################## 1485efe556adSCorentin Chary# VNC PNG detection 1486821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then 1487efe556adSCorentin Charycat > $TMPC <<EOF 1488efe556adSCorentin Chary//#include <stdio.h> 1489efe556adSCorentin Chary#include <png.h> 1490832ce9c2SScott Wood#include <stddef.h> 1491efe556adSCorentin Charyint main(void) { 1492efe556adSCorentin Chary png_structp png_ptr; 1493efe556adSCorentin Chary png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); 1494efe556adSCorentin Chary return 0; 1495efe556adSCorentin Chary} 1496efe556adSCorentin CharyEOF 1497efe556adSCorentin Chary vnc_png_cflags="" 1498efe556adSCorentin Chary vnc_png_libs="-lpng" 1499efe556adSCorentin Chary if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then 1500efe556adSCorentin Chary vnc_png=yes 1501efe556adSCorentin Chary libs_softmmu="$vnc_png_libs $libs_softmmu" 1502efe556adSCorentin Chary else 1503efe556adSCorentin Chary if test "$vnc_png" = "yes" ; then 1504efe556adSCorentin Chary feature_not_found "vnc-png" 1505efe556adSCorentin Chary fi 1506efe556adSCorentin Chary vnc_png=no 1507efe556adSCorentin Chary fi 1508efe556adSCorentin Charyfi 1509efe556adSCorentin Chary 1510efe556adSCorentin Chary########################################## 151176655d6dSaliguori# fnmatch() probe, used for ACL routines 151276655d6dSaliguorifnmatch="no" 151376655d6dSaliguoricat > $TMPC << EOF 151476655d6dSaliguori#include <fnmatch.h> 151576655d6dSaliguoriint main(void) 151676655d6dSaliguori{ 151776655d6dSaliguori fnmatch("foo", "foo", 0); 151876655d6dSaliguori return 0; 151976655d6dSaliguori} 152076655d6dSaliguoriEOF 152152166aa0SJuan Quintelaif compile_prog "" "" ; then 152276655d6dSaliguori fnmatch="yes" 152376655d6dSaliguorifi 152476655d6dSaliguori 152576655d6dSaliguori########################################## 1526ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver 1527ee682d27SStefan Weilif test "$uuid" != "no" ; then 1528ee682d27SStefan Weil uuid_libs="-luuid" 1529ee682d27SStefan Weil cat > $TMPC << EOF 1530ee682d27SStefan Weil#include <uuid/uuid.h> 1531ee682d27SStefan Weilint main(void) 1532ee682d27SStefan Weil{ 1533ee682d27SStefan Weil uuid_t my_uuid; 1534ee682d27SStefan Weil uuid_generate(my_uuid); 1535ee682d27SStefan Weil return 0; 1536ee682d27SStefan Weil} 1537ee682d27SStefan WeilEOF 1538ee682d27SStefan Weil if compile_prog "" "$uuid_libs" ; then 1539ee682d27SStefan Weil uuid="yes" 1540ee682d27SStefan Weil libs_softmmu="$uuid_libs $libs_softmmu" 1541ee682d27SStefan Weil libs_tools="$uuid_libs $libs_tools" 1542ee682d27SStefan Weil else 1543ee682d27SStefan Weil if test "$uuid" = "yes" ; then 1544ee682d27SStefan Weil feature_not_found "uuid" 1545ee682d27SStefan Weil fi 1546ee682d27SStefan Weil uuid=no 1547ee682d27SStefan Weil fi 1548ee682d27SStefan Weilfi 1549ee682d27SStefan Weil 1550ee682d27SStefan Weil########################################## 1551dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix 1552dce512deSChristoph Hellwigif test "$xfs" != "no" ; then 1553dce512deSChristoph Hellwig cat > $TMPC << EOF 1554dce512deSChristoph Hellwig#include <xfs/xfs.h> 1555dce512deSChristoph Hellwigint main(void) 1556dce512deSChristoph Hellwig{ 1557dce512deSChristoph Hellwig xfsctl(NULL, 0, 0, NULL); 1558dce512deSChristoph Hellwig return 0; 1559dce512deSChristoph Hellwig} 1560dce512deSChristoph HellwigEOF 1561dce512deSChristoph Hellwig if compile_prog "" "" ; then 1562dce512deSChristoph Hellwig xfs="yes" 1563dce512deSChristoph Hellwig else 1564dce512deSChristoph Hellwig if test "$xfs" = "yes" ; then 1565dce512deSChristoph Hellwig feature_not_found "xfs" 1566dce512deSChristoph Hellwig fi 1567dce512deSChristoph Hellwig xfs=no 1568dce512deSChristoph Hellwig fi 1569dce512deSChristoph Hellwigfi 1570dce512deSChristoph Hellwig 1571dce512deSChristoph Hellwig########################################## 15728a16d273Sths# vde libraries probe 1573dfb278bdSJuan Quintelaif test "$vde" != "no" ; then 15744baae0acSJuan Quintela vde_libs="-lvdeplug" 15758a16d273Sths cat > $TMPC << EOF 15768a16d273Sths#include <libvdeplug.h> 15774a7f0e06Spbrookint main(void) 15784a7f0e06Spbrook{ 15794a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 15804a7f0e06Spbrook vde_open("", "", &a); 15814a7f0e06Spbrook return 0; 15824a7f0e06Spbrook} 15838a16d273SthsEOF 158452166aa0SJuan Quintela if compile_prog "" "$vde_libs" ; then 15854baae0acSJuan Quintela vde=yes 15868e02e54cSJuan Quintela libs_softmmu="$vde_libs $libs_softmmu" 15878e02e54cSJuan Quintela libs_tools="$vde_libs $libs_tools" 1588dfb278bdSJuan Quintela else 1589dfb278bdSJuan Quintela if test "$vde" = "yes" ; then 1590dfb278bdSJuan Quintela feature_not_found "vde" 1591dfb278bdSJuan Quintela fi 1592dfb278bdSJuan Quintela vde=no 15938a16d273Sths fi 15948a16d273Sthsfi 15958a16d273Sths 15968a16d273Sths########################################## 1597c2de5c91Smalc# Sound support libraries probe 15988f28f3fbSths 1599c2de5c91Smalcaudio_drv_probe() 1600c2de5c91Smalc{ 1601c2de5c91Smalc drv=$1 1602c2de5c91Smalc hdr=$2 1603c2de5c91Smalc lib=$3 1604c2de5c91Smalc exp=$4 1605c2de5c91Smalc cfl=$5 16068f28f3fbSths cat > $TMPC << EOF 1607c2de5c91Smalc#include <$hdr> 1608c2de5c91Smalcint main(void) { $exp } 16098f28f3fbSthsEOF 161052166aa0SJuan Quintela if compile_prog "$cfl" "$lib" ; then 16118f28f3fbSths : 16128f28f3fbSths else 16138f28f3fbSths echo 1614c2de5c91Smalc echo "Error: $drv check failed" 1615c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 16168f28f3fbSths echo 16178f28f3fbSths exit 1 16188f28f3fbSths fi 1619c2de5c91Smalc} 1620c2de5c91Smalc 16212fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 1622c2de5c91Smalcfor drv in $audio_drv_list; do 1623c2de5c91Smalc case $drv in 1624c2de5c91Smalc alsa) 1625c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 1626c2de5c91Smalc "snd_pcm_t **handle; return snd_pcm_close(*handle);" 1627a4bf6780SJuan Quintela libs_softmmu="-lasound $libs_softmmu" 1628c2de5c91Smalc ;; 1629c2de5c91Smalc 1630c2de5c91Smalc fmod) 1631c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 1632c2de5c91Smalc echo 1633c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 1634c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 1635c2de5c91Smalc echo 1636c2de5c91Smalc exit 1 16378f28f3fbSths fi 1638c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 1639a4bf6780SJuan Quintela libs_softmmu="$fmod_lib $libs_softmmu" 1640c2de5c91Smalc ;; 1641c2de5c91Smalc 1642c2de5c91Smalc esd) 1643c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 1644a4bf6780SJuan Quintela libs_softmmu="-lesd $libs_softmmu" 164567f86e8eSJuan Quintela audio_pt_int="yes" 1646c2de5c91Smalc ;; 1647b8e59f18Smalc 1648b8e59f18Smalc pa) 1649493abda6SAurelien Jarno audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \ 165020fa53ecSMarc-Antoine Perennou "pa_simple *s = 0; pa_simple_free(s); return 0;" 1651493abda6SAurelien Jarno libs_softmmu="-lpulse -lpulse-simple $libs_softmmu" 165267f86e8eSJuan Quintela audio_pt_int="yes" 1653b8e59f18Smalc ;; 1654b8e59f18Smalc 1655997e690aSJuan Quintela coreaudio) 1656997e690aSJuan Quintela libs_softmmu="-framework CoreAudio $libs_softmmu" 1657997e690aSJuan Quintela ;; 1658997e690aSJuan Quintela 1659a4bf6780SJuan Quintela dsound) 1660a4bf6780SJuan Quintela libs_softmmu="-lole32 -ldxguid $libs_softmmu" 1661d5631638Smalc audio_win_int="yes" 1662a4bf6780SJuan Quintela ;; 1663a4bf6780SJuan Quintela 1664a4bf6780SJuan Quintela oss) 1665a4bf6780SJuan Quintela libs_softmmu="$oss_lib $libs_softmmu" 1666a4bf6780SJuan Quintela ;; 1667a4bf6780SJuan Quintela 1668a4bf6780SJuan Quintela sdl|wav) 16692f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 16702f6a1ab0Sblueswir1 ;; 16712f6a1ab0Sblueswir1 1672d5631638Smalc winwave) 1673d5631638Smalc libs_softmmu="-lwinmm $libs_softmmu" 1674d5631638Smalc audio_win_int="yes" 1675d5631638Smalc ;; 1676d5631638Smalc 1677e4c63a6aSmalc *) 16781c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 1679e4c63a6aSmalc echo 1680e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 1681e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 1682e4c63a6aSmalc echo 1683e4c63a6aSmalc exit 1 1684e4c63a6aSmalc } 1685e4c63a6aSmalc ;; 1686c2de5c91Smalc esac 1687c2de5c91Smalcdone 16888f28f3fbSths 16894d3b6f6eSbalrog########################################## 16902e4d9fb1Saurel32# BrlAPI probe 16912e4d9fb1Saurel32 16924ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then 1693eb82284fSJuan Quintela brlapi_libs="-lbrlapi" 16942e4d9fb1Saurel32 cat > $TMPC << EOF 16952e4d9fb1Saurel32#include <brlapi.h> 1696832ce9c2SScott Wood#include <stddef.h> 16972e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 16982e4d9fb1Saurel32EOF 169952166aa0SJuan Quintela if compile_prog "" "$brlapi_libs" ; then 17002e4d9fb1Saurel32 brlapi=yes 1701264606b3SJuan Quintela libs_softmmu="$brlapi_libs $libs_softmmu" 17024ffcedb6SJuan Quintela else 17034ffcedb6SJuan Quintela if test "$brlapi" = "yes" ; then 17044ffcedb6SJuan Quintela feature_not_found "brlapi" 17054ffcedb6SJuan Quintela fi 17064ffcedb6SJuan Quintela brlapi=no 1707eb82284fSJuan Quintela fi 1708eb82284fSJuan Quintelafi 17092e4d9fb1Saurel32 17102e4d9fb1Saurel32########################################## 17114d3b6f6eSbalrog# curses probe 1712e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then 1713e095e2f3SStefan Weil curses_list="-lpdcurses" 1714e095e2f3SStefan Weilelse 17154f78ef9aSJuan Quintela curses_list="-lncurses -lcurses" 1716e095e2f3SStefan Weilfi 17174d3b6f6eSbalrog 1718c584a6d0SJuan Quintelaif test "$curses" != "no" ; then 1719c584a6d0SJuan Quintela curses_found=no 17204d3b6f6eSbalrog cat > $TMPC << EOF 17214d3b6f6eSbalrog#include <curses.h> 17225a8ff3aaSblueswir1#ifdef __OpenBSD__ 17235a8ff3aaSblueswir1#define resize_term resizeterm 17245a8ff3aaSblueswir1#endif 17255a8ff3aaSblueswir1int main(void) { resize_term(0, 0); return curses_version(); } 17264d3b6f6eSbalrogEOF 17274f78ef9aSJuan Quintela for curses_lib in $curses_list; do 17284f78ef9aSJuan Quintela if compile_prog "" "$curses_lib" ; then 1729c584a6d0SJuan Quintela curses_found=yes 17304f78ef9aSJuan Quintela libs_softmmu="$curses_lib $libs_softmmu" 17314f78ef9aSJuan Quintela break 17324d3b6f6eSbalrog fi 17334f78ef9aSJuan Quintela done 1734c584a6d0SJuan Quintela if test "$curses_found" = "yes" ; then 1735c584a6d0SJuan Quintela curses=yes 1736c584a6d0SJuan Quintela else 1737c584a6d0SJuan Quintela if test "$curses" = "yes" ; then 1738c584a6d0SJuan Quintela feature_not_found "curses" 1739c584a6d0SJuan Quintela fi 1740c584a6d0SJuan Quintela curses=no 1741c584a6d0SJuan Quintela fi 17424f78ef9aSJuan Quintelafi 17434d3b6f6eSbalrog 1744414f0dabSblueswir1########################################## 1745769ce76dSAlexander Graf# curl probe 1746769ce76dSAlexander Graf 1747a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then 1748a8bd70adSPaolo Bonzini curlconfig="$pkg_config libcurl" 17494e2b0658SPaolo Bonzinielse 17504e2b0658SPaolo Bonzini curlconfig=curl-config 17514e2b0658SPaolo Bonzinifi 17524e2b0658SPaolo Bonzini 1753788c8196SJuan Quintelaif test "$curl" != "no" ; then 1754769ce76dSAlexander Graf cat > $TMPC << EOF 1755769ce76dSAlexander Graf#include <curl/curl.h> 17560b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; } 1757769ce76dSAlexander GrafEOF 17584e2b0658SPaolo Bonzini curl_cflags=`$curlconfig --cflags 2>/dev/null` 17594e2b0658SPaolo Bonzini curl_libs=`$curlconfig --libs 2>/dev/null` 1760b1d5a277SJuan Quintela if compile_prog "$curl_cflags" "$curl_libs" ; then 1761769ce76dSAlexander Graf curl=yes 1762f0302935SJuan Quintela libs_tools="$curl_libs $libs_tools" 1763f0302935SJuan Quintela libs_softmmu="$curl_libs $libs_softmmu" 1764788c8196SJuan Quintela else 1765788c8196SJuan Quintela if test "$curl" = "yes" ; then 1766788c8196SJuan Quintela feature_not_found "curl" 1767788c8196SJuan Quintela fi 1768788c8196SJuan Quintela curl=no 1769769ce76dSAlexander Graf fi 1770769ce76dSAlexander Graffi # test "$curl" 1771769ce76dSAlexander Graf 1772769ce76dSAlexander Graf########################################## 17735495ed11SLuiz Capitulino# check framework probe 17745495ed11SLuiz Capitulino 17755495ed11SLuiz Capitulinoif test "$check_utests" != "no" ; then 17765495ed11SLuiz Capitulino cat > $TMPC << EOF 17775495ed11SLuiz Capitulino#include <check.h> 17785495ed11SLuiz Capitulinoint main(void) { suite_create("qemu test"); return 0; } 17795495ed11SLuiz CapitulinoEOF 1780a8bd70adSPaolo Bonzini check_libs=`$pkg_config --libs check` 17815495ed11SLuiz Capitulino if compile_prog "" $check_libs ; then 17825495ed11SLuiz Capitulino check_utests=yes 17835495ed11SLuiz Capitulino libs_tools="$check_libs $libs_tools" 17845495ed11SLuiz Capitulino else 17855495ed11SLuiz Capitulino if test "$check_utests" = "yes" ; then 17865495ed11SLuiz Capitulino feature_not_found "check" 17875495ed11SLuiz Capitulino fi 17885495ed11SLuiz Capitulino check_utests=no 17895495ed11SLuiz Capitulino fi 17905495ed11SLuiz Capitulinofi # test "$check_utests" 17915495ed11SLuiz Capitulino 17925495ed11SLuiz Capitulino########################################## 1793fb599c9aSbalrog# bluez support probe 1794a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then 1795e820e3f4Sbalrog cat > $TMPC << EOF 1796e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 1797e820e3f4Sbalrogint main(void) { return bt_error(0); } 1798e820e3f4SbalrogEOF 1799a8bd70adSPaolo Bonzini bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null` 1800a8bd70adSPaolo Bonzini bluez_libs=`$pkg_config --libs bluez 2> /dev/null` 180152166aa0SJuan Quintela if compile_prog "$bluez_cflags" "$bluez_libs" ; then 1802a20a6f46SJuan Quintela bluez=yes 1803e482d56aSJuan Quintela libs_softmmu="$bluez_libs $libs_softmmu" 1804e820e3f4Sbalrog else 1805a20a6f46SJuan Quintela if test "$bluez" = "yes" ; then 1806a20a6f46SJuan Quintela feature_not_found "bluez" 1807a20a6f46SJuan Quintela fi 1808e820e3f4Sbalrog bluez="no" 1809e820e3f4Sbalrog fi 1810fb599c9aSbalrogfi 1811fb599c9aSbalrog 1812fb599c9aSbalrog########################################## 1813e5d355d1Saliguori# pthread probe 1814de65fe0fSSebastian HerbsztPTHREADLIBS_LIST="-lpthread -lpthreadGC2" 18153c529d93Saliguori 1816e5d355d1Saliguoripthread=no 1817414f0dabSblueswir1cat > $TMPC << EOF 18183c529d93Saliguori#include <pthread.h> 1819de65fe0fSSebastian Herbsztint main(void) { pthread_create(0,0,0,0); return 0; } 1820414f0dabSblueswir1EOF 1821bd00d539SAndreas Färberif compile_prog "" "" ; then 1822bd00d539SAndreas Färber pthread=yes 1823bd00d539SAndreas Färberelse 1824de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 182552166aa0SJuan Quintela if compile_prog "" "$pthread_lib" ; then 1826e5d355d1Saliguori pthread=yes 18275572b539SJuan Quintela LIBS="$pthread_lib $LIBS" 1828de65fe0fSSebastian Herbszt break 1829414f0dabSblueswir1 fi 1830de65fe0fSSebastian Herbszt done 1831bd00d539SAndreas Färberfi 1832414f0dabSblueswir1 18334617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then 18344dd75c70SChristoph Hellwig echo 18354dd75c70SChristoph Hellwig echo "Error: pthread check failed" 18364dd75c70SChristoph Hellwig echo "Make sure to have the pthread libs and headers installed." 18374dd75c70SChristoph Hellwig echo 18384dd75c70SChristoph Hellwig exit 1 1839e5d355d1Saliguorifi 1840e5d355d1Saliguori 1841bf9298b9Saliguori########################################## 1842f27aaf4bSChristian Brunner# rbd probe 1843f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then 1844f27aaf4bSChristian Brunner cat > $TMPC <<EOF 1845f27aaf4bSChristian Brunner#include <stdio.h> 1846ad32e9c0SJosh Durgin#include <rbd/librbd.h> 1847f27aaf4bSChristian Brunnerint main(void) { 1848ad32e9c0SJosh Durgin rados_t cluster; 1849ad32e9c0SJosh Durgin rados_create(&cluster, NULL); 1850f27aaf4bSChristian Brunner return 0; 1851f27aaf4bSChristian Brunner} 1852f27aaf4bSChristian BrunnerEOF 1853ad32e9c0SJosh Durgin rbd_libs="-lrbd -lrados" 1854f27aaf4bSChristian Brunner if compile_prog "" "$rbd_libs" ; then 1855f27aaf4bSChristian Brunner rbd=yes 1856f27aaf4bSChristian Brunner libs_tools="$rbd_libs $libs_tools" 1857f27aaf4bSChristian Brunner libs_softmmu="$rbd_libs $libs_softmmu" 1858f27aaf4bSChristian Brunner else 1859f27aaf4bSChristian Brunner if test "$rbd" = "yes" ; then 1860f27aaf4bSChristian Brunner feature_not_found "rados block device" 1861f27aaf4bSChristian Brunner fi 1862f27aaf4bSChristian Brunner rbd=no 1863f27aaf4bSChristian Brunner fi 1864f27aaf4bSChristian Brunnerfi 1865f27aaf4bSChristian Brunner 1866f27aaf4bSChristian Brunner########################################## 18675c6c3a6cSChristoph Hellwig# linux-aio probe 18685c6c3a6cSChristoph Hellwig 18695c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then 18705c6c3a6cSChristoph Hellwig cat > $TMPC <<EOF 18715c6c3a6cSChristoph Hellwig#include <libaio.h> 18725c6c3a6cSChristoph Hellwig#include <sys/eventfd.h> 1873832ce9c2SScott Wood#include <stddef.h> 18745c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; } 18755c6c3a6cSChristoph HellwigEOF 18765c6c3a6cSChristoph Hellwig if compile_prog "" "-laio" ; then 18775c6c3a6cSChristoph Hellwig linux_aio=yes 1878048d179fSPaul Brook libs_softmmu="$libs_softmmu -laio" 1879048d179fSPaul Brook libs_tools="$libs_tools -laio" 18805c6c3a6cSChristoph Hellwig else 18815c6c3a6cSChristoph Hellwig if test "$linux_aio" = "yes" ; then 18825c6c3a6cSChristoph Hellwig feature_not_found "linux AIO" 18835c6c3a6cSChristoph Hellwig fi 18843cfcae3cSLuiz Capitulino linux_aio=no 18855c6c3a6cSChristoph Hellwig fi 18865c6c3a6cSChristoph Hellwigfi 18875c6c3a6cSChristoph Hellwig 18885c6c3a6cSChristoph Hellwig########################################## 1889758e8e38SVenkateswararao Jujjuri (JV)# attr probe 1890758e8e38SVenkateswararao Jujjuri (JV) 1891758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then 1892758e8e38SVenkateswararao Jujjuri (JV) cat > $TMPC <<EOF 1893758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h> 1894758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h> 1895758e8e38SVenkateswararao Jujjuri (JV)#include <attr/xattr.h> 1896758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; } 1897758e8e38SVenkateswararao Jujjuri (JV)EOF 1898758e8e38SVenkateswararao Jujjuri (JV) if compile_prog "" "-lattr" ; then 1899758e8e38SVenkateswararao Jujjuri (JV) attr=yes 1900758e8e38SVenkateswararao Jujjuri (JV) LIBS="-lattr $LIBS" 1901758e8e38SVenkateswararao Jujjuri (JV) else 1902758e8e38SVenkateswararao Jujjuri (JV) if test "$attr" = "yes" ; then 1903758e8e38SVenkateswararao Jujjuri (JV) feature_not_found "ATTR" 1904758e8e38SVenkateswararao Jujjuri (JV) fi 1905758e8e38SVenkateswararao Jujjuri (JV) attr=no 1906758e8e38SVenkateswararao Jujjuri (JV) fi 1907758e8e38SVenkateswararao Jujjuri (JV)fi 1908758e8e38SVenkateswararao Jujjuri (JV) 1909758e8e38SVenkateswararao Jujjuri (JV)########################################## 1910bf9298b9Saliguori# iovec probe 1911bf9298b9Saliguoricat > $TMPC <<EOF 1912db34f0b3Sblueswir1#include <sys/types.h> 1913bf9298b9Saliguori#include <sys/uio.h> 1914db34f0b3Sblueswir1#include <unistd.h> 1915bf9298b9Saliguoriint main(void) { struct iovec iov; return 0; } 1916bf9298b9SaliguoriEOF 1917bf9298b9Saliguoriiovec=no 191852166aa0SJuan Quintelaif compile_prog "" "" ; then 1919bf9298b9Saliguori iovec=yes 1920bf9298b9Saliguorifi 1921bf9298b9Saliguori 1922f652e6afSaurel32########################################## 1923ceb42de8Saliguori# preadv probe 1924ceb42de8Saliguoricat > $TMPC <<EOF 1925ceb42de8Saliguori#include <sys/types.h> 1926ceb42de8Saliguori#include <sys/uio.h> 1927ceb42de8Saliguori#include <unistd.h> 1928ceb42de8Saliguoriint main(void) { preadv; } 1929ceb42de8SaliguoriEOF 1930ceb42de8Saliguoripreadv=no 193152166aa0SJuan Quintelaif compile_prog "" "" ; then 1932ceb42de8Saliguori preadv=yes 1933ceb42de8Saliguorifi 1934ceb42de8Saliguori 1935ceb42de8Saliguori########################################## 1936f652e6afSaurel32# fdt probe 19372df87df7SJuan Quintelaif test "$fdt" != "no" ; then 1938b41af4baSJuan Quintela fdt_libs="-lfdt" 1939f652e6afSaurel32 cat > $TMPC << EOF 1940f652e6afSaurel32int main(void) { return 0; } 1941f652e6afSaurel32EOF 194252166aa0SJuan Quintela if compile_prog "" "$fdt_libs" ; then 1943f652e6afSaurel32 fdt=yes 19442df87df7SJuan Quintela else 19452df87df7SJuan Quintela if test "$fdt" = "yes" ; then 19462df87df7SJuan Quintela feature_not_found "fdt" 19472df87df7SJuan Quintela fi 1948de3a354aSMichael Walle fdt_libs= 19492df87df7SJuan Quintela fdt=no 1950f652e6afSaurel32 fi 1951f652e6afSaurel32fi 1952f652e6afSaurel32 195320ff075bSMichael Walle########################################## 195420ff075bSMichael Walle# opengl probe, used by milkymist-tmu2 195520ff075bSMichael Walleif test "$opengl" != "no" ; then 195620ff075bSMichael Walle opengl_libs="-lGL" 195720ff075bSMichael Walle cat > $TMPC << EOF 195820ff075bSMichael Walle#include <X11/Xlib.h> 195920ff075bSMichael Walle#include <GL/gl.h> 196020ff075bSMichael Walle#include <GL/glx.h> 196120ff075bSMichael Walleint main(void) { GL_VERSION; return 0; } 196220ff075bSMichael WalleEOF 196320ff075bSMichael Walle if compile_prog "" "-lGL" ; then 196420ff075bSMichael Walle opengl=yes 196520ff075bSMichael Walle else 196620ff075bSMichael Walle if test "$opengl" = "yes" ; then 196720ff075bSMichael Walle feature_not_found "opengl" 196820ff075bSMichael Walle fi 1969de3a354aSMichael Walle opengl_libs= 197020ff075bSMichael Walle opengl=no 197120ff075bSMichael Walle fi 197220ff075bSMichael Wallefi 197320ff075bSMichael Walle 19743b3f24adSaurel32# 19753b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 19763b3f24adSaurel32# emulator. This is done because older glibc versions don't 19773b3f24adSaurel32# have syscall stubs for these implemented. 19783b3f24adSaurel32# 19793b3f24adSaurel32atfile=no 19803b3f24adSaurel32cat > $TMPC << EOF 19813b3f24adSaurel32#define _ATFILE_SOURCE 19823b3f24adSaurel32#include <sys/types.h> 19833b3f24adSaurel32#include <fcntl.h> 19843b3f24adSaurel32#include <unistd.h> 19853b3f24adSaurel32 19863b3f24adSaurel32int 19873b3f24adSaurel32main(void) 19883b3f24adSaurel32{ 19893b3f24adSaurel32 /* try to unlink nonexisting file */ 19903b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 19913b3f24adSaurel32} 19923b3f24adSaurel32EOF 199352166aa0SJuan Quintelaif compile_prog "" "" ; then 19943b3f24adSaurel32 atfile=yes 19953b3f24adSaurel32fi 19963b3f24adSaurel32 199739386ac7Saurel32# Check for inotify functions when we are building linux-user 19983b3f24adSaurel32# emulator. This is done because older glibc versions don't 19993b3f24adSaurel32# have syscall stubs for these implemented. In that case we 20003b3f24adSaurel32# don't provide them even if kernel supports them. 20013b3f24adSaurel32# 20023b3f24adSaurel32inotify=no 20033b3f24adSaurel32cat > $TMPC << EOF 20043b3f24adSaurel32#include <sys/inotify.h> 20053b3f24adSaurel32 20063b3f24adSaurel32int 20073b3f24adSaurel32main(void) 20083b3f24adSaurel32{ 20093b3f24adSaurel32 /* try to start inotify */ 20108690e420Saurel32 return inotify_init(); 20113b3f24adSaurel32} 20123b3f24adSaurel32EOF 201352166aa0SJuan Quintelaif compile_prog "" "" ; then 20143b3f24adSaurel32 inotify=yes 20153b3f24adSaurel32fi 20163b3f24adSaurel32 2017c05c7a73SRiku Voipioinotify1=no 2018c05c7a73SRiku Voipiocat > $TMPC << EOF 2019c05c7a73SRiku Voipio#include <sys/inotify.h> 2020c05c7a73SRiku Voipio 2021c05c7a73SRiku Voipioint 2022c05c7a73SRiku Voipiomain(void) 2023c05c7a73SRiku Voipio{ 2024c05c7a73SRiku Voipio /* try to start inotify */ 2025c05c7a73SRiku Voipio return inotify_init1(0); 2026c05c7a73SRiku Voipio} 2027c05c7a73SRiku VoipioEOF 2028c05c7a73SRiku Voipioif compile_prog "" "" ; then 2029c05c7a73SRiku Voipio inotify1=yes 2030c05c7a73SRiku Voipiofi 2031c05c7a73SRiku Voipio 2032ebc996f3SRiku Voipio# check if utimensat and futimens are supported 2033ebc996f3SRiku Voipioutimens=no 2034ebc996f3SRiku Voipiocat > $TMPC << EOF 2035ebc996f3SRiku Voipio#define _ATFILE_SOURCE 2036ebc996f3SRiku Voipio#include <stddef.h> 2037ebc996f3SRiku Voipio#include <fcntl.h> 2038ebc996f3SRiku Voipio 2039ebc996f3SRiku Voipioint main(void) 2040ebc996f3SRiku Voipio{ 2041ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 2042ebc996f3SRiku Voipio futimens(0, NULL); 2043ebc996f3SRiku Voipio return 0; 2044ebc996f3SRiku Voipio} 2045ebc996f3SRiku VoipioEOF 204652166aa0SJuan Quintelaif compile_prog "" "" ; then 2047ebc996f3SRiku Voipio utimens=yes 2048ebc996f3SRiku Voipiofi 2049ebc996f3SRiku Voipio 2050099d6b0fSRiku Voipio# check if pipe2 is there 2051099d6b0fSRiku Voipiopipe2=no 2052099d6b0fSRiku Voipiocat > $TMPC << EOF 2053099d6b0fSRiku Voipio#include <unistd.h> 2054099d6b0fSRiku Voipio#include <fcntl.h> 2055099d6b0fSRiku Voipio 2056099d6b0fSRiku Voipioint main(void) 2057099d6b0fSRiku Voipio{ 2058099d6b0fSRiku Voipio int pipefd[2]; 2059099d6b0fSRiku Voipio pipe2(pipefd, O_CLOEXEC); 2060099d6b0fSRiku Voipio return 0; 2061099d6b0fSRiku Voipio} 2062099d6b0fSRiku VoipioEOF 206352166aa0SJuan Quintelaif compile_prog "" "" ; then 2064099d6b0fSRiku Voipio pipe2=yes 2065099d6b0fSRiku Voipiofi 2066099d6b0fSRiku Voipio 206740ff6d7eSKevin Wolf# check if accept4 is there 206840ff6d7eSKevin Wolfaccept4=no 206940ff6d7eSKevin Wolfcat > $TMPC << EOF 207040ff6d7eSKevin Wolf#include <sys/socket.h> 207140ff6d7eSKevin Wolf#include <stddef.h> 207240ff6d7eSKevin Wolf 207340ff6d7eSKevin Wolfint main(void) 207440ff6d7eSKevin Wolf{ 207540ff6d7eSKevin Wolf accept4(0, NULL, NULL, SOCK_CLOEXEC); 207640ff6d7eSKevin Wolf return 0; 207740ff6d7eSKevin Wolf} 207840ff6d7eSKevin WolfEOF 207940ff6d7eSKevin Wolfif compile_prog "" "" ; then 208040ff6d7eSKevin Wolf accept4=yes 208140ff6d7eSKevin Wolffi 208240ff6d7eSKevin Wolf 20833ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 20843ce34dfbSvibisreenivasansplice=no 20853ce34dfbSvibisreenivasancat > $TMPC << EOF 20863ce34dfbSvibisreenivasan#include <unistd.h> 20873ce34dfbSvibisreenivasan#include <fcntl.h> 20883ce34dfbSvibisreenivasan#include <limits.h> 20893ce34dfbSvibisreenivasan 20903ce34dfbSvibisreenivasanint main(void) 20913ce34dfbSvibisreenivasan{ 20923ce34dfbSvibisreenivasan int len, fd; 20933ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 20943ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 20953ce34dfbSvibisreenivasan return 0; 20963ce34dfbSvibisreenivasan} 20973ce34dfbSvibisreenivasanEOF 209852166aa0SJuan Quintelaif compile_prog "" "" ; then 20993ce34dfbSvibisreenivasan splice=yes 21003ce34dfbSvibisreenivasanfi 21013ce34dfbSvibisreenivasan 2102dcc38d1cSMarcelo Tosatti########################################## 2103dcc38d1cSMarcelo Tosatti# signalfd probe 2104dcc38d1cSMarcelo Tosattisignalfd="no" 2105dcc38d1cSMarcelo Tosatticat > $TMPC << EOF 2106dcc38d1cSMarcelo Tosatti#define _GNU_SOURCE 2107dcc38d1cSMarcelo Tosatti#include <unistd.h> 2108dcc38d1cSMarcelo Tosatti#include <sys/syscall.h> 2109dcc38d1cSMarcelo Tosatti#include <signal.h> 2110dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); } 2111dcc38d1cSMarcelo TosattiEOF 2112dcc38d1cSMarcelo Tosatti 2113dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then 2114dcc38d1cSMarcelo Tosatti signalfd=yes 2115de758970SJan Kiszkaelif test "$kvm" = "yes" -a "$io_thread" != "yes"; then 2116de758970SJan Kiszka echo 2117de758970SJan Kiszka echo "ERROR: Host kernel lacks signalfd() support," 2118de758970SJan Kiszka echo "but KVM depends on it when the IO thread is disabled." 2119de758970SJan Kiszka echo 2120de758970SJan Kiszka exit 1 2121dcc38d1cSMarcelo Tosattifi 2122dcc38d1cSMarcelo Tosatti 2123c2882b96SRiku Voipio# check if eventfd is supported 2124c2882b96SRiku Voipioeventfd=no 2125c2882b96SRiku Voipiocat > $TMPC << EOF 2126c2882b96SRiku Voipio#include <sys/eventfd.h> 2127c2882b96SRiku Voipio 2128c2882b96SRiku Voipioint main(void) 2129c2882b96SRiku Voipio{ 2130c2882b96SRiku Voipio int efd = eventfd(0, 0); 2131c2882b96SRiku Voipio return 0; 2132c2882b96SRiku Voipio} 2133c2882b96SRiku VoipioEOF 2134c2882b96SRiku Voipioif compile_prog "" "" ; then 2135c2882b96SRiku Voipio eventfd=yes 2136c2882b96SRiku Voipiofi 2137c2882b96SRiku Voipio 2138d0927938SUlrich Hecht# check for fallocate 2139d0927938SUlrich Hechtfallocate=no 2140d0927938SUlrich Hechtcat > $TMPC << EOF 2141d0927938SUlrich Hecht#include <fcntl.h> 2142d0927938SUlrich Hecht 2143d0927938SUlrich Hechtint main(void) 2144d0927938SUlrich Hecht{ 2145d0927938SUlrich Hecht fallocate(0, 0, 0, 0); 2146d0927938SUlrich Hecht return 0; 2147d0927938SUlrich Hecht} 2148d0927938SUlrich HechtEOF 2149be17dc90SMichael S. Tsirkinif compile_prog "$ARCH_CFLAGS" "" ; then 2150d0927938SUlrich Hecht fallocate=yes 2151d0927938SUlrich Hechtfi 2152d0927938SUlrich Hecht 2153c727f47dSPeter Maydell# check for sync_file_range 2154c727f47dSPeter Maydellsync_file_range=no 2155c727f47dSPeter Maydellcat > $TMPC << EOF 2156c727f47dSPeter Maydell#include <fcntl.h> 2157c727f47dSPeter Maydell 2158c727f47dSPeter Maydellint main(void) 2159c727f47dSPeter Maydell{ 2160c727f47dSPeter Maydell sync_file_range(0, 0, 0, 0); 2161c727f47dSPeter Maydell return 0; 2162c727f47dSPeter Maydell} 2163c727f47dSPeter MaydellEOF 2164c727f47dSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then 2165c727f47dSPeter Maydell sync_file_range=yes 2166c727f47dSPeter Maydellfi 2167c727f47dSPeter Maydell 2168dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP 2169dace20dcSPeter Maydellfiemap=no 2170dace20dcSPeter Maydellcat > $TMPC << EOF 2171dace20dcSPeter Maydell#include <sys/ioctl.h> 2172dace20dcSPeter Maydell#include <linux/fs.h> 2173dace20dcSPeter Maydell#include <linux/fiemap.h> 2174dace20dcSPeter Maydell 2175dace20dcSPeter Maydellint main(void) 2176dace20dcSPeter Maydell{ 2177dace20dcSPeter Maydell ioctl(0, FS_IOC_FIEMAP, 0); 2178dace20dcSPeter Maydell return 0; 2179dace20dcSPeter Maydell} 2180dace20dcSPeter MaydellEOF 2181dace20dcSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then 2182dace20dcSPeter Maydell fiemap=yes 2183dace20dcSPeter Maydellfi 2184dace20dcSPeter Maydell 2185d0927938SUlrich Hecht# check for dup3 2186d0927938SUlrich Hechtdup3=no 2187d0927938SUlrich Hechtcat > $TMPC << EOF 2188d0927938SUlrich Hecht#include <unistd.h> 2189d0927938SUlrich Hecht 2190d0927938SUlrich Hechtint main(void) 2191d0927938SUlrich Hecht{ 2192d0927938SUlrich Hecht dup3(0, 0, 0); 2193d0927938SUlrich Hecht return 0; 2194d0927938SUlrich Hecht} 2195d0927938SUlrich HechtEOF 219678f5d726SJan Kiszkaif compile_prog "" "" ; then 2197d0927938SUlrich Hecht dup3=yes 2198d0927938SUlrich Hechtfi 2199d0927938SUlrich Hecht 22003b6edd16SPeter Maydell# check for epoll support 22013b6edd16SPeter Maydellepoll=no 22023b6edd16SPeter Maydellcat > $TMPC << EOF 22033b6edd16SPeter Maydell#include <sys/epoll.h> 22043b6edd16SPeter Maydell 22053b6edd16SPeter Maydellint main(void) 22063b6edd16SPeter Maydell{ 22073b6edd16SPeter Maydell epoll_create(0); 22083b6edd16SPeter Maydell return 0; 22093b6edd16SPeter Maydell} 22103b6edd16SPeter MaydellEOF 22113b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then 22123b6edd16SPeter Maydell epoll=yes 22133b6edd16SPeter Maydellfi 22143b6edd16SPeter Maydell 22153b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions 22163b6edd16SPeter Maydell# so we must check separately for their presence 22173b6edd16SPeter Maydellepoll_create1=no 22183b6edd16SPeter Maydellcat > $TMPC << EOF 22193b6edd16SPeter Maydell#include <sys/epoll.h> 22203b6edd16SPeter Maydell 22213b6edd16SPeter Maydellint main(void) 22223b6edd16SPeter Maydell{ 222319e83f6bSPeter Maydell /* Note that we use epoll_create1 as a value, not as 222419e83f6bSPeter Maydell * a function being called. This is necessary so that on 222519e83f6bSPeter Maydell * old SPARC glibc versions where the function was present in 222619e83f6bSPeter Maydell * the library but not declared in the header file we will 222719e83f6bSPeter Maydell * fail the configure check. (Otherwise we will get a compiler 222819e83f6bSPeter Maydell * warning but not an error, and will proceed to fail the 222919e83f6bSPeter Maydell * qemu compile where we compile with -Werror.) 223019e83f6bSPeter Maydell */ 223119e83f6bSPeter Maydell epoll_create1; 22323b6edd16SPeter Maydell return 0; 22333b6edd16SPeter Maydell} 22343b6edd16SPeter MaydellEOF 22353b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then 22363b6edd16SPeter Maydell epoll_create1=yes 22373b6edd16SPeter Maydellfi 22383b6edd16SPeter Maydell 22393b6edd16SPeter Maydellepoll_pwait=no 22403b6edd16SPeter Maydellcat > $TMPC << EOF 22413b6edd16SPeter Maydell#include <sys/epoll.h> 22423b6edd16SPeter Maydell 22433b6edd16SPeter Maydellint main(void) 22443b6edd16SPeter Maydell{ 22453b6edd16SPeter Maydell epoll_pwait(0, 0, 0, 0, 0); 22463b6edd16SPeter Maydell return 0; 22473b6edd16SPeter Maydell} 22483b6edd16SPeter MaydellEOF 22493b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then 22503b6edd16SPeter Maydell epoll_pwait=yes 22513b6edd16SPeter Maydellfi 22523b6edd16SPeter Maydell 2253cc8ae6deSpbrook# Check if tools are available to build documentation. 2254a25dba17SJuan Quintelaif test "$docs" != "no" ; then 225501668d98SStefan Weil if has makeinfo && has pod2man; then 2256a25dba17SJuan Quintela docs=yes 225783a3ab8bSJuan Quintela else 2258a25dba17SJuan Quintela if test "$docs" = "yes" ; then 2259a25dba17SJuan Quintela feature_not_found "docs" 226083a3ab8bSJuan Quintela fi 2261a25dba17SJuan Quintela docs=no 226283a3ab8bSJuan Quintela fi 2263cc8ae6deSpbrookfi 2264cc8ae6deSpbrook 2265f514f41cSStefan Weil# Search for bswap_32 function 22666ae9a1f4SJuan Quintelabyteswap_h=no 22676ae9a1f4SJuan Quintelacat > $TMPC << EOF 22686ae9a1f4SJuan Quintela#include <byteswap.h> 22696ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 22706ae9a1f4SJuan QuintelaEOF 227152166aa0SJuan Quintelaif compile_prog "" "" ; then 22726ae9a1f4SJuan Quintela byteswap_h=yes 22736ae9a1f4SJuan Quintelafi 22746ae9a1f4SJuan Quintela 2275f514f41cSStefan Weil# Search for bswap_32 function 22766ae9a1f4SJuan Quintelabswap_h=no 22776ae9a1f4SJuan Quintelacat > $TMPC << EOF 22786ae9a1f4SJuan Quintela#include <sys/endian.h> 22796ae9a1f4SJuan Quintela#include <sys/types.h> 22806ae9a1f4SJuan Quintela#include <machine/bswap.h> 22816ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 22826ae9a1f4SJuan QuintelaEOF 228352166aa0SJuan Quintelaif compile_prog "" "" ; then 22846ae9a1f4SJuan Quintela bswap_h=yes 22856ae9a1f4SJuan Quintelafi 22866ae9a1f4SJuan Quintela 2287da93a1fdSaliguori########################################## 2288da93a1fdSaliguori# Do we need librt 2289da93a1fdSaliguoricat > $TMPC <<EOF 2290da93a1fdSaliguori#include <signal.h> 2291da93a1fdSaliguori#include <time.h> 2292da93a1fdSaliguoriint main(void) { clockid_t id; return clock_gettime(id, NULL); } 2293da93a1fdSaliguoriEOF 2294da93a1fdSaliguori 229552166aa0SJuan Quintelaif compile_prog "" "" ; then 229607ffa4bdSJuan Quintela : 229752166aa0SJuan Quintelaelif compile_prog "" "-lrt" ; then 229807ffa4bdSJuan Quintela LIBS="-lrt $LIBS" 2299da93a1fdSaliguorifi 2300da93a1fdSaliguori 230131ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ 2302179cf400SAndreas Färber "$aix" != "yes" -a "$haiku" != "yes" ; then 23036362a53fSJuan Quintela libs_softmmu="-lutil $libs_softmmu" 23046362a53fSJuan Quintelafi 23056362a53fSJuan Quintela 2306de5071c5SBlue Swirl########################################## 2307de5071c5SBlue Swirl# check if the compiler defines offsetof 2308de5071c5SBlue Swirl 2309de5071c5SBlue Swirlneed_offsetof=yes 2310de5071c5SBlue Swirlcat > $TMPC << EOF 2311de5071c5SBlue Swirl#include <stddef.h> 2312de5071c5SBlue Swirlint main(void) { struct s { int f; }; return offsetof(struct s, f); } 2313de5071c5SBlue SwirlEOF 2314de5071c5SBlue Swirlif compile_prog "" "" ; then 2315de5071c5SBlue Swirl need_offsetof=no 2316de5071c5SBlue Swirlfi 2317de5071c5SBlue Swirl 23185f6b9e8fSBlue Swirl########################################## 2319747bbdf7SBlue Swirl# check if the compiler understands attribute warn_unused_result 2320747bbdf7SBlue Swirl# 2321747bbdf7SBlue Swirl# This could be smarter, but gcc -Werror does not error out even when warning 2322747bbdf7SBlue Swirl# about attribute warn_unused_result 2323747bbdf7SBlue Swirl 2324747bbdf7SBlue Swirlgcc_attribute_warn_unused_result=no 2325747bbdf7SBlue Swirlcat > $TMPC << EOF 2326747bbdf7SBlue Swirl#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4) 2327747bbdf7SBlue Swirl#error gcc 3.3 or older 2328747bbdf7SBlue Swirl#endif 2329747bbdf7SBlue Swirlint main(void) { return 0;} 2330747bbdf7SBlue SwirlEOF 2331747bbdf7SBlue Swirlif compile_prog "" ""; then 2332747bbdf7SBlue Swirl gcc_attribute_warn_unused_result=yes 2333747bbdf7SBlue Swirlfi 2334747bbdf7SBlue Swirl 2335cd4ec0b4SGerd Hoffmann# spice probe 2336cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then 2337cd4ec0b4SGerd Hoffmann cat > $TMPC << EOF 2338cd4ec0b4SGerd Hoffmann#include <spice.h> 2339cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; } 2340cd4ec0b4SGerd HoffmannEOF 2341710fc4f5SJiri Denemark spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) 2342710fc4f5SJiri Denemark spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) 2343012b80d3SGerd Hoffmann if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \ 2344cd4ec0b4SGerd Hoffmann compile_prog "$spice_cflags" "$spice_libs" ; then 2345cd4ec0b4SGerd Hoffmann spice="yes" 2346cd4ec0b4SGerd Hoffmann libs_softmmu="$libs_softmmu $spice_libs" 2347cd4ec0b4SGerd Hoffmann QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" 2348cd4ec0b4SGerd Hoffmann else 2349cd4ec0b4SGerd Hoffmann if test "$spice" = "yes" ; then 2350cd4ec0b4SGerd Hoffmann feature_not_found "spice" 2351cd4ec0b4SGerd Hoffmann fi 2352cd4ec0b4SGerd Hoffmann spice="no" 2353cd4ec0b4SGerd Hoffmann fi 2354cd4ec0b4SGerd Hoffmannfi 2355cd4ec0b4SGerd Hoffmann 2356111a38b0SRobert Relyea# check for libcacard for smartcard support 2357111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then 2358111a38b0SRobert Relyea smartcard="yes" 2359111a38b0SRobert Relyea smartcard_cflags="" 2360111a38b0SRobert Relyea # TODO - what's the minimal nss version we support? 2361111a38b0SRobert Relyea if test "$smartcard_nss" != "no"; then 2362111a38b0SRobert Relyea if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 ; then 2363111a38b0SRobert Relyea smartcard_nss="yes" 2364111a38b0SRobert Relyea smartcard_cflags="-I\$(SRC_PATH)/libcacard" 2365111a38b0SRobert Relyea libcacard_libs=$($pkg_config --libs nss 2>/dev/null) 2366111a38b0SRobert Relyea libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null) 2367111a38b0SRobert Relyea QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags" 2368111a38b0SRobert Relyea LIBS="$libcacard_libs $LIBS" 2369111a38b0SRobert Relyea else 2370111a38b0SRobert Relyea if test "$smartcard_nss" = "yes"; then 2371111a38b0SRobert Relyea feature_not_found "nss" 2372111a38b0SRobert Relyea fi 2373111a38b0SRobert Relyea smartcard_nss="no" 2374111a38b0SRobert Relyea fi 2375111a38b0SRobert Relyea fi 2376111a38b0SRobert Relyeafi 2377111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then 2378111a38b0SRobert Relyea smartcard_nss="no" 2379111a38b0SRobert Relyeafi 2380111a38b0SRobert Relyea 2381*69354a83SHans de Goede# check for usbredirparser for usb network redirection support 2382*69354a83SHans de Goedeif test "$usb_redir" != "no" ; then 2383*69354a83SHans de Goede if $pkg_config libusbredirparser >/dev/null 2>&1 ; then 2384*69354a83SHans de Goede usb_redir="yes" 2385*69354a83SHans de Goede usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null) 2386*69354a83SHans de Goede usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null) 2387*69354a83SHans de Goede QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" 2388*69354a83SHans de Goede LIBS="$LIBS $usb_redir_libs" 2389*69354a83SHans de Goede else 2390*69354a83SHans de Goede if test "$usb_redir" = "yes"; then 2391*69354a83SHans de Goede feature_not_found "usb-redir" 2392*69354a83SHans de Goede fi 2393*69354a83SHans de Goede usb_redir="no" 2394*69354a83SHans de Goede fi 2395*69354a83SHans de Goedefi 2396*69354a83SHans de Goede 2397cd4ec0b4SGerd Hoffmann########################################## 2398cd4ec0b4SGerd Hoffmann 2399747bbdf7SBlue Swirl########################################## 24005f6b9e8fSBlue Swirl# check if we have fdatasync 24015f6b9e8fSBlue Swirl 24025f6b9e8fSBlue Swirlfdatasync=no 24035f6b9e8fSBlue Swirlcat > $TMPC << EOF 24045f6b9e8fSBlue Swirl#include <unistd.h> 2405d1722a27SAlexandre Raymondint main(void) { 2406d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 2407d1722a27SAlexandre Raymondreturn fdatasync(0); 2408d1722a27SAlexandre Raymond#else 2409d1722a27SAlexandre Raymond#abort Not supported 2410d1722a27SAlexandre Raymond#endif 2411d1722a27SAlexandre Raymond} 24125f6b9e8fSBlue SwirlEOF 24135f6b9e8fSBlue Swirlif compile_prog "" "" ; then 24145f6b9e8fSBlue Swirl fdatasync=yes 24155f6b9e8fSBlue Swirlfi 24165f6b9e8fSBlue Swirl 241794a420b1SStefan Hajnoczi########################################## 2418e78815a5SAndreas Färber# check if we have madvise 2419e78815a5SAndreas Färber 2420e78815a5SAndreas Färbermadvise=no 2421e78815a5SAndreas Färbercat > $TMPC << EOF 2422e78815a5SAndreas Färber#include <sys/types.h> 2423e78815a5SAndreas Färber#include <sys/mman.h> 2424832ce9c2SScott Wood#include <stddef.h> 2425e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); } 2426e78815a5SAndreas FärberEOF 2427e78815a5SAndreas Färberif compile_prog "" "" ; then 2428e78815a5SAndreas Färber madvise=yes 2429e78815a5SAndreas Färberfi 2430e78815a5SAndreas Färber 2431e78815a5SAndreas Färber########################################## 2432e78815a5SAndreas Färber# check if we have posix_madvise 2433e78815a5SAndreas Färber 2434e78815a5SAndreas Färberposix_madvise=no 2435e78815a5SAndreas Färbercat > $TMPC << EOF 2436e78815a5SAndreas Färber#include <sys/mman.h> 2437832ce9c2SScott Wood#include <stddef.h> 2438e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); } 2439e78815a5SAndreas FärberEOF 2440e78815a5SAndreas Färberif compile_prog "" "" ; then 2441e78815a5SAndreas Färber posix_madvise=yes 2442e78815a5SAndreas Färberfi 2443e78815a5SAndreas Färber 2444e78815a5SAndreas Färber########################################## 244594a420b1SStefan Hajnoczi# check if trace backend exists 244694a420b1SStefan Hajnoczi 24474c3b5a48SBlue Swirlsh "$source_path/scripts/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null 244894a420b1SStefan Hajnocziif test "$?" -ne 0 ; then 244994a420b1SStefan Hajnoczi echo 245094a420b1SStefan Hajnoczi echo "Error: invalid trace backend" 245194a420b1SStefan Hajnoczi echo "Please choose a supported trace backend." 245294a420b1SStefan Hajnoczi echo 245394a420b1SStefan Hajnoczi exit 1 245494a420b1SStefan Hajnoczifi 245594a420b1SStefan Hajnoczi 24567e24e92aSStefan Hajnoczi########################################## 24577e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present 24587e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then 24597e24e92aSStefan Hajnoczi cat > $TMPC << EOF 24607e24e92aSStefan Hajnoczi#include <ust/tracepoint.h> 24617e24e92aSStefan Hajnoczi#include <ust/marker.h> 24627e24e92aSStefan Hajnocziint main(void) { return 0; } 24637e24e92aSStefan HajnocziEOF 24647e24e92aSStefan Hajnoczi if compile_prog "" "" ; then 24657e24e92aSStefan Hajnoczi LIBS="-lust $LIBS" 24667e24e92aSStefan Hajnoczi else 24677e24e92aSStefan Hajnoczi echo 24687e24e92aSStefan Hajnoczi echo "Error: Trace backend 'ust' missing libust header files" 24697e24e92aSStefan Hajnoczi echo 24707e24e92aSStefan Hajnoczi exit 1 24717e24e92aSStefan Hajnoczi fi 24727e24e92aSStefan Hajnoczifi 2473b3d08c02SDaniel P. Berrange 2474b3d08c02SDaniel P. Berrange########################################## 2475b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present 2476b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then 2477b3d08c02SDaniel P. Berrange if ! has 'dtrace' ; then 2478b3d08c02SDaniel P. Berrange echo 2479b3d08c02SDaniel P. Berrange echo "Error: dtrace command is not found in PATH $PATH" 2480b3d08c02SDaniel P. Berrange echo 2481b3d08c02SDaniel P. Berrange exit 1 2482b3d08c02SDaniel P. Berrange fi 2483c276b17dSDaniel P. Berrange trace_backend_stap="no" 2484c276b17dSDaniel P. Berrange if has 'stap' ; then 2485c276b17dSDaniel P. Berrange trace_backend_stap="yes" 2486c276b17dSDaniel P. Berrange fi 2487b3d08c02SDaniel P. Berrangefi 2488b3d08c02SDaniel P. Berrange 24897e24e92aSStefan Hajnoczi########################################## 2490e86ecd4bSJuan Quintela# End of CC checks 2491e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 2492e86ecd4bSJuan Quintela 2493e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then 24941156c669SJuan Quintela CFLAGS="-O2 $CFLAGS" 2495e86ecd4bSJuan Quintelafi 2496a316e378SJuan Quintela 2497e86ecd4bSJuan Quintela# Consult white-list to determine whether to enable werror 2498e86ecd4bSJuan Quintela# by default. Only enable by default for git builds 2499e86ecd4bSJuan Quintelaz_version=`cut -f3 -d. $source_path/VERSION` 250020ff6c80SAnthony Liguori 250120ff6c80SAnthony Liguoriif test -z "$werror" ; then 2502e86ecd4bSJuan Quintela if test "$z_version" = "50" -a \ 2503e86ecd4bSJuan Quintela "$linux" = "yes" ; then 2504e86ecd4bSJuan Quintela werror="yes" 2505e86ecd4bSJuan Quintela else 2506e86ecd4bSJuan Quintela werror="no" 2507e86ecd4bSJuan Quintela fi 2508e86ecd4bSJuan Quintelafi 2509e86ecd4bSJuan Quintela 251020ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to 251120ff6c80SAnthony Liguori# enable/disable 251220ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then 251320ff6c80SAnthony Liguori if test "$z_version" = "50" ; then 251420ff6c80SAnthony Liguori zero_malloc="no" 251520ff6c80SAnthony Liguori else 251620ff6c80SAnthony Liguori zero_malloc="yes" 251720ff6c80SAnthony Liguori fi 251820ff6c80SAnthony Liguorifi 251920ff6c80SAnthony Liguori 2520e86ecd4bSJuan Quintelaif test "$werror" = "yes" ; then 2521a558ee17SJuan Quintela QEMU_CFLAGS="-Werror $QEMU_CFLAGS" 2522e86ecd4bSJuan Quintelafi 2523e86ecd4bSJuan Quintela 2524e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 2525e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 25261156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 2527e86ecd4bSJuan Quintela fi 2528e86ecd4bSJuan Quintelafi 2529e86ecd4bSJuan Quintela 2530952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available 2531952afb71SBlue Swirlif test "$mingw32" = "yes" ; then 2532952afb71SBlue Swirl for flag in --dynamicbase --no-seh --nxcompat; do 2533952afb71SBlue Swirl if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then 2534952afb71SBlue Swirl LDFLAGS="-Wl,$flag $LDFLAGS" 2535952afb71SBlue Swirl fi 2536952afb71SBlue Swirl done 2537952afb71SBlue Swirlfi 2538952afb71SBlue Swirl 2539190e9c59SPaolo Bonziniconfdir=$sysconfdir$confsuffix 25405a67135aSbellard 2541ca35f780SPaolo Bonzinitools= 2542ca35f780SPaolo Bonziniif test "$softmmu" = yes ; then 2543ca35f780SPaolo Bonzini tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" 2544ca35f780SPaolo Bonzini if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then 2545ca35f780SPaolo Bonzini tools="qemu-nbd\$(EXESUF) $tools" 2546ca35f780SPaolo Bonzini if [ "$check_utests" = "yes" ]; then 2547ca35f780SPaolo Bonzini tools="check-qint check-qstring check-qdict check-qlist $tools" 2548ca35f780SPaolo Bonzini tools="check-qfloat check-qjson $tools" 2549ca35f780SPaolo Bonzini fi 2550ca35f780SPaolo Bonzini fi 2551ca35f780SPaolo Bonzinifi 2552ca35f780SPaolo Bonzini 2553ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler 2554ca35f780SPaolo Bonziniroms= 2555ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 2556ca35f780SPaolo Bonzini "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ 2557ca35f780SPaolo Bonzini "$softmmu" = yes ; then 2558ca35f780SPaolo Bonzini roms="optionrom" 2559ca35f780SPaolo Bonzinifi 2560d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then 256139ac8455SDavid Gibson roms="$roms spapr-rtas" 256239ac8455SDavid Gibsonfi 2563ca35f780SPaolo Bonzini 25647d13299dSbellardecho "Install prefix $prefix" 2565f2b9e1e3SPaolo Bonziniecho "BIOS directory `eval echo $datadir`" 2566f2b9e1e3SPaolo Bonziniecho "binary directory `eval echo $bindir`" 25673aa5d2beSAlon Levyecho "library directory `eval echo $libdir`" 25681c0fd160SAurelien Jarnoecho "config directory `eval echo $sysconfdir`" 256911d9f695Sbellardif test "$mingw32" = "no" ; then 2570f2b9e1e3SPaolo Bonziniecho "Manual directory `eval echo $mandir`" 257143ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 257211d9f695Sbellardfi 25735a67135aSbellardecho "Source path $source_path" 25747d13299dSbellardecho "C compiler $cc" 257583469015Sbellardecho "Host C compiler $host_cc" 25760c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 2577a558ee17SJuan Quintelaecho "QEMU_CFLAGS $QEMU_CFLAGS" 25780c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 25797d13299dSbellardecho "make $make" 25806a882643Spbrookecho "install $install" 2581a98fd896Sbellardecho "host CPU $cpu" 2582de83cd02Sbellardecho "host big endian $bigendian" 258397a847bcSbellardecho "target list $target_list" 2584ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 2585b4475aa2SLuiz Capitulinoecho "Mon debug enabled $debug_mon" 25867d13299dSbellardecho "gprof enabled $gprof" 258703b4fe7dSaliguoriecho "sparse enabled $sparse" 25881625af87Saliguoriecho "strip binaries $strip_opt" 258905c2a3e7Sbellardecho "profiler $profiler" 259043ce4dfeSbellardecho "static build $static" 259185aa5189Sbellardecho "-Werror enabled $werror" 25925b0753e0Sbellardif test "$darwin" = "yes" ; then 25935b0753e0Sbellard echo "Cocoa support $cocoa" 25945b0753e0Sbellardfi 259597a847bcSbellardecho "SDL support $sdl" 25964d3b6f6eSbalrogecho "curses support $curses" 2597769ce76dSAlexander Grafecho "curl support $curl" 25985495ed11SLuiz Capitulinoecho "check support $check_utests" 259967b915a5Sbellardecho "mingw32 support $mingw32" 26000c58ac1cSmalcecho "Audio drivers $audio_drv_list" 26010c58ac1cSmalcecho "Extra audio cards $audio_card_list" 2602eb852011SMarkus Armbrusterecho "Block whitelist $block_drv_whitelist" 26038ff9cbf7Smalcecho "Mixer emulation $mixemu" 2604821601eaSJes Sorensenecho "VNC support $vnc" 2605821601eaSJes Sorensenif test "$vnc" = "yes" ; then 26068d5d2d4cSths echo "VNC TLS support $vnc_tls" 26072f9606b3Saliguori echo "VNC SASL support $vnc_sasl" 26082f6f5c7aSCorentin Chary echo "VNC JPEG support $vnc_jpeg" 2609efe556adSCorentin Chary echo "VNC PNG support $vnc_png" 2610bd023f95SCorentin Chary echo "VNC thread $vnc_thread" 2611821601eaSJes Sorensenfi 26123142255cSblueswir1if test -n "$sparc_cpu"; then 26133142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 26143142255cSblueswir1fi 2615e37630caSaliguoriecho "xen support $xen" 26162e4d9fb1Saurel32echo "brlapi support $brlapi" 2617a20a6f46SJuan Quintelaecho "bluez support $bluez" 2618a25dba17SJuan Quintelaecho "Documentation $docs" 2619c5937220Spbrook[ ! -z "$uname_release" ] && \ 2620c5937220Spbrookecho "uname -r $uname_release" 2621bd0c5661Spbrookecho "NPTL support $nptl" 2622379f6698SPaul Brookecho "GUEST_BASE $guest_base" 262334005a00SKirill A. Shutemovecho "PIE user targets $user_pie" 26248a16d273Sthsecho "vde support $vde" 2625e5d355d1Saliguoriecho "IO thread $io_thread" 26265c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio" 2627758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr" 262877755340Sthsecho "Install blobs $blobs" 2629b31a0277SJuan Quintelaecho "KVM support $kvm" 2630f652e6afSaurel32echo "fdt support $fdt" 2631ceb42de8Saliguoriecho "preadv support $preadv" 26325f6b9e8fSBlue Swirlecho "fdatasync $fdatasync" 2633e78815a5SAndreas Färberecho "madvise $madvise" 2634e78815a5SAndreas Färberecho "posix_madvise $posix_madvise" 2635ee682d27SStefan Weilecho "uuid support $uuid" 2636d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net" 263794a420b1SStefan Hajnocziecho "Trace backend $trace_backend" 26389410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>" 2639cd4ec0b4SGerd Hoffmannecho "spice support $spice" 2640f27aaf4bSChristian Brunnerecho "rbd support $rbd" 2641dce512deSChristoph Hellwigecho "xfsctl support $xfs" 2642111a38b0SRobert Relyeaecho "nss used $smartcard_nss" 2643*69354a83SHans de Goedeecho "usb net redir $usb_redir" 264420ff075bSMichael Walleecho "OpenGL support $opengl" 264567b915a5Sbellard 264697a847bcSbellardif test $sdl_too_old = "yes"; then 264724b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 2648e8cd23deSbellardfi 264997a847bcSbellard 265098ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 26514bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 265297a847bcSbellard 265398ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 265498ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 265598ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 265698ec69acSJuan Quintelaecho >> $config_host_mak 265798ec69acSJuan Quintela 2658e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak 265999d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak 266099d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak 26613aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak 266299d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak 266399d7cc75SPaolo Bonziniecho "datadir=$datadir" >> $config_host_mak 266499d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak 266599d7cc75SPaolo Bonziniecho "docdir=$docdir" >> $config_host_mak 26661dabe05cSPaolo Bonziniecho "confdir=$confdir" >> $config_host_mak 2667804edf29SJuan Quintela 26682408a527Saurel32case "$cpu" in 2669d2fbca94SGuan Xuetao i386|x86_64|alpha|cris|hppa|ia64|lm32|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64|unicore32) 2670e0da9dd3SJuan Quintela ARCH=$cpu 26712408a527Saurel32 ;; 2672a302c32dSLaurent Desnogues armv4b|armv4l) 267316dbd14fSJuan Quintela ARCH=arm 26742408a527Saurel32 ;; 26752408a527Saurel32esac 267698ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 2677f8393946Saurel32if test "$debug_tcg" = "yes" ; then 26782358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 2679f8393946Saurel32fi 2680b4475aa2SLuiz Capitulinoif test "$debug_mon" = "yes" ; then 2681b4475aa2SLuiz Capitulino echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak 2682b4475aa2SLuiz Capitulinofi 2683f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 26842358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 2685f3d08ee6SPaul Brookfi 26861625af87Saliguoriif test "$strip_opt" = "yes" ; then 268752ba784dSHollis Blanchard echo "STRIP=${strip}" >> $config_host_mak 26881625af87Saliguorifi 26897d13299dSbellardif test "$bigendian" = "yes" ; then 2690e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 269197a847bcSbellardfi 26922358a494SJuan Quintelaecho "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak 269367b915a5Sbellardif test "$mingw32" = "yes" ; then 269498ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 26959fe6de94SBlue Swirl rc_version=`cat $source_path/VERSION` 26969fe6de94SBlue Swirl version_major=${rc_version%%.*} 26979fe6de94SBlue Swirl rc_version=${rc_version#*.} 26989fe6de94SBlue Swirl version_minor=${rc_version%%.*} 26999fe6de94SBlue Swirl rc_version=${rc_version#*.} 27009fe6de94SBlue Swirl version_subminor=${rc_version%%.*} 27019fe6de94SBlue Swirl version_micro=0 27029fe6de94SBlue Swirl echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 27039fe6de94SBlue Swirl echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak 2704210fa556Spbrookelse 270535f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 2706210fa556Spbrookfi 2707128ab2ffSblueswir1 2708dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then 2709dffcb71cSMark McLoughlin echo "CONFIG_LINUX=y" >> $config_host_mak 2710dffcb71cSMark McLoughlinfi 2711dffcb71cSMark McLoughlin 271283fb7adfSbellardif test "$darwin" = "yes" ; then 271398ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 271483fb7adfSbellardfi 2715b29fe3edSmalc 2716b29fe3edSmalcif test "$aix" = "yes" ; then 271798ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 2718b29fe3edSmalcfi 2719b29fe3edSmalc 2720ec530c81Sbellardif test "$solaris" = "yes" ; then 272198ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 27222358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 27230475a5caSths if test "$needs_libsunmath" = "yes" ; then 272475b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 27250475a5caSths fi 2726ec530c81Sbellardfi 2727179cf400SAndreas Färberif test "$haiku" = "yes" ; then 2728179cf400SAndreas Färber echo "CONFIG_HAIKU=y" >> $config_host_mak 2729179cf400SAndreas Färberfi 273097a847bcSbellardif test "$static" = "yes" ; then 273198ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 273297a847bcSbellardfi 273305c2a3e7Sbellardif test $profiler = "yes" ; then 27342358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 273505c2a3e7Sbellardfi 2736c20709aaSbellardif test "$slirp" = "yes" ; then 273798ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 2738f9728943SPaolo Bonzini QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES" 2739c20709aaSbellardfi 27408a16d273Sthsif test "$vde" = "yes" ; then 274198ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 27428a16d273Sthsfi 27430c58ac1cSmalcfor card in $audio_card_list; do 2744f6e5889eSpbrook def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` 274598ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 27460c58ac1cSmalcdone 27472358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 27480c58ac1cSmalcfor drv in $audio_drv_list; do 2749f6e5889eSpbrook def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` 275098ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 2751923e4521Smalc if test "$drv" = "fmod"; then 27527aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 2753fb065187Sbellard fi 27540c58ac1cSmalcdone 275567f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then 275667f86e8eSJuan Quintela echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak 275767f86e8eSJuan Quintelafi 2758d5631638Smalcif test "$audio_win_int" = "yes" ; then 2759d5631638Smalc echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak 2760d5631638Smalcfi 2761eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak 27628ff9cbf7Smalcif test "$mixemu" = "yes" ; then 276398ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 27648ff9cbf7Smalcfi 2765821601eaSJes Sorensenif test "$vnc" = "yes" ; then 2766821601eaSJes Sorensen echo "CONFIG_VNC=y" >> $config_host_mak 2767821601eaSJes Sorensenfi 27688d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 276998ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 2770525061bfSJuan Quintela echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak 27718d5d2d4cSthsfi 27722f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 277398ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 277460ddf533SJuan Quintela echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak 27752f9606b3Saliguorifi 2776821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then 27772f6f5c7aSCorentin Chary echo "CONFIG_VNC_JPEG=y" >> $config_host_mak 27782f6f5c7aSCorentin Chary echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak 27792f6f5c7aSCorentin Charyfi 2780821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then 2781efe556adSCorentin Chary echo "CONFIG_VNC_PNG=y" >> $config_host_mak 2782efe556adSCorentin Chary echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak 2783efe556adSCorentin Charyfi 2784821601eaSJes Sorensenif test "$vnc_thread" = "yes" ; then 2785bd023f95SCorentin Chary echo "CONFIG_VNC_THREAD=y" >> $config_host_mak 2786bd023f95SCorentin Charyfi 278776655d6dSaliguoriif test "$fnmatch" = "yes" ; then 27882358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 278976655d6dSaliguorifi 2790ee682d27SStefan Weilif test "$uuid" = "yes" ; then 2791ee682d27SStefan Weil echo "CONFIG_UUID=y" >> $config_host_mak 2792ee682d27SStefan Weilfi 2793dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then 2794dce512deSChristoph Hellwig echo "CONFIG_XFS=y" >> $config_host_mak 2795dce512deSChristoph Hellwigfi 2796b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 279798ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 27982358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 279998ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 280098ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 2801a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then 280298ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 2803cc8ae6deSpbrookfi 28041ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 280598ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 28068ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 280749ecc3faSbellardfi 280849ecc3faSbellardif test "$cocoa" = "yes" ; then 280998ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 281049ecc3faSbellardfi 28114d3b6f6eSbalrogif test "$curses" = "yes" ; then 281298ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 2813ab4e5602SJan Kiszkafi 28143b3f24adSaurel32if test "$atfile" = "yes" ; then 28152358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 28163b3f24adSaurel32fi 2817ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 28182358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 2819ebc996f3SRiku Voipiofi 2820099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 28212358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 2822099d6b0fSRiku Voipiofi 282340ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then 282440ff6d7eSKevin Wolf echo "CONFIG_ACCEPT4=y" >> $config_host_mak 282540ff6d7eSKevin Wolffi 28263ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 28272358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 28283ce34dfbSvibisreenivasanfi 2829c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then 2830c2882b96SRiku Voipio echo "CONFIG_EVENTFD=y" >> $config_host_mak 2831c2882b96SRiku Voipiofi 2832d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then 2833d0927938SUlrich Hecht echo "CONFIG_FALLOCATE=y" >> $config_host_mak 2834d0927938SUlrich Hechtfi 2835c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then 2836c727f47dSPeter Maydell echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak 2837c727f47dSPeter Maydellfi 2838dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then 2839dace20dcSPeter Maydell echo "CONFIG_FIEMAP=y" >> $config_host_mak 2840dace20dcSPeter Maydellfi 2841d0927938SUlrich Hechtif test "$dup3" = "yes" ; then 2842d0927938SUlrich Hecht echo "CONFIG_DUP3=y" >> $config_host_mak 2843d0927938SUlrich Hechtfi 28443b6edd16SPeter Maydellif test "$epoll" = "yes" ; then 28453b6edd16SPeter Maydell echo "CONFIG_EPOLL=y" >> $config_host_mak 28463b6edd16SPeter Maydellfi 28473b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then 28483b6edd16SPeter Maydell echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak 28493b6edd16SPeter Maydellfi 28503b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then 28513b6edd16SPeter Maydell echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak 28523b6edd16SPeter Maydellfi 28533b3f24adSaurel32if test "$inotify" = "yes" ; then 28542358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 28553b3f24adSaurel32fi 2856c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then 2857c05c7a73SRiku Voipio echo "CONFIG_INOTIFY1=y" >> $config_host_mak 2858c05c7a73SRiku Voipiofi 28596ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 28606ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 28616ae9a1f4SJuan Quintelafi 28626ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 28636ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 28646ae9a1f4SJuan Quintelafi 2865769ce76dSAlexander Grafif test "$curl" = "yes" ; then 286698ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 2867b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 2868769ce76dSAlexander Graffi 28692e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 287098ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 28712e4d9fb1Saurel32fi 2872fb599c9aSbalrogif test "$bluez" = "yes" ; then 287398ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 2874ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 2875fb599c9aSbalrogfi 2876e37630caSaliguoriif test "$xen" = "yes" ; then 28776dbd588aSJan Kiszka echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak 2878d5b93ddfSAnthony PERARD echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak 2879e37630caSaliguorifi 2880e5d355d1Saliguoriif test "$io_thread" = "yes" ; then 288198ec69acSJuan Quintela echo "CONFIG_IOTHREAD=y" >> $config_host_mak 2882e5d355d1Saliguorifi 28835c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then 28845c6c3a6cSChristoph Hellwig echo "CONFIG_LINUX_AIO=y" >> $config_host_mak 28855c6c3a6cSChristoph Hellwigfi 2886758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then 2887758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_ATTR=y" >> $config_host_mak 2888758e8e38SVenkateswararao Jujjuri (JV)fi 2889758e8e38SVenkateswararao Jujjuri (JV)if test "$linux" = "yes" ; then 2890758e8e38SVenkateswararao Jujjuri (JV) if test "$attr" = "yes" ; then 2891758e8e38SVenkateswararao Jujjuri (JV) echo "CONFIG_VIRTFS=y" >> $config_host_mak 2892758e8e38SVenkateswararao Jujjuri (JV) fi 2893758e8e38SVenkateswararao Jujjuri (JV)fi 289477755340Sthsif test "$blobs" = "yes" ; then 289598ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 289677755340Sthsfi 2897bf9298b9Saliguoriif test "$iovec" = "yes" ; then 28982358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 2899bf9298b9Saliguorifi 2900ceb42de8Saliguoriif test "$preadv" = "yes" ; then 29012358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 2902ceb42de8Saliguorifi 2903f652e6afSaurel32if test "$fdt" = "yes" ; then 29043f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 2905f652e6afSaurel32fi 2906dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then 2907dcc38d1cSMarcelo Tosatti echo "CONFIG_SIGNALFD=y" >> $config_host_mak 2908dcc38d1cSMarcelo Tosattifi 2909de5071c5SBlue Swirlif test "$need_offsetof" = "yes" ; then 2910de5071c5SBlue Swirl echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak 2911de5071c5SBlue Swirlfi 2912747bbdf7SBlue Swirlif test "$gcc_attribute_warn_unused_result" = "yes" ; then 2913747bbdf7SBlue Swirl echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak 2914747bbdf7SBlue Swirlfi 29155f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then 29165f6b9e8fSBlue Swirl echo "CONFIG_FDATASYNC=y" >> $config_host_mak 29175f6b9e8fSBlue Swirlfi 2918e78815a5SAndreas Färberif test "$madvise" = "yes" ; then 2919e78815a5SAndreas Färber echo "CONFIG_MADVISE=y" >> $config_host_mak 2920e78815a5SAndreas Färberfi 2921e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then 2922e78815a5SAndreas Färber echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak 2923e78815a5SAndreas Färberfi 292497a847bcSbellard 2925cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then 2926cd4ec0b4SGerd Hoffmann echo "CONFIG_SPICE=y" >> $config_host_mak 2927cd4ec0b4SGerd Hoffmannfi 2928cd4ec0b4SGerd Hoffmann 292936707144SAlon Levyif test "$smartcard" = "yes" ; then 293036707144SAlon Levy echo "CONFIG_SMARTCARD=y" >> $config_host_mak 293136707144SAlon Levyfi 293236707144SAlon Levy 2933111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 2934111a38b0SRobert Relyea echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak 2935111a38b0SRobert Relyeafi 2936111a38b0SRobert Relyea 2937*69354a83SHans de Goedeif test "$usb_redir" = "yes" ; then 2938*69354a83SHans de Goede echo "CONFIG_USB_REDIR=y" >> $config_host_mak 2939*69354a83SHans de Goedefi 2940*69354a83SHans de Goede 294120ff075bSMichael Walleif test "$opengl" = "yes" ; then 294220ff075bSMichael Walle echo "CONFIG_OPENGL=y" >> $config_host_mak 294320ff075bSMichael Wallefi 294420ff075bSMichael Walle 294583fb7adfSbellard# XXX: suppress that 29467d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 29472358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 29487d3505c5Sbellardfi 29497d3505c5Sbellard 29502358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 2951c5937220Spbrook 295220ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then 295320ff6c80SAnthony Liguori echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak 295420ff6c80SAnthony Liguorifi 2955f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then 2956f27aaf4bSChristian Brunner echo "CONFIG_RBD=y" >> $config_host_mak 2957f27aaf4bSChristian Brunnerfi 295820ff6c80SAnthony Liguori 295968063649Sblueswir1# USB host support 296068063649Sblueswir1case "$usb" in 296168063649Sblueswir1linux) 296298ec69acSJuan Quintela echo "HOST_USB=linux" >> $config_host_mak 296368063649Sblueswir1;; 296468063649Sblueswir1bsd) 296598ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 296668063649Sblueswir1;; 296768063649Sblueswir1*) 296898ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 296968063649Sblueswir1;; 297068063649Sblueswir1esac 297168063649Sblueswir1 297294a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak 297322890ab5SPrerna Saxenaif test "$trace_backend" = "simple"; then 297422890ab5SPrerna Saxena echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak 297522890ab5SPrerna Saxenafi 29769410b56cSPrerna Saxena# Set the appropriate trace file. 29779410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then 2978953ffe0fSAndreas Färber trace_file="\"$trace_file-\" FMT_pid" 29799410b56cSPrerna Saxenafi 2980c276b17dSDaniel P. Berrangeif test "$trace_backend" = "dtrace" -a "$trace_backend_stap" = "yes" ; then 2981c276b17dSDaniel P. Berrange echo "CONFIG_SYSTEMTAP_TRACE=y" >> $config_host_mak 2982c276b17dSDaniel P. Berrangefi 29839410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak 29849410b56cSPrerna Saxena 298598ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 298698ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 2987804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 2988804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 2989804edf29SJuan Quintelaecho "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak 2990804edf29SJuan Quintelaecho "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak 2991804edf29SJuan Quintelaecho "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak 2992804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 29932b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak 2994804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 2995804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 2996804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 2997804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 29989fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak 299944dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak 3000e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 3001a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak 3002f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak 3003e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then 3004e39f0062SPaolo Bonzini echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 3005e39f0062SPaolo Bonzini echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 3006e39f0062SPaolo Bonzini echo "QEMU_CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 3007e39f0062SPaolo Bonzinifi 3008c81da56eSJuan Quintelaecho "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak 3009e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 3010a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 3011a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 301273da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak 30133e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak 3014804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 3015804edf29SJuan Quintela 30164bf6b55bSJuan Quintela# generate list of library paths for linker script 30174bf6b55bSJuan Quintela 30184bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 30194bf6b55bSJuan Quintela 30204bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 30214bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 30224bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 30234bf6b55bSJuan Quintela else 30244bf6b55bSJuan Quintela rm ${config_host_ld}~ 30254bf6b55bSJuan Quintela fi 30264bf6b55bSJuan Quintelafi 30274bf6b55bSJuan Quintela 30284d904533SBlue Swirlfor d in libdis libdis-user; do 30294d904533SBlue Swirl mkdir -p $d 303011568d6dSPaolo Bonzini symlink $source_path/Makefile.dis $d/Makefile 30314d904533SBlue Swirl echo > $d/config.mak 30324d904533SBlue Swirldone 3033d44cff22SRichard Hendersonif test "$static" = "no" -a "$user_pie" = "yes" ; then 3034d44cff22SRichard Henderson echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak 3035d44cff22SRichard Hendersonfi 30364d904533SBlue Swirl 303797a847bcSbellardfor target in $target_list; do 303897a847bcSbellardtarget_dir="$target" 303925be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak 3040600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 304197a847bcSbellardtarget_bigendian="no" 30421f3d3c8fSJuan Quintela 3043ea2d6a39SJuan Quintelacase "$target_arch2" in 3044613a22c9SMichael Walle armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus) 3045ea2d6a39SJuan Quintela target_bigendian=yes 3046ea2d6a39SJuan Quintela ;; 3047ea2d6a39SJuan Quintelaesac 304897a847bcSbellardtarget_softmmu="no" 3049997344f3Sbellardtarget_user_only="no" 3050831b7825Sthstarget_linux_user="no" 3051831b7825Sthstarget_darwin_user="no" 305284778508Sblueswir1target_bsd_user="no" 30539e407a85Spbrookcase "$target" in 3054600309b6SBlue Swirl ${target_arch2}-softmmu) 30559e407a85Spbrook target_softmmu="yes" 30569e407a85Spbrook ;; 3057600309b6SBlue Swirl ${target_arch2}-linux-user) 30589c7a4202SBlue Swirl if test "$linux" != "yes" ; then 30599c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Linux host" 30609c7a4202SBlue Swirl exit 1 30619c7a4202SBlue Swirl fi 30629e407a85Spbrook target_user_only="yes" 30639e407a85Spbrook target_linux_user="yes" 30649e407a85Spbrook ;; 3065600309b6SBlue Swirl ${target_arch2}-darwin-user) 30669c7a4202SBlue Swirl if test "$darwin" != "yes" ; then 30679c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a Darwin host" 30689c7a4202SBlue Swirl exit 1 30699c7a4202SBlue Swirl fi 30709e407a85Spbrook target_user_only="yes" 3071831b7825Sths target_darwin_user="yes" 30729e407a85Spbrook ;; 3073600309b6SBlue Swirl ${target_arch2}-bsd-user) 30749cf55765SBlue Swirl if test "$bsd" != "yes" ; then 30759c7a4202SBlue Swirl echo "ERROR: Target '$target' is only available on a BSD host" 30769c7a4202SBlue Swirl exit 1 30779c7a4202SBlue Swirl fi 307884778508Sblueswir1 target_user_only="yes" 307984778508Sblueswir1 target_bsd_user="yes" 308084778508Sblueswir1 ;; 30819e407a85Spbrook *) 30829e407a85Spbrook echo "ERROR: Target '$target' not recognised" 30839e407a85Spbrook exit 1 30849e407a85Spbrook ;; 30859e407a85Spbrookesac 3086831b7825Sths 308797a847bcSbellardmkdir -p $target_dir 3088158142c2Sbellardmkdir -p $target_dir/fpu 308957fec1feSbellardmkdir -p $target_dir/tcg 309059f2a787SGerd Hoffmannmkdir -p $target_dir/ide 3091353ac78dSAneesh Kumar K.Vmkdir -p $target_dir/9pfs 309284778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then 309369de927cSbellard mkdir -p $target_dir/nwfpe 309469de927cSbellardfi 309511568d6dSPaolo Bonzinisymlink $source_path/Makefile.target $target_dir/Makefile 3096ec530c81Sbellard 309797a847bcSbellard 309825be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak 309997a847bcSbellard 3100e5fe0c52Spbrookbflt="no" 3101bd0c5661Spbrooktarget_nptl="no" 3102600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 31037ee2822cSPaolo Bonziniecho "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak 310456aebc89Spbrookgdb_xml_files="" 3105c2e3dee6SLaurent Viviertarget_short_alignment=2 3106c2e3dee6SLaurent Viviertarget_int_alignment=4 3107c2e3dee6SLaurent Viviertarget_long_alignment=4 3108c2e3dee6SLaurent Viviertarget_llong_alignment=8 3109de3a354aSMichael Walletarget_libs_softmmu= 31107ba1e619Saliguori 3111938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 31126acff7daSJuan QuintelaTARGET_BASE_ARCH="" 3113e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 3114e73aae67SJuan Quintela 3115600309b6SBlue Swirlcase "$target_arch2" in 31162408a527Saurel32 i386) 311771deff27SAurelien Jarno target_phys_bits=64 31182408a527Saurel32 ;; 31192408a527Saurel32 x86_64) 31206acff7daSJuan Quintela TARGET_BASE_ARCH=i386 31211ad2134fSPaul Brook target_phys_bits=64 3122c2e3dee6SLaurent Vivier target_long_alignment=8 31232408a527Saurel32 ;; 31242408a527Saurel32 alpha) 31251ad2134fSPaul Brook target_phys_bits=64 3126c2e3dee6SLaurent Vivier target_long_alignment=8 3127a4b388ffSRichard Henderson target_nptl="yes" 31282408a527Saurel32 ;; 31292408a527Saurel32 arm|armeb) 3130b498c8a0SJuan Quintela TARGET_ARCH=arm 3131e5fe0c52Spbrook bflt="yes" 3132bd0c5661Spbrook target_nptl="yes" 313356aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 31341ad2134fSPaul Brook target_phys_bits=32 3135c2e3dee6SLaurent Vivier target_llong_alignment=4 31362408a527Saurel32 ;; 31372408a527Saurel32 cris) 3138253bd7f8Sedgar_igl target_nptl="yes" 31391ad2134fSPaul Brook target_phys_bits=32 31402408a527Saurel32 ;; 3141613a22c9SMichael Walle lm32) 3142613a22c9SMichael Walle target_phys_bits=32 3143de3a354aSMichael Walle target_libs_softmmu="$opengl_libs" 3144613a22c9SMichael Walle ;; 31452408a527Saurel32 m68k) 31460938cda5Saurel32 bflt="yes" 314756aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 31481ad2134fSPaul Brook target_phys_bits=32 3149c2e3dee6SLaurent Vivier target_int_alignment=2 3150c2e3dee6SLaurent Vivier target_long_alignment=2 3151c2e3dee6SLaurent Vivier target_llong_alignment=2 31522408a527Saurel32 ;; 3153877fdc12SEdgar E. Iglesias microblaze|microblazeel) 3154877fdc12SEdgar E. Iglesias TARGET_ARCH=microblaze 315572b675caSEdgar E. Iglesias bflt="yes" 315672b675caSEdgar E. Iglesias target_nptl="yes" 315772b675caSEdgar E. Iglesias target_phys_bits=32 3158de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 315972b675caSEdgar E. Iglesias ;; 31602408a527Saurel32 mips|mipsel) 3161b498c8a0SJuan Quintela TARGET_ARCH=mips 316225be210fSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak 3163f04dc72fSPaul Brook target_nptl="yes" 31641ad2134fSPaul Brook target_phys_bits=64 31652408a527Saurel32 ;; 31662408a527Saurel32 mipsn32|mipsn32el) 3167b498c8a0SJuan Quintela TARGET_ARCH=mipsn32 31686acff7daSJuan Quintela TARGET_BASE_ARCH=mips 316925be210fSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak 31701ad2134fSPaul Brook target_phys_bits=64 31712408a527Saurel32 ;; 31722408a527Saurel32 mips64|mips64el) 3173b498c8a0SJuan Quintela TARGET_ARCH=mips64 31746acff7daSJuan Quintela TARGET_BASE_ARCH=mips 317525be210fSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak 31761ad2134fSPaul Brook target_phys_bits=64 3177c2e3dee6SLaurent Vivier target_long_alignment=8 31782408a527Saurel32 ;; 31792408a527Saurel32 ppc) 3180c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 31811ad2134fSPaul Brook target_phys_bits=32 3182d6630708SNathan Froyd target_nptl="yes" 3183de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 31842408a527Saurel32 ;; 31852408a527Saurel32 ppcemb) 31866acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3187e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3188c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 31891ad2134fSPaul Brook target_phys_bits=64 3190d6630708SNathan Froyd target_nptl="yes" 3191de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 31922408a527Saurel32 ;; 31932408a527Saurel32 ppc64) 31946acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3195e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 3196c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 31971ad2134fSPaul Brook target_phys_bits=64 3198c2e3dee6SLaurent Vivier target_long_alignment=8 3199de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 32002408a527Saurel32 ;; 32012408a527Saurel32 ppc64abi32) 3202b498c8a0SJuan Quintela TARGET_ARCH=ppc64 32036acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 3204e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 320525be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 3206c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 32071ad2134fSPaul Brook target_phys_bits=64 3208de3a354aSMichael Walle target_libs_softmmu="$fdt_libs" 32092408a527Saurel32 ;; 32102408a527Saurel32 sh4|sh4eb) 3211b498c8a0SJuan Quintela TARGET_ARCH=sh4 32124dbed897Spbrook bflt="yes" 32130b6d3ae0Saurel32 target_nptl="yes" 32141ad2134fSPaul Brook target_phys_bits=32 32152408a527Saurel32 ;; 32162408a527Saurel32 sparc) 32171ad2134fSPaul Brook target_phys_bits=64 32182408a527Saurel32 ;; 32192408a527Saurel32 sparc64) 32206acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 32211ad2134fSPaul Brook target_phys_bits=64 3222c2e3dee6SLaurent Vivier target_long_alignment=8 32232408a527Saurel32 ;; 32242408a527Saurel32 sparc32plus) 3225b498c8a0SJuan Quintela TARGET_ARCH=sparc64 32266acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 3227e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 322825be210fSJuan Quintela echo "TARGET_ABI32=y" >> $config_target_mak 32291ad2134fSPaul Brook target_phys_bits=64 32302408a527Saurel32 ;; 323124e804ecSAlexander Graf s390x) 3232bc434676SUlrich Hecht target_nptl="yes" 323324e804ecSAlexander Graf target_phys_bits=64 32347b3da903SAlexander Graf target_long_alignment=8 323524e804ecSAlexander Graf ;; 3236d2fbca94SGuan Xuetao unicore32) 3237d2fbca94SGuan Xuetao target_phys_bits=32 3238d2fbca94SGuan Xuetao ;; 32392408a527Saurel32 *) 3240de83cd02Sbellard echo "Unsupported target CPU" 3241de83cd02Sbellard exit 1 32422408a527Saurel32 ;; 32432408a527Saurel32esac 3244c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak 3245c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak 3246c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak 3247c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak 324825be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak 3249053dd92eSJuan Quintelatarget_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`" 325025be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak 325125be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak 325242bc608bSJuan Quintela# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 32536acff7daSJuan Quintelaif [ "$TARGET_BASE_ARCH" = "" ]; then 32546acff7daSJuan Quintela TARGET_BASE_ARCH=$TARGET_ARCH 32556acff7daSJuan Quintelafi 325625be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak 3257e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 3258e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 3259e6e91b9cSJuan Quintelafi 326025be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak 32611b0c87fcSJuan Quintelacase "$target_arch2" in 32621b0c87fcSJuan Quintela i386|x86_64) 32631b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 326464b3cfdbSAnthony PERARD target_phys_bits=64 326525be210fSJuan Quintela echo "CONFIG_XEN=y" >> $config_target_mak 3266432d268cSJun Nakajima if test "$cpu" = "i386" -o "$cpu" = "x86_64"; then 3267432d268cSJun Nakajima echo "CONFIG_XEN_MAPCACHE=y" >> $config_target_mak 3268432d268cSJun Nakajima fi 32691b0c87fcSJuan Quintela fi 32701b0c87fcSJuan Quintelaesac 3271c59249f9SJuan Quintelacase "$target_arch2" in 32720e60a699SAlexander Graf i386|x86_64|ppcemb|ppc|ppc64|s390x) 3273c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 3274c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 3275c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 3276c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 32775f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 3278adf82011SRené Rebe \( "$target_arch2" = "ppc" -a "$cpu" = "ppc64" \) -o \ 3279adf82011SRené Rebe \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \ 3280c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 3281c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 328225be210fSJuan Quintela echo "CONFIG_KVM=y" >> $config_target_mak 3283d5970055SMichael S. Tsirkin if test $vhost_net = "yes" ; then 3284d5970055SMichael S. Tsirkin echo "CONFIG_VHOST_NET=y" >> $config_target_mak 3285d5970055SMichael S. Tsirkin fi 3286c59249f9SJuan Quintela fi 3287c59249f9SJuan Quintelaesac 3288de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 328925be210fSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak 329097a847bcSbellardfi 329197a847bcSbellardif test "$target_softmmu" = "yes" ; then 3292b1aa27c4SPaul Brook echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak 329325be210fSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_target_mak 3294de3a354aSMichael Walle echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak 32950e8c9214SAndreas Färber echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak 32965791f45bSKirill A. Shutemov echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak 3297de83cd02Sbellardfi 3298997344f3Sbellardif test "$target_user_only" = "yes" ; then 329925be210fSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_target_mak 3300997344f3Sbellardfi 3301831b7825Sthsif test "$target_linux_user" = "yes" ; then 330225be210fSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_target_mak 3303831b7825Sthsfi 3304831b7825Sthsif test "$target_darwin_user" = "yes" ; then 330525be210fSJuan Quintela echo "CONFIG_DARWIN_USER=y" >> $config_target_mak 3306831b7825Sthsfi 3307111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then 3308111a38b0SRobert Relyea echo "subdir-$target: subdir-libcacard" >> $config_host_mak 3309111a38b0SRobert Relyea echo "libcacard_libs=$libcacard_libs" >> $config_host_mak 3310111a38b0SRobert Relyea echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak 3311111a38b0SRobert Relyeafi 331256aebc89Spbrooklist="" 331356aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 331456aebc89Spbrook for x in $gdb_xml_files; do 331556aebc89Spbrook list="$list $source_path/gdb-xml/$x" 331656aebc89Spbrook done 331725be210fSJuan Quintela echo "TARGET_XML_FILES=$list" >> $config_target_mak 33183d0f1517SJuan Quintelafi 3319de83cd02Sbellard 3320e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 332125be210fSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_target_mak 3322e5fe0c52Spbrookfi 3323bd0c5661Spbrookif test "$target_user_only" = "yes" \ 3324bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 332525be210fSJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_target_mak 3326bd0c5661Spbrookfi 3327379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 332825be210fSJuan Quintela echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak 3329379f6698SPaul Brookfi 333084778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 333125be210fSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_target_mak 333284778508Sblueswir1fi 33335b0753e0Sbellard 33344afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets 3335fa282484SJuan Quintela 33364afddb55SJuan Quintelacflags="" 3337f9728943SPaolo Bonziniincludes="" 3338fa282484SJuan Quintelaldflags="" 33399b8e111fSJuan Quintela 334057ddfbf7SJuan Quintelaif test "$ARCH" = "sparc64" ; then 3341f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/sparc $includes" 334224e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then 3343f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/s390 $includes" 33445d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then 3345f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/i386 $includes" 334657ddfbf7SJuan Quintelaelse 3347f9728943SPaolo Bonzini includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes" 334857ddfbf7SJuan Quintelafi 3349f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes" 3350f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/fpu $includes" 335157ddfbf7SJuan Quintela 33524d904533SBlue Swirlif test "$target_user_only" = "yes" ; then 33534d904533SBlue Swirl libdis_config_mak=libdis-user/config.mak 33544d904533SBlue Swirlelse 33554d904533SBlue Swirl libdis_config_mak=libdis/config.mak 33564d904533SBlue Swirlfi 33574d904533SBlue Swirl 335864656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do 335964656024SJuan Quintela case "$i" in 336064656024SJuan Quintela alpha) 336125be210fSJuan Quintela echo "CONFIG_ALPHA_DIS=y" >> $config_target_mak 33624d904533SBlue Swirl echo "CONFIG_ALPHA_DIS=y" >> $libdis_config_mak 336364656024SJuan Quintela ;; 336464656024SJuan Quintela arm) 336525be210fSJuan Quintela echo "CONFIG_ARM_DIS=y" >> $config_target_mak 33664d904533SBlue Swirl echo "CONFIG_ARM_DIS=y" >> $libdis_config_mak 336764656024SJuan Quintela ;; 336864656024SJuan Quintela cris) 336925be210fSJuan Quintela echo "CONFIG_CRIS_DIS=y" >> $config_target_mak 33704d904533SBlue Swirl echo "CONFIG_CRIS_DIS=y" >> $libdis_config_mak 337164656024SJuan Quintela ;; 337264656024SJuan Quintela hppa) 337325be210fSJuan Quintela echo "CONFIG_HPPA_DIS=y" >> $config_target_mak 33744d904533SBlue Swirl echo "CONFIG_HPPA_DIS=y" >> $libdis_config_mak 337564656024SJuan Quintela ;; 337664656024SJuan Quintela i386|x86_64) 337725be210fSJuan Quintela echo "CONFIG_I386_DIS=y" >> $config_target_mak 33784d904533SBlue Swirl echo "CONFIG_I386_DIS=y" >> $libdis_config_mak 337964656024SJuan Quintela ;; 3380903ec55cSAurelien Jarno ia64*) 3381903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $config_target_mak 3382903ec55cSAurelien Jarno echo "CONFIG_IA64_DIS=y" >> $libdis_config_mak 3383903ec55cSAurelien Jarno ;; 338464656024SJuan Quintela m68k) 338525be210fSJuan Quintela echo "CONFIG_M68K_DIS=y" >> $config_target_mak 33864d904533SBlue Swirl echo "CONFIG_M68K_DIS=y" >> $libdis_config_mak 338764656024SJuan Quintela ;; 3388877fdc12SEdgar E. Iglesias microblaze*) 338925be210fSJuan Quintela echo "CONFIG_MICROBLAZE_DIS=y" >> $config_target_mak 33904d904533SBlue Swirl echo "CONFIG_MICROBLAZE_DIS=y" >> $libdis_config_mak 339164656024SJuan Quintela ;; 339264656024SJuan Quintela mips*) 339325be210fSJuan Quintela echo "CONFIG_MIPS_DIS=y" >> $config_target_mak 33944d904533SBlue Swirl echo "CONFIG_MIPS_DIS=y" >> $libdis_config_mak 339564656024SJuan Quintela ;; 339664656024SJuan Quintela ppc*) 339725be210fSJuan Quintela echo "CONFIG_PPC_DIS=y" >> $config_target_mak 33984d904533SBlue Swirl echo "CONFIG_PPC_DIS=y" >> $libdis_config_mak 339964656024SJuan Quintela ;; 340024e804ecSAlexander Graf s390*) 340125be210fSJuan Quintela echo "CONFIG_S390_DIS=y" >> $config_target_mak 34024d904533SBlue Swirl echo "CONFIG_S390_DIS=y" >> $libdis_config_mak 340364656024SJuan Quintela ;; 340464656024SJuan Quintela sh4) 340525be210fSJuan Quintela echo "CONFIG_SH4_DIS=y" >> $config_target_mak 34064d904533SBlue Swirl echo "CONFIG_SH4_DIS=y" >> $libdis_config_mak 340764656024SJuan Quintela ;; 340864656024SJuan Quintela sparc*) 340925be210fSJuan Quintela echo "CONFIG_SPARC_DIS=y" >> $config_target_mak 34104d904533SBlue Swirl echo "CONFIG_SPARC_DIS=y" >> $libdis_config_mak 341164656024SJuan Quintela ;; 341264656024SJuan Quintela esac 341364656024SJuan Quinteladone 341464656024SJuan Quintela 34156ee7126fSJuan Quintelacase "$ARCH" in 34166ee7126fSJuan Quintelaalpha) 34176ee7126fSJuan Quintela # Ensure there's only a single GP 34186ee7126fSJuan Quintela cflags="-msmall-data $cflags" 34196ee7126fSJuan Quintela;; 34206ee7126fSJuan Quintelaesac 34216ee7126fSJuan Quintela 342255d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then 342355d9c04bSJuan Quintela case "$TARGET_BASE_ARCH" in 342455d9c04bSJuan Quintela arm) 342555d9c04bSJuan Quintela cflags="-DHAS_AUDIO $cflags" 342655d9c04bSJuan Quintela ;; 342725a8bb96SMichael Walle lm32) 342825a8bb96SMichael Walle cflags="-DHAS_AUDIO $cflags" 342925a8bb96SMichael Walle ;; 343055d9c04bSJuan Quintela i386|mips|ppc) 343155d9c04bSJuan Quintela cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags" 343255d9c04bSJuan Quintela ;; 343355d9c04bSJuan Quintela esac 343455d9c04bSJuan Quintelafi 343555d9c04bSJuan Quintela 343634005a00SKirill A. Shutemovif test "$target_user_only" = "yes" -a "$static" = "no" -a \ 343734005a00SKirill A. Shutemov "$user_pie" = "yes" ; then 343834005a00SKirill A. Shutemov cflags="-fpie $cflags" 343934005a00SKirill A. Shutemov ldflags="-pie $ldflags" 344034005a00SKirill A. Shutemovfi 344134005a00SKirill A. Shutemov 3442471857ddSJuan Quintelaif test "$target_softmmu" = "yes" -a \( \ 3443471857ddSJuan Quintela "$TARGET_ARCH" = "microblaze" -o \ 3444471857ddSJuan Quintela "$TARGET_ARCH" = "cris" \) ; then 344525be210fSJuan Quintela echo "CONFIG_NEED_MMU=y" >> $config_target_mak 3446471857ddSJuan Quintelafi 3447471857ddSJuan Quintela 3448d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then 344925be210fSJuan Quintela echo "TARGET_GPROF=yes" >> $config_target_mak 3450d02c1db3SJuan Quintela if test "$target_linux_user" = "yes" ; then 3451d02c1db3SJuan Quintela cflags="-p $cflags" 3452d02c1db3SJuan Quintela ldflags="-p $ldflags" 3453d02c1db3SJuan Quintela fi 3454d02c1db3SJuan Quintela if test "$target_softmmu" = "yes" ; then 3455d02c1db3SJuan Quintela ldflags="-p $ldflags" 345625be210fSJuan Quintela echo "GPROF_CFLAGS=-p" >> $config_target_mak 3457d02c1db3SJuan Quintela fi 3458d02c1db3SJuan Quintelafi 3459d02c1db3SJuan Quintela 34606ee7126fSJuan Quintelalinker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld" 34619b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then 3462fa282484SJuan Quintela case "$ARCH" in 3463fa282484SJuan Quintela sparc) 3464fa282484SJuan Quintela # -static is used to avoid g1/g3 usage by the dynamic linker 3465322e5878SJuan Quintela ldflags="$linker_script -static $ldflags" 3466fa282484SJuan Quintela ;; 34674d58be06SRichard Henderson alpha | s390x) 34684d58be06SRichard Henderson # The default placement of the application is fine. 34694d58be06SRichard Henderson ;; 3470fd76e73aSRichard Henderson *) 3471322e5878SJuan Quintela ldflags="$linker_script $ldflags" 3472fa282484SJuan Quintela ;; 3473fa282484SJuan Quintela esac 3474fa282484SJuan Quintelafi 3475fa282484SJuan Quintela 3476e205c790SJan Kiszka# use included Linux headers 3477af2be207SJan Kiszkaif test "$linux" = "yes" ; then 3478e205c790SJan Kiszka includes="-I\$(SRC_PATH)/linux-headers $includes" 3479e205c790SJan Kiszka mkdir -p linux-headers 3480e205c790SJan Kiszka case "$cpu" in 3481e205c790SJan Kiszka i386|x86_64) 3482e205c790SJan Kiszka symlink $source_path/linux-headers/asm-x86 linux-headers/asm 3483e205c790SJan Kiszka ;; 3484e205c790SJan Kiszka ppcemb|ppc|ppc64) 3485af2be207SJan Kiszka symlink $source_path/linux-headers/asm-powerpc linux-headers/asm 3486e205c790SJan Kiszka ;; 3487e205c790SJan Kiszka s390x) 3488e205c790SJan Kiszka symlink $source_path/linux-headers/asm-s390 linux-headers/asm 3489e205c790SJan Kiszka ;; 3490e205c790SJan Kiszka esac 3491af2be207SJan Kiszkafi 3492e205c790SJan Kiszka 349325be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak 349425be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak 3495f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak 3496fa282484SJuan Quintela 349797a847bcSbellarddone # for target in $targets 34987d13299dSbellard 3499d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory 3500e1144d00SMark McLoughlinDIRS="tests tests/cris slirp audio block net pc-bios/optionrom" 3501446b9165SAndreas FärberDIRS="$DIRS pc-bios/spapr-rtas" 35022d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios" 35033e230dd2SCorentin CharyDIRS="$DIRS fsdev ui" 35047d13299dSbellardFILES="Makefile tests/Makefile" 3505e7daa605SthsFILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" 3506ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" 3507446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile" 35082d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" 35095ee8ad71SAlex Williamsonfor bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.rom $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do 35107ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 35117ea78b74SJan Kiszkadone 3512d1807a4fSPaolo Bonzinimkdir -p $DIRS 35137d13299dSbellardfor f in $FILES ; do 3514f9245e10SPeter Maydell if [ -e "$source_path/$f" ] && ! [ -e "$f" ]; then 3515f9245e10SPeter Maydell symlink "$source_path/$f" "$f" 3516f9245e10SPeter Maydell fi 35177d13299dSbellarddone 35181ad2134fSPaul Brook 3519c34ebfdcSAnthony Liguori# temporary config to build submodules 35202d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do 3521c34ebfdcSAnthony Liguori config_mak=roms/$rom/config.mak 352237116c89SStefan Weil echo "# Automatically generated by configure - do not modify" > $config_mak 3523c34ebfdcSAnthony Liguori echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak 3524c34ebfdcSAnthony Liguori echo "CC=$cc" >> $config_mak 3525c34ebfdcSAnthony Liguori echo "BCC=bcc" >> $config_mak 3526c34ebfdcSAnthony Liguori echo "CPP=${cross_prefix}cpp" >> $config_mak 3527c34ebfdcSAnthony Liguori echo "OBJCOPY=objcopy" >> $config_mak 3528c34ebfdcSAnthony Liguori echo "IASL=iasl" >> $config_mak 3529c34ebfdcSAnthony Liguori echo "LD=$ld" >> $config_mak 3530c34ebfdcSAnthony Liguoridone 3531c34ebfdcSAnthony Liguori 35321ad2134fSPaul Brookfor hwlib in 32 64; do 35331ad2134fSPaul Brook d=libhw$hwlib 35341ad2134fSPaul Brook mkdir -p $d 35359953b2fcSBlue Swirl mkdir -p $d/ide 353611568d6dSPaolo Bonzini symlink $source_path/Makefile.hw $d/Makefile 3537353ac78dSAneesh Kumar K.V mkdir -p $d/9pfs 353837116c89SStefan Weil echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak 35391ad2134fSPaul Brookdone 3540add16157SBlue Swirl 3541111a38b0SRobert Relyeaif [ "$source_path" != `pwd` ]; then 3542111a38b0SRobert Relyea # out of tree build 3543111a38b0SRobert Relyea mkdir -p libcacard 3544111a38b0SRobert Relyea rm -f libcacard/Makefile 354544dc0ca3SAlon Levy symlink "$source_path/libcacard/Makefile" libcacard/Makefile 3546111a38b0SRobert Relyeafi 3547111a38b0SRobert Relyea 3548add16157SBlue Swirld=libuser 3549add16157SBlue Swirlmkdir -p $d 355011568d6dSPaolo Bonzinisymlink $source_path/Makefile.user $d/Makefile 3551299060a0SKirill A. Shutemovif test "$static" = "no" -a "$user_pie" = "yes" ; then 3552299060a0SKirill A. Shutemov echo "QEMU_CFLAGS+=-fpie" > $d/config.mak 3553299060a0SKirill A. Shutemovfi 3554b40292e7SJan Kiszka 3555b40292e7SJan Kiszkaif test "$docs" = "yes" ; then 3556b40292e7SJan Kiszka mkdir -p QMP 3557b40292e7SJan Kiszkafi 3558