17d13299dSbellard#!/bin/sh 27d13299dSbellard# 33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard 47d13299dSbellard# 57d13299dSbellard# set temporary file name 67d13299dSbellardif test ! -z "$TMPDIR" ; then 77d13299dSbellard TMPDIR1="${TMPDIR}" 87d13299dSbellardelif test ! -z "$TEMPDIR" ; then 97d13299dSbellard TMPDIR1="${TEMPDIR}" 107d13299dSbellardelse 117d13299dSbellard TMPDIR1="/tmp" 127d13299dSbellardfi 137d13299dSbellard 143ef693a0SbellardTMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c" 153ef693a0SbellardTMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o" 163ef693a0SbellardTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}" 177d13299dSbellard 189784cde5SJuan Quintelatrap "rm -f $TMPC $TMPO $TMPE ; exit" 0 2 3 15 199ac81bbbSmalc 2052166aa0SJuan Quintelacompile_object() { 2152166aa0SJuan Quintela $cc $CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null 2252166aa0SJuan Quintela} 2352166aa0SJuan Quintela 2452166aa0SJuan Quintelacompile_prog() { 2552166aa0SJuan Quintela local_cflags="$1" 2652166aa0SJuan Quintela local_ldflags="$2" 2752166aa0SJuan Quintela $cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags > /dev/null 2> /dev/null 2852166aa0SJuan Quintela} 2952166aa0SJuan Quintela 307d13299dSbellard# default parameters 312ff6b91eSJuan Quintelacpu="" 3211d9f695Sbellardprefix="" 331e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M" 3443ce4dfeSbellardstatic="no" 35ed968ff1SJuan Quintelasparc_cpu="" 367d13299dSbellardcross_prefix="" 377d13299dSbellardcc="gcc" 380c58ac1cSmalcaudio_drv_list="" 394c9b53e3Smalcaudio_card_list="ac97 es1370 sb16" 404c9b53e3Smalcaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus" 417d13299dSbellardhost_cc="gcc" 427d13299dSbellardar="ar" 437d13299dSbellardmake="make" 446a882643Spbrookinstall="install" 457aa486feSAnthony Liguoriobjcopy="objcopy" 467aa486feSAnthony Liguorild="ld" 47ac0df51dSaliguori 48ac0df51dSaliguori# parse CC options first 49ac0df51dSaliguorifor opt do 50ac0df51dSaliguori optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 51ac0df51dSaliguori case "$opt" in 52ac0df51dSaliguori --cross-prefix=*) cross_prefix="$optarg" 53ac0df51dSaliguori ;; 54ac0df51dSaliguori --cc=*) cc="$optarg" 55ac0df51dSaliguori ;; 562ff6b91eSJuan Quintela --cpu=*) cpu="$optarg" 572ff6b91eSJuan Quintela ;; 58e2a2ed06SJuan Quintela --extra-cflags=*) CFLAGS="$optarg $CFLAGS" 59e2a2ed06SJuan Quintela ;; 60e2a2ed06SJuan Quintela --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS" 61e2a2ed06SJuan Quintela ;; 6250e7b1a0SJuan Quintela --sparc_cpu=*) 6350e7b1a0SJuan Quintela sparc_cpu="$optarg" 6450e7b1a0SJuan Quintela case $sparc_cpu in 65ed968ff1SJuan Quintela v7|v8|v8plus|v8plusa) 6650e7b1a0SJuan Quintela cpu="sparc" 6750e7b1a0SJuan Quintela ;; 6850e7b1a0SJuan Quintela v9) 6950e7b1a0SJuan Quintela cpu="sparc64" 7050e7b1a0SJuan Quintela ;; 7150e7b1a0SJuan Quintela *) 7250e7b1a0SJuan Quintela echo "undefined SPARC architecture. Exiting"; 7350e7b1a0SJuan Quintela exit 1 7450e7b1a0SJuan Quintela ;; 7550e7b1a0SJuan Quintela esac 7650e7b1a0SJuan Quintela ;; 77ac0df51dSaliguori esac 78ac0df51dSaliguoridone 79ac0df51dSaliguori# OS specific 80ac0df51dSaliguori# Using uname is really, really broken. Once we have the right set of checks 81ac0df51dSaliguori# we can eliminate it's usage altogether 82ac0df51dSaliguori 83ac0df51dSaliguoricc="${cross_prefix}${cc}" 84ac0df51dSaliguoriar="${cross_prefix}${ar}" 857aa486feSAnthony Liguoriobjcopy="${cross_prefix}${objcopy}" 867aa486feSAnthony Liguorild="${cross_prefix}${ld}" 87ac0df51dSaliguori 88ac0df51dSaliguori# check that the C compiler works. 89ac0df51dSaliguoricat > $TMPC <<EOF 90ac0df51dSaliguoriint main(void) {} 91ac0df51dSaliguoriEOF 92ac0df51dSaliguori 9352166aa0SJuan Quintelaif compile_object ; then 94ac0df51dSaliguori : C compiler works ok 95ac0df51dSaliguorielse 96ac0df51dSaliguori echo "ERROR: \"$cc\" either does not exist or does not work" 97ac0df51dSaliguori exit 1 98ac0df51dSaliguorifi 99ac0df51dSaliguori 100ac0df51dSaliguoricheck_define() { 101ac0df51dSaliguoricat > $TMPC <<EOF 102ac0df51dSaliguori#if !defined($1) 103ac0df51dSaliguori#error Not defined 104ac0df51dSaliguori#endif 105ac0df51dSaliguoriint main(void) { return 0; } 106ac0df51dSaliguoriEOF 10752166aa0SJuan Quintela compile_object 108ac0df51dSaliguori} 109ac0df51dSaliguori 1102ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then 1112ff6b91eSJuan Quintela # command line argument 1122ff6b91eSJuan Quintela : 1132ff6b91eSJuan Quintelaelif check_define __i386__ ; then 114ac0df51dSaliguori cpu="i386" 115ac0df51dSaliguorielif check_define __x86_64__ ; then 116ac0df51dSaliguori cpu="x86_64" 1173aa9bd6cSblueswir1elif check_define __sparc__ ; then 1183aa9bd6cSblueswir1 # We can't check for 64 bit (when gcc is biarch) or V8PLUSA 1193aa9bd6cSblueswir1 # They must be specified using --sparc_cpu 1203aa9bd6cSblueswir1 if check_define __arch64__ ; then 1213aa9bd6cSblueswir1 cpu="sparc64" 1223aa9bd6cSblueswir1 else 1233aa9bd6cSblueswir1 cpu="sparc" 1243aa9bd6cSblueswir1 fi 125fdf7ed96Smalcelif check_define _ARCH_PPC ; then 126fdf7ed96Smalc if check_define _ARCH_PPC64 ; then 127fdf7ed96Smalc cpu="ppc64" 128ac0df51dSaliguori else 129fdf7ed96Smalc cpu="ppc" 130fdf7ed96Smalc fi 131fdf7ed96Smalcelse 132fdf7ed96Smalc cpu=`uname -m` 133ac0df51dSaliguorifi 134ac0df51dSaliguori 1355327cf48Sbellardtarget_list="" 1367d13299dSbellardcase "$cpu" in 137ea8f20f8SJuan Quintela alpha|cris|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|sparc64) 138ea8f20f8SJuan Quintela cpu="$cpu" 139ea8f20f8SJuan Quintela ;; 1407d13299dSbellard i386|i486|i586|i686|i86pc|BePC) 14197a847bcSbellard cpu="i386" 1427d13299dSbellard ;; 143aaa5fa14Saurel32 x86_64|amd64) 144aaa5fa14Saurel32 cpu="x86_64" 145aaa5fa14Saurel32 ;; 146ba68055eSbellard armv*b) 147808c4954Sbellard cpu="armv4b" 148808c4954Sbellard ;; 149ba68055eSbellard armv*l) 1507d13299dSbellard cpu="armv4l" 1517d13299dSbellard ;; 152f54b3f92Saurel32 parisc|parisc64) 153f54b3f92Saurel32 cpu="hppa" 154f54b3f92Saurel32 ;; 1550e7b8a9fSths s390*) 156fb3e5849Sbellard cpu="s390" 157fb3e5849Sbellard ;; 1583142255cSblueswir1 sparc|sun4[cdmuv]) 159ae228531Sbellard cpu="sparc" 160ae228531Sbellard ;; 1617d13299dSbellard *) 1627d13299dSbellard cpu="unknown" 1637d13299dSbellard ;; 1647d13299dSbellardesac 165eb82284fSJuan Quintelabrlapi="yes" 1667d13299dSbellardgprof="no" 167f8393946Saurel32debug_tcg="no" 168f3d08ee6SPaul Brookdebug="no" 16903b4fe7dSaliguorisparse="no" 1701625af87Saliguoristrip_opt="yes" 1717d13299dSbellardbigendian="no" 17267b915a5Sbellardmingw32="no" 17367b915a5SbellardEXESUF="" 174443f1376Sbellardslirp="yes" 175e0e6c8c0Saliguorivde="yes" 176102a52e4Sbellardfmod_lib="" 177102a52e4Sbellardfmod_inc="" 1782f6a1ab0Sblueswir1oss_lib="" 1798d5d2d4cSthsvnc_tls="yes" 1802f9606b3Saliguorivnc_sasl="yes" 181b1a550a0Spbrookbsd="no" 1825327cf48Sbellardlinux="no" 183d2c7c9b8Sblueswir1solaris="no" 184c9ec1fe4Sbellardkqemu="no" 18505c2a3e7Sbellardprofiler="no" 1865b0753e0Sbellardcocoa="no" 1870a8e90f4Spbrooksoftmmu="yes" 188831b7825Sthslinux_user="no" 189831b7825Sthsdarwin_user="no" 19084778508Sblueswir1bsd_user="no" 191379f6698SPaul Brookguest_base="" 19270ec5dc0SAnthony Liguoribuild_docs="yes" 193c5937220Spbrookuname_release="" 1944d3b6f6eSbalrogcurses="yes" 195769ce76dSAlexander Grafcurl="yes" 196e5d355d1Saliguoripthread="yes" 197414f0dabSblueswir1aio="yes" 198e5d355d1Saliguoriio_thread="no" 199bd0c5661Spbrooknptl="yes" 2008ff9cbf7Smalcmixemu="no" 201fb599c9aSbalrogbluez="yes" 202dff84034SJan Kiszkakvm="no" 203eac30262Saliguorikerneldir="" 204b29fe3edSmalcaix="no" 20577755340Sthsblobs="yes" 206f652e6afSaurel32fdt="yes" 207f92f8afeSAnthony Liguorisdl="yes" 208e37630caSaliguorixen="yes" 2094a19f1ecSpbrookpkgversion="" 2107d13299dSbellard 2117d13299dSbellard# OS specific 212ac0df51dSaliguoriif check_define __linux__ ; then 213ac0df51dSaliguori targetos="Linux" 214ac0df51dSaliguorielif check_define _WIN32 ; then 215ac0df51dSaliguori targetos='MINGW32' 216169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then 217169dc5d3Sblueswir1 targetos='OpenBSD' 218169dc5d3Sblueswir1elif check_define __sun__ ; then 219169dc5d3Sblueswir1 targetos='SunOS' 220ac0df51dSaliguorielse 2217d13299dSbellard targetos=`uname -s` 222ac0df51dSaliguorifi 223*0dbfc675SJuan Quintela 2247d13299dSbellardcase $targetos in 225c326e0afSbellardCYGWIN*) 226c326e0afSbellard mingw32="yes" 2270c439cbfSJuan Quintela CFLAGS="-mno-cygwin $CFLAGS" 228c2de5c91Smalc audio_possible_drivers="sdl" 229c326e0afSbellard;; 23067b915a5SbellardMINGW32*) 23167b915a5Sbellard mingw32="yes" 232c2de5c91Smalc audio_possible_drivers="dsound sdl fmod" 23367b915a5Sbellard;; 2345c40d2bdSthsGNU/kFreeBSD) 2350c58ac1cSmalc audio_drv_list="oss" 236f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 2375c40d2bdSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 2385c40d2bdSths kqemu="yes" 2395c40d2bdSths fi 2405c40d2bdSths;; 2417d3505c5SbellardFreeBSD) 2427d3505c5Sbellard bsd="yes" 2430c58ac1cSmalc audio_drv_list="oss" 244f34af52cSaurel32 audio_possible_drivers="oss sdl esd pa" 245e99f9060Sbellard if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 24607f4ddbfSbellard kqemu="yes" 24707f4ddbfSbellard fi 2487d3505c5Sbellard;; 249c5e97233Sblueswir1DragonFly) 250c5e97233Sblueswir1 bsd="yes" 251c5e97233Sblueswir1 audio_drv_list="oss" 252c5e97233Sblueswir1 audio_possible_drivers="oss sdl esd pa" 253c5e97233Sblueswir1 if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 254c5e97233Sblueswir1 kqemu="yes" 255c5e97233Sblueswir1 fi 256c5e97233Sblueswir1 aio="no" 257c5e97233Sblueswir1;; 2587d3505c5SbellardNetBSD) 2597d3505c5Sbellard bsd="yes" 2600c58ac1cSmalc audio_drv_list="oss" 261c2de5c91Smalc audio_possible_drivers="oss sdl esd" 2628ef92a88Sblueswir1 oss_lib="-lossaudio" 2637d3505c5Sbellard;; 2647d3505c5SbellardOpenBSD) 2657d3505c5Sbellard bsd="yes" 2660c58ac1cSmalc audio_drv_list="oss" 267c2de5c91Smalc audio_possible_drivers="oss sdl esd" 2682f6a1ab0Sblueswir1 oss_lib="-lossaudio" 2697d3505c5Sbellard;; 27083fb7adfSbellardDarwin) 27183fb7adfSbellard bsd="yes" 27283fb7adfSbellard darwin="yes" 273*0dbfc675SJuan Quintela # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can 274*0dbfc675SJuan Quintela # run 64-bit userspace code 275aab8588aSmalc if [ "$cpu" = "i386" ] ; then 2761b0f9cc2Saliguori is_x86_64=`sysctl -n hw.optional.x86_64` 277aab8588aSmalc [ "$is_x86_64" = "1" ] && cpu=x86_64 2781b0f9cc2Saliguori fi 2791b0f9cc2Saliguori if [ "$cpu" = "x86_64" ] ; then 2800c439cbfSJuan Quintela CFLAGS="-arch x86_64 $CFLAGS" 2810c439cbfSJuan Quintela LDFLAGS="-arch x86_64 $LDFLAGS" 2821b0f9cc2Saliguori else 2830c439cbfSJuan Quintela CFLAGS="-mdynamic-no-pic $CFLAGS" 2841b0f9cc2Saliguori fi 285831b7825Sths darwin_user="yes" 286fd677642Sths cocoa="yes" 2870c58ac1cSmalc audio_drv_list="coreaudio" 288c2de5c91Smalc audio_possible_drivers="coreaudio sdl fmod" 2890c439cbfSJuan Quintela LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS" 29083fb7adfSbellard;; 291ec530c81SbellardSunOS) 292ec530c81Sbellard solaris="yes" 293c2b84fabSths make="gmake" 294c2b84fabSths install="ginstall" 2950475a5caSths needs_libsunmath="no" 296c2b84fabSths solarisrev=`uname -r | cut -f2 -d.` 297ef18c883Sths # have to select again, because `uname -m` returns i86pc 298ef18c883Sths # even on an x86_64 box. 299ef18c883Sths solariscpu=`isainfo -k` 300ef18c883Sths if test "${solariscpu}" = "amd64" ; then 301ef18c883Sths cpu="x86_64" 302ef18c883Sths fi 303c2b84fabSths if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 3040475a5caSths if test "$solarisrev" -le 9 ; then 3050475a5caSths if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then 3060475a5caSths needs_libsunmath="yes" 3070475a5caSths else 3080475a5caSths echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without" 3090475a5caSths echo "libsunmath from the Sun Studio compilers tools, due to a lack of" 3100475a5caSths echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86" 3110475a5caSths echo "Studio 11 can be downloaded from www.sun.com." 3120475a5caSths exit 1 3130475a5caSths fi 3140475a5caSths fi 3150475a5caSths if test "$solarisrev" -ge 9 ; then 316c2b84fabSths kqemu="yes" 317c2b84fabSths fi 31886b2bd93Sths fi 3196b4d2ba1Sths if test -f /usr/include/sys/soundcard.h ; then 3200c58ac1cSmalc audio_drv_list="oss" 3216b4d2ba1Sths fi 322c2de5c91Smalc audio_possible_drivers="oss sdl" 3230c439cbfSJuan Quintela CFLAGS="-std=gnu99 $CFLAGS" 324ec530c81Sbellard;; 325b29fe3edSmalcAIX) 326b29fe3edSmalc aix="yes" 327b29fe3edSmalc make="gmake" 328b29fe3edSmalc;; 329fb065187Sbellard*) 3300c58ac1cSmalc audio_drv_list="oss" 331b8e59f18Smalc audio_possible_drivers="oss alsa sdl esd pa" 3325327cf48Sbellard linux="yes" 333831b7825Sths linux_user="yes" 33468063649Sblueswir1 usb="linux" 335dff84034SJan Kiszka kvm="yes" 33607f4ddbfSbellard if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then 337c9ec1fe4Sbellard kqemu="yes" 338c2de5c91Smalc audio_possible_drivers="$audio_possible_drivers fmod" 339c9ec1fe4Sbellard fi 340fb065187Sbellard;; 3417d13299dSbellardesac 3427d13299dSbellard 3437d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 344b1a550a0Spbrook if [ "$darwin" != "yes" ] ; then 3457d3505c5Sbellard make="gmake" 34668063649Sblueswir1 usb="bsd" 34783fb7adfSbellard fi 34884778508Sblueswir1 bsd_user="yes" 3497d3505c5Sbellardfi 3507d3505c5Sbellard 3513457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then 352fecde40aSJuan Quintela if [ "$cpu" = "i386" ] ; then 353fecde40aSJuan Quintela kqemu="yes" 354fecde40aSJuan Quintela fi 3553457a3f8SJuan Quintela EXESUF=".exe" 3563457a3f8SJuan Quintela CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $CFLAGS" 3573457a3f8SJuan Quintelafi 3583457a3f8SJuan Quintela 3597d13299dSbellard# find source path 360ad064840Spbrooksource_path=`dirname "$0"` 36159faef3aSbalrogsource_path_used="no" 36259faef3aSbalrogworkdir=`pwd` 363ad064840Spbrookif [ -z "$source_path" ]; then 36459faef3aSbalrog source_path=$workdir 365ad064840Spbrookelse 366ad064840Spbrook source_path=`cd "$source_path"; pwd` 3677d13299dSbellardfi 368724db118Spbrook[ -f "$workdir/vl.c" ] || source_path_used="yes" 3697d13299dSbellard 370487fefdbSAnthony Liguoriwerror="" 37185aa5189Sbellard 3727d13299dSbellardfor opt do 373a46e4035Spbrook optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 3747d13299dSbellard case "$opt" in 3752efc3265Sbellard --help|-h) show_help=yes 3762efc3265Sbellard ;; 377b1a550a0Spbrook --prefix=*) prefix="$optarg" 3787d13299dSbellard ;; 379b1a550a0Spbrook --interp-prefix=*) interp_prefix="$optarg" 38032ce6337Sbellard ;; 381b1a550a0Spbrook --source-path=*) source_path="$optarg" 382ad064840Spbrook source_path_used="yes" 3837d13299dSbellard ;; 384ac0df51dSaliguori --cross-prefix=*) 3857d13299dSbellard ;; 386ac0df51dSaliguori --cc=*) 3877d13299dSbellard ;; 388b1a550a0Spbrook --host-cc=*) host_cc="$optarg" 38983469015Sbellard ;; 390b1a550a0Spbrook --make=*) make="$optarg" 3917d13299dSbellard ;; 3926a882643Spbrook --install=*) install="$optarg" 3936a882643Spbrook ;; 394e2a2ed06SJuan Quintela --extra-cflags=*) 3957d13299dSbellard ;; 396e2a2ed06SJuan Quintela --extra-ldflags=*) 3977d13299dSbellard ;; 3982ff6b91eSJuan Quintela --cpu=*) 3997d13299dSbellard ;; 400b1a550a0Spbrook --target-list=*) target_list="$optarg" 401de83cd02Sbellard ;; 4027d13299dSbellard --enable-gprof) gprof="yes" 4037d13299dSbellard ;; 40443ce4dfeSbellard --static) static="yes" 40543ce4dfeSbellard ;; 40697a847bcSbellard --disable-sdl) sdl="no" 40797a847bcSbellard ;; 408b1a550a0Spbrook --fmod-lib=*) fmod_lib="$optarg" 409102a52e4Sbellard ;; 410c2de5c91Smalc --fmod-inc=*) fmod_inc="$optarg" 411c2de5c91Smalc ;; 4122f6a1ab0Sblueswir1 --oss-lib=*) oss_lib="$optarg" 4132f6a1ab0Sblueswir1 ;; 4142fa7d3bfSmalc --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` 4150c58ac1cSmalc ;; 4160c58ac1cSmalc --audio-drv-list=*) audio_drv_list="$optarg" 4170c58ac1cSmalc ;; 418f8393946Saurel32 --enable-debug-tcg) debug_tcg="yes" 419f8393946Saurel32 ;; 420f8393946Saurel32 --disable-debug-tcg) debug_tcg="no" 421f8393946Saurel32 ;; 422f3d08ee6SPaul Brook --enable-debug) 423f3d08ee6SPaul Brook # Enable debugging options that aren't excessively noisy 424f3d08ee6SPaul Brook debug_tcg="yes" 425f3d08ee6SPaul Brook debug="yes" 426f3d08ee6SPaul Brook strip_opt="no" 427f3d08ee6SPaul Brook ;; 42803b4fe7dSaliguori --enable-sparse) sparse="yes" 42903b4fe7dSaliguori ;; 43003b4fe7dSaliguori --disable-sparse) sparse="no" 43103b4fe7dSaliguori ;; 4321625af87Saliguori --disable-strip) strip_opt="no" 4331625af87Saliguori ;; 4348d5d2d4cSths --disable-vnc-tls) vnc_tls="no" 4358d5d2d4cSths ;; 4362f9606b3Saliguori --disable-vnc-sasl) vnc_sasl="no" 4372f9606b3Saliguori ;; 438443f1376Sbellard --disable-slirp) slirp="no" 439c20709aaSbellard ;; 440e0e6c8c0Saliguori --disable-vde) vde="no" 4418a16d273Sths ;; 442c9ec1fe4Sbellard --disable-kqemu) kqemu="no" 443c9ec1fe4Sbellard ;; 444e37630caSaliguori --disable-xen) xen="no" 445e37630caSaliguori ;; 4462e4d9fb1Saurel32 --disable-brlapi) brlapi="no" 4472e4d9fb1Saurel32 ;; 448fb599c9aSbalrog --disable-bluez) bluez="no" 449fb599c9aSbalrog ;; 4507ba1e619Saliguori --disable-kvm) kvm="no" 4517ba1e619Saliguori ;; 45205c2a3e7Sbellard --enable-profiler) profiler="yes" 45305c2a3e7Sbellard ;; 454c2de5c91Smalc --enable-cocoa) 455c2de5c91Smalc cocoa="yes" ; 456c2de5c91Smalc sdl="no" ; 457c2de5c91Smalc audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`" 4585b0753e0Sbellard ;; 459cad25d69Spbrook --disable-system) softmmu="no" 4600a8e90f4Spbrook ;; 461cad25d69Spbrook --enable-system) softmmu="yes" 4620a8e90f4Spbrook ;; 463831b7825Sths --disable-linux-user) linux_user="no" 4640a8e90f4Spbrook ;; 465831b7825Sths --enable-linux-user) linux_user="yes" 466831b7825Sths ;; 467831b7825Sths --disable-darwin-user) darwin_user="no" 468831b7825Sths ;; 469831b7825Sths --enable-darwin-user) darwin_user="yes" 4700a8e90f4Spbrook ;; 47184778508Sblueswir1 --disable-bsd-user) bsd_user="no" 47284778508Sblueswir1 ;; 47384778508Sblueswir1 --enable-bsd-user) bsd_user="yes" 47484778508Sblueswir1 ;; 475379f6698SPaul Brook --enable-guest-base) guest_base="yes" 476379f6698SPaul Brook ;; 477379f6698SPaul Brook --disable-guest-base) guest_base="no" 478379f6698SPaul Brook ;; 479c5937220Spbrook --enable-uname-release=*) uname_release="$optarg" 480c5937220Spbrook ;; 4813142255cSblueswir1 --sparc_cpu=*) 4823142255cSblueswir1 ;; 48385aa5189Sbellard --enable-werror) werror="yes" 48485aa5189Sbellard ;; 48585aa5189Sbellard --disable-werror) werror="no" 48685aa5189Sbellard ;; 4874d3b6f6eSbalrog --disable-curses) curses="no" 4884d3b6f6eSbalrog ;; 489769ce76dSAlexander Graf --disable-curl) curl="no" 490769ce76dSAlexander Graf ;; 491bd0c5661Spbrook --disable-nptl) nptl="no" 492bd0c5661Spbrook ;; 4938ff9cbf7Smalc --enable-mixemu) mixemu="yes" 4948ff9cbf7Smalc ;; 495e5d355d1Saliguori --disable-pthread) pthread="no" 496e5d355d1Saliguori ;; 497414f0dabSblueswir1 --disable-aio) aio="no" 498414f0dabSblueswir1 ;; 499e5d355d1Saliguori --enable-io-thread) io_thread="yes" 500e5d355d1Saliguori ;; 50177755340Sths --disable-blobs) blobs="no" 50277755340Sths ;; 503eac30262Saliguori --kerneldir=*) kerneldir="$optarg" 504eac30262Saliguori ;; 5054a19f1ecSpbrook --with-pkgversion=*) pkgversion=" ($optarg)" 5064a19f1ecSpbrook ;; 50770ec5dc0SAnthony Liguori --disable-docs) build_docs="no" 50870ec5dc0SAnthony Liguori ;; 5097f1559c6Sbalrog *) echo "ERROR: unknown option $opt"; show_help="yes" 5107f1559c6Sbalrog ;; 5117d13299dSbellard esac 5127d13299dSbellarddone 5137d13299dSbellard 5143142255cSblueswir1# 5153142255cSblueswir1# If cpu ~= sparc and sparc_cpu hasn't been defined, plug in the right 5160c439cbfSJuan Quintela# CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit) 5173142255cSblueswir1# 518379f6698SPaul Brookhost_guest_base="no" 51940293e58Sbellardcase "$cpu" in 520ed968ff1SJuan Quintela sparc) case $sparc_cpu in 521ed968ff1SJuan Quintela v7|v8) 522ed968ff1SJuan Quintela CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $CFLAGS" 523ed968ff1SJuan Quintela ;; 524ed968ff1SJuan Quintela v8plus|v8plusa) 525ed968ff1SJuan Quintela CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $CFLAGS" 526ed968ff1SJuan Quintela ;; 527ed968ff1SJuan Quintela *) # sparc_cpu not defined in the command line 528ed968ff1SJuan Quintela CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $CFLAGS" 529ed968ff1SJuan Quintela esac 5300c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 531ed968ff1SJuan Quintela CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $CFLAGS" 532762e8230Sblueswir1 if test "$solaris" = "no" ; then 5330c439cbfSJuan Quintela CFLAGS="-ffixed-g1 -ffixed-g6 $CFLAGS" 534762e8230Sblueswir1 fi 5353142255cSblueswir1 ;; 536ed968ff1SJuan Quintela sparc64) 5370c439cbfSJuan Quintela CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $CFLAGS" 5380c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 5390c439cbfSJuan Quintela CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $CFLAGS" 540ed968ff1SJuan Quintela if test "$solaris" != "no" ; then 541ed968ff1SJuan Quintela CFLAGS="-ffixed-g1 $CFLAGS" 542762e8230Sblueswir1 fi 5433142255cSblueswir1 ;; 54476d83bdeSths s390) 5450c439cbfSJuan Quintela CFLAGS="-march=z900 $CFLAGS" 54676d83bdeSths ;; 54740293e58Sbellard i386) 5480c439cbfSJuan Quintela CFLAGS="-m32 $CFLAGS" 5490c439cbfSJuan Quintela LDFLAGS="-m32 $LDFLAGS" 550379f6698SPaul Brook host_guest_base="yes" 55140293e58Sbellard ;; 55240293e58Sbellard x86_64) 5530c439cbfSJuan Quintela CFLAGS="-m64 $CFLAGS" 5540c439cbfSJuan Quintela LDFLAGS="-m64 $LDFLAGS" 555379f6698SPaul Brook host_guest_base="yes" 556379f6698SPaul Brook ;; 557379f6698SPaul Brook arm*) 558379f6698SPaul Brook host_guest_base="yes" 55940293e58Sbellard ;; 560f6548c0aSmalc ppc*) 561f6548c0aSmalc host_guest_base="yes" 562f6548c0aSmalc ;; 5633142255cSblueswir1esac 5643142255cSblueswir1 565379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base" 566379f6698SPaul Brook 567af5db58eSpbrookif test x"$show_help" = x"yes" ; then 568af5db58eSpbrookcat << EOF 569af5db58eSpbrook 570af5db58eSpbrookUsage: configure [options] 571af5db58eSpbrookOptions: [defaults in brackets after descriptions] 572af5db58eSpbrook 573af5db58eSpbrookEOF 574af5db58eSpbrookecho "Standard options:" 575af5db58eSpbrookecho " --help print this message" 576af5db58eSpbrookecho " --prefix=PREFIX install in PREFIX [$prefix]" 577af5db58eSpbrookecho " --interp-prefix=PREFIX where to find shared libraries, etc." 578af5db58eSpbrookecho " use %M for cpu name [$interp_prefix]" 579af5db58eSpbrookecho " --target-list=LIST set target list [$target_list]" 580af5db58eSpbrookecho "" 581af5db58eSpbrookecho "kqemu kernel acceleration support:" 582af5db58eSpbrookecho " --disable-kqemu disable kqemu support" 583af5db58eSpbrookecho "" 584af5db58eSpbrookecho "Advanced options (experts only):" 585af5db58eSpbrookecho " --source-path=PATH path of source code [$source_path]" 586af5db58eSpbrookecho " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" 587af5db58eSpbrookecho " --cc=CC use C compiler CC [$cc]" 588af5db58eSpbrookecho " --host-cc=CC use C compiler CC [$host_cc] for dyngen etc." 589e3fc14c3SJan Kiszkaecho " --extra-cflags=CFLAGS append extra C compiler flags CFLAGS" 590e3fc14c3SJan Kiszkaecho " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" 591af5db58eSpbrookecho " --make=MAKE use specified make [$make]" 5926a882643Spbrookecho " --install=INSTALL use specified install [$install]" 593af5db58eSpbrookecho " --static enable static build [$static]" 594f8393946Saurel32echo " --enable-debug-tcg enable TCG debugging" 595f8393946Saurel32echo " --disable-debug-tcg disable TCG debugging (default)" 59609695a4aSStefan Weilecho " --enable-debug enable common debug build options" 597890b1658Saliguoriecho " --enable-sparse enable sparse checker" 598890b1658Saliguoriecho " --disable-sparse disable sparse checker (default)" 5991625af87Saliguoriecho " --disable-strip disable stripping binaries" 60085aa5189Sbellardecho " --disable-werror disable compilation abort on warning" 601fe8f78e4Sbalrogecho " --disable-sdl disable SDL" 602af5db58eSpbrookecho " --enable-cocoa enable COCOA (Mac OS X only)" 603c2de5c91Smalcecho " --audio-drv-list=LIST set audio drivers list:" 604c2de5c91Smalcecho " Available drivers: $audio_possible_drivers" 6054c9b53e3Smalcecho " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" 6064c9b53e3Smalcecho " Available cards: $audio_possible_cards" 6078ff9cbf7Smalcecho " --enable-mixemu enable mixer emulation" 608e37630caSaliguoriecho " --disable-xen disable xen backend driver support" 6092e4d9fb1Saurel32echo " --disable-brlapi disable BrlAPI" 6108d5d2d4cSthsecho " --disable-vnc-tls disable TLS encryption for VNC server" 6112f9606b3Saliguoriecho " --disable-vnc-sasl disable SASL encryption for VNC server" 612af896aaaSpbrookecho " --disable-curses disable curses output" 613769ce76dSAlexander Grafecho " --disable-curl disable curl connectivity" 614fb599c9aSbalrogecho " --disable-bluez disable bluez stack connectivity" 6157ba1e619Saliguoriecho " --disable-kvm disable KVM acceleration support" 616bd0c5661Spbrookecho " --disable-nptl disable usermode NPTL support" 617af5db58eSpbrookecho " --enable-system enable all system emulation targets" 618af5db58eSpbrookecho " --disable-system disable all system emulation targets" 619831b7825Sthsecho " --enable-linux-user enable all linux usermode emulation targets" 620831b7825Sthsecho " --disable-linux-user disable all linux usermode emulation targets" 621831b7825Sthsecho " --enable-darwin-user enable all darwin usermode emulation targets" 622831b7825Sthsecho " --disable-darwin-user disable all darwin usermode emulation targets" 62384778508Sblueswir1echo " --enable-bsd-user enable all BSD usermode emulation targets" 62484778508Sblueswir1echo " --disable-bsd-user disable all BSD usermode emulation targets" 625379f6698SPaul Brookecho " --enable-guest-base enable GUEST_BASE support for usermode" 626379f6698SPaul Brookecho " emulation targets" 627379f6698SPaul Brookecho " --disable-guest-base disable GUEST_BASE support" 628af5db58eSpbrookecho " --fmod-lib path to FMOD library" 629af5db58eSpbrookecho " --fmod-inc path to FMOD includes" 6302f6a1ab0Sblueswir1echo " --oss-lib path to OSS library" 631c5937220Spbrookecho " --enable-uname-release=R Return R for uname -r in usermode emulation" 6323142255cSblueswir1echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" 633e0e6c8c0Saliguoriecho " --disable-vde disable support for vde network" 634e5d355d1Saliguoriecho " --disable-pthread disable pthread support" 635414f0dabSblueswir1echo " --disable-aio disable AIO support" 636e5d355d1Saliguoriecho " --enable-io-thread enable IO thread" 63777755340Sthsecho " --disable-blobs disable installing provided firmware blobs" 638eac30262Saliguoriecho " --kerneldir=PATH look for kernel includes in PATH" 639af5db58eSpbrookecho "" 6405bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched" 641af5db58eSpbrookexit 1 642af5db58eSpbrookfi 643af5db58eSpbrook 64403b4fe7dSaliguoriif test ! -x "$(which cgcc 2>/dev/null)"; then 64503b4fe7dSaliguori sparse="no" 64603b4fe7dSaliguorifi 64703b4fe7dSaliguori 648ec530c81Sbellard# 649ec530c81Sbellard# Solaris specific configure tool chain decisions 650ec530c81Sbellard# 651ec530c81Sbellardif test "$solaris" = "yes" ; then 652ec530c81Sbellard solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"` 653ec530c81Sbellard if test -z "$solinst" ; then 654ec530c81Sbellard echo "Solaris install program not found. Use --install=/usr/ucb/install or" 655ec530c81Sbellard echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" 656ec530c81Sbellard echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" 657ec530c81Sbellard exit 1 658ec530c81Sbellard fi 659ec530c81Sbellard if test "$solinst" = "/usr/sbin/install" ; then 660ec530c81Sbellard echo "Error: Solaris /usr/sbin/install is not an appropriate install program." 661ec530c81Sbellard echo "try ginstall from the GNU fileutils available from www.blastwave.org" 662ec530c81Sbellard echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" 663ec530c81Sbellard exit 1 664ec530c81Sbellard fi 665ec530c81Sbellard sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"` 666ec530c81Sbellard if test -z "$sol_ar" ; then 667ec530c81Sbellard echo "Error: No path includes ar" 668ec530c81Sbellard if test -f /usr/ccs/bin/ar ; then 669ec530c81Sbellard echo "Add /usr/ccs/bin to your path and rerun configure" 670ec530c81Sbellard fi 671ec530c81Sbellard exit 1 672ec530c81Sbellard fi 673ec530c81Sbellardfi 674ec530c81Sbellard 675ec530c81Sbellard 6765327cf48Sbellardif test -z "$target_list" ; then 6775327cf48Sbellard# these targets are portable 6780a8e90f4Spbrook if [ "$softmmu" = "yes" ] ; then 6792408a527Saurel32 target_list="\ 6802408a527Saurel32i386-softmmu \ 6812408a527Saurel32x86_64-softmmu \ 6822408a527Saurel32arm-softmmu \ 6832408a527Saurel32cris-softmmu \ 6842408a527Saurel32m68k-softmmu \ 68572b675caSEdgar E. Iglesiasmicroblaze-softmmu \ 6862408a527Saurel32mips-softmmu \ 6872408a527Saurel32mipsel-softmmu \ 6882408a527Saurel32mips64-softmmu \ 6892408a527Saurel32mips64el-softmmu \ 6902408a527Saurel32ppc-softmmu \ 6912408a527Saurel32ppcemb-softmmu \ 6922408a527Saurel32ppc64-softmmu \ 6932408a527Saurel32sh4-softmmu \ 6942408a527Saurel32sh4eb-softmmu \ 6952408a527Saurel32sparc-softmmu \ 6961b64fcaeSIgor V. Kovalenkosparc64-softmmu \ 6972408a527Saurel32" 6980a8e90f4Spbrook fi 6995327cf48Sbellard# the following are Linux specific 700831b7825Sths if [ "$linux_user" = "yes" ] ; then 7012408a527Saurel32 target_list="${target_list}\ 7022408a527Saurel32i386-linux-user \ 7032408a527Saurel32x86_64-linux-user \ 7042408a527Saurel32alpha-linux-user \ 7052408a527Saurel32arm-linux-user \ 7062408a527Saurel32armeb-linux-user \ 7072408a527Saurel32cris-linux-user \ 7082408a527Saurel32m68k-linux-user \ 70972b675caSEdgar E. Iglesiasmicroblaze-linux-user \ 7102408a527Saurel32mips-linux-user \ 7112408a527Saurel32mipsel-linux-user \ 7122408a527Saurel32ppc-linux-user \ 7132408a527Saurel32ppc64-linux-user \ 7142408a527Saurel32ppc64abi32-linux-user \ 7152408a527Saurel32sh4-linux-user \ 7162408a527Saurel32sh4eb-linux-user \ 7172408a527Saurel32sparc-linux-user \ 7182408a527Saurel32sparc64-linux-user \ 7192408a527Saurel32sparc32plus-linux-user \ 7202408a527Saurel32" 721831b7825Sths fi 722831b7825Sths# the following are Darwin specific 723831b7825Sths if [ "$darwin_user" = "yes" ] ; then 7242408a527Saurel32 target_list="$target_list i386-darwin-user ppc-darwin-user " 7255327cf48Sbellard fi 72684778508Sblueswir1# the following are BSD specific 72784778508Sblueswir1 if [ "$bsd_user" = "yes" ] ; then 72884778508Sblueswir1 target_list="${target_list}\ 72931fc12dfSblueswir1i386-bsd-user \ 73031fc12dfSblueswir1x86_64-bsd-user \ 73131fc12dfSblueswir1sparc-bsd-user \ 73284778508Sblueswir1sparc64-bsd-user \ 73384778508Sblueswir1" 73484778508Sblueswir1 fi 7356e20a45fSbellardelse 736b1a550a0Spbrook target_list=`echo "$target_list" | sed -e 's/,/ /g'` 7375327cf48Sbellardfi 7380a8e90f4Spbrookif test -z "$target_list" ; then 7390a8e90f4Spbrook echo "No targets enabled" 7400a8e90f4Spbrook exit 1 7410a8e90f4Spbrookfi 7425327cf48Sbellard 7437d13299dSbellardif test -z "$cross_prefix" ; then 7447d13299dSbellard 7457d13299dSbellard# --- 7467d13299dSbellard# big/little endian test 7477d13299dSbellardcat > $TMPC << EOF 7487d13299dSbellard#include <inttypes.h> 7497d13299dSbellardint main(int argc, char ** argv){ 7507d13299dSbellard volatile uint32_t i=0x01234567; 7517d13299dSbellard return (*((uint8_t*)(&i))) == 0x67; 7527d13299dSbellard} 7537d13299dSbellardEOF 7547d13299dSbellard 75552166aa0SJuan Quintelaif compile_prog "" "" ; then 7567d13299dSbellard$TMPE && bigendian="yes" 7577d13299dSbellardelse 7587d13299dSbellardecho big/little test failed 7597d13299dSbellardfi 7607d13299dSbellard 7617d13299dSbellardelse 7627d13299dSbellard 7637d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess 764ea8f20f8SJuan Quintelacase "$cpu" in 765ea8f20f8SJuan Quintela armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|sparc|sparc64) 766ea8f20f8SJuan Quintela bigendian=yes 767ea8f20f8SJuan Quintela ;; 768ea8f20f8SJuan Quintelaesac 7697d13299dSbellard 7707d13299dSbellardfi 7717d13299dSbellard 772b6853697Sbellard# host long bits test 773b6853697Sbellardhostlongbits="32" 774ea8f20f8SJuan Quintelacase "$cpu" in 775ea8f20f8SJuan Quintela x86_64|alpha|ia64|sparc64|ppc64) 776ea8f20f8SJuan Quintela hostlongbits=64 777ea8f20f8SJuan Quintela ;; 778ea8f20f8SJuan Quintelaesac 779b6853697Sbellard 780bd0c5661Spbrook# Check host NPTL support 781bd0c5661Spbrookcat > $TMPC <<EOF 782bd0c5661Spbrook#include <sched.h> 78330813ceaSpbrook#include <linux/futex.h> 784bd0c5661Spbrookvoid foo() 785bd0c5661Spbrook{ 786bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT) 787bd0c5661Spbrook#error bork 788bd0c5661Spbrook#endif 789bd0c5661Spbrook} 790bd0c5661SpbrookEOF 791bd0c5661Spbrook 79252166aa0SJuan Quintelaif compile_object ; then 793bd0c5661Spbrook : 794bd0c5661Spbrookelse 795bd0c5661Spbrook nptl="no" 796bd0c5661Spbrookfi 797bd0c5661Spbrook 79811d9f695Sbellard########################################## 799ac62922eSbalrog# zlib check 800ac62922eSbalrog 801ac62922eSbalrogcat > $TMPC << EOF 802ac62922eSbalrog#include <zlib.h> 803ac62922eSbalrogint main(void) { zlibVersion(); return 0; } 804ac62922eSbalrogEOF 80552166aa0SJuan Quintelaif compile_prog "" "-lz" ; then 806ac62922eSbalrog : 807ac62922eSbalrogelse 808ac62922eSbalrog echo 809ac62922eSbalrog echo "Error: zlib check failed" 810ac62922eSbalrog echo "Make sure to have the zlib libs and headers installed." 811ac62922eSbalrog echo 812ac62922eSbalrog exit 1 813ac62922eSbalrogfi 814ac62922eSbalrog 815ac62922eSbalrog########################################## 816e37630caSaliguori# xen probe 817e37630caSaliguori 818e37630caSaliguoriif test "$xen" = "yes" ; then 819b2266beeSJuan Quintela xen_libs="-lxenstore -lxenctrl -lxenguest" 820e37630caSaliguori cat > $TMPC <<EOF 821e37630caSaliguori#include <xenctrl.h> 822e37630caSaliguori#include <xs.h> 823df7a607bSChristoph Eggerint main(void) { xs_daemon_open(); xc_interface_open(); return 0; } 824e37630caSaliguoriEOF 82552166aa0SJuan Quintela if compile_prog "" "$xen_libs" ; then 826e37630caSaliguori : 827e37630caSaliguori else 828e37630caSaliguori xen="no" 829e37630caSaliguori fi 830e37630caSaliguorifi 831e37630caSaliguori 832e37630caSaliguori########################################## 83311d9f695Sbellard# SDL probe 83411d9f695Sbellard 83511d9f695Sbellardsdl_too_old=no 83611d9f695Sbellard 837f92f8afeSAnthony Liguoriif test "$sdl" = "yes" ; then 838a6e022adSbellard sdl=no 83911d9f695Sbellard cat > $TMPC << EOF 84011d9f695Sbellard#include <SDL.h> 84111d9f695Sbellard#undef main /* We don't want SDL to override our main() */ 84211d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); } 84311d9f695SbellardEOF 8448ad3a7ddSJuan Quintela sdl_cflags=`sdl-config --cflags 2> /dev/null` 8458ad3a7ddSJuan Quintela sdl_libs=`sdl-config --libs 2> /dev/null` 84652166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 847d3d9738fSJuan Quintela _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'` 84811d9f695Sbellard if test "$_sdlversion" -lt 121 ; then 84911d9f695Sbellard sdl_too_old=yes 85011d9f695Sbellard else 851fd677642Sths if test "$cocoa" = "no" ; then 85211d9f695Sbellard sdl=yes 85311d9f695Sbellard fi 854fd677642Sths fi 8557c1f25b4Sbellard 8567c1f25b4Sbellard # static link with sdl ? 8571ac88f28SJuan Quintela if test "$sdl" = "yes" -a "$static" = "yes" ; then 8581ac88f28SJuan Quintela sdl_libs=`sdl-config --static-libs 2>/dev/null` 8591ac88f28SJuan Quintela if test `sdl-config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` ; then 8601ac88f28SJuan Quintela sdl_libs="$sdl_libs `aalib-config --static-libs >2 /dev/null`" 8611ac88f28SJuan Quintela sdl_cflags="$sd_cflags `aalib-config --cflags >2 /dev/null`" 86211d9f695Sbellard fi 86352166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 8641ac88f28SJuan Quintela : 8651ac88f28SJuan Quintela else 8661ac88f28SJuan Quintela sdl=no 8677c1f25b4Sbellard fi 8687c1f25b4Sbellard fi # static link 8697c1f25b4Sbellard fi # sdl compile test 870fd677642Sthsfi 87111d9f695Sbellard 8725368a422Saliguoriif test "$sdl" = "yes" ; then 8735368a422Saliguori cat > $TMPC <<EOF 8745368a422Saliguori#include <SDL.h> 8755368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11) 8765368a422Saliguori#include <X11/XKBlib.h> 8775368a422Saliguori#else 8785368a422Saliguori#error No x11 support 8795368a422Saliguori#endif 8805368a422Saliguoriint main(void) { return 0; } 8815368a422SaliguoriEOF 88252166aa0SJuan Quintela if compile_prog "$sdl_cflags" "$sdl_libs" ; then 883681306dfSJuan Quintela sdl_libs="$sdl_libs -lX11" 8845368a422Saliguori fi 8855368a422Saliguorifi 8865368a422Saliguori 8878f28f3fbSths########################################## 8888d5d2d4cSths# VNC TLS detection 8898d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 890ae6b5e5aSaliguoricat > $TMPC <<EOF 891ae6b5e5aSaliguori#include <gnutls/gnutls.h> 892ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; } 893ae6b5e5aSaliguoriEOF 894ae6b5e5aSaliguori vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null` 895ae6b5e5aSaliguori vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null` 89652166aa0SJuan Quintela if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then 897ae6b5e5aSaliguori : 898ae6b5e5aSaliguori else 899ae6b5e5aSaliguori vnc_tls="no" 9008d5d2d4cSths fi 9018d5d2d4cSthsfi 9028d5d2d4cSths 9038d5d2d4cSths########################################## 9042f9606b3Saliguori# VNC SASL detection 9052f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 9062f9606b3Saliguoricat > $TMPC <<EOF 9072f9606b3Saliguori#include <sasl/sasl.h> 9082f9606b3Saliguori#include <stdio.h> 9092f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; } 9102f9606b3SaliguoriEOF 9112f9606b3Saliguori # Assuming Cyrus-SASL installed in /usr prefix 9122f9606b3Saliguori vnc_sasl_cflags="" 9132f9606b3Saliguori vnc_sasl_libs="-lsasl2" 91452166aa0SJuan Quintela if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then 9152f9606b3Saliguori : 9162f9606b3Saliguori else 9172f9606b3Saliguori vnc_sasl="no" 9182f9606b3Saliguori fi 9192f9606b3Saliguorifi 9202f9606b3Saliguori 9212f9606b3Saliguori########################################## 92276655d6dSaliguori# fnmatch() probe, used for ACL routines 92376655d6dSaliguorifnmatch="no" 92476655d6dSaliguoricat > $TMPC << EOF 92576655d6dSaliguori#include <fnmatch.h> 92676655d6dSaliguoriint main(void) 92776655d6dSaliguori{ 92876655d6dSaliguori fnmatch("foo", "foo", 0); 92976655d6dSaliguori return 0; 93076655d6dSaliguori} 93176655d6dSaliguoriEOF 93252166aa0SJuan Quintelaif compile_prog "" "" ; then 93376655d6dSaliguori fnmatch="yes" 93476655d6dSaliguorifi 93576655d6dSaliguori 93676655d6dSaliguori########################################## 9378a16d273Sths# vde libraries probe 9388a16d273Sthsif test "$vde" = "yes" ; then 9394baae0acSJuan Quintela vde=no 9404baae0acSJuan Quintela vde_libs="-lvdeplug" 9418a16d273Sths cat > $TMPC << EOF 9428a16d273Sths#include <libvdeplug.h> 9434a7f0e06Spbrookint main(void) 9444a7f0e06Spbrook{ 9454a7f0e06Spbrook struct vde_open_args a = {0, 0, 0}; 9464a7f0e06Spbrook vde_open("", "", &a); 9474a7f0e06Spbrook return 0; 9484a7f0e06Spbrook} 9498a16d273SthsEOF 95052166aa0SJuan Quintela if compile_prog "" "$vde_libs" ; then 9514baae0acSJuan Quintela vde=yes 9528a16d273Sths fi 9538a16d273Sthsfi 9548a16d273Sths 9558a16d273Sths########################################## 956c2de5c91Smalc# Sound support libraries probe 9578f28f3fbSths 958c2de5c91Smalcaudio_drv_probe() 959c2de5c91Smalc{ 960c2de5c91Smalc drv=$1 961c2de5c91Smalc hdr=$2 962c2de5c91Smalc lib=$3 963c2de5c91Smalc exp=$4 964c2de5c91Smalc cfl=$5 9658f28f3fbSths cat > $TMPC << EOF 966c2de5c91Smalc#include <$hdr> 967c2de5c91Smalcint main(void) { $exp } 9688f28f3fbSthsEOF 96952166aa0SJuan Quintela if compile_prog "$cfl" "$lib" ; then 9708f28f3fbSths : 9718f28f3fbSths else 9728f28f3fbSths echo 973c2de5c91Smalc echo "Error: $drv check failed" 974c2de5c91Smalc echo "Make sure to have the $drv libs and headers installed." 9758f28f3fbSths echo 9768f28f3fbSths exit 1 9778f28f3fbSths fi 978c2de5c91Smalc} 979c2de5c91Smalc 9802fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'` 981c2de5c91Smalcfor drv in $audio_drv_list; do 982c2de5c91Smalc case $drv in 983c2de5c91Smalc alsa) 984c2de5c91Smalc audio_drv_probe $drv alsa/asoundlib.h -lasound \ 985c2de5c91Smalc "snd_pcm_t **handle; return snd_pcm_close(*handle);" 986c2de5c91Smalc ;; 987c2de5c91Smalc 988c2de5c91Smalc fmod) 989c2de5c91Smalc if test -z $fmod_lib || test -z $fmod_inc; then 990c2de5c91Smalc echo 991c2de5c91Smalc echo "Error: You must specify path to FMOD library and headers" 992c2de5c91Smalc echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so" 993c2de5c91Smalc echo 994c2de5c91Smalc exit 1 9958f28f3fbSths fi 996c2de5c91Smalc audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc" 997c2de5c91Smalc ;; 998c2de5c91Smalc 999c2de5c91Smalc esd) 1000c2de5c91Smalc audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);' 1001c2de5c91Smalc ;; 1002b8e59f18Smalc 1003b8e59f18Smalc pa) 1004b8e59f18Smalc audio_drv_probe $drv pulse/simple.h -lpulse-simple \ 1005b8e59f18Smalc "pa_simple *s = NULL; pa_simple_free(s); return 0;" 1006b8e59f18Smalc ;; 1007b8e59f18Smalc 10082f6a1ab0Sblueswir1 oss|sdl|core|wav|dsound) 10092f6a1ab0Sblueswir1 # XXX: Probes for CoreAudio, DirectSound, SDL(?) 10102f6a1ab0Sblueswir1 ;; 10112f6a1ab0Sblueswir1 1012e4c63a6aSmalc *) 10131c9b2a52Smalc echo "$audio_possible_drivers" | grep -q "\<$drv\>" || { 1014e4c63a6aSmalc echo 1015e4c63a6aSmalc echo "Error: Unknown driver '$drv' selected" 1016e4c63a6aSmalc echo "Possible drivers are: $audio_possible_drivers" 1017e4c63a6aSmalc echo 1018e4c63a6aSmalc exit 1 1019e4c63a6aSmalc } 1020e4c63a6aSmalc ;; 1021c2de5c91Smalc esac 1022c2de5c91Smalcdone 10238f28f3fbSths 10244d3b6f6eSbalrog########################################## 10252e4d9fb1Saurel32# BrlAPI probe 10262e4d9fb1Saurel32 1027eb82284fSJuan Quintelaif test "$brlapi" = "yes" ; then 10282e4d9fb1Saurel32 brlapi=no 1029eb82284fSJuan Quintela brlapi_libs="-lbrlapi" 10302e4d9fb1Saurel32 cat > $TMPC << EOF 10312e4d9fb1Saurel32#include <brlapi.h> 10322e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); } 10332e4d9fb1Saurel32EOF 103452166aa0SJuan Quintela if compile_prog "" "$brlapi_libs" ; then 10352e4d9fb1Saurel32 brlapi=yes 1036eb82284fSJuan Quintela fi 1037eb82284fSJuan Quintelafi 10382e4d9fb1Saurel32 10392e4d9fb1Saurel32########################################## 10404d3b6f6eSbalrog# curses probe 10414d3b6f6eSbalrog 10424d3b6f6eSbalrogif test "$curses" = "yes" ; then 10434d3b6f6eSbalrog cat > $TMPC << EOF 10444d3b6f6eSbalrog#include <curses.h> 10455a8ff3aaSblueswir1#ifdef __OpenBSD__ 10465a8ff3aaSblueswir1#define resize_term resizeterm 10475a8ff3aaSblueswir1#endif 10485a8ff3aaSblueswir1int main(void) { resize_term(0, 0); return curses_version(); } 10494d3b6f6eSbalrogEOF 105052166aa0SJuan Quintela if compile_prog "" "-lncurses" ; then 1051e0b7a42bSJuan Quintela curses_libs="-lncurses" 105252166aa0SJuan Quintela elif compile_prog "" "-lcurses" ; then 1053e0b7a42bSJuan Quintela curses_libs="-lcurses" 1054e0b7a42bSJuan Quintela else 1055e0b7a42bSJuan Quintela curses=no 10564d3b6f6eSbalrog fi 10574d3b6f6eSbalrogfi # test "$curses" 10584d3b6f6eSbalrog 1059414f0dabSblueswir1########################################## 1060769ce76dSAlexander Graf# curl probe 1061769ce76dSAlexander Graf 1062769ce76dSAlexander Grafif test "$curl" = "yes" ; then 1063769ce76dSAlexander Graf curl=no 1064769ce76dSAlexander Graf cat > $TMPC << EOF 1065769ce76dSAlexander Graf#include <curl/curl.h> 1066769ce76dSAlexander Grafint main(void) { return curl_easy_init(); } 1067769ce76dSAlexander GrafEOF 1068b1d5a277SJuan Quintela curl_cflags=`curl-config --cflags 2>/dev/null` 106952368552SPaul Brook curl_libs=`curl-config --libs 2>/dev/null` 1070b1d5a277SJuan Quintela if compile_prog "$curl_cflags" "$curl_libs" ; then 1071769ce76dSAlexander Graf curl=yes 1072769ce76dSAlexander Graf fi 1073769ce76dSAlexander Graffi # test "$curl" 1074769ce76dSAlexander Graf 1075769ce76dSAlexander Graf########################################## 1076fb599c9aSbalrog# bluez support probe 1077fb599c9aSbalrogif test "$bluez" = "yes" ; then 1078efcfd0c5SBlue Swirl `pkg-config bluez 2> /dev/null` || bluez="no" 1079fb599c9aSbalrogfi 1080fb599c9aSbalrogif test "$bluez" = "yes" ; then 1081e820e3f4Sbalrog cat > $TMPC << EOF 1082e820e3f4Sbalrog#include <bluetooth/bluetooth.h> 1083e820e3f4Sbalrogint main(void) { return bt_error(0); } 1084e820e3f4SbalrogEOF 1085efcfd0c5SBlue Swirl bluez_cflags=`pkg-config --cflags bluez 2> /dev/null` 1086efcfd0c5SBlue Swirl bluez_libs=`pkg-config --libs bluez 2> /dev/null` 108752166aa0SJuan Quintela if compile_prog "$bluez_cflags" "$bluez_libs" ; then 1088e820e3f4Sbalrog : 1089e820e3f4Sbalrog else 1090e820e3f4Sbalrog bluez="no" 1091e820e3f4Sbalrog fi 1092fb599c9aSbalrogfi 1093fb599c9aSbalrog 1094fb599c9aSbalrog########################################## 10957ba1e619Saliguori# kvm probe 10967ba1e619Saliguoriif test "$kvm" = "yes" ; then 10977ba1e619Saliguori cat > $TMPC <<EOF 10987ba1e619Saliguori#include <linux/kvm.h> 10999fd8d8d7Saliguori#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12 11007ba1e619Saliguori#error Invalid KVM version 11017ba1e619Saliguori#endif 11029fd8d8d7Saliguori#if !defined(KVM_CAP_USER_MEMORY) 11039fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_USER_MEMORY 11049fd8d8d7Saliguori#endif 11059fd8d8d7Saliguori#if !defined(KVM_CAP_SET_TSS_ADDR) 11069fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_SET_TSS_ADDR 11079fd8d8d7Saliguori#endif 11089fd8d8d7Saliguori#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS) 11099fd8d8d7Saliguori#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS 11109fd8d8d7Saliguori#endif 11117ba1e619Saliguoriint main(void) { return 0; } 11127ba1e619SaliguoriEOF 1113eac30262Saliguori if test "$kerneldir" != "" ; then 1114eac30262Saliguori kvm_cflags=-I"$kerneldir"/include 11158444eb6eSaliguori if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \ 11168444eb6eSaliguori -a -d "$kerneldir/arch/x86/include" ; then 11178444eb6eSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include" 1118406b430dSaliguori elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then 1119406b430dSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include" 11208444eb6eSaliguori elif test -d "$kerneldir/arch/$cpu/include" ; then 11218444eb6eSaliguori kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include" 11228444eb6eSaliguori fi 1123eac30262Saliguori else 1124eac30262Saliguori kvm_cflags="" 1125eac30262Saliguori fi 112652166aa0SJuan Quintela if compile_prog "$kvm_cflags" "" ; then 11277ba1e619Saliguori : 11287ba1e619Saliguori else 11299fd8d8d7Saliguori kvm="no"; 11309fd8d8d7Saliguori if [ -x "`which awk 2>/dev/null`" ] && \ 11319fd8d8d7Saliguori [ -x "`which grep 2>/dev/null`" ]; then 11320c439cbfSJuan Quintela kvmerr=`LANG=C $cc $CFLAGS -o $TMPE $kvm_cflags $TMPC 2>&1 \ 11339fd8d8d7Saliguori | grep "error: " \ 11349fd8d8d7Saliguori | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'` 11359fd8d8d7Saliguori if test "$kvmerr" != "" ; then 1136168ccc11SJan Kiszka kvm="no - (${kvmerr})\n\ 1137168ccc11SJan Kiszka NOTE: To enable KVM support, update your kernel to 2.6.29+ or install \ 1138168ccc11SJan Kiszkarecent kvm-kmod from http://sourceforge.net/projects/kvm." 11399fd8d8d7Saliguori fi 11409fd8d8d7Saliguori fi 11417ba1e619Saliguori fi 11427ba1e619Saliguorifi 11437ba1e619Saliguori 11447ba1e619Saliguori########################################## 1145e5d355d1Saliguori# pthread probe 1146de65fe0fSSebastian HerbsztPTHREADLIBS_LIST="-lpthread -lpthreadGC2" 1147e5d355d1SaliguoriPTHREADLIBS="" 11483c529d93Saliguori 1149e5d355d1Saliguoriif test "$pthread" = yes; then 1150e5d355d1Saliguori pthread=no 1151414f0dabSblueswir1cat > $TMPC << EOF 11523c529d93Saliguori#include <pthread.h> 1153de65fe0fSSebastian Herbsztint main(void) { pthread_create(0,0,0,0); return 0; } 1154414f0dabSblueswir1EOF 1155de65fe0fSSebastian Herbszt for pthread_lib in $PTHREADLIBS_LIST; do 115652166aa0SJuan Quintela if compile_prog "" "$pthread_lib" ; then 1157e5d355d1Saliguori pthread=yes 1158de65fe0fSSebastian Herbszt PTHREADLIBS="$pthread_lib" 1159de65fe0fSSebastian Herbszt break 1160414f0dabSblueswir1 fi 1161de65fe0fSSebastian Herbszt done 1162414f0dabSblueswir1fi 1163414f0dabSblueswir1 1164e5d355d1Saliguoriif test "$pthread" = no; then 1165e5d355d1Saliguori aio=no 1166e5d355d1Saliguori io_thread=no 1167e5d355d1Saliguorifi 1168e5d355d1Saliguori 1169bf9298b9Saliguori########################################## 1170bf9298b9Saliguori# iovec probe 1171bf9298b9Saliguoricat > $TMPC <<EOF 1172db34f0b3Sblueswir1#include <sys/types.h> 1173bf9298b9Saliguori#include <sys/uio.h> 1174db34f0b3Sblueswir1#include <unistd.h> 1175bf9298b9Saliguoriint main(void) { struct iovec iov; return 0; } 1176bf9298b9SaliguoriEOF 1177bf9298b9Saliguoriiovec=no 117852166aa0SJuan Quintelaif compile_prog "" "" ; then 1179bf9298b9Saliguori iovec=yes 1180bf9298b9Saliguorifi 1181bf9298b9Saliguori 1182f652e6afSaurel32########################################## 1183ceb42de8Saliguori# preadv probe 1184ceb42de8Saliguoricat > $TMPC <<EOF 1185ceb42de8Saliguori#include <sys/types.h> 1186ceb42de8Saliguori#include <sys/uio.h> 1187ceb42de8Saliguori#include <unistd.h> 1188ceb42de8Saliguoriint main(void) { preadv; } 1189ceb42de8SaliguoriEOF 1190ceb42de8Saliguoripreadv=no 119152166aa0SJuan Quintelaif compile_prog "" "" ; then 1192ceb42de8Saliguori preadv=yes 1193ceb42de8Saliguorifi 1194ceb42de8Saliguori 1195ceb42de8Saliguori########################################## 1196f652e6afSaurel32# fdt probe 1197f652e6afSaurel32if test "$fdt" = "yes" ; then 1198f652e6afSaurel32 fdt=no 1199b41af4baSJuan Quintela fdt_libs="-lfdt" 1200f652e6afSaurel32 cat > $TMPC << EOF 1201f652e6afSaurel32int main(void) { return 0; } 1202f652e6afSaurel32EOF 120352166aa0SJuan Quintela if compile_prog "" "$fdt_libs" ; then 1204f652e6afSaurel32 fdt=yes 1205f652e6afSaurel32 fi 1206f652e6afSaurel32fi 1207f652e6afSaurel32 12083b3f24adSaurel32# 12093b3f24adSaurel32# Check for xxxat() functions when we are building linux-user 12103b3f24adSaurel32# emulator. This is done because older glibc versions don't 12113b3f24adSaurel32# have syscall stubs for these implemented. 12123b3f24adSaurel32# 12133b3f24adSaurel32atfile=no 12143b3f24adSaurel32cat > $TMPC << EOF 12153b3f24adSaurel32#define _ATFILE_SOURCE 12163b3f24adSaurel32#include <sys/types.h> 12173b3f24adSaurel32#include <fcntl.h> 12183b3f24adSaurel32#include <unistd.h> 12193b3f24adSaurel32 12203b3f24adSaurel32int 12213b3f24adSaurel32main(void) 12223b3f24adSaurel32{ 12233b3f24adSaurel32 /* try to unlink nonexisting file */ 12243b3f24adSaurel32 return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); 12253b3f24adSaurel32} 12263b3f24adSaurel32EOF 122752166aa0SJuan Quintelaif compile_prog "" "" ; then 12283b3f24adSaurel32 atfile=yes 12293b3f24adSaurel32fi 12303b3f24adSaurel32 123139386ac7Saurel32# Check for inotify functions when we are building linux-user 12323b3f24adSaurel32# emulator. This is done because older glibc versions don't 12333b3f24adSaurel32# have syscall stubs for these implemented. In that case we 12343b3f24adSaurel32# don't provide them even if kernel supports them. 12353b3f24adSaurel32# 12363b3f24adSaurel32inotify=no 12373b3f24adSaurel32cat > $TMPC << EOF 12383b3f24adSaurel32#include <sys/inotify.h> 12393b3f24adSaurel32 12403b3f24adSaurel32int 12413b3f24adSaurel32main(void) 12423b3f24adSaurel32{ 12433b3f24adSaurel32 /* try to start inotify */ 12448690e420Saurel32 return inotify_init(); 12453b3f24adSaurel32} 12463b3f24adSaurel32EOF 124752166aa0SJuan Quintelaif compile_prog "" "" ; then 12483b3f24adSaurel32 inotify=yes 12493b3f24adSaurel32fi 12503b3f24adSaurel32 1251ebc996f3SRiku Voipio# check if utimensat and futimens are supported 1252ebc996f3SRiku Voipioutimens=no 1253ebc996f3SRiku Voipiocat > $TMPC << EOF 1254ebc996f3SRiku Voipio#define _ATFILE_SOURCE 1255ebc996f3SRiku Voipio#define _GNU_SOURCE 1256ebc996f3SRiku Voipio#include <stddef.h> 1257ebc996f3SRiku Voipio#include <fcntl.h> 1258ebc996f3SRiku Voipio 1259ebc996f3SRiku Voipioint main(void) 1260ebc996f3SRiku Voipio{ 1261ebc996f3SRiku Voipio utimensat(AT_FDCWD, "foo", NULL, 0); 1262ebc996f3SRiku Voipio futimens(0, NULL); 1263ebc996f3SRiku Voipio return 0; 1264ebc996f3SRiku Voipio} 1265ebc996f3SRiku VoipioEOF 126652166aa0SJuan Quintelaif compile_prog "" "" ; then 1267ebc996f3SRiku Voipio utimens=yes 1268ebc996f3SRiku Voipiofi 1269ebc996f3SRiku Voipio 1270099d6b0fSRiku Voipio# check if pipe2 is there 1271099d6b0fSRiku Voipiopipe2=no 1272099d6b0fSRiku Voipiocat > $TMPC << EOF 1273099d6b0fSRiku Voipio#define _GNU_SOURCE 1274099d6b0fSRiku Voipio#include <unistd.h> 1275099d6b0fSRiku Voipio#include <fcntl.h> 1276099d6b0fSRiku Voipio 1277099d6b0fSRiku Voipioint main(void) 1278099d6b0fSRiku Voipio{ 1279099d6b0fSRiku Voipio int pipefd[2]; 1280099d6b0fSRiku Voipio pipe2(pipefd, O_CLOEXEC); 1281099d6b0fSRiku Voipio return 0; 1282099d6b0fSRiku Voipio} 1283099d6b0fSRiku VoipioEOF 128452166aa0SJuan Quintelaif compile_prog "" "" ; then 1285099d6b0fSRiku Voipio pipe2=yes 1286099d6b0fSRiku Voipiofi 1287099d6b0fSRiku Voipio 12883ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time. 12893ce34dfbSvibisreenivasansplice=no 12903ce34dfbSvibisreenivasancat > $TMPC << EOF 12913ce34dfbSvibisreenivasan#define _GNU_SOURCE 12923ce34dfbSvibisreenivasan#include <unistd.h> 12933ce34dfbSvibisreenivasan#include <fcntl.h> 12943ce34dfbSvibisreenivasan#include <limits.h> 12953ce34dfbSvibisreenivasan 12963ce34dfbSvibisreenivasanint main(void) 12973ce34dfbSvibisreenivasan{ 12983ce34dfbSvibisreenivasan int len, fd; 12993ce34dfbSvibisreenivasan len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK); 13003ce34dfbSvibisreenivasan splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE); 13013ce34dfbSvibisreenivasan return 0; 13023ce34dfbSvibisreenivasan} 13033ce34dfbSvibisreenivasanEOF 130452166aa0SJuan Quintelaif compile_prog "" "" ; then 13053ce34dfbSvibisreenivasan splice=yes 13063ce34dfbSvibisreenivasanfi 13073ce34dfbSvibisreenivasan 1308cc8ae6deSpbrook# Check if tools are available to build documentation. 130970ec5dc0SAnthony Liguoriif test "$build_docs" = "yes" -a \( ! -x "`which texi2html 2>/dev/null`" -o ! -x "`which pod2man 2>/dev/null`" \) ; then 131070ec5dc0SAnthony Liguori build_docs="no" 1311cc8ae6deSpbrookfi 1312cc8ae6deSpbrook 13136ae9a1f4SJuan Quintela# Search for bsawp_32 function 13146ae9a1f4SJuan Quintelabyteswap_h=no 13156ae9a1f4SJuan Quintelacat > $TMPC << EOF 13166ae9a1f4SJuan Quintela#include <byteswap.h> 13176ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); } 13186ae9a1f4SJuan QuintelaEOF 131952166aa0SJuan Quintelaif compile_prog "" "" ; then 13206ae9a1f4SJuan Quintela byteswap_h=yes 13216ae9a1f4SJuan Quintelafi 13226ae9a1f4SJuan Quintela 13236ae9a1f4SJuan Quintela# Search for bsawp_32 function 13246ae9a1f4SJuan Quintelabswap_h=no 13256ae9a1f4SJuan Quintelacat > $TMPC << EOF 13266ae9a1f4SJuan Quintela#include <sys/endian.h> 13276ae9a1f4SJuan Quintela#include <sys/types.h> 13286ae9a1f4SJuan Quintela#include <machine/bswap.h> 13296ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); } 13306ae9a1f4SJuan QuintelaEOF 133152166aa0SJuan Quintelaif compile_prog "" "" ; then 13326ae9a1f4SJuan Quintela bswap_h=yes 13336ae9a1f4SJuan Quintelafi 13346ae9a1f4SJuan Quintela 1335da93a1fdSaliguori########################################## 1336da93a1fdSaliguori# Do we need librt 1337da93a1fdSaliguoricat > $TMPC <<EOF 1338da93a1fdSaliguori#include <signal.h> 1339da93a1fdSaliguori#include <time.h> 1340da93a1fdSaliguoriint main(void) { clockid_t id; return clock_gettime(id, NULL); } 1341da93a1fdSaliguoriEOF 1342da93a1fdSaliguori 134352166aa0SJuan Quintelaif compile_prog "" "" ; then 13445169202bSJuan Quintela CLOCKLIBS="" 134552166aa0SJuan Quintelaelif compile_prog "" "-lrt" ; then 1346e5d355d1Saliguori CLOCKLIBS="-lrt" 1347da93a1fdSaliguorifi 1348da93a1fdSaliguori 1349a36abbbbSJuan Quintela# Determine what linker flags to use to force archive inclusion 1350a36abbbbSJuan Quintelacheck_linker_flags() 1351a36abbbbSJuan Quintela{ 1352a36abbbbSJuan Quintela w2= 1353a36abbbbSJuan Quintela if test "$2" ; then 1354a36abbbbSJuan Quintela w2=-Wl,$2 1355a36abbbbSJuan Quintela fi 135652166aa0SJuan Quintela compile_prog "" "-Wl,$1 ${w2}" 1357a36abbbbSJuan Quintela} 1358a36abbbbSJuan Quintela 1359a36abbbbSJuan Quintelacat > $TMPC << EOF 1360a36abbbbSJuan Quintelaint main(void) { } 1361a36abbbbSJuan QuintelaEOF 1362a36abbbbSJuan Quintelaif check_linker_flags --whole-archive --no-whole-archive ; then 1363a36abbbbSJuan Quintela # GNU ld 1364a36abbbbSJuan Quintela arlibs_begin="-Wl,--whole-archive" 1365a36abbbbSJuan Quintela arlibs_end="-Wl,--no-whole-archive" 1366a36abbbbSJuan Quintelaelif check_linker_flags -z,allextract -z,defaultextract ; then 1367a36abbbbSJuan Quintela # Solaris ld 1368a36abbbbSJuan Quintela arlibs_begin"=-Wl,-z,allextract" 1369a36abbbbSJuan Quintela arlibs_end="-Wl,-z,defaultextract" 1370a36abbbbSJuan Quintelaelif check_linker_flags -all_load ; then 1371a36abbbbSJuan Quintela # Mac OS X 1372a36abbbbSJuan Quintela arlibs_begin="-all_load" 1373a36abbbbSJuan Quintela arlibs_end="" 1374a36abbbbSJuan Quintelaelse 1375a36abbbbSJuan Quintela echo "Error: your linker does not support --whole-archive or -z." 1376a36abbbbSJuan Quintela echo "Please report to qemu-devel@nongnu.org" 1377a36abbbbSJuan Quintela exit 1 1378a36abbbbSJuan Quintelafi 1379a36abbbbSJuan Quintela 1380e86ecd4bSJuan Quintela# End of CC checks 1381e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs 1382e86ecd4bSJuan Quintela 1383e86ecd4bSJuan Quintela# default flags for all hosts 13841156c669SJuan QuintelaCFLAGS="-g -fno-strict-aliasing $CFLAGS" 1385e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then 13861156c669SJuan Quintela CFLAGS="-O2 $CFLAGS" 1387e86ecd4bSJuan Quintelafi 13881156c669SJuan QuintelaCFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls $CFLAGS" 13891156c669SJuan QuintelaLDFLAGS="-g $LDFLAGS" 1390e86ecd4bSJuan Quintela 1391e86ecd4bSJuan Quintela# Consult white-list to determine whether to enable werror 1392e86ecd4bSJuan Quintela# by default. Only enable by default for git builds 1393e86ecd4bSJuan Quintelaif test -z "$werror" ; then 1394e86ecd4bSJuan Quintela z_version=`cut -f3 -d. $source_path/VERSION` 1395e86ecd4bSJuan Quintela if test "$z_version" = "50" -a \ 1396e86ecd4bSJuan Quintela "$linux" = "yes" ; then 1397e86ecd4bSJuan Quintela werror="yes" 1398e86ecd4bSJuan Quintela else 1399e86ecd4bSJuan Quintela werror="no" 1400e86ecd4bSJuan Quintela fi 1401e86ecd4bSJuan Quintelafi 1402e86ecd4bSJuan Quintela 1403e86ecd4bSJuan Quintelaif test "$werror" = "yes" ; then 14041156c669SJuan Quintela CFLAGS="-Werror $CFLAGS" 1405e86ecd4bSJuan Quintelafi 1406e86ecd4bSJuan Quintela 1407e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then 1408e86ecd4bSJuan Quintela if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then 14091156c669SJuan Quintela LDFLAGS="-Wl,--warn-common $LDFLAGS" 1410e86ecd4bSJuan Quintela fi 1411e86ecd4bSJuan Quintelafi 1412e86ecd4bSJuan Quintela 141311d9f695Sbellardif test "$mingw32" = "yes" ; then 141411d9f695Sbellard if test -z "$prefix" ; then 141555418b96SStefan Weil prefix="c:/Program Files/Qemu" 141611d9f695Sbellard fi 1417308c3593Spbrook mansuffix="" 1418308c3593Spbrook datasuffix="" 1419308c3593Spbrook docsuffix="" 1420308c3593Spbrook binsuffix="" 142111d9f695Sbellardelse 142211d9f695Sbellard if test -z "$prefix" ; then 142311d9f695Sbellard prefix="/usr/local" 142411d9f695Sbellard fi 1425308c3593Spbrook mansuffix="/share/man" 1426308c3593Spbrook datasuffix="/share/qemu" 1427308c3593Spbrook docsuffix="/share/doc/qemu" 1428308c3593Spbrook binsuffix="/bin" 142911d9f695Sbellardfi 14305a67135aSbellard 14317d13299dSbellardecho "Install prefix $prefix" 1432308c3593Spbrookecho "BIOS directory $prefix$datasuffix" 1433308c3593Spbrookecho "binary directory $prefix$binsuffix" 143411d9f695Sbellardif test "$mingw32" = "no" ; then 1435308c3593Spbrookecho "Manual directory $prefix$mansuffix" 143643ce4dfeSbellardecho "ELF interp prefix $interp_prefix" 143711d9f695Sbellardfi 14385a67135aSbellardecho "Source path $source_path" 14397d13299dSbellardecho "C compiler $cc" 144083469015Sbellardecho "Host C compiler $host_cc" 14410c439cbfSJuan Quintelaecho "CFLAGS $CFLAGS" 14420c439cbfSJuan Quintelaecho "LDFLAGS $LDFLAGS" 14437d13299dSbellardecho "make $make" 14446a882643Spbrookecho "install $install" 1445a98fd896Sbellardecho "host CPU $cpu" 1446de83cd02Sbellardecho "host big endian $bigendian" 144797a847bcSbellardecho "target list $target_list" 1448ade25b0dSaurel32echo "tcg debug enabled $debug_tcg" 14497d13299dSbellardecho "gprof enabled $gprof" 145003b4fe7dSaliguoriecho "sparse enabled $sparse" 14511625af87Saliguoriecho "strip binaries $strip_opt" 145205c2a3e7Sbellardecho "profiler $profiler" 145343ce4dfeSbellardecho "static build $static" 145485aa5189Sbellardecho "-Werror enabled $werror" 14555b0753e0Sbellardif test "$darwin" = "yes" ; then 14565b0753e0Sbellard echo "Cocoa support $cocoa" 14575b0753e0Sbellardfi 145897a847bcSbellardecho "SDL support $sdl" 14594d3b6f6eSbalrogecho "curses support $curses" 1460769ce76dSAlexander Grafecho "curl support $curl" 146167b915a5Sbellardecho "mingw32 support $mingw32" 14620c58ac1cSmalcecho "Audio drivers $audio_drv_list" 14630c58ac1cSmalcecho "Extra audio cards $audio_card_list" 14648ff9cbf7Smalcecho "Mixer emulation $mixemu" 14658d5d2d4cSthsecho "VNC TLS support $vnc_tls" 14668d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 14678d5d2d4cSths echo " TLS CFLAGS $vnc_tls_cflags" 14688d5d2d4cSths echo " TLS LIBS $vnc_tls_libs" 14698d5d2d4cSthsfi 14702f9606b3Saliguoriecho "VNC SASL support $vnc_sasl" 14712f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 14722f9606b3Saliguori echo " SASL CFLAGS $vnc_sasl_cflags" 14732f9606b3Saliguori echo " SASL LIBS $vnc_sasl_libs" 14742f9606b3Saliguorifi 14753142255cSblueswir1if test -n "$sparc_cpu"; then 14763142255cSblueswir1 echo "Target Sparc Arch $sparc_cpu" 14773142255cSblueswir1fi 147807f4ddbfSbellardecho "kqemu support $kqemu" 1479e37630caSaliguoriecho "xen support $xen" 14802e4d9fb1Saurel32echo "brlapi support $brlapi" 1481cc8ae6deSpbrookecho "Documentation $build_docs" 1482c5937220Spbrook[ ! -z "$uname_release" ] && \ 1483c5937220Spbrookecho "uname -r $uname_release" 1484bd0c5661Spbrookecho "NPTL support $nptl" 1485379f6698SPaul Brookecho "GUEST_BASE $guest_base" 14868a16d273Sthsecho "vde support $vde" 1487414f0dabSblueswir1echo "AIO support $aio" 1488e5d355d1Saliguoriecho "IO thread $io_thread" 148977755340Sthsecho "Install blobs $blobs" 1490168ccc11SJan Kiszkaecho -e "KVM support $kvm" 1491f652e6afSaurel32echo "fdt support $fdt" 1492ceb42de8Saliguoriecho "preadv support $preadv" 149367b915a5Sbellard 149497a847bcSbellardif test $sdl_too_old = "yes"; then 149524b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support" 1496e8cd23deSbellardfi 149797a847bcSbellard 149898ec69acSJuan Quintelaconfig_host_mak="config-host.mak" 149998ec69acSJuan Quintelaconfig_host_h="config-host.h" 15004bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld" 150197a847bcSbellard 150298ec69acSJuan Quintela#echo "Creating $config_host_mak and $config_host_h" 150315d9ca0fSths 150498ec69acSJuan Quintelatest -f $config_host_h && mv $config_host_h ${config_host_h}~ 150597a847bcSbellard 150698ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak 150798ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak 150898ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak 150998ec69acSJuan Quintelaecho >> $config_host_mak 151098ec69acSJuan Quintela 15112358a494SJuan Quintelaecho "CONFIG_QEMU_SHAREDIR=\"$prefix$datasuffix\"" >> $config_host_mak 1512804edf29SJuan Quintela 15132408a527Saurel32case "$cpu" in 1514c62bbcd3SAndrzej Zaborowski i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64) 1515e0da9dd3SJuan Quintela ARCH=$cpu 15162408a527Saurel32 ;; 1517a302c32dSLaurent Desnogues armv4b|armv4l) 151816dbd14fSJuan Quintela ARCH=arm 15192408a527Saurel32 ;; 15202408a527Saurel32 *) 15213142255cSblueswir1 echo "Unsupported CPU = $cpu" 15227d13299dSbellard exit 1 15232408a527Saurel32 ;; 15242408a527Saurel32esac 152598ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak 1526f8393946Saurel32if test "$debug_tcg" = "yes" ; then 15272358a494SJuan Quintela echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak 1528f8393946Saurel32fi 1529f3d08ee6SPaul Brookif test "$debug" = "yes" ; then 15302358a494SJuan Quintela echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak 1531f3d08ee6SPaul Brookfi 15321625af87Saliguoriif test "$strip_opt" = "yes" ; then 153398ec69acSJuan Quintela echo "STRIP_OPT=-s" >> $config_host_mak 15341625af87Saliguorifi 15357d13299dSbellardif test "$bigendian" = "yes" ; then 1536e2542fe2SJuan Quintela echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak 153797a847bcSbellardfi 15382358a494SJuan Quintelaecho "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak 153967b915a5Sbellardif test "$mingw32" = "yes" ; then 154098ec69acSJuan Quintela echo "CONFIG_WIN32=y" >> $config_host_mak 1541210fa556Spbrookelse 154235f4df27SJuan Quintela echo "CONFIG_POSIX=y" >> $config_host_mak 1543210fa556Spbrookfi 1544128ab2ffSblueswir1 154583fb7adfSbellardif test "$darwin" = "yes" ; then 154698ec69acSJuan Quintela echo "CONFIG_DARWIN=y" >> $config_host_mak 154783fb7adfSbellardfi 1548b29fe3edSmalc 1549b29fe3edSmalcif test "$aix" = "yes" ; then 155098ec69acSJuan Quintela echo "CONFIG_AIX=y" >> $config_host_mak 1551b29fe3edSmalcfi 1552b29fe3edSmalc 1553ec530c81Sbellardif test "$solaris" = "yes" ; then 155498ec69acSJuan Quintela echo "CONFIG_SOLARIS=y" >> $config_host_mak 15552358a494SJuan Quintela echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak 15560475a5caSths if test "$needs_libsunmath" = "yes" ; then 155775b5a697SJuan Quintela echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak 15580475a5caSths fi 1559ec530c81Sbellardfi 156097a847bcSbellardif test "$gprof" = "yes" ; then 156198ec69acSJuan Quintela echo "TARGET_GPROF=yes" >> $config_host_mak 156297a847bcSbellardfi 156397a847bcSbellardif test "$static" = "yes" ; then 156498ec69acSJuan Quintela echo "CONFIG_STATIC=y" >> $config_host_mak 15651156c669SJuan Quintela LDFLAGS="-static $LDFLAGS" 156697a847bcSbellardfi 156705c2a3e7Sbellardif test $profiler = "yes" ; then 15682358a494SJuan Quintela echo "CONFIG_PROFILER=y" >> $config_host_mak 156905c2a3e7Sbellardfi 1570c20709aaSbellardif test "$slirp" = "yes" ; then 157198ec69acSJuan Quintela echo "CONFIG_SLIRP=y" >> $config_host_mak 1572c20709aaSbellardfi 15738a16d273Sthsif test "$vde" = "yes" ; then 157498ec69acSJuan Quintela echo "CONFIG_VDE=y" >> $config_host_mak 15754baae0acSJuan Quintela echo "VDE_LIBS=$vde_libs" >> $config_host_mak 15768a16d273Sthsfi 15770c58ac1cSmalcfor card in $audio_card_list; do 1578f6e5889eSpbrook def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` 157998ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 15800c58ac1cSmalcdone 15812358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak 15820c58ac1cSmalcfor drv in $audio_drv_list; do 1583f6e5889eSpbrook def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'` 158498ec69acSJuan Quintela echo "$def=y" >> $config_host_mak 1585923e4521Smalc if test "$drv" = "fmod"; then 15867aac6cb1SJuan Quintela echo "FMOD_LIBS=$fmod_lib" >> $config_host_mak 15877aac6cb1SJuan Quintela echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak 15882f6a1ab0Sblueswir1 elif test "$drv" = "oss"; then 15896881964cSJuan Quintela echo "OSS_LIBS=$oss_lib" >> $config_host_mak 1590fb065187Sbellard fi 15910c58ac1cSmalcdone 15928ff9cbf7Smalcif test "$mixemu" = "yes" ; then 159398ec69acSJuan Quintela echo "CONFIG_MIXEMU=y" >> $config_host_mak 15948ff9cbf7Smalcfi 15958d5d2d4cSthsif test "$vnc_tls" = "yes" ; then 159698ec69acSJuan Quintela echo "CONFIG_VNC_TLS=y" >> $config_host_mak 1597525061bfSJuan Quintela echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak 1598525061bfSJuan Quintela echo "VNC_TLS_LIBS=$vnc_tls_libs" >> $config_host_mak 15998d5d2d4cSthsfi 16002f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then 160198ec69acSJuan Quintela echo "CONFIG_VNC_SASL=y" >> $config_host_mak 160260ddf533SJuan Quintela echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak 160360ddf533SJuan Quintela echo "VNC_SASL_LIBS=$vnc_sasl_libs" >> $config_host_mak 16042f9606b3Saliguorifi 160576655d6dSaliguoriif test "$fnmatch" = "yes" ; then 16062358a494SJuan Quintela echo "CONFIG_FNMATCH=y" >> $config_host_mak 160776655d6dSaliguorifi 1608b1a550a0Spbrookqemu_version=`head $source_path/VERSION` 160998ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak 16102358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak 161198ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak 1612ad064840Spbrookif [ "$source_path_used" = "yes" ]; then 161398ec69acSJuan Quintela echo "VPATH=$source_path" >> $config_host_mak 1614ad064840Spbrookfi 161598ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak 1616cc8ae6deSpbrookif [ "$build_docs" = "yes" ] ; then 161798ec69acSJuan Quintela echo "BUILD_DOCS=yes" >> $config_host_mak 1618cc8ae6deSpbrookfi 16191ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then 162098ec69acSJuan Quintela echo "CONFIG_SDL=y" >> $config_host_mak 16211ac88f28SJuan Quintela echo "SDL_LIBS=$sdl_libs" >> $config_host_mak 16228ad3a7ddSJuan Quintela echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak 162349ecc3faSbellardfi 162449ecc3faSbellardif test "$cocoa" = "yes" ; then 162598ec69acSJuan Quintela echo "CONFIG_COCOA=y" >> $config_host_mak 162649ecc3faSbellardfi 16274d3b6f6eSbalrogif test "$curses" = "yes" ; then 162898ec69acSJuan Quintela echo "CONFIG_CURSES=y" >> $config_host_mak 1629e0b7a42bSJuan Quintela echo "CURSES_LIBS=$curses_libs" >> $config_host_mak 1630ab4e5602SJan Kiszkafi 16313b3f24adSaurel32if test "$atfile" = "yes" ; then 16322358a494SJuan Quintela echo "CONFIG_ATFILE=y" >> $config_host_mak 16333b3f24adSaurel32fi 1634ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then 16352358a494SJuan Quintela echo "CONFIG_UTIMENSAT=y" >> $config_host_mak 1636ebc996f3SRiku Voipiofi 1637099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then 16382358a494SJuan Quintela echo "CONFIG_PIPE2=y" >> $config_host_mak 1639099d6b0fSRiku Voipiofi 16403ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then 16412358a494SJuan Quintela echo "CONFIG_SPLICE=y" >> $config_host_mak 16423ce34dfbSvibisreenivasanfi 16433b3f24adSaurel32if test "$inotify" = "yes" ; then 16442358a494SJuan Quintela echo "CONFIG_INOTIFY=y" >> $config_host_mak 16453b3f24adSaurel32fi 16466ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then 16476ae9a1f4SJuan Quintela echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak 16486ae9a1f4SJuan Quintelafi 16496ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then 16506ae9a1f4SJuan Quintela echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak 16516ae9a1f4SJuan Quintelafi 1652769ce76dSAlexander Grafif test "$curl" = "yes" ; then 165398ec69acSJuan Quintela echo "CONFIG_CURL=y" >> $config_host_mak 1654b1d5a277SJuan Quintela echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak 165598ec69acSJuan Quintela echo "CURL_LIBS=$curl_libs" >> $config_host_mak 1656769ce76dSAlexander Graffi 16572e4d9fb1Saurel32if test "$brlapi" = "yes" ; then 165898ec69acSJuan Quintela echo "CONFIG_BRLAPI=y" >> $config_host_mak 1659eb82284fSJuan Quintela echo "BRLAPI_LIBS=$brlapi_libs" >> $config_host_mak 16602e4d9fb1Saurel32fi 1661fb599c9aSbalrogif test "$bluez" = "yes" ; then 166298ec69acSJuan Quintela echo "CONFIG_BLUEZ=y" >> $config_host_mak 1663ef7635ecSJuan Quintela echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak 1664ef7635ecSJuan Quintela echo "BLUEZ_LIBS=$bluez_libs" >> $config_host_mak 1665fb599c9aSbalrogfi 1666e37630caSaliguoriif test "$xen" = "yes" ; then 16675647eb74SJuan Quintela echo "CONFIG_XEN=y" >> $config_host_mak 1668b2266beeSJuan Quintela echo "XEN_LIBS=$xen_libs" >> $config_host_mak 1669e37630caSaliguorifi 1670414f0dabSblueswir1if test "$aio" = "yes" ; then 167198ec69acSJuan Quintela echo "CONFIG_AIO=y" >> $config_host_mak 1672414f0dabSblueswir1fi 1673e5d355d1Saliguoriif test "$io_thread" = "yes" ; then 167498ec69acSJuan Quintela echo "CONFIG_IOTHREAD=y" >> $config_host_mak 1675e5d355d1Saliguorifi 167677755340Sthsif test "$blobs" = "yes" ; then 167798ec69acSJuan Quintela echo "INSTALL_BLOBS=yes" >> $config_host_mak 167877755340Sthsfi 1679bf9298b9Saliguoriif test "$iovec" = "yes" ; then 16802358a494SJuan Quintela echo "CONFIG_IOVEC=y" >> $config_host_mak 1681bf9298b9Saliguorifi 1682ceb42de8Saliguoriif test "$preadv" = "yes" ; then 16832358a494SJuan Quintela echo "CONFIG_PREADV=y" >> $config_host_mak 1684ceb42de8Saliguorifi 1685f652e6afSaurel32if test "$fdt" = "yes" ; then 16863f0855b1SJuan Quintela echo "CONFIG_FDT=y" >> $config_host_mak 1687b41af4baSJuan Quintela echo "FDT_LIBS=$fdt_libs" >> $config_host_mak 1688f652e6afSaurel32fi 168997a847bcSbellard 169083fb7adfSbellard# XXX: suppress that 16917d3505c5Sbellardif [ "$bsd" = "yes" ] ; then 16922358a494SJuan Quintela echo "CONFIG_BSD=y" >> $config_host_mak 16937d3505c5Sbellardfi 16947d3505c5Sbellard 16952358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak 1696c5937220Spbrook 169768063649Sblueswir1# USB host support 169868063649Sblueswir1case "$usb" in 169968063649Sblueswir1linux) 170098ec69acSJuan Quintela echo "HOST_USB=linux" >> $config_host_mak 170168063649Sblueswir1;; 170268063649Sblueswir1bsd) 170398ec69acSJuan Quintela echo "HOST_USB=bsd" >> $config_host_mak 170468063649Sblueswir1;; 170568063649Sblueswir1*) 170698ec69acSJuan Quintela echo "HOST_USB=stub" >> $config_host_mak 170768063649Sblueswir1;; 170868063649Sblueswir1esac 170968063649Sblueswir1 1710c39e3338Spbrooktools= 1711c39e3338Spbrookif test `expr "$target_list" : ".*softmmu.*"` != 0 ; then 17123dd1f8efSaliguori tools="qemu-img\$(EXESUF) $tools" 17137a5ca864Sbellard if [ "$linux" = "yes" ] ; then 17143dd1f8efSaliguori tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" 17157a5ca864Sbellard fi 1716c39e3338Spbrookfi 171798ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak 1718c39e3338Spbrook 1719161294d8SJuan Quintela# Mac OS X ships with a broken assembler 1720253d0942SAlexander Grafroms= 1721161294d8SJuan Quintelaif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ 1722161294d8SJuan Quintela "$targetos" != "Darwin" ; then 1723c05ac895SPaul Brook roms="optionrom" 1724253d0942SAlexander Graffi 172598ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak 1726253d0942SAlexander Graf 1727804edf29SJuan Quintelaecho "prefix=$prefix" >> $config_host_mak 1728804edf29SJuan Quintelaecho "bindir=\${prefix}$binsuffix" >> $config_host_mak 1729804edf29SJuan Quintelaecho "mandir=\${prefix}$mansuffix" >> $config_host_mak 1730804edf29SJuan Quintelaecho "datadir=\${prefix}$datasuffix" >> $config_host_mak 1731804edf29SJuan Quintelaecho "docdir=\${prefix}$docsuffix" >> $config_host_mak 1732804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak 1733804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak 1734804edf29SJuan Quintelaecho "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak 1735804edf29SJuan Quintelaecho "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak 1736804edf29SJuan Quintelaecho "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak 1737804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak 1738804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak 1739804edf29SJuan Quintelaif test "$sparse" = "yes" ; then 1740804edf29SJuan Quintela echo "CC := REAL_CC=\"\$(CC)\" cgcc" >> $config_host_mak 1741804edf29SJuan Quintela echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc" >> $config_host_mak 1742804edf29SJuan Quintela echo "CFLAGS += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak 1743804edf29SJuan Quintelafi 1744804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak 1745804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak 1746804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak 1747e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak 1748e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak 1749a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak 1750a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak 1751804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak 1752804edf29SJuan Quintelaecho "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak 1753804edf29SJuan Quintelaecho "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak 1754804edf29SJuan Quintela 17552358a494SJuan Quintelaecho "/* Automatically generated by configure - do not modify */" > $config_host_h 17562358a494SJuan Quintela 17570ff6697dSmalc$SHELL $source_path/create_config < $config_host_mak >> $config_host_h 17582358a494SJuan Quintela 175998ec69acSJuan Quintelaif test -f ${config_host_h}~ ; then 176098ec69acSJuan Quintela if cmp -s $config_host_h ${config_host_h}~ ; then 176198ec69acSJuan Quintela mv ${config_host_h}~ $config_host_h 1762370ab986SPaul Brook else 176398ec69acSJuan Quintela rm ${config_host_h}~ 1764370ab986SPaul Brook fi 1765370ab986SPaul Brookfi 1766370ab986SPaul Brook 17674bf6b55bSJuan Quintela# generate list of library paths for linker script 17684bf6b55bSJuan Quintela 17694bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld} 17704bf6b55bSJuan Quintela 17714bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then 17724bf6b55bSJuan Quintela if cmp -s $config_host_ld ${config_host_ld}~ ; then 17734bf6b55bSJuan Quintela mv ${config_host_ld}~ $config_host_ld 17744bf6b55bSJuan Quintela else 17754bf6b55bSJuan Quintela rm ${config_host_ld}~ 17764bf6b55bSJuan Quintela fi 17774bf6b55bSJuan Quintelafi 17784bf6b55bSJuan Quintela 177997a847bcSbellardfor target in $target_list; do 178097a847bcSbellardtarget_dir="$target" 178197a847bcSbellardconfig_mak=$target_dir/config.mak 178297a847bcSbellardconfig_h=$target_dir/config.h 1783600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1` 178497a847bcSbellardtarget_bigendian="no" 1785ea2d6a39SJuan Quintelacase "$target_arch2" in 1786ea2d6a39SJuan Quintela armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus) 1787ea2d6a39SJuan Quintela target_bigendian=yes 1788ea2d6a39SJuan Quintela ;; 1789ea2d6a39SJuan Quintelaesac 179097a847bcSbellardtarget_softmmu="no" 1791997344f3Sbellardtarget_user_only="no" 1792831b7825Sthstarget_linux_user="no" 1793831b7825Sthstarget_darwin_user="no" 179484778508Sblueswir1target_bsd_user="no" 17959e407a85Spbrookcase "$target" in 1796600309b6SBlue Swirl ${target_arch2}-softmmu) 17979e407a85Spbrook target_softmmu="yes" 17989e407a85Spbrook ;; 1799600309b6SBlue Swirl ${target_arch2}-linux-user) 18009e407a85Spbrook target_user_only="yes" 18019e407a85Spbrook target_linux_user="yes" 18029e407a85Spbrook ;; 1803600309b6SBlue Swirl ${target_arch2}-darwin-user) 18049e407a85Spbrook target_user_only="yes" 1805831b7825Sths target_darwin_user="yes" 18069e407a85Spbrook ;; 1807600309b6SBlue Swirl ${target_arch2}-bsd-user) 180884778508Sblueswir1 target_user_only="yes" 180984778508Sblueswir1 target_bsd_user="yes" 181084778508Sblueswir1 ;; 18119e407a85Spbrook *) 18129e407a85Spbrook echo "ERROR: Target '$target' not recognised" 18139e407a85Spbrook exit 1 18149e407a85Spbrook ;; 18159e407a85Spbrookesac 1816831b7825Sths 18177c1f25b4Sbellard#echo "Creating $config_mak, $config_h and $target_dir/Makefile" 181897a847bcSbellard 181915d9ca0fSthstest -f $config_h && mv $config_h ${config_h}~ 182015d9ca0fSths 182197a847bcSbellardmkdir -p $target_dir 1822158142c2Sbellardmkdir -p $target_dir/fpu 182357fec1feSbellardmkdir -p $target_dir/tcg 182484778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then 182569de927cSbellard mkdir -p $target_dir/nwfpe 182669de927cSbellardfi 182769de927cSbellard 1828ec530c81Sbellard# 1829ec530c81Sbellard# don't use ln -sf as not all "ln -sf" over write the file/link 1830ec530c81Sbellard# 1831ec530c81Sbellardrm -f $target_dir/Makefile 1832ec530c81Sbellardln -s $source_path/Makefile.target $target_dir/Makefile 1833ec530c81Sbellard 183497a847bcSbellard 183597a847bcSbellardecho "# Automatically generated by configure - do not modify" > $config_mak 183697a847bcSbellard 183797a847bcSbellardecho "include ../config-host.mak" >> $config_mak 18381e43adfcSbellard 1839e5fe0c52Spbrookbflt="no" 1840cb33da57Sblueswir1elfload32="no" 1841bd0c5661Spbrooktarget_nptl="no" 1842600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"` 184342bc608bSJuan Quintelaecho "CONFIG_QEMU_PREFIX=\"$interp_prefix1\"" >> $config_mak 184456aebc89Spbrookgdb_xml_files="" 18457ba1e619Saliguori 1846938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2" 18476acff7daSJuan QuintelaTARGET_BASE_ARCH="" 1848e6e91b9cSJuan QuintelaTARGET_ABI_DIR="" 1849e73aae67SJuan Quintela 1850600309b6SBlue Swirlcase "$target_arch2" in 18512408a527Saurel32 i386) 18521ad2134fSPaul Brook target_phys_bits=32 18532408a527Saurel32 ;; 18542408a527Saurel32 x86_64) 18556acff7daSJuan Quintela TARGET_BASE_ARCH=i386 18561ad2134fSPaul Brook target_phys_bits=64 18572408a527Saurel32 ;; 18582408a527Saurel32 alpha) 18591ad2134fSPaul Brook target_phys_bits=64 18602408a527Saurel32 ;; 18612408a527Saurel32 arm|armeb) 1862b498c8a0SJuan Quintela TARGET_ARCH=arm 1863e5fe0c52Spbrook bflt="yes" 1864bd0c5661Spbrook target_nptl="yes" 186556aebc89Spbrook gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" 18661ad2134fSPaul Brook target_phys_bits=32 18672408a527Saurel32 ;; 18682408a527Saurel32 cris) 1869253bd7f8Sedgar_igl target_nptl="yes" 18701ad2134fSPaul Brook target_phys_bits=32 18712408a527Saurel32 ;; 18722408a527Saurel32 m68k) 18730938cda5Saurel32 bflt="yes" 187456aebc89Spbrook gdb_xml_files="cf-core.xml cf-fp.xml" 18751ad2134fSPaul Brook target_phys_bits=32 18762408a527Saurel32 ;; 187772b675caSEdgar E. Iglesias microblaze) 187872b675caSEdgar E. Iglesias bflt="yes" 187972b675caSEdgar E. Iglesias target_nptl="yes" 188072b675caSEdgar E. Iglesias target_phys_bits=32 188172b675caSEdgar E. Iglesias ;; 18822408a527Saurel32 mips|mipsel) 1883b498c8a0SJuan Quintela TARGET_ARCH=mips 188442bc608bSJuan Quintela echo "TARGET_ABI_MIPSO32=y" >> $config_mak 1885f04dc72fSPaul Brook target_nptl="yes" 18861ad2134fSPaul Brook target_phys_bits=64 18872408a527Saurel32 ;; 18882408a527Saurel32 mipsn32|mipsn32el) 1889b498c8a0SJuan Quintela TARGET_ARCH=mipsn32 18906acff7daSJuan Quintela TARGET_BASE_ARCH=mips 189142bc608bSJuan Quintela echo "TARGET_ABI_MIPSN32=y" >> $config_mak 18921ad2134fSPaul Brook target_phys_bits=64 18932408a527Saurel32 ;; 18942408a527Saurel32 mips64|mips64el) 1895b498c8a0SJuan Quintela TARGET_ARCH=mips64 18966acff7daSJuan Quintela TARGET_BASE_ARCH=mips 189742bc608bSJuan Quintela echo "TARGET_ABI_MIPSN64=y" >> $config_mak 18981ad2134fSPaul Brook target_phys_bits=64 18992408a527Saurel32 ;; 19002408a527Saurel32 ppc) 1901c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 19021ad2134fSPaul Brook target_phys_bits=32 1903d6630708SNathan Froyd target_nptl="yes" 19042408a527Saurel32 ;; 19052408a527Saurel32 ppcemb) 19066acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 1907e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 1908c8b3532dSaurel32 gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 19091ad2134fSPaul Brook target_phys_bits=64 1910d6630708SNathan Froyd target_nptl="yes" 19112408a527Saurel32 ;; 19122408a527Saurel32 ppc64) 19136acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 1914e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 1915c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 19161ad2134fSPaul Brook target_phys_bits=64 19172408a527Saurel32 ;; 19182408a527Saurel32 ppc64abi32) 1919b498c8a0SJuan Quintela TARGET_ARCH=ppc64 19206acff7daSJuan Quintela TARGET_BASE_ARCH=ppc 1921e6e91b9cSJuan Quintela TARGET_ABI_DIR=ppc 192242bc608bSJuan Quintela echo "TARGET_ABI32=y" >> $config_mak 1923c8b3532dSaurel32 gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml" 19241ad2134fSPaul Brook target_phys_bits=64 19252408a527Saurel32 ;; 19262408a527Saurel32 sh4|sh4eb) 1927b498c8a0SJuan Quintela TARGET_ARCH=sh4 19284dbed897Spbrook bflt="yes" 19290b6d3ae0Saurel32 target_nptl="yes" 19301ad2134fSPaul Brook target_phys_bits=32 19312408a527Saurel32 ;; 19322408a527Saurel32 sparc) 19331ad2134fSPaul Brook target_phys_bits=64 19342408a527Saurel32 ;; 19352408a527Saurel32 sparc64) 19366acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 19370938cda5Saurel32 elfload32="yes" 19381ad2134fSPaul Brook target_phys_bits=64 19392408a527Saurel32 ;; 19402408a527Saurel32 sparc32plus) 1941b498c8a0SJuan Quintela TARGET_ARCH=sparc64 19426acff7daSJuan Quintela TARGET_BASE_ARCH=sparc 1943e6e91b9cSJuan Quintela TARGET_ABI_DIR=sparc 194442bc608bSJuan Quintela echo "TARGET_ABI32=y" >> $config_mak 19451ad2134fSPaul Brook target_phys_bits=64 19462408a527Saurel32 ;; 19472408a527Saurel32 *) 1948de83cd02Sbellard echo "Unsupported target CPU" 1949de83cd02Sbellard exit 1 19502408a527Saurel32 ;; 19512408a527Saurel32esac 1952b498c8a0SJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_mak 19530adcffb1SJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_mak 195442bc608bSJuan Quintela# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH 19556acff7daSJuan Quintelaif [ "$TARGET_BASE_ARCH" = "" ]; then 19566acff7daSJuan Quintela TARGET_BASE_ARCH=$TARGET_ARCH 19576acff7daSJuan Quintelafi 19586acff7daSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_mak 1959e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then 1960e6e91b9cSJuan Quintela TARGET_ABI_DIR=$TARGET_ARCH 1961e6e91b9cSJuan Quintelafi 1962e6e91b9cSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_mak 19631ad2134fSPaul Brookif [ $target_phys_bits -lt $hostlongbits ] ; then 19641ad2134fSPaul Brook target_phys_bits=$hostlongbits 19651ad2134fSPaul Brookfi 19661b0c87fcSJuan Quintelacase "$target_arch2" in 19671b0c87fcSJuan Quintela i386|x86_64) 19681b0c87fcSJuan Quintela if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then 19691b0c87fcSJuan Quintela echo "CONFIG_XEN=y" >> $config_mak 19701b0c87fcSJuan Quintela fi 19710d46b7edSJuan Quintela if test $kqemu = "yes" -a "$target_softmmu" = "yes" 19720d46b7edSJuan Quintela then 19730d46b7edSJuan Quintela echo "CONFIG_KQEMU=y" >> $config_mak 19740d46b7edSJuan Quintela fi 19751b0c87fcSJuan Quintelaesac 1976c59249f9SJuan Quintelacase "$target_arch2" in 19775f114bc6SAlexander Graf i386|x86_64|ppcemb|ppc|ppc64) 1978c59249f9SJuan Quintela # Make sure the target and host cpus are compatible 1979c59249f9SJuan Quintela if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ 1980c59249f9SJuan Quintela \( "$target_arch2" = "$cpu" -o \ 1981c59249f9SJuan Quintela \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ 19825f114bc6SAlexander Graf \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ 1983c59249f9SJuan Quintela \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ 1984c59249f9SJuan Quintela \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then 1985c59249f9SJuan Quintela echo "CONFIG_KVM=y" >> $config_mak 1986c59249f9SJuan Quintela echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak 1987c59249f9SJuan Quintela fi 1988c59249f9SJuan Quintelaesac 19891ad2134fSPaul Brookecho "HWLIB=../libhw$target_phys_bits/libqemuhw$target_phys_bits.a" >> $config_mak 199042bc608bSJuan Quintelaecho "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_mak 19911ad2134fSPaul Brookecho "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak 1992de83cd02Sbellardif test "$target_bigendian" = "yes" ; then 199342bc608bSJuan Quintela echo "TARGET_WORDS_BIGENDIAN=y" >> $config_mak 199497a847bcSbellardfi 199597a847bcSbellardif test "$target_softmmu" = "yes" ; then 1996e34af2ceSJuan Quintela echo "CONFIG_SOFTMMU=y" >> $config_mak 1997de83cd02Sbellardfi 1998997344f3Sbellardif test "$target_user_only" = "yes" ; then 1999e34af2ceSJuan Quintela echo "CONFIG_USER_ONLY=y" >> $config_mak 2000997344f3Sbellardfi 2001831b7825Sthsif test "$target_linux_user" = "yes" ; then 2002e34af2ceSJuan Quintela echo "CONFIG_LINUX_USER=y" >> $config_mak 2003831b7825Sthsfi 2004831b7825Sthsif test "$target_darwin_user" = "yes" ; then 2005e34af2ceSJuan Quintela echo "CONFIG_DARWIN_USER=y" >> $config_mak 2006831b7825Sthsfi 200756aebc89Spbrooklist="" 200856aebc89Spbrookif test ! -z "$gdb_xml_files" ; then 200956aebc89Spbrook for x in $gdb_xml_files; do 201056aebc89Spbrook list="$list $source_path/gdb-xml/$x" 201156aebc89Spbrook done 201256aebc89Spbrookfi 201356aebc89Spbrookecho "TARGET_XML_FILES=$list" >> $config_mak 2014de83cd02Sbellard 2015f57975fbSJuan Quintelacase "$target_arch2" in 2016f57975fbSJuan Quintela arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus) 2017e34af2ceSJuan Quintela echo "CONFIG_SOFTFLOAT=y" >> $config_mak 2018f57975fbSJuan Quintela ;; 2019f57975fbSJuan Quintelaesac 2020f57975fbSJuan Quintela 2021e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then 2022e34af2ceSJuan Quintela echo "TARGET_HAS_BFLT=y" >> $config_mak 2023e5fe0c52Spbrookfi 2024bd0c5661Spbrookif test "$target_user_only" = "yes" \ 2025bd0c5661Spbrook -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then 20262f7bb878SJuan Quintela echo "CONFIG_USE_NPTL=y" >> $config_mak 2027bd0c5661Spbrookfi 2028cb33da57Sblueswir1# 32 bit ELF loader in addition to native 64 bit loader? 2029cb33da57Sblueswir1if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then 2030e34af2ceSJuan Quintela echo "TARGET_HAS_ELFLOAD32=y" >> $config_mak 2031cb33da57Sblueswir1fi 2032379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then 2033379f6698SPaul Brook echo "CONFIG_USE_GUEST_BASE=y" >> $config_mak 2034379f6698SPaul Brookfi 203584778508Sblueswir1if test "$target_bsd_user" = "yes" ; then 2036e34af2ceSJuan Quintela echo "CONFIG_BSD_USER=y" >> $config_mak 203784778508Sblueswir1fi 20385b0753e0Sbellard 2039fa282484SJuan Quintela# generate LDFLAGS for targets 2040fa282484SJuan Quintela 2041fa282484SJuan Quintelaldflags="" 2042fa282484SJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_linux_user" = "yes" ; then 2043fa282484SJuan Quintela case "$ARCH" in 2044fa282484SJuan Quintela i386) 2045fa282484SJuan Quintela if test "$gprof" = "yes" -o "$static" = "yes" ; then 20464bf6b55bSJuan Quintela ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld' 2047fa282484SJuan Quintela else 2048fa282484SJuan Quintela # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object 2049fa282484SJuan Quintela # that the kernel ELF loader considers as an executable. I think this 2050fa282484SJuan Quintela # is the simplest way to make it self virtualizable! 2051fa282484SJuan Quintela ldflags='-Wl,-shared' 2052fa282484SJuan Quintela fi 2053fa282484SJuan Quintela ;; 2054fa282484SJuan Quintela sparc) 2055fa282484SJuan Quintela # -static is used to avoid g1/g3 usage by the dynamic linker 20564bf6b55bSJuan Quintela ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static' 2057fa282484SJuan Quintela ;; 2058fa282484SJuan Quintela ia64) 20594bf6b55bSJuan Quintela ldflags='-Wl,-G0 -Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static' 2060fa282484SJuan Quintela ;; 2061fa282484SJuan Quintela x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) 20624bf6b55bSJuan Quintela ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld' 2063fa282484SJuan Quintela ;; 2064fa282484SJuan Quintela esac 2065fa282484SJuan Quintelafi 2066fa282484SJuan Quintelaif test "$target_softmmu" = "yes" ; then 2067fa282484SJuan Quintela case "$ARCH" in 2068fa282484SJuan Quintela ia64) 20694bf6b55bSJuan Quintela ldflags='-Wl,-G0 -Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static' 2070fa282484SJuan Quintela ;; 2071fa282484SJuan Quintela esac 2072fa282484SJuan Quintelafi 2073fa282484SJuan Quintela 2074fa282484SJuan Quintelaif test "$ldflags" != "" ; then 2075fa282484SJuan Quintela echo "LDFLAGS+=$ldflags" >> $config_mak 2076fa282484SJuan Quintelafi 2077fa282484SJuan Quintela 20782358a494SJuan Quintelaecho "/* Automatically generated by configure - do not modify */" > $config_h 20792358a494SJuan Quintelaecho "#include \"../config-host.h\"" >> $config_h 20802358a494SJuan Quintela 20810ff6697dSmalc$SHELL $source_path/create_config < $config_mak >> $config_h 208242bc608bSJuan Quintela 2083a900c002SJuan Quintelaif test -f ${config_h}~ ; then 2084a900c002SJuan Quintela if cmp -s $config_h ${config_h}~ ; then 2085a900c002SJuan Quintela mv ${config_h}~ $config_h 2086a900c002SJuan Quintela else 2087a900c002SJuan Quintela rm ${config_h}~ 2088a900c002SJuan Quintela fi 2089a900c002SJuan Quintelafi 209015d9ca0fSths 209197a847bcSbellarddone # for target in $targets 20927d13299dSbellard 20937d13299dSbellard# build tree in object directory if source path is different from current one 20947d13299dSbellardif test "$source_path_used" = "yes" ; then 2095253d0942SAlexander Graf DIRS="tests tests/cris slirp audio block pc-bios/optionrom" 20967d13299dSbellard FILES="Makefile tests/Makefile" 2097e7daa605Sths FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" 2098e1ffb0f1Sedgar_igl FILES="$FILES tests/test-mmap.c" 20997ea78b74SJan Kiszka FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x" 21007ea78b74SJan Kiszka for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do 21017ea78b74SJan Kiszka FILES="$FILES pc-bios/`basename $bios_file`" 21027ea78b74SJan Kiszka done 21037d13299dSbellard for dir in $DIRS ; do 21047d13299dSbellard mkdir -p $dir 21057d13299dSbellard done 2106ec530c81Sbellard # remove the link and recreate it, as not all "ln -sf" overwrite the link 21077d13299dSbellard for f in $FILES ; do 2108ec530c81Sbellard rm -f $f 2109ec530c81Sbellard ln -s $source_path/$f $f 21107d13299dSbellard done 21117d13299dSbellardfi 21121ad2134fSPaul Brook 21131ad2134fSPaul Brookfor hwlib in 32 64; do 21141ad2134fSPaul Brook d=libhw$hwlib 21151ad2134fSPaul Brook mkdir -p $d 21161ad2134fSPaul Brook rm -f $d/Makefile 21171ad2134fSPaul Brook ln -s $source_path/Makefile.hw $d/Makefile 21181ad2134fSPaul Brook echo "HWLIB=libqemuhw$hwlib.a" > $d/config.mak 21191ad2134fSPaul Brook echo "CPPFLAGS=-DTARGET_PHYS_ADDR_BITS=$hwlib" >> $d/config.mak 21201ad2134fSPaul Brookdone 2121