xref: /qemu/configure (revision 023d3d67c7dc6e7f492de5b2336194c500d1779d)
17d13299dSbellard#!/bin/sh
27d13299dSbellard#
33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard
47d13299dSbellard#
57d13299dSbellard# set temporary file name
67d13299dSbellardif test ! -z "$TMPDIR" ; then
77d13299dSbellard    TMPDIR1="${TMPDIR}"
87d13299dSbellardelif test ! -z "$TEMPDIR" ; then
97d13299dSbellard    TMPDIR1="${TEMPDIR}"
107d13299dSbellardelse
117d13299dSbellard    TMPDIR1="/tmp"
127d13299dSbellardfi
137d13299dSbellard
143ef693a0SbellardTMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
153ef693a0SbellardTMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16a91b857cSmalcTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
177d13299dSbellard
180ba8681eSLoïc Minier# NB: do not call "exit" in the trap handler; this is buggy with some shells;
190ba8681eSLoïc Minier# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
200ba8681eSLoïc Miniertrap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
21da1d85e3SGerd Hoffmannrm -f config.log
229ac81bbbSmalc
23b48e3611SPeter Maydell# Print a helpful header at the top of config.log
24b48e3611SPeter Maydellecho "# QEMU configure log $(date)" >> config.log
25979ae168SPeter Maydellprintf "# Configured with:" >> config.log
26979ae168SPeter Maydellprintf " '%s'" "$0" "$@" >> config.log
27979ae168SPeter Maydellecho >> config.log
28b48e3611SPeter Maydellecho "#" >> config.log
29b48e3611SPeter Maydell
3052166aa0SJuan Quintelacompile_object() {
31da1d85e3SGerd Hoffmann  echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log
32da1d85e3SGerd Hoffmann  $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1
3352166aa0SJuan Quintela}
3452166aa0SJuan Quintela
3552166aa0SJuan Quintelacompile_prog() {
3652166aa0SJuan Quintela  local_cflags="$1"
3752166aa0SJuan Quintela  local_ldflags="$2"
38da1d85e3SGerd Hoffmann  echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log
39da1d85e3SGerd Hoffmann  $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1
4052166aa0SJuan Quintela}
4152166aa0SJuan Quintela
4211568d6dSPaolo Bonzini# symbolically link $1 to $2.  Portable version of "ln -sf".
4311568d6dSPaolo Bonzinisymlink() {
4411568d6dSPaolo Bonzini  rm -f $2
4511568d6dSPaolo Bonzini  ln -s $1 $2
4611568d6dSPaolo Bonzini}
4711568d6dSPaolo Bonzini
480dba6195SLoïc Minier# check whether a command is available to this shell (may be either an
490dba6195SLoïc Minier# executable or a builtin)
500dba6195SLoïc Minierhas() {
510dba6195SLoïc Minier    type "$1" >/dev/null 2>&1
520dba6195SLoïc Minier}
530dba6195SLoïc Minier
540dba6195SLoïc Minier# search for an executable in PATH
550dba6195SLoïc Minierpath_of() {
560dba6195SLoïc Minier    local_command="$1"
570dba6195SLoïc Minier    local_ifs="$IFS"
580dba6195SLoïc Minier    local_dir=""
590dba6195SLoïc Minier
600dba6195SLoïc Minier    # pathname has a dir component?
610dba6195SLoïc Minier    if [ "${local_command#*/}" != "$local_command" ]; then
620dba6195SLoïc Minier        if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
630dba6195SLoïc Minier            echo "$local_command"
640dba6195SLoïc Minier            return 0
650dba6195SLoïc Minier        fi
660dba6195SLoïc Minier    fi
670dba6195SLoïc Minier    if [ -z "$local_command" ]; then
680dba6195SLoïc Minier        return 1
690dba6195SLoïc Minier    fi
700dba6195SLoïc Minier
710dba6195SLoïc Minier    IFS=:
720dba6195SLoïc Minier    for local_dir in $PATH; do
730dba6195SLoïc Minier        if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
740dba6195SLoïc Minier            echo "$local_dir/$local_command"
750dba6195SLoïc Minier            IFS="${local_ifs:-$(printf ' \t\n')}"
760dba6195SLoïc Minier            return 0
770dba6195SLoïc Minier        fi
780dba6195SLoïc Minier    done
790dba6195SLoïc Minier    # not found
800dba6195SLoïc Minier    IFS="${local_ifs:-$(printf ' \t\n')}"
810dba6195SLoïc Minier    return 1
820dba6195SLoïc Minier}
830dba6195SLoïc Minier
847d13299dSbellard# default parameters
85ca4deeb1SPaolo Bonzinisource_path=`dirname "$0"`
862ff6b91eSJuan Quintelacpu=""
871e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M"
8843ce4dfeSbellardstatic="no"
89ed968ff1SJuan Quintelasparc_cpu=""
907d13299dSbellardcross_prefix=""
910c58ac1cSmalcaudio_drv_list=""
92d61a4ce8SGerd Hoffmannaudio_card_list="ac97 es1370 sb16 hda"
93d61a4ce8SGerd Hoffmannaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda"
94eb852011SMarkus Armbrusterblock_drv_whitelist=""
957d13299dSbellardhost_cc="gcc"
96c81da56eSJuan Quintelahelper_cflags=""
9773da375eSJuan Quintelalibs_softmmu=""
983e2e0e6bSJuan Quintelalibs_tools=""
9967f86e8eSJuan Quintelaaudio_pt_int=""
100d5631638Smalcaudio_win_int=""
1012b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc
102957f1f99SMichael Rothlibs_qga=""
1035bc62e01SGerd Hoffmanndebug_info="yes"
104ac0df51dSaliguori
105377529c0SPaolo Bonzinitarget_list=""
106377529c0SPaolo Bonzini
107377529c0SPaolo Bonzini# Default value for a variable defining feature "foo".
108377529c0SPaolo Bonzini#  * foo="no"  feature will only be used if --enable-foo arg is given
109377529c0SPaolo Bonzini#  * foo=""    feature will be searched for, and if found, will be used
110377529c0SPaolo Bonzini#              unless --disable-foo is given
111377529c0SPaolo Bonzini#  * foo="yes" this value will only be set by --enable-foo flag.
112377529c0SPaolo Bonzini#              feature will searched for,
113377529c0SPaolo Bonzini#              if not found, configure exits with error
114377529c0SPaolo Bonzini#
115377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args.
116377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it
117377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found.
118377529c0SPaolo Bonzini
119377529c0SPaolo Bonzinibluez=""
120377529c0SPaolo Bonzinibrlapi=""
121377529c0SPaolo Bonzinicurl=""
122377529c0SPaolo Bonzinicurses=""
123377529c0SPaolo Bonzinidocs=""
124377529c0SPaolo Bonzinifdt=""
125377529c0SPaolo Bonzininptl=""
126377529c0SPaolo Bonzinisdl=""
127983eef5aSMeador Ingevirtfs=""
128821601eaSJes Sorensenvnc="yes"
129377529c0SPaolo Bonzinisparse="no"
130377529c0SPaolo Bonziniuuid=""
131377529c0SPaolo Bonzinivde=""
132377529c0SPaolo Bonzinivnc_tls=""
133377529c0SPaolo Bonzinivnc_sasl=""
134377529c0SPaolo Bonzinivnc_jpeg=""
135377529c0SPaolo Bonzinivnc_png=""
136377529c0SPaolo Bonzinivnc_thread="no"
137377529c0SPaolo Bonzinixen=""
138d5b93ddfSAnthony PERARDxen_ctrl_version=""
139377529c0SPaolo Bonzinilinux_aio=""
14047e98658SCorey Bryantcap_ng=""
141377529c0SPaolo Bonziniattr=""
1424f26f2b6SAvi Kivitylibattr=""
143377529c0SPaolo Bonzinixfs=""
144377529c0SPaolo Bonzini
145d41a75a2SBradvhost_net="no"
146d41a75a2SBradkvm="no"
147377529c0SPaolo Bonzinigprof="no"
148377529c0SPaolo Bonzinidebug_tcg="no"
149377529c0SPaolo Bonzinidebug_mon="no"
150377529c0SPaolo Bonzinidebug="no"
151377529c0SPaolo Bonzinistrip_opt="yes"
1529195b2c2SStefan Weiltcg_interpreter="no"
153377529c0SPaolo Bonzinibigendian="no"
154377529c0SPaolo Bonzinimingw32="no"
155377529c0SPaolo BonziniEXESUF=""
156377529c0SPaolo Bonziniprefix="/usr/local"
157377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
158528ae5b8SEduardo Habkostdatadir="\${prefix}/share"
159850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu"
160377529c0SPaolo Bonzinibindir="\${prefix}/bin"
1613aa5d2beSAlon Levylibdir="\${prefix}/lib"
1620f94d6daSAlon Levyincludedir="\${prefix}/include"
163377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
164377529c0SPaolo Bonziniconfsuffix="/qemu"
165377529c0SPaolo Bonzinislirp="yes"
166377529c0SPaolo Bonzinifmod_lib=""
167377529c0SPaolo Bonzinifmod_inc=""
168377529c0SPaolo Bonzinioss_lib=""
169377529c0SPaolo Bonzinibsd="no"
170377529c0SPaolo Bonzinilinux="no"
171377529c0SPaolo Bonzinisolaris="no"
172377529c0SPaolo Bonziniprofiler="no"
173377529c0SPaolo Bonzinicocoa="no"
174377529c0SPaolo Bonzinisoftmmu="yes"
175377529c0SPaolo Bonzinilinux_user="no"
176377529c0SPaolo Bonzinidarwin_user="no"
177377529c0SPaolo Bonzinibsd_user="no"
178377529c0SPaolo Bonziniguest_base=""
179377529c0SPaolo Bonziniuname_release=""
180377529c0SPaolo Bonzinimixemu="no"
181377529c0SPaolo Bonziniaix="no"
182377529c0SPaolo Bonziniblobs="yes"
183377529c0SPaolo Bonzinipkgversion=""
18440d6444eSAvi Kivitypie=""
185377529c0SPaolo Bonzinizero_malloc=""
186377529c0SPaolo Bonzinitrace_backend="nop"
187377529c0SPaolo Bonzinitrace_file="trace"
188377529c0SPaolo Bonzinispice=""
189377529c0SPaolo Bonzinirbd=""
19036707144SAlon Levysmartcard=""
191111a38b0SRobert Relyeasmartcard_nss=""
19269354a83SHans de Goedeusb_redir=""
193430a3c18SMichael Walleopengl=""
1941ece9905SAlon Levyzlib="yes"
195d138cee9SMichael Rothguest_agent="yes"
196c589b249SRonnie Sahlberglibiscsi=""
197519175a2SAlex Barcelocoroutine=""
198377529c0SPaolo Bonzini
199ac0df51dSaliguori# parse CC options first
200ac0df51dSaliguorifor opt do
201ac0df51dSaliguori  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
202ac0df51dSaliguori  case "$opt" in
203ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
204ac0df51dSaliguori  ;;
2053d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
206ac0df51dSaliguori  ;;
207ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
208ca4deeb1SPaolo Bonzini  ;;
2092ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
2102ff6b91eSJuan Quintela  ;;
211a558ee17SJuan Quintela  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
212e2a2ed06SJuan Quintela  ;;
213e2a2ed06SJuan Quintela  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
214e2a2ed06SJuan Quintela  ;;
2155bc62e01SGerd Hoffmann  --enable-debug-info) debug_info="yes"
2165bc62e01SGerd Hoffmann  ;;
2175bc62e01SGerd Hoffmann  --disable-debug-info) debug_info="no"
2185bc62e01SGerd Hoffmann  ;;
21950e7b1a0SJuan Quintela  --sparc_cpu=*)
22050e7b1a0SJuan Quintela    sparc_cpu="$optarg"
22150e7b1a0SJuan Quintela    case $sparc_cpu in
222ed968ff1SJuan Quintela    v7|v8|v8plus|v8plusa)
22350e7b1a0SJuan Quintela      cpu="sparc"
22450e7b1a0SJuan Quintela    ;;
22550e7b1a0SJuan Quintela    v9)
22650e7b1a0SJuan Quintela      cpu="sparc64"
22750e7b1a0SJuan Quintela    ;;
22850e7b1a0SJuan Quintela    *)
22950e7b1a0SJuan Quintela      echo "undefined SPARC architecture. Exiting";
23050e7b1a0SJuan Quintela      exit 1
23150e7b1a0SJuan Quintela    ;;
23250e7b1a0SJuan Quintela    esac
23350e7b1a0SJuan Quintela  ;;
234ac0df51dSaliguori  esac
235ac0df51dSaliguoridone
236ac0df51dSaliguori# OS specific
237ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
23893148aa5SStefan Weil# we can eliminate its usage altogether.
239ac0df51dSaliguori
240b3198cc2SStuart Yodercc="${CC-${cross_prefix}gcc}"
241b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}"
242b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}"
243b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}"
2443f534581SBradlibtool="${LIBTOOL-${cross_prefix}libtool}"
245b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}"
246b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}"
24717884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
24817884d7bSSergei Trofimovichquery_pkg_config() {
24917884d7bSSergei Trofimovich    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
25017884d7bSSergei Trofimovich}
25117884d7bSSergei Trofimovichpkg_config=query_pkg_config
252b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
253ac0df51dSaliguori
254be17dc90SMichael S. Tsirkin# default flags for all hosts
255be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
256f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
257be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
258be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
25984958305SKirill A. ShutemovQEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
260cbbab922SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu"
2615bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then
2625bc62e01SGerd Hoffmann    CFLAGS="-g $CFLAGS"
263be17dc90SMichael S. Tsirkin    LDFLAGS="-g $LDFLAGS"
2645bc62e01SGerd Hoffmannfi
265be17dc90SMichael S. Tsirkin
266ca4deeb1SPaolo Bonzini# make source path absolute
267ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd`
268ca4deeb1SPaolo Bonzini
269ac0df51dSaliguoricheck_define() {
270ac0df51dSaliguoricat > $TMPC <<EOF
271ac0df51dSaliguori#if !defined($1)
272fd786e1aSPeter Maydell#error $1 not defined
273ac0df51dSaliguori#endif
274ac0df51dSaliguoriint main(void) { return 0; }
275ac0df51dSaliguoriEOF
27652166aa0SJuan Quintela  compile_object
277ac0df51dSaliguori}
278ac0df51dSaliguori
2792ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
2802ff6b91eSJuan Quintela  # command line argument
2812ff6b91eSJuan Quintela  :
2822ff6b91eSJuan Quintelaelif check_define __i386__ ; then
283ac0df51dSaliguori  cpu="i386"
284ac0df51dSaliguorielif check_define __x86_64__ ; then
285ac0df51dSaliguori  cpu="x86_64"
2863aa9bd6cSblueswir1elif check_define __sparc__ ; then
2873aa9bd6cSblueswir1  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
2883aa9bd6cSblueswir1  # They must be specified using --sparc_cpu
2893aa9bd6cSblueswir1  if check_define __arch64__ ; then
2903aa9bd6cSblueswir1    cpu="sparc64"
2913aa9bd6cSblueswir1  else
2923aa9bd6cSblueswir1    cpu="sparc"
2933aa9bd6cSblueswir1  fi
294fdf7ed96Smalcelif check_define _ARCH_PPC ; then
295fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
296fdf7ed96Smalc    cpu="ppc64"
297ac0df51dSaliguori  else
298fdf7ed96Smalc    cpu="ppc"
299fdf7ed96Smalc  fi
300afa05235SAurelien Jarnoelif check_define __mips__ ; then
301afa05235SAurelien Jarno  cpu="mips"
302477ba620SAurelien Jarnoelif check_define __ia64__ ; then
303477ba620SAurelien Jarno  cpu="ia64"
304d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
305d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
306d66ed0eaSAurelien Jarno    cpu="s390x"
307d66ed0eaSAurelien Jarno  else
308d66ed0eaSAurelien Jarno    cpu="s390"
309d66ed0eaSAurelien Jarno  fi
31021d89f84SPeter Maydellelif check_define __arm__ ; then
31121d89f84SPeter Maydell  cpu="arm"
312f28ffed5SBradelif check_define __hppa__ ; then
313f28ffed5SBrad  cpu="hppa"
314fdf7ed96Smalcelse
315fdf7ed96Smalc  cpu=`uname -m`
316ac0df51dSaliguorifi
317ac0df51dSaliguori
318359bc95dSPeter MaydellARCH=
319359bc95dSPeter Maydell# Normalise host CPU name and set ARCH.
320359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests.
3217d13299dSbellardcase "$cpu" in
322359bc95dSPeter Maydell  ia64|ppc|ppc64|s390|s390x|sparc64)
323ea8f20f8SJuan Quintela    cpu="$cpu"
324ea8f20f8SJuan Quintela  ;;
3257d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
32697a847bcSbellard    cpu="i386"
3277d13299dSbellard  ;;
328aaa5fa14Saurel32  x86_64|amd64)
329aaa5fa14Saurel32    cpu="x86_64"
330aaa5fa14Saurel32  ;;
33121d89f84SPeter Maydell  armv*b|armv*l|arm)
33221d89f84SPeter Maydell    cpu="arm"
3337d13299dSbellard  ;;
334f28ffed5SBrad  hppa|parisc|parisc64)
335f54b3f92Saurel32    cpu="hppa"
336f54b3f92Saurel32  ;;
337afa05235SAurelien Jarno  mips*)
338afa05235SAurelien Jarno    cpu="mips"
339afa05235SAurelien Jarno  ;;
3403142255cSblueswir1  sparc|sun4[cdmuv])
341ae228531Sbellard    cpu="sparc"
342ae228531Sbellard  ;;
3437d13299dSbellard  *)
344359bc95dSPeter Maydell    # This will result in either an error or falling back to TCI later
345359bc95dSPeter Maydell    ARCH=unknown
3467d13299dSbellard  ;;
3477d13299dSbellardesac
348359bc95dSPeter Maydellif test -z "$ARCH"; then
349359bc95dSPeter Maydell  ARCH="$cpu"
350359bc95dSPeter Maydellfi
351e2d52ad3SJuan Quintela
3527d13299dSbellard# OS specific
353ac0df51dSaliguoriif check_define __linux__ ; then
354ac0df51dSaliguori  targetos="Linux"
355ac0df51dSaliguorielif check_define _WIN32 ; then
356ac0df51dSaliguori  targetos='MINGW32'
357169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then
358169dc5d3Sblueswir1  targetos='OpenBSD'
359169dc5d3Sblueswir1elif check_define __sun__ ; then
360169dc5d3Sblueswir1  targetos='SunOS'
361179cf400SAndreas Färberelif check_define __HAIKU__ ; then
362179cf400SAndreas Färber  targetos='Haiku'
363ac0df51dSaliguorielse
3647d13299dSbellard  targetos=`uname -s`
365ac0df51dSaliguorifi
3660dbfc675SJuan Quintela
3677d13299dSbellardcase $targetos in
368c326e0afSbellardCYGWIN*)
369c326e0afSbellard  mingw32="yes"
370a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
371d5631638Smalc  audio_possible_drivers="winwave sdl"
372d5631638Smalc  audio_drv_list="winwave"
373c326e0afSbellard;;
37467b915a5SbellardMINGW32*)
37567b915a5Sbellard  mingw32="yes"
376d5631638Smalc  audio_possible_drivers="winwave dsound sdl fmod"
377d5631638Smalc  audio_drv_list="winwave"
37867b915a5Sbellard;;
3795c40d2bdSthsGNU/kFreeBSD)
380a167ba50SAurelien Jarno  bsd="yes"
3810c58ac1cSmalc  audio_drv_list="oss"
382f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
3835c40d2bdSths;;
3847d3505c5SbellardFreeBSD)
3857d3505c5Sbellard  bsd="yes"
3860db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3870c58ac1cSmalc  audio_drv_list="oss"
388f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
389f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
390f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
3917d3505c5Sbellard;;
392c5e97233Sblueswir1DragonFly)
393c5e97233Sblueswir1  bsd="yes"
3940db4a067SPaolo Bonzini  make="${MAKE-gmake}"
395c5e97233Sblueswir1  audio_drv_list="oss"
396c5e97233Sblueswir1  audio_possible_drivers="oss sdl esd pa"
397c5e97233Sblueswir1;;
3987d3505c5SbellardNetBSD)
3997d3505c5Sbellard  bsd="yes"
4000db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4010c58ac1cSmalc  audio_drv_list="oss"
402c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4038ef92a88Sblueswir1  oss_lib="-lossaudio"
4047d3505c5Sbellard;;
4057d3505c5SbellardOpenBSD)
4067d3505c5Sbellard  bsd="yes"
4070db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4080c58ac1cSmalc  audio_drv_list="oss"
409c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4102f6a1ab0Sblueswir1  oss_lib="-lossaudio"
4117d3505c5Sbellard;;
41283fb7adfSbellardDarwin)
41383fb7adfSbellard  bsd="yes"
41483fb7adfSbellard  darwin="yes"
4150dbfc675SJuan Quintela  # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
4160dbfc675SJuan Quintela  # run 64-bit userspace code
417aab8588aSmalc  if [ "$cpu" = "i386" ] ; then
4181b0f9cc2Saliguori    is_x86_64=`sysctl -n hw.optional.x86_64`
419aab8588aSmalc    [ "$is_x86_64" = "1" ] && cpu=x86_64
4201b0f9cc2Saliguori  fi
4211b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
422a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
4230c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
4241b0f9cc2Saliguori  else
425a558ee17SJuan Quintela    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
4261b0f9cc2Saliguori  fi
427831b7825Sths  darwin_user="yes"
428fd677642Sths  cocoa="yes"
4290c58ac1cSmalc  audio_drv_list="coreaudio"
430c2de5c91Smalc  audio_possible_drivers="coreaudio sdl fmod"
4310c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
4327973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
43383fb7adfSbellard;;
434ec530c81SbellardSunOS)
435ec530c81Sbellard  solaris="yes"
4360db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4370db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
438fa58948dSBlue Swirl  ld="gld"
439e2d8830eSBrad  smbd="${SMBD-/usr/sfw/sbin/smbd}"
4400475a5caSths  needs_libsunmath="no"
441c2b84fabSths  solarisrev=`uname -r | cut -f2 -d.`
442ef18c883Sths  # have to select again, because `uname -m` returns i86pc
443ef18c883Sths  # even on an x86_64 box.
444ef18c883Sths  solariscpu=`isainfo -k`
445ef18c883Sths  if test "${solariscpu}" = "amd64" ; then
446ef18c883Sths    cpu="x86_64"
447ef18c883Sths  fi
448c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
4490475a5caSths    if test "$solarisrev" -le 9 ; then
4500475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
4510475a5caSths        needs_libsunmath="yes"
452f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
453f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
454f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
4550475a5caSths      else
4560475a5caSths        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
4570475a5caSths        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
4580475a5caSths        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
4590475a5caSths        echo "Studio 11 can be downloaded from www.sun.com."
4600475a5caSths        exit 1
4610475a5caSths      fi
4620475a5caSths    fi
46386b2bd93Sths  fi
4646b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
4650c58ac1cSmalc    audio_drv_list="oss"
4666b4d2ba1Sths  fi
467c2de5c91Smalc  audio_possible_drivers="oss sdl"
468d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
469d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
470d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
471d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
472a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
473e174c0bbSJuan Quintela  LIBS="-lsocket -lnsl -lresolv $LIBS"
474ec530c81Sbellard;;
475b29fe3edSmalcAIX)
476b29fe3edSmalc  aix="yes"
4770db4a067SPaolo Bonzini  make="${MAKE-gmake}"
478b29fe3edSmalc;;
479179cf400SAndreas FärberHaiku)
480179cf400SAndreas Färber  haiku="yes"
481179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
482179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
483179cf400SAndreas Färber;;
484fb065187Sbellard*)
4850c58ac1cSmalc  audio_drv_list="oss"
486b8e59f18Smalc  audio_possible_drivers="oss alsa sdl esd pa"
4875327cf48Sbellard  linux="yes"
488831b7825Sths  linux_user="yes"
48968063649Sblueswir1  usb="linux"
490af2be207SJan Kiszka  kvm="yes"
491af2be207SJan Kiszka  vhost_net="yes"
49207f4ddbfSbellard  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
493c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
494c9ec1fe4Sbellard  fi
495fb065187Sbellard;;
4967d13299dSbellardesac
4977d13299dSbellard
4987d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
499b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
50068063649Sblueswir1    usb="bsd"
50183fb7adfSbellard  fi
50284778508Sblueswir1  bsd_user="yes"
5037d3505c5Sbellardfi
5047d3505c5Sbellard
5050db4a067SPaolo Bonzini: ${make=${MAKE-make}}
5060db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
507c886edfbSBlue Swirl: ${python=${PYTHON-python}}
508e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}}
5090db4a067SPaolo Bonzini
5103457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
5113457a3f8SJuan Quintela  EXESUF=".exe"
512a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
513e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
514e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
515f7cf5d5bSStefan Weil  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
516f7cf5d5bSStefan Weilcat > $TMPC << EOF
517f7cf5d5bSStefan Weilint main(void) { return 0; }
518f7cf5d5bSStefan WeilEOF
519f7cf5d5bSStefan Weil  if compile_prog "" "-liberty" ; then
520f7cf5d5bSStefan Weil    LIBS="-liberty $LIBS"
521f7cf5d5bSStefan Weil  fi
522c5ec15eaSStefan Weil  prefix="c:/Program Files/QEMU"
523683035deSPaolo Bonzini  mandir="\${prefix}"
524528ae5b8SEduardo Habkost  datadir="\${prefix}"
525850da188SEduardo Habkost  qemu_docdir="\${prefix}"
526683035deSPaolo Bonzini  bindir="\${prefix}"
527683035deSPaolo Bonzini  sysconfdir="\${prefix}"
528683035deSPaolo Bonzini  confsuffix=""
529368542b8SStefan Hajnoczi  libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga"
5303457a3f8SJuan Quintelafi
5313457a3f8SJuan Quintela
532487fefdbSAnthony Liguoriwerror=""
53385aa5189Sbellard
5347d13299dSbellardfor opt do
535a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
5367d13299dSbellard  case "$opt" in
5372efc3265Sbellard  --help|-h) show_help=yes
5382efc3265Sbellard  ;;
53999123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
54099123e13SMike Frysinger  ;;
541b1a550a0Spbrook  --prefix=*) prefix="$optarg"
5427d13299dSbellard  ;;
543b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
54432ce6337Sbellard  ;;
545ca4deeb1SPaolo Bonzini  --source-path=*)
5467d13299dSbellard  ;;
547ac0df51dSaliguori  --cross-prefix=*)
5487d13299dSbellard  ;;
549ac0df51dSaliguori  --cc=*)
5507d13299dSbellard  ;;
551b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
55283469015Sbellard  ;;
553b1a550a0Spbrook  --make=*) make="$optarg"
5547d13299dSbellard  ;;
5556a882643Spbrook  --install=*) install="$optarg"
5566a882643Spbrook  ;;
557c886edfbSBlue Swirl  --python=*) python="$optarg"
558c886edfbSBlue Swirl  ;;
559e2d8830eSBrad  --smbd=*) smbd="$optarg"
560e2d8830eSBrad  ;;
561e2a2ed06SJuan Quintela  --extra-cflags=*)
5627d13299dSbellard  ;;
563e2a2ed06SJuan Quintela  --extra-ldflags=*)
5647d13299dSbellard  ;;
5655bc62e01SGerd Hoffmann  --enable-debug-info)
5665bc62e01SGerd Hoffmann  ;;
5675bc62e01SGerd Hoffmann  --disable-debug-info)
5685bc62e01SGerd Hoffmann  ;;
5692ff6b91eSJuan Quintela  --cpu=*)
5707d13299dSbellard  ;;
571b1a550a0Spbrook  --target-list=*) target_list="$optarg"
572de83cd02Sbellard  ;;
57374242e0fSPaolo Bonzini  --enable-trace-backend=*) trace_backend="$optarg"
57494a420b1SStefan Hajnoczi  ;;
57574242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
5769410b56cSPrerna Saxena  ;;
5777d13299dSbellard  --enable-gprof) gprof="yes"
5787d13299dSbellard  ;;
57979427693SLoïc Minier  --static)
58079427693SLoïc Minier    static="yes"
58179427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
58217884d7bSSergei Trofimovich    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
58343ce4dfeSbellard  ;;
5840b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
5850b24e75fSPaolo Bonzini  ;;
5860b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
5870b24e75fSPaolo Bonzini  ;;
5883aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
5893aa5d2beSAlon Levy  ;;
5900f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
5910f94d6daSAlon Levy  ;;
592528ae5b8SEduardo Habkost  --datadir=*) datadir="$optarg"
5930b24e75fSPaolo Bonzini  ;;
594*023d3d67SEduardo Habkost  --with-confsuffix=*) confsuffix="$optarg"
595*023d3d67SEduardo Habkost  ;;
596850da188SEduardo Habkost  --docdir=*) qemu_docdir="$optarg"
5970b24e75fSPaolo Bonzini  ;;
598ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
59907381cc1SAnthony Liguori  ;;
600023ddd74SMax Filippov  --sbindir=*|--libexecdir=*|--sharedstatedir=*|--localstatedir=*|\
601023ddd74SMax Filippov  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
602023ddd74SMax Filippov  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
603023ddd74SMax Filippov    # These switches are silently ignored, for compatibility with
604023ddd74SMax Filippov    # autoconf-generated configure scripts. This allows QEMU's
605023ddd74SMax Filippov    # configure to be used by RPM and similar macros that set
606023ddd74SMax Filippov    # lots of directory switches by default.
607023ddd74SMax Filippov  ;;
60897a847bcSbellard  --disable-sdl) sdl="no"
60997a847bcSbellard  ;;
610c4198157SJuan Quintela  --enable-sdl) sdl="yes"
611c4198157SJuan Quintela  ;;
612983eef5aSMeador Inge  --disable-virtfs) virtfs="no"
613983eef5aSMeador Inge  ;;
614983eef5aSMeador Inge  --enable-virtfs) virtfs="yes"
615983eef5aSMeador Inge  ;;
616821601eaSJes Sorensen  --disable-vnc) vnc="no"
617821601eaSJes Sorensen  ;;
618821601eaSJes Sorensen  --enable-vnc) vnc="yes"
619821601eaSJes Sorensen  ;;
620b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
621102a52e4Sbellard  ;;
622c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
623c2de5c91Smalc  ;;
6242f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
6252f6a1ab0Sblueswir1  ;;
6262fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
6270c58ac1cSmalc  ;;
6280c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
6290c58ac1cSmalc  ;;
630eb852011SMarkus Armbruster  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
631eb852011SMarkus Armbruster  ;;
632f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
633f8393946Saurel32  ;;
634f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
635f8393946Saurel32  ;;
636b4475aa2SLuiz Capitulino  --enable-debug-mon) debug_mon="yes"
637b4475aa2SLuiz Capitulino  ;;
638b4475aa2SLuiz Capitulino  --disable-debug-mon) debug_mon="no"
639b4475aa2SLuiz Capitulino  ;;
640f3d08ee6SPaul Brook  --enable-debug)
641f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
642f3d08ee6SPaul Brook      debug_tcg="yes"
643b4475aa2SLuiz Capitulino      debug_mon="yes"
644f3d08ee6SPaul Brook      debug="yes"
645f3d08ee6SPaul Brook      strip_opt="no"
646f3d08ee6SPaul Brook  ;;
64703b4fe7dSaliguori  --enable-sparse) sparse="yes"
64803b4fe7dSaliguori  ;;
64903b4fe7dSaliguori  --disable-sparse) sparse="no"
65003b4fe7dSaliguori  ;;
6511625af87Saliguori  --disable-strip) strip_opt="no"
6521625af87Saliguori  ;;
6538d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
6548d5d2d4cSths  ;;
6551be10ad2SJuan Quintela  --enable-vnc-tls) vnc_tls="yes"
6561be10ad2SJuan Quintela  ;;
6572f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
6582f9606b3Saliguori  ;;
659ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
660ea784e3bSJuan Quintela  ;;
6612f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
6622f6f5c7aSCorentin Chary  ;;
6632f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
6642f6f5c7aSCorentin Chary  ;;
665efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
666efe556adSCorentin Chary  ;;
667efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
668efe556adSCorentin Chary  ;;
669bd023f95SCorentin Chary  --disable-vnc-thread) vnc_thread="no"
670bd023f95SCorentin Chary  ;;
671bd023f95SCorentin Chary  --enable-vnc-thread) vnc_thread="yes"
672bd023f95SCorentin Chary  ;;
673443f1376Sbellard  --disable-slirp) slirp="no"
674c20709aaSbellard  ;;
675ee682d27SStefan Weil  --disable-uuid) uuid="no"
676ee682d27SStefan Weil  ;;
677ee682d27SStefan Weil  --enable-uuid) uuid="yes"
678ee682d27SStefan Weil  ;;
679e0e6c8c0Saliguori  --disable-vde) vde="no"
6808a16d273Sths  ;;
681dfb278bdSJuan Quintela  --enable-vde) vde="yes"
682dfb278bdSJuan Quintela  ;;
683e37630caSaliguori  --disable-xen) xen="no"
684e37630caSaliguori  ;;
685fc321b4bSJuan Quintela  --enable-xen) xen="yes"
686fc321b4bSJuan Quintela  ;;
6872e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
6882e4d9fb1Saurel32  ;;
6894ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
6904ffcedb6SJuan Quintela  ;;
691fb599c9aSbalrog  --disable-bluez) bluez="no"
692fb599c9aSbalrog  ;;
693a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
694a20a6f46SJuan Quintela  ;;
6957ba1e619Saliguori  --disable-kvm) kvm="no"
6967ba1e619Saliguori  ;;
697b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
698b31a0277SJuan Quintela  ;;
6999195b2c2SStefan Weil  --disable-tcg-interpreter) tcg_interpreter="no"
7009195b2c2SStefan Weil  ;;
7019195b2c2SStefan Weil  --enable-tcg-interpreter) tcg_interpreter="yes"
7029195b2c2SStefan Weil  ;;
70347e98658SCorey Bryant  --disable-cap-ng)  cap_ng="no"
70447e98658SCorey Bryant  ;;
70547e98658SCorey Bryant  --enable-cap-ng) cap_ng="yes"
70647e98658SCorey Bryant  ;;
707cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
708cd4ec0b4SGerd Hoffmann  ;;
709cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
710cd4ec0b4SGerd Hoffmann  ;;
711c589b249SRonnie Sahlberg  --disable-libiscsi) libiscsi="no"
712c589b249SRonnie Sahlberg  ;;
713c589b249SRonnie Sahlberg  --enable-libiscsi) libiscsi="yes"
714c589b249SRonnie Sahlberg  ;;
71505c2a3e7Sbellard  --enable-profiler) profiler="yes"
71605c2a3e7Sbellard  ;;
717c2de5c91Smalc  --enable-cocoa)
718c2de5c91Smalc      cocoa="yes" ;
719c2de5c91Smalc      sdl="no" ;
720c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
7215b0753e0Sbellard  ;;
722cad25d69Spbrook  --disable-system) softmmu="no"
7230a8e90f4Spbrook  ;;
724cad25d69Spbrook  --enable-system) softmmu="yes"
7250a8e90f4Spbrook  ;;
7260953a80fSZachary Amsden  --disable-user)
7270953a80fSZachary Amsden      linux_user="no" ;
7280953a80fSZachary Amsden      bsd_user="no" ;
7290953a80fSZachary Amsden      darwin_user="no"
7300953a80fSZachary Amsden  ;;
7310953a80fSZachary Amsden  --enable-user) ;;
732831b7825Sths  --disable-linux-user) linux_user="no"
7330a8e90f4Spbrook  ;;
734831b7825Sths  --enable-linux-user) linux_user="yes"
735831b7825Sths  ;;
736831b7825Sths  --disable-darwin-user) darwin_user="no"
737831b7825Sths  ;;
738831b7825Sths  --enable-darwin-user) darwin_user="yes"
7390a8e90f4Spbrook  ;;
74084778508Sblueswir1  --disable-bsd-user) bsd_user="no"
74184778508Sblueswir1  ;;
74284778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
74384778508Sblueswir1  ;;
744379f6698SPaul Brook  --enable-guest-base) guest_base="yes"
745379f6698SPaul Brook  ;;
746379f6698SPaul Brook  --disable-guest-base) guest_base="no"
747379f6698SPaul Brook  ;;
74840d6444eSAvi Kivity  --enable-pie) pie="yes"
74934005a00SKirill A. Shutemov  ;;
75040d6444eSAvi Kivity  --disable-pie) pie="no"
75134005a00SKirill A. Shutemov  ;;
752c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
753c5937220Spbrook  ;;
7543142255cSblueswir1  --sparc_cpu=*)
7553142255cSblueswir1  ;;
75685aa5189Sbellard  --enable-werror) werror="yes"
75785aa5189Sbellard  ;;
75885aa5189Sbellard  --disable-werror) werror="no"
75985aa5189Sbellard  ;;
7604d3b6f6eSbalrog  --disable-curses) curses="no"
7614d3b6f6eSbalrog  ;;
762c584a6d0SJuan Quintela  --enable-curses) curses="yes"
763c584a6d0SJuan Quintela  ;;
764769ce76dSAlexander Graf  --disable-curl) curl="no"
765769ce76dSAlexander Graf  ;;
766788c8196SJuan Quintela  --enable-curl) curl="yes"
767788c8196SJuan Quintela  ;;
7682df87df7SJuan Quintela  --disable-fdt) fdt="no"
7692df87df7SJuan Quintela  ;;
7702df87df7SJuan Quintela  --enable-fdt) fdt="yes"
7712df87df7SJuan Quintela  ;;
772bd0c5661Spbrook  --disable-nptl) nptl="no"
773bd0c5661Spbrook  ;;
774b0a47e79SJuan Quintela  --enable-nptl) nptl="yes"
775b0a47e79SJuan Quintela  ;;
7768ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
7778ff9cbf7Smalc  ;;
7785c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
7795c6c3a6cSChristoph Hellwig  ;;
7805c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
7815c6c3a6cSChristoph Hellwig  ;;
782758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
783758e8e38SVenkateswararao Jujjuri (JV)  ;;
784758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
785758e8e38SVenkateswararao Jujjuri (JV)  ;;
78677755340Sths  --disable-blobs) blobs="no"
78777755340Sths  ;;
7884a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
7894a19f1ecSpbrook  ;;
790519175a2SAlex Barcelo  --with-coroutine=*) coroutine="$optarg"
791519175a2SAlex Barcelo  ;;
792a25dba17SJuan Quintela  --disable-docs) docs="no"
79370ec5dc0SAnthony Liguori  ;;
794a25dba17SJuan Quintela  --enable-docs) docs="yes"
79583a3ab8bSJuan Quintela  ;;
796d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
797d5970055SMichael S. Tsirkin  ;;
798d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
799d5970055SMichael S. Tsirkin  ;;
80020ff075bSMichael Walle  --disable-opengl) opengl="no"
80120ff075bSMichael Walle  ;;
80220ff075bSMichael Walle  --enable-opengl) opengl="yes"
80320ff075bSMichael Walle  ;;
804f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
805f27aaf4bSChristian Brunner  ;;
806f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
807f27aaf4bSChristian Brunner  ;;
8088c84cf11SSergei Trofimovich  --disable-xfsctl) xfs="no"
8098c84cf11SSergei Trofimovich  ;;
8108c84cf11SSergei Trofimovich  --enable-xfsctl) xfs="yes"
8118c84cf11SSergei Trofimovich  ;;
81236707144SAlon Levy  --disable-smartcard) smartcard="no"
81336707144SAlon Levy  ;;
81436707144SAlon Levy  --enable-smartcard) smartcard="yes"
81536707144SAlon Levy  ;;
816111a38b0SRobert Relyea  --disable-smartcard-nss) smartcard_nss="no"
817111a38b0SRobert Relyea  ;;
818111a38b0SRobert Relyea  --enable-smartcard-nss) smartcard_nss="yes"
819111a38b0SRobert Relyea  ;;
82069354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
82169354a83SHans de Goede  ;;
82269354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
82369354a83SHans de Goede  ;;
8241ece9905SAlon Levy  --disable-zlib-test) zlib="no"
8251ece9905SAlon Levy  ;;
826d138cee9SMichael Roth  --enable-guest-agent) guest_agent="yes"
827d138cee9SMichael Roth  ;;
828d138cee9SMichael Roth  --disable-guest-agent) guest_agent="no"
829d138cee9SMichael Roth  ;;
8307f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
8317f1559c6Sbalrog  ;;
8327d13299dSbellard  esac
8337d13299dSbellarddone
8347d13299dSbellard
8353142255cSblueswir1#
8363142255cSblueswir1# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
837a558ee17SJuan Quintela# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
8383142255cSblueswir1#
839379f6698SPaul Brookhost_guest_base="no"
84040293e58Sbellardcase "$cpu" in
841ed968ff1SJuan Quintela    sparc) case $sparc_cpu in
842ed968ff1SJuan Quintela           v7|v8)
843a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
844ed968ff1SJuan Quintela           ;;
845ed968ff1SJuan Quintela           v8plus|v8plusa)
846a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
847ed968ff1SJuan Quintela           ;;
848ed968ff1SJuan Quintela           *) # sparc_cpu not defined in the command line
849a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
850ed968ff1SJuan Quintela           esac
8510c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
852a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
853762e8230Sblueswir1           if test "$solaris" = "no" ; then
854a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
855c81da56eSJuan Quintela             helper_cflags="-ffixed-i0"
856762e8230Sblueswir1           fi
8573142255cSblueswir1           ;;
858ed968ff1SJuan Quintela    sparc64)
859a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
8600c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
861a558ee17SJuan Quintela           QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
862ed968ff1SJuan Quintela           if test "$solaris" != "no" ; then
863a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
864762e8230Sblueswir1           fi
8653142255cSblueswir1           ;;
86676d83bdeSths    s390)
86728d7cc49SRichard Henderson           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
86828d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
86948bb3750SRichard Henderson           host_guest_base="yes"
87028d7cc49SRichard Henderson           ;;
87128d7cc49SRichard Henderson    s390x)
87228d7cc49SRichard Henderson           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
87328d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
87448bb3750SRichard Henderson           host_guest_base="yes"
87576d83bdeSths           ;;
87640293e58Sbellard    i386)
877a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
8780c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8792b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
880c81da56eSJuan Quintela           helper_cflags="-fomit-frame-pointer"
881379f6698SPaul Brook           host_guest_base="yes"
88240293e58Sbellard           ;;
88340293e58Sbellard    x86_64)
884a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
8850c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
8862b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
887379f6698SPaul Brook           host_guest_base="yes"
888379f6698SPaul Brook           ;;
889379f6698SPaul Brook    arm*)
890379f6698SPaul Brook           host_guest_base="yes"
89140293e58Sbellard           ;;
892f6548c0aSmalc    ppc*)
893f6548c0aSmalc           host_guest_base="yes"
894f6548c0aSmalc           ;;
895cc01cc8eSAurelien Jarno    mips*)
896cc01cc8eSAurelien Jarno           host_guest_base="yes"
897cc01cc8eSAurelien Jarno           ;;
898477ba620SAurelien Jarno    ia64*)
899477ba620SAurelien Jarno           host_guest_base="yes"
900477ba620SAurelien Jarno           ;;
901fd76e73aSRichard Henderson    hppa*)
902fd76e73aSRichard Henderson           host_guest_base="yes"
903fd76e73aSRichard Henderson           ;;
904d2fbca94SGuan Xuetao    unicore32*)
905d2fbca94SGuan Xuetao           host_guest_base="yes"
906d2fbca94SGuan Xuetao           ;;
9073142255cSblueswir1esac
9083142255cSblueswir1
909379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base"
910379f6698SPaul Brook
91160e0df25SPeter Maydell
91260e0df25SPeter Maydelldefault_target_list=""
91360e0df25SPeter Maydell
91460e0df25SPeter Maydell# these targets are portable
91560e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then
91660e0df25SPeter Maydell    default_target_list="\
91760e0df25SPeter Maydelli386-softmmu \
91860e0df25SPeter Maydellx86_64-softmmu \
91927cdad67SRichard Hendersonalpha-softmmu \
92060e0df25SPeter Maydellarm-softmmu \
92160e0df25SPeter Maydellcris-softmmu \
92260e0df25SPeter Maydelllm32-softmmu \
92360e0df25SPeter Maydellm68k-softmmu \
92460e0df25SPeter Maydellmicroblaze-softmmu \
92560e0df25SPeter Maydellmicroblazeel-softmmu \
92660e0df25SPeter Maydellmips-softmmu \
92760e0df25SPeter Maydellmipsel-softmmu \
92860e0df25SPeter Maydellmips64-softmmu \
92960e0df25SPeter Maydellmips64el-softmmu \
93060e0df25SPeter Maydellppc-softmmu \
93160e0df25SPeter Maydellppcemb-softmmu \
93260e0df25SPeter Maydellppc64-softmmu \
93360e0df25SPeter Maydellsh4-softmmu \
93460e0df25SPeter Maydellsh4eb-softmmu \
93560e0df25SPeter Maydellsparc-softmmu \
93660e0df25SPeter Maydellsparc64-softmmu \
9370f3301d4SAlexander Grafs390x-softmmu \
938cfa550c6SMax Filippovxtensa-softmmu \
939cfa550c6SMax Filippovxtensaeb-softmmu \
94060e0df25SPeter Maydell"
94160e0df25SPeter Maydellfi
94260e0df25SPeter Maydell# the following are Linux specific
94360e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then
94460e0df25SPeter Maydell    default_target_list="${default_target_list}\
94560e0df25SPeter Maydelli386-linux-user \
94660e0df25SPeter Maydellx86_64-linux-user \
94760e0df25SPeter Maydellalpha-linux-user \
94860e0df25SPeter Maydellarm-linux-user \
94960e0df25SPeter Maydellarmeb-linux-user \
95060e0df25SPeter Maydellcris-linux-user \
95160e0df25SPeter Maydellm68k-linux-user \
95260e0df25SPeter Maydellmicroblaze-linux-user \
95360e0df25SPeter Maydellmicroblazeel-linux-user \
95460e0df25SPeter Maydellmips-linux-user \
95560e0df25SPeter Maydellmipsel-linux-user \
95660e0df25SPeter Maydellppc-linux-user \
95760e0df25SPeter Maydellppc64-linux-user \
95860e0df25SPeter Maydellppc64abi32-linux-user \
95960e0df25SPeter Maydellsh4-linux-user \
96060e0df25SPeter Maydellsh4eb-linux-user \
96160e0df25SPeter Maydellsparc-linux-user \
96260e0df25SPeter Maydellsparc64-linux-user \
96360e0df25SPeter Maydellsparc32plus-linux-user \
96460e0df25SPeter Maydellunicore32-linux-user \
9650f3301d4SAlexander Grafs390x-linux-user \
96660e0df25SPeter Maydell"
96760e0df25SPeter Maydellfi
96860e0df25SPeter Maydell# the following are Darwin specific
96960e0df25SPeter Maydellif [ "$darwin_user" = "yes" ] ; then
97060e0df25SPeter Maydell    default_target_list="$default_target_list i386-darwin-user ppc-darwin-user "
97160e0df25SPeter Maydellfi
97260e0df25SPeter Maydell# the following are BSD specific
97360e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then
97460e0df25SPeter Maydell    default_target_list="${default_target_list}\
97560e0df25SPeter Maydelli386-bsd-user \
97660e0df25SPeter Maydellx86_64-bsd-user \
97760e0df25SPeter Maydellsparc-bsd-user \
97860e0df25SPeter Maydellsparc64-bsd-user \
97960e0df25SPeter Maydell"
98060e0df25SPeter Maydellfi
98160e0df25SPeter Maydell
982af5db58eSpbrookif test x"$show_help" = x"yes" ; then
983af5db58eSpbrookcat << EOF
984af5db58eSpbrook
985af5db58eSpbrookUsage: configure [options]
986af5db58eSpbrookOptions: [defaults in brackets after descriptions]
987af5db58eSpbrook
988af5db58eSpbrookEOF
989af5db58eSpbrookecho "Standard options:"
990af5db58eSpbrookecho "  --help                   print this message"
991af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
992af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
993af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
99460e0df25SPeter Maydellecho "  --target-list=LIST       set target list (default: build everything)"
99560e0df25SPeter Maydellecho "Available targets: $default_target_list" | \
99660e0df25SPeter Maydell    fold -s -w 53 | sed -e 's/^/                           /'
997af5db58eSpbrookecho ""
998af5db58eSpbrookecho "Advanced options (experts only):"
999af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
1000af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
1001af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
10020bfe8cc0SPaolo Bonziniecho "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
10030bfe8cc0SPaolo Bonziniecho "                           build time"
1004a558ee17SJuan Quintelaecho "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
1005e3fc14c3SJan Kiszkaecho "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
1006af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
10076a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
1008c886edfbSBlue Swirlecho "  --python=PYTHON          use specified python [$python]"
1009e2d8830eSBradecho "  --smbd=SMBD              use specified smbd [$smbd]"
1010af5db58eSpbrookecho "  --static                 enable static build [$static]"
10110b24e75fSPaolo Bonziniecho "  --mandir=PATH            install man pages in PATH"
1012*023d3d67SEduardo Habkostecho "  --datadir=PATH           install firmware in PATH$confsuffix"
1013*023d3d67SEduardo Habkostecho "  --docdir=PATH            install documentation in PATH$confsuffix"
10140b24e75fSPaolo Bonziniecho "  --bindir=PATH            install binaries in PATH"
1015*023d3d67SEduardo Habkostecho "  --sysconfdir=PATH        install config in PATH$confsuffix"
1016*023d3d67SEduardo Habkostecho "  --with-confsuffix=SUFFIX      suffix for Qemu data inside datadir and sysconfdir [$confsuffix]"
1017f8393946Saurel32echo "  --enable-debug-tcg       enable TCG debugging"
1018f8393946Saurel32echo "  --disable-debug-tcg      disable TCG debugging (default)"
101909695a4aSStefan Weilecho "  --enable-debug           enable common debug build options"
1020890b1658Saliguoriecho "  --enable-sparse          enable sparse checker"
1021890b1658Saliguoriecho "  --disable-sparse         disable sparse checker (default)"
10221625af87Saliguoriecho "  --disable-strip          disable stripping binaries"
102385aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
1024fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
1025c4198157SJuan Quintelaecho "  --enable-sdl             enable SDL"
1026983eef5aSMeador Ingeecho "  --disable-virtfs         disable VirtFS"
1027983eef5aSMeador Ingeecho "  --enable-virtfs          enable VirtFS"
1028821601eaSJes Sorensenecho "  --disable-vnc            disable VNC"
1029821601eaSJes Sorensenecho "  --enable-vnc             enable VNC"
1030af5db58eSpbrookecho "  --enable-cocoa           enable COCOA (Mac OS X only)"
1031c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
1032c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
10334c9b53e3Smalcecho "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
10344c9b53e3Smalcecho "                           Available cards: $audio_possible_cards"
1035eb852011SMarkus Armbrusterecho "  --block-drv-whitelist=L  set block driver whitelist"
1036eb852011SMarkus Armbrusterecho "                           (affects only QEMU, not qemu-img)"
10378ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
1038e37630caSaliguoriecho "  --disable-xen            disable xen backend driver support"
1039fc321b4bSJuan Quintelaecho "  --enable-xen             enable xen backend driver support"
10402e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
10414ffcedb6SJuan Quintelaecho "  --enable-brlapi          enable BrlAPI"
10428d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
10431be10ad2SJuan Quintelaecho "  --enable-vnc-tls         enable TLS encryption for VNC server"
10442f9606b3Saliguoriecho "  --disable-vnc-sasl       disable SASL encryption for VNC server"
1045ea784e3bSJuan Quintelaecho "  --enable-vnc-sasl        enable SASL encryption for VNC server"
10462f6f5c7aSCorentin Charyecho "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
10472f6f5c7aSCorentin Charyecho "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
104896763cf9SCorentin Charyecho "  --disable-vnc-png        disable PNG compression for VNC server (default)"
1049efe556adSCorentin Charyecho "  --enable-vnc-png         enable PNG compression for VNC server"
1050bd023f95SCorentin Charyecho "  --disable-vnc-thread     disable threaded VNC server"
1051bd023f95SCorentin Charyecho "  --enable-vnc-thread      enable threaded VNC server"
1052af896aaaSpbrookecho "  --disable-curses         disable curses output"
1053c584a6d0SJuan Quintelaecho "  --enable-curses          enable curses output"
1054769ce76dSAlexander Grafecho "  --disable-curl           disable curl connectivity"
1055788c8196SJuan Quintelaecho "  --enable-curl            enable curl connectivity"
10562df87df7SJuan Quintelaecho "  --disable-fdt            disable fdt device tree"
10572df87df7SJuan Quintelaecho "  --enable-fdt             enable fdt device tree"
1058fb599c9aSbalrogecho "  --disable-bluez          disable bluez stack connectivity"
1059a20a6f46SJuan Quintelaecho "  --enable-bluez           enable bluez stack connectivity"
10606093d3d4SPeter Maydellecho "  --disable-slirp          disable SLIRP userspace network connectivity"
10617ba1e619Saliguoriecho "  --disable-kvm            disable KVM acceleration support"
1062b31a0277SJuan Quintelaecho "  --enable-kvm             enable KVM acceleration support"
10639195b2c2SStefan Weilecho "  --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)"
1064bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
1065e5934d33SAndre Przywaraecho "  --enable-nptl            enable usermode NPTL support"
1066af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
1067af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
10680953a80fSZachary Amsdenecho "  --enable-user            enable supported user emulation targets"
10690953a80fSZachary Amsdenecho "  --disable-user           disable all user emulation targets"
1070831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
1071831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
1072831b7825Sthsecho "  --enable-darwin-user     enable all darwin usermode emulation targets"
1073831b7825Sthsecho "  --disable-darwin-user    disable all darwin usermode emulation targets"
107484778508Sblueswir1echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
107584778508Sblueswir1echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
1076379f6698SPaul Brookecho "  --enable-guest-base      enable GUEST_BASE support for usermode"
1077379f6698SPaul Brookecho "                           emulation targets"
1078379f6698SPaul Brookecho "  --disable-guest-base     disable GUEST_BASE support"
107940d6444eSAvi Kivityecho "  --enable-pie             build Position Independent Executables"
108040d6444eSAvi Kivityecho "  --disable-pie            do not build Position Independent Executables"
1081af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
1082af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
10832f6a1ab0Sblueswir1echo "  --oss-lib                path to OSS library"
1084c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
1085235e510cS陳韋任echo "  --cpu=CPU                Build for host CPU [$cpu]"
10863142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
1087ee682d27SStefan Weilecho "  --disable-uuid           disable uuid support"
1088ee682d27SStefan Weilecho "  --enable-uuid            enable uuid support"
1089e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
1090dfb278bdSJuan Quintelaecho "  --enable-vde             enable support for vde network"
10915c6c3a6cSChristoph Hellwigecho "  --disable-linux-aio      disable Linux AIO support"
10925c6c3a6cSChristoph Hellwigecho "  --enable-linux-aio       enable Linux AIO support"
109347e98658SCorey Bryantecho "  --disable-cap-ng         disable libcap-ng support"
109447e98658SCorey Bryantecho "  --enable-cap-ng          enable libcap-ng support"
1095758e8e38SVenkateswararao Jujjuri (JV)echo "  --disable-attr           disables attr and xattr support"
1096758e8e38SVenkateswararao Jujjuri (JV)echo "  --enable-attr            enable attr and xattr support"
109777755340Sthsecho "  --disable-blobs          disable installing provided firmware blobs"
1098d2807bc9SDirk Ullrichecho "  --enable-docs            enable documentation build"
1099d2807bc9SDirk Ullrichecho "  --disable-docs           disable documentation build"
1100d5970055SMichael S. Tsirkinecho "  --disable-vhost-net      disable vhost-net acceleration support"
1101d5970055SMichael S. Tsirkinecho "  --enable-vhost-net       enable vhost-net acceleration support"
1102320fba2aSFabien Chouteauecho "  --enable-trace-backend=B Set trace backend"
1103650ab98dSLluís Vilanovaecho "                           Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends)
110474242e0fSPaolo Bonziniecho "  --with-trace-file=NAME   Full PATH,NAME of file to store traces"
11059410b56cSPrerna Saxenaecho "                           Default:trace-<pid>"
1106cd4ec0b4SGerd Hoffmannecho "  --disable-spice          disable spice"
1107cd4ec0b4SGerd Hoffmannecho "  --enable-spice           enable spice"
1108f27aaf4bSChristian Brunnerecho "  --enable-rbd             enable building the rados block device (rbd)"
1109c589b249SRonnie Sahlbergecho "  --disable-libiscsi       disable iscsi support"
1110c589b249SRonnie Sahlbergecho "  --enable-libiscsi        enable iscsi support"
111136707144SAlon Levyecho "  --disable-smartcard      disable smartcard support"
111236707144SAlon Levyecho "  --enable-smartcard       enable smartcard support"
1113111a38b0SRobert Relyeaecho "  --disable-smartcard-nss  disable smartcard nss support"
1114111a38b0SRobert Relyeaecho "  --enable-smartcard-nss   enable smartcard nss support"
111569354a83SHans de Goedeecho "  --disable-usb-redir      disable usb network redirection support"
111669354a83SHans de Goedeecho "  --enable-usb-redir       enable usb network redirection support"
1117d138cee9SMichael Rothecho "  --disable-guest-agent    disable building of the QEMU Guest Agent"
1118d138cee9SMichael Rothecho "  --enable-guest-agent     enable building of the QEMU Guest Agent"
1119519175a2SAlex Barceloecho "  --with-coroutine=BACKEND coroutine backend. Supported options:"
1120fe91bfa8SAlex Barceloecho "                           gthread, ucontext, sigaltstack, windows"
1121af5db58eSpbrookecho ""
11225bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
1123af5db58eSpbrookexit 1
1124af5db58eSpbrookfi
1125af5db58eSpbrook
1126359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just
1127359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported.
1128359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then
1129359bc95dSPeter Maydell    if test "$tcg_interpreter" = "yes" ; then
1130359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1131359bc95dSPeter Maydell        ARCH=tci
1132359bc95dSPeter Maydell    else
1133359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1134359bc95dSPeter Maydell        exit 1
1135359bc95dSPeter Maydell    fi
1136359bc95dSPeter Maydellfi
1137359bc95dSPeter Maydell
11388d05095cSPaolo Bonzini# check that the C compiler works.
11398d05095cSPaolo Bonzinicat > $TMPC <<EOF
114075cafad7SStefan Weilint main(void) { return 0; }
11418d05095cSPaolo BonziniEOF
11428d05095cSPaolo Bonzini
11438d05095cSPaolo Bonziniif compile_object ; then
11448d05095cSPaolo Bonzini  : C compiler works ok
11458d05095cSPaolo Bonzinielse
11468d05095cSPaolo Bonzini    echo "ERROR: \"$cc\" either does not exist or does not work"
11478d05095cSPaolo Bonzini    exit 1
11488d05095cSPaolo Bonzinifi
11498d05095cSPaolo Bonzini
11508d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
11518d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
11528d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1153f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags"
11548d05095cSPaolo Bonzinicat > $TMPC << EOF
11558d05095cSPaolo Bonziniint main(void) { return 0; }
11568d05095cSPaolo BonziniEOF
11578d05095cSPaolo Bonzinifor flag in $gcc_flags; do
1158bd947d30SStefan Weil    if compile_prog "-Werror $flag" "" ; then
11598d05095cSPaolo Bonzini	QEMU_CFLAGS="$QEMU_CFLAGS $flag"
11608d05095cSPaolo Bonzini    fi
11618d05095cSPaolo Bonzinidone
11628d05095cSPaolo Bonzini
116340d6444eSAvi Kivityif test "$static" = "yes" ; then
116440d6444eSAvi Kivity  if test "$pie" = "yes" ; then
116540d6444eSAvi Kivity    echo "static and pie are mutually incompatible"
116640d6444eSAvi Kivity    exit 1
116740d6444eSAvi Kivity  else
116840d6444eSAvi Kivity    pie="no"
116940d6444eSAvi Kivity  fi
117040d6444eSAvi Kivityfi
117140d6444eSAvi Kivity
117240d6444eSAvi Kivityif test "$pie" = ""; then
117340d6444eSAvi Kivity  case "$cpu-$targetos" in
1174f9db31a2SBrad    i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD)
117540d6444eSAvi Kivity      ;;
117640d6444eSAvi Kivity    *)
117740d6444eSAvi Kivity      pie="no"
117840d6444eSAvi Kivity      ;;
117940d6444eSAvi Kivity  esac
118040d6444eSAvi Kivityfi
118140d6444eSAvi Kivity
118240d6444eSAvi Kivityif test "$pie" != "no" ; then
118340d6444eSAvi Kivity  cat > $TMPC << EOF
118421d4a791SAvi Kivity
118521d4a791SAvi Kivity#ifdef __linux__
118621d4a791SAvi Kivity#  define THREAD __thread
118721d4a791SAvi Kivity#else
118821d4a791SAvi Kivity#  define THREAD
118921d4a791SAvi Kivity#endif
119021d4a791SAvi Kivity
119121d4a791SAvi Kivitystatic THREAD int tls_var;
119221d4a791SAvi Kivity
119321d4a791SAvi Kivityint main(void) { return tls_var; }
119421d4a791SAvi Kivity
119540d6444eSAvi KivityEOF
119640d6444eSAvi Kivity  if compile_prog "-fPIE -DPIE" "-pie"; then
119740d6444eSAvi Kivity    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
119840d6444eSAvi Kivity    LDFLAGS="-pie $LDFLAGS"
119940d6444eSAvi Kivity    pie="yes"
120040d6444eSAvi Kivity    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
120140d6444eSAvi Kivity      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
120240d6444eSAvi Kivity    fi
120340d6444eSAvi Kivity  else
120440d6444eSAvi Kivity    if test "$pie" = "yes"; then
120540d6444eSAvi Kivity      echo "PIE not available due to missing toolchain support"
120640d6444eSAvi Kivity      exit 1
120740d6444eSAvi Kivity    else
120840d6444eSAvi Kivity      echo "Disabling PIE due to missing toolchain support"
120940d6444eSAvi Kivity      pie="no"
121040d6444eSAvi Kivity    fi
121140d6444eSAvi Kivity  fi
121240d6444eSAvi Kivityfi
121340d6444eSAvi Kivity
1214ec530c81Sbellard#
1215ec530c81Sbellard# Solaris specific configure tool chain decisions
1216ec530c81Sbellard#
1217ec530c81Sbellardif test "$solaris" = "yes" ; then
12186792aa11SLoïc Minier  if has $install; then
12196792aa11SLoïc Minier    :
12206792aa11SLoïc Minier  else
1221ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
1222ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
1223ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1224ec530c81Sbellard    exit 1
1225ec530c81Sbellard  fi
12266792aa11SLoïc Minier  if test "`path_of $install`" = "/usr/sbin/install" ; then
1227ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
1228ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
1229ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1230ec530c81Sbellard    exit 1
1231ec530c81Sbellard  fi
12326792aa11SLoïc Minier  if has ar; then
12336792aa11SLoïc Minier    :
12346792aa11SLoïc Minier  else
1235ec530c81Sbellard    echo "Error: No path includes ar"
1236ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
1237ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
1238ec530c81Sbellard    fi
1239ec530c81Sbellard    exit 1
1240ec530c81Sbellard  fi
1241ec530c81Sbellardfi
1242ec530c81Sbellard
12437a3fc891SSebastian Herbsztif ! has $python; then
1244c886edfbSBlue Swirl  echo "Python not found. Use --python=/path/to/python"
1245c886edfbSBlue Swirl  exit 1
1246c886edfbSBlue Swirlfi
1247c886edfbSBlue Swirl
12486ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit
12496ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value.
12506ccea1e4SPeter Maydellif ! "$python" -c 'import sys; sys.exit(sys.version_info[0] >= 3)'; then
12516ccea1e4SPeter Maydell  echo "Python 2 required but '$python' is version 3 or better."
12526ccea1e4SPeter Maydell  echo "Use --python=/path/to/python to specify a Python 2."
12536ccea1e4SPeter Maydell  exit 1
12546ccea1e4SPeter Maydellfi
12556ccea1e4SPeter Maydell
12565327cf48Sbellardif test -z "$target_list" ; then
125760e0df25SPeter Maydell    target_list="$default_target_list"
12586e20a45fSbellardelse
1259b1a550a0Spbrook    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
12605327cf48Sbellardfi
12610a8e90f4Spbrookif test -z "$target_list" ; then
12620a8e90f4Spbrook    echo "No targets enabled"
12630a8e90f4Spbrook    exit 1
12640a8e90f4Spbrookfi
1265f55fe278SPaolo Bonzini# see if system emulation was really requested
1266f55fe278SPaolo Bonzinicase " $target_list " in
1267f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1268f55fe278SPaolo Bonzini  ;;
1269f55fe278SPaolo Bonzini  *) softmmu=no
1270f55fe278SPaolo Bonzini  ;;
1271f55fe278SPaolo Bonziniesac
12725327cf48Sbellard
1273249247c9SJuan Quintelafeature_not_found() {
1274249247c9SJuan Quintela  feature=$1
1275249247c9SJuan Quintela
1276249247c9SJuan Quintela  echo "ERROR"
1277249247c9SJuan Quintela  echo "ERROR: User requested feature $feature"
12789332f6a2SSebastian Herbszt  echo "ERROR: configure was not able to find it"
1279249247c9SJuan Quintela  echo "ERROR"
1280249247c9SJuan Quintela  exit 1;
1281249247c9SJuan Quintela}
1282249247c9SJuan Quintela
12837d13299dSbellardif test -z "$cross_prefix" ; then
12847d13299dSbellard
12857d13299dSbellard# ---
12867d13299dSbellard# big/little endian test
12877d13299dSbellardcat > $TMPC << EOF
12887d13299dSbellard#include <inttypes.h>
12897d13299dSbellardint main(int argc, char ** argv){
12907d13299dSbellard        volatile uint32_t i=0x01234567;
12917d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
12927d13299dSbellard}
12937d13299dSbellardEOF
12947d13299dSbellard
129552166aa0SJuan Quintelaif compile_prog "" "" ; then
12967d13299dSbellard$TMPE && bigendian="yes"
12977d13299dSbellardelse
12987d13299dSbellardecho big/little test failed
12997d13299dSbellardfi
13007d13299dSbellard
13017d13299dSbellardelse
13027d13299dSbellard
13037d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
1304ea8f20f8SJuan Quintelacase "$cpu" in
130521d89f84SPeter Maydell  arm)
130621d89f84SPeter Maydell    # ARM can be either way; ask the compiler which one we are
130721d89f84SPeter Maydell    if check_define __ARMEB__; then
130821d89f84SPeter Maydell      bigendian=yes
130921d89f84SPeter Maydell    fi
131021d89f84SPeter Maydell  ;;
131121d89f84SPeter Maydell  hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1312ea8f20f8SJuan Quintela    bigendian=yes
1313ea8f20f8SJuan Quintela  ;;
1314ea8f20f8SJuan Quintelaesac
13157d13299dSbellard
13167d13299dSbellardfi
13177d13299dSbellard
1318b0a47e79SJuan Quintela##########################################
1319b0a47e79SJuan Quintela# NPTL probe
1320b0a47e79SJuan Quintela
1321b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then
1322bd0c5661Spbrook  cat > $TMPC <<EOF
1323bd0c5661Spbrook#include <sched.h>
132430813ceaSpbrook#include <linux/futex.h>
1325182eacc0SStefan Weilint main(void) {
1326bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1327bd0c5661Spbrook#error bork
1328bd0c5661Spbrook#endif
1329182eacc0SStefan Weil  return 0;
1330bd0c5661Spbrook}
1331bd0c5661SpbrookEOF
1332bd0c5661Spbrook
133352166aa0SJuan Quintela  if compile_object ; then
1334b0a47e79SJuan Quintela    nptl=yes
1335bd0c5661Spbrook  else
1336b0a47e79SJuan Quintela    if test "$nptl" = "yes" ; then
1337b0a47e79SJuan Quintela      feature_not_found "nptl"
1338b0a47e79SJuan Quintela    fi
1339b0a47e79SJuan Quintela    nptl=no
1340b0a47e79SJuan Quintela  fi
1341bd0c5661Spbrookfi
1342bd0c5661Spbrook
134311d9f695Sbellard##########################################
1344ac62922eSbalrog# zlib check
1345ac62922eSbalrog
13461ece9905SAlon Levyif test "$zlib" != "no" ; then
1347ac62922eSbalrog    cat > $TMPC << EOF
1348ac62922eSbalrog#include <zlib.h>
1349ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1350ac62922eSbalrogEOF
135152166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1352ac62922eSbalrog        :
1353ac62922eSbalrog    else
1354ac62922eSbalrog        echo
1355ac62922eSbalrog        echo "Error: zlib check failed"
1356ac62922eSbalrog        echo "Make sure to have the zlib libs and headers installed."
1357ac62922eSbalrog        echo
1358ac62922eSbalrog        exit 1
1359ac62922eSbalrog    fi
13601ece9905SAlon Levyfi
1361ac62922eSbalrog
1362ac62922eSbalrog##########################################
1363e37630caSaliguori# xen probe
1364e37630caSaliguori
1365fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1366b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
1367d5b93ddfSAnthony PERARD
136850ced5b3SStefan Weil  # First we test whether Xen headers and libraries are available.
136950ced5b3SStefan Weil  # If no, we are done and there is no Xen support.
137050ced5b3SStefan Weil  # If yes, more tests are run to detect the Xen version.
137150ced5b3SStefan Weil
137250ced5b3SStefan Weil  # Xen (any)
137350ced5b3SStefan Weil  cat > $TMPC <<EOF
137450ced5b3SStefan Weil#include <xenctrl.h>
137550ced5b3SStefan Weil#include <xs.h>
137650ced5b3SStefan Weilint main(void) {
137750ced5b3SStefan Weil  return 0;
137850ced5b3SStefan Weil}
137950ced5b3SStefan WeilEOF
138050ced5b3SStefan Weil  if ! compile_prog "" "$xen_libs" ; then
138150ced5b3SStefan Weil    # Xen not found
138250ced5b3SStefan Weil    if test "$xen" = "yes" ; then
138350ced5b3SStefan Weil      feature_not_found "xen"
138450ced5b3SStefan Weil    fi
138550ced5b3SStefan Weil    xen=no
138650ced5b3SStefan Weil
1387d5b93ddfSAnthony PERARD  # Xen unstable
138850ced5b3SStefan Weil  elif (
1389e37630caSaliguori      cat > $TMPC <<EOF
1390e37630caSaliguori#include <xenctrl.h>
1391e37630caSaliguori#include <xs.h>
1392d5b93ddfSAnthony PERARD#include <stdint.h>
1393d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1394d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1395d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1396d5b93ddfSAnthony PERARD#endif
1397d5b93ddfSAnthony PERARDint main(void) {
1398d5b93ddfSAnthony PERARD  xc_interface *xc;
1399d5b93ddfSAnthony PERARD  xs_daemon_open();
1400d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
1401d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1402d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
1403b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
14048688e065SStefano Stabellini  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
14058688e065SStefano Stabellini  return 0;
14068688e065SStefano Stabellini}
14078688e065SStefano StabelliniEOF
14088688e065SStefano Stabellini      compile_prog "" "$xen_libs"
14098688e065SStefano Stabellini    ) ; then
14108688e065SStefano Stabellini    xen_ctrl_version=420
14118688e065SStefano Stabellini    xen=yes
14128688e065SStefano Stabellini
14138688e065SStefano Stabellini  elif (
14148688e065SStefano Stabellini      cat > $TMPC <<EOF
14158688e065SStefano Stabellini#include <xenctrl.h>
14168688e065SStefano Stabellini#include <xs.h>
14178688e065SStefano Stabellini#include <stdint.h>
14188688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h>
14198688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS)
14208688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined
14218688e065SStefano Stabellini#endif
14228688e065SStefano Stabelliniint main(void) {
14238688e065SStefano Stabellini  xc_interface *xc;
14248688e065SStefano Stabellini  xs_daemon_open();
14258688e065SStefano Stabellini  xc = xc_interface_open(0, 0, 0);
14268688e065SStefano Stabellini  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
14278688e065SStefano Stabellini  xc_gnttab_open(NULL, 0);
14288688e065SStefano Stabellini  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1429d5b93ddfSAnthony PERARD  return 0;
1430d5b93ddfSAnthony PERARD}
1431e37630caSaliguoriEOF
143250ced5b3SStefan Weil      compile_prog "" "$xen_libs"
143350ced5b3SStefan Weil    ) ; then
1434d5b93ddfSAnthony PERARD    xen_ctrl_version=410
1435fc321b4bSJuan Quintela    xen=yes
1436d5b93ddfSAnthony PERARD
1437d5b93ddfSAnthony PERARD  # Xen 4.0.0
1438d5b93ddfSAnthony PERARD  elif (
1439d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1440d5b93ddfSAnthony PERARD#include <xenctrl.h>
1441d5b93ddfSAnthony PERARD#include <xs.h>
1442d5b93ddfSAnthony PERARD#include <stdint.h>
1443d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1444d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1445d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1446d5b93ddfSAnthony PERARD#endif
1447d5b93ddfSAnthony PERARDint main(void) {
1448b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1449b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1450b87de24eSAnthony PERARD  };
1451d5b93ddfSAnthony PERARD  xs_daemon_open();
1452d5b93ddfSAnthony PERARD  xc_interface_open();
1453d5b93ddfSAnthony PERARD  xc_gnttab_open();
1454d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1455b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1456d5b93ddfSAnthony PERARD  return 0;
1457d5b93ddfSAnthony PERARD}
1458d5b93ddfSAnthony PERARDEOF
1459d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1460d5b93ddfSAnthony PERARD    ) ; then
1461d5b93ddfSAnthony PERARD    xen_ctrl_version=400
1462d5b93ddfSAnthony PERARD    xen=yes
1463d5b93ddfSAnthony PERARD
1464b87de24eSAnthony PERARD  # Xen 3.4.0
1465b87de24eSAnthony PERARD  elif (
1466b87de24eSAnthony PERARD      cat > $TMPC <<EOF
1467b87de24eSAnthony PERARD#include <xenctrl.h>
1468b87de24eSAnthony PERARD#include <xs.h>
1469b87de24eSAnthony PERARDint main(void) {
1470b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1471b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1472b87de24eSAnthony PERARD  };
1473b87de24eSAnthony PERARD  xs_daemon_open();
1474b87de24eSAnthony PERARD  xc_interface_open();
1475b87de24eSAnthony PERARD  xc_gnttab_open();
1476b87de24eSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1477b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1478b87de24eSAnthony PERARD  return 0;
1479b87de24eSAnthony PERARD}
1480b87de24eSAnthony PERARDEOF
1481b87de24eSAnthony PERARD      compile_prog "" "$xen_libs"
1482b87de24eSAnthony PERARD    ) ; then
1483b87de24eSAnthony PERARD    xen_ctrl_version=340
1484b87de24eSAnthony PERARD    xen=yes
1485b87de24eSAnthony PERARD
1486b87de24eSAnthony PERARD  # Xen 3.3.0
1487d5b93ddfSAnthony PERARD  elif (
1488d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1489d5b93ddfSAnthony PERARD#include <xenctrl.h>
1490d5b93ddfSAnthony PERARD#include <xs.h>
1491d5b93ddfSAnthony PERARDint main(void) {
1492d5b93ddfSAnthony PERARD  xs_daemon_open();
1493d5b93ddfSAnthony PERARD  xc_interface_open();
1494d5b93ddfSAnthony PERARD  xc_gnttab_open();
1495d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1496d5b93ddfSAnthony PERARD  return 0;
1497d5b93ddfSAnthony PERARD}
1498d5b93ddfSAnthony PERARDEOF
1499d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1500d5b93ddfSAnthony PERARD    ) ; then
1501d5b93ddfSAnthony PERARD    xen_ctrl_version=330
1502d5b93ddfSAnthony PERARD    xen=yes
1503d5b93ddfSAnthony PERARD
150450ced5b3SStefan Weil  # Xen version unsupported
1505e37630caSaliguori  else
1506fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
150750ced5b3SStefan Weil      feature_not_found "xen (unsupported version)"
1508fc321b4bSJuan Quintela    fi
1509fc321b4bSJuan Quintela    xen=no
1510e37630caSaliguori  fi
1511d5b93ddfSAnthony PERARD
1512d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
1513d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
1514d5b93ddfSAnthony PERARD  fi
1515e37630caSaliguorifi
1516e37630caSaliguori
1517e37630caSaliguori##########################################
1518a8bd70adSPaolo Bonzini# pkg-config probe
1519f91672e5SPaolo Bonzini
152017884d7bSSergei Trofimovichif ! has "$pkg_config_exe"; then
152117884d7bSSergei Trofimovich  echo "Error: pkg-config binary '$pkg_config_exe' not found"
1522a213fcb2SPeter Maydell  exit 1
1523f91672e5SPaolo Bonzinifi
1524f91672e5SPaolo Bonzini
1525f91672e5SPaolo Bonzini##########################################
152644dc0ca3SAlon Levy# libtool probe
152744dc0ca3SAlon Levy
15283f534581SBradif ! has $libtool; then
152944dc0ca3SAlon Levy    libtool=
153044dc0ca3SAlon Levyfi
153144dc0ca3SAlon Levy
153244dc0ca3SAlon Levy##########################################
1533dfffc653SJuan Quintela# Sparse probe
1534dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
15350dba6195SLoïc Minier  if has cgcc; then
1536dfffc653SJuan Quintela    sparse=yes
1537dfffc653SJuan Quintela  else
1538dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
1539dfffc653SJuan Quintela      feature_not_found "sparse"
1540dfffc653SJuan Quintela    fi
1541dfffc653SJuan Quintela    sparse=no
1542dfffc653SJuan Quintela  fi
1543dfffc653SJuan Quintelafi
1544dfffc653SJuan Quintela
1545dfffc653SJuan Quintela##########################################
154611d9f695Sbellard# SDL probe
154711d9f695Sbellard
15483ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
15493ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
15503ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
15513ec87ffeSPaolo Bonzini  sdl_config=sdl-config
15523ec87ffeSPaolo Bonzinifi
15533ec87ffeSPaolo Bonzini
15543ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then
1555a8bd70adSPaolo Bonzini  sdlconfig="$pkg_config sdl"
1556fec0e3e8SStefan Weil  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
15573ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
15583ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
15599316f803SPaolo Bonzini  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1560a0dfd8a4SLoïc Minierelse
1561a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
1562a0dfd8a4SLoïc Minier    feature_not_found "sdl"
1563a0dfd8a4SLoïc Minier  fi
1564a0dfd8a4SLoïc Minier  sdl=no
15659316f803SPaolo Bonzinifi
156629e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
15673ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
15683ec87ffeSPaolo Bonzinifi
156911d9f695Sbellard
15709316f803SPaolo Bonzinisdl_too_old=no
1571c4198157SJuan Quintelaif test "$sdl" != "no" ; then
157211d9f695Sbellard  cat > $TMPC << EOF
157311d9f695Sbellard#include <SDL.h>
157411d9f695Sbellard#undef main /* We don't want SDL to override our main() */
157511d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
157611d9f695SbellardEOF
15779316f803SPaolo Bonzini  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
157874f42e18STeLeMan  if test "$static" = "yes" ; then
157974f42e18STeLeMan    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
158074f42e18STeLeMan  else
15819316f803SPaolo Bonzini    sdl_libs=`$sdlconfig --libs 2> /dev/null`
158274f42e18STeLeMan  fi
158352166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
158411d9f695Sbellard    if test "$_sdlversion" -lt 121 ; then
158511d9f695Sbellard      sdl_too_old=yes
158611d9f695Sbellard    else
1587fd677642Sths      if test "$cocoa" = "no" ; then
158811d9f695Sbellard        sdl=yes
158911d9f695Sbellard      fi
1590fd677642Sths    fi
15917c1f25b4Sbellard
159267c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
15931ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
159467c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1595f8aa6c7bSStefan Weil         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1596f8aa6c7bSStefan Weil         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
159711d9f695Sbellard      fi
159852166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
15991ac88f28SJuan Quintela	:
16001ac88f28SJuan Quintela      else
16011ac88f28SJuan Quintela        sdl=no
16027c1f25b4Sbellard      fi
16037c1f25b4Sbellard    fi # static link
1604c4198157SJuan Quintela  else # sdl not found
1605c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
1606c4198157SJuan Quintela      feature_not_found "sdl"
1607c4198157SJuan Quintela    fi
1608c4198157SJuan Quintela    sdl=no
16097c1f25b4Sbellard  fi # sdl compile test
1610fd677642Sthsfi
161111d9f695Sbellard
16125368a422Saliguoriif test "$sdl" = "yes" ; then
16135368a422Saliguori  cat > $TMPC <<EOF
16145368a422Saliguori#include <SDL.h>
16155368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
16165368a422Saliguori#include <X11/XKBlib.h>
16175368a422Saliguori#else
16185368a422Saliguori#error No x11 support
16195368a422Saliguori#endif
16205368a422Saliguoriint main(void) { return 0; }
16215368a422SaliguoriEOF
162252166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1623681306dfSJuan Quintela    sdl_libs="$sdl_libs -lX11"
16245368a422Saliguori  fi
16250705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
16265368a422Saliguorifi
16275368a422Saliguori
16288f28f3fbSths##########################################
16298d5d2d4cSths# VNC TLS detection
1630821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1631ae6b5e5aSaliguori  cat > $TMPC <<EOF
1632ae6b5e5aSaliguori#include <gnutls/gnutls.h>
1633ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1634ae6b5e5aSaliguoriEOF
1635a8bd70adSPaolo Bonzini  vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1636a8bd70adSPaolo Bonzini  vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
163752166aa0SJuan Quintela  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
16381be10ad2SJuan Quintela    vnc_tls=yes
1639a5e32cc9SJuan Quintela    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1640ae6b5e5aSaliguori  else
16411be10ad2SJuan Quintela    if test "$vnc_tls" = "yes" ; then
16421be10ad2SJuan Quintela      feature_not_found "vnc-tls"
16431be10ad2SJuan Quintela    fi
16441be10ad2SJuan Quintela    vnc_tls=no
16458d5d2d4cSths  fi
16468d5d2d4cSthsfi
16478d5d2d4cSths
16488d5d2d4cSths##########################################
16492f9606b3Saliguori# VNC SASL detection
1650821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
16512f9606b3Saliguori  cat > $TMPC <<EOF
16522f9606b3Saliguori#include <sasl/sasl.h>
16532f9606b3Saliguori#include <stdio.h>
16542f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
16552f9606b3SaliguoriEOF
16562f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
16572f9606b3Saliguori  vnc_sasl_cflags=""
16582f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
165952166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1660ea784e3bSJuan Quintela    vnc_sasl=yes
1661fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
16622f9606b3Saliguori  else
1663ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
1664ea784e3bSJuan Quintela      feature_not_found "vnc-sasl"
1665ea784e3bSJuan Quintela    fi
1666ea784e3bSJuan Quintela    vnc_sasl=no
16672f9606b3Saliguori  fi
16682f9606b3Saliguorifi
16692f9606b3Saliguori
16702f9606b3Saliguori##########################################
16712f6f5c7aSCorentin Chary# VNC JPEG detection
1672821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
16732f6f5c7aSCorentin Charycat > $TMPC <<EOF
16742f6f5c7aSCorentin Chary#include <stdio.h>
16752f6f5c7aSCorentin Chary#include <jpeglib.h>
16762f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
16772f6f5c7aSCorentin CharyEOF
16782f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
16792f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
16802f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
16812f6f5c7aSCorentin Chary    vnc_jpeg=yes
16822f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
16832f6f5c7aSCorentin Chary  else
16842f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
16852f6f5c7aSCorentin Chary      feature_not_found "vnc-jpeg"
16862f6f5c7aSCorentin Chary    fi
16872f6f5c7aSCorentin Chary    vnc_jpeg=no
16882f6f5c7aSCorentin Chary  fi
16892f6f5c7aSCorentin Charyfi
16902f6f5c7aSCorentin Chary
16912f6f5c7aSCorentin Chary##########################################
1692efe556adSCorentin Chary# VNC PNG detection
1693821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
1694efe556adSCorentin Charycat > $TMPC <<EOF
1695efe556adSCorentin Chary//#include <stdio.h>
1696efe556adSCorentin Chary#include <png.h>
1697832ce9c2SScott Wood#include <stddef.h>
1698efe556adSCorentin Charyint main(void) {
1699efe556adSCorentin Chary    png_structp png_ptr;
1700efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1701efe556adSCorentin Chary    return 0;
1702efe556adSCorentin Chary}
1703efe556adSCorentin CharyEOF
17049af8025eSBrad  if $pkg_config libpng --modversion >/dev/null 2>&1; then
17059af8025eSBrad    vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null`
17069af8025eSBrad    vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null`
17079af8025eSBrad  else
1708efe556adSCorentin Chary    vnc_png_cflags=""
1709efe556adSCorentin Chary    vnc_png_libs="-lpng"
17109af8025eSBrad  fi
1711efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1712efe556adSCorentin Chary    vnc_png=yes
1713efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
17149af8025eSBrad    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
1715efe556adSCorentin Chary  else
1716efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
1717efe556adSCorentin Chary      feature_not_found "vnc-png"
1718efe556adSCorentin Chary    fi
1719efe556adSCorentin Chary    vnc_png=no
1720efe556adSCorentin Chary  fi
1721efe556adSCorentin Charyfi
1722efe556adSCorentin Chary
1723efe556adSCorentin Chary##########################################
172476655d6dSaliguori# fnmatch() probe, used for ACL routines
172576655d6dSaliguorifnmatch="no"
172676655d6dSaliguoricat > $TMPC << EOF
172776655d6dSaliguori#include <fnmatch.h>
172876655d6dSaliguoriint main(void)
172976655d6dSaliguori{
173076655d6dSaliguori    fnmatch("foo", "foo", 0);
173176655d6dSaliguori    return 0;
173276655d6dSaliguori}
173376655d6dSaliguoriEOF
173452166aa0SJuan Quintelaif compile_prog "" "" ; then
173576655d6dSaliguori   fnmatch="yes"
173676655d6dSaliguorifi
173776655d6dSaliguori
173876655d6dSaliguori##########################################
1739ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
1740ee682d27SStefan Weilif test "$uuid" != "no" ; then
1741ee682d27SStefan Weil  uuid_libs="-luuid"
1742ee682d27SStefan Weil  cat > $TMPC << EOF
1743ee682d27SStefan Weil#include <uuid/uuid.h>
1744ee682d27SStefan Weilint main(void)
1745ee682d27SStefan Weil{
1746ee682d27SStefan Weil    uuid_t my_uuid;
1747ee682d27SStefan Weil    uuid_generate(my_uuid);
1748ee682d27SStefan Weil    return 0;
1749ee682d27SStefan Weil}
1750ee682d27SStefan WeilEOF
1751ee682d27SStefan Weil  if compile_prog "" "$uuid_libs" ; then
1752ee682d27SStefan Weil    uuid="yes"
1753ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
1754ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
1755ee682d27SStefan Weil  else
1756ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
1757ee682d27SStefan Weil      feature_not_found "uuid"
1758ee682d27SStefan Weil    fi
1759ee682d27SStefan Weil    uuid=no
1760ee682d27SStefan Weil  fi
1761ee682d27SStefan Weilfi
1762ee682d27SStefan Weil
1763ee682d27SStefan Weil##########################################
1764dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
1765dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
1766dce512deSChristoph Hellwig  cat > $TMPC << EOF
1767ffc41d10SStefan Weil#include <stddef.h>  /* NULL */
1768dce512deSChristoph Hellwig#include <xfs/xfs.h>
1769dce512deSChristoph Hellwigint main(void)
1770dce512deSChristoph Hellwig{
1771dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
1772dce512deSChristoph Hellwig    return 0;
1773dce512deSChristoph Hellwig}
1774dce512deSChristoph HellwigEOF
1775dce512deSChristoph Hellwig  if compile_prog "" "" ; then
1776dce512deSChristoph Hellwig    xfs="yes"
1777dce512deSChristoph Hellwig  else
1778dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
1779dce512deSChristoph Hellwig      feature_not_found "xfs"
1780dce512deSChristoph Hellwig    fi
1781dce512deSChristoph Hellwig    xfs=no
1782dce512deSChristoph Hellwig  fi
1783dce512deSChristoph Hellwigfi
1784dce512deSChristoph Hellwig
1785dce512deSChristoph Hellwig##########################################
17868a16d273Sths# vde libraries probe
1787dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
17884baae0acSJuan Quintela  vde_libs="-lvdeplug"
17898a16d273Sths  cat > $TMPC << EOF
17908a16d273Sths#include <libvdeplug.h>
17914a7f0e06Spbrookint main(void)
17924a7f0e06Spbrook{
17934a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
17944a7f0e06Spbrook    vde_open("", "", &a);
17954a7f0e06Spbrook    return 0;
17964a7f0e06Spbrook}
17978a16d273SthsEOF
179852166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
17994baae0acSJuan Quintela    vde=yes
18008e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
18018e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
1802dfb278bdSJuan Quintela  else
1803dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
1804dfb278bdSJuan Quintela      feature_not_found "vde"
1805dfb278bdSJuan Quintela    fi
1806dfb278bdSJuan Quintela    vde=no
18078a16d273Sths  fi
18088a16d273Sthsfi
18098a16d273Sths
18108a16d273Sths##########################################
181147e98658SCorey Bryant# libcap-ng library probe
181247e98658SCorey Bryantif test "$cap_ng" != "no" ; then
181347e98658SCorey Bryant  cap_libs="-lcap-ng"
181447e98658SCorey Bryant  cat > $TMPC << EOF
181547e98658SCorey Bryant#include <cap-ng.h>
181647e98658SCorey Bryantint main(void)
181747e98658SCorey Bryant{
181847e98658SCorey Bryant    capng_capability_to_name(CAPNG_EFFECTIVE);
181947e98658SCorey Bryant    return 0;
182047e98658SCorey Bryant}
182147e98658SCorey BryantEOF
182247e98658SCorey Bryant  if compile_prog "" "$cap_libs" ; then
182347e98658SCorey Bryant    cap_ng=yes
182447e98658SCorey Bryant    libs_tools="$cap_libs $libs_tools"
182547e98658SCorey Bryant  else
182647e98658SCorey Bryant    if test "$cap_ng" = "yes" ; then
182747e98658SCorey Bryant      feature_not_found "cap_ng"
182847e98658SCorey Bryant    fi
182947e98658SCorey Bryant    cap_ng=no
183047e98658SCorey Bryant  fi
183147e98658SCorey Bryantfi
183247e98658SCorey Bryant
183347e98658SCorey Bryant##########################################
1834c2de5c91Smalc# Sound support libraries probe
18358f28f3fbSths
1836c2de5c91Smalcaudio_drv_probe()
1837c2de5c91Smalc{
1838c2de5c91Smalc    drv=$1
1839c2de5c91Smalc    hdr=$2
1840c2de5c91Smalc    lib=$3
1841c2de5c91Smalc    exp=$4
1842c2de5c91Smalc    cfl=$5
18438f28f3fbSths        cat > $TMPC << EOF
1844c2de5c91Smalc#include <$hdr>
1845c2de5c91Smalcint main(void) { $exp }
18468f28f3fbSthsEOF
184752166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
18488f28f3fbSths        :
18498f28f3fbSths    else
18508f28f3fbSths        echo
1851c2de5c91Smalc        echo "Error: $drv check failed"
1852c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
18538f28f3fbSths        echo
18548f28f3fbSths        exit 1
18558f28f3fbSths    fi
1856c2de5c91Smalc}
1857c2de5c91Smalc
18582fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1859c2de5c91Smalcfor drv in $audio_drv_list; do
1860c2de5c91Smalc    case $drv in
1861c2de5c91Smalc    alsa)
1862c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1863c2de5c91Smalc        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1864a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
1865c2de5c91Smalc    ;;
1866c2de5c91Smalc
1867c2de5c91Smalc    fmod)
1868c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
1869c2de5c91Smalc        echo
1870c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
1871c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1872c2de5c91Smalc        echo
1873c2de5c91Smalc        exit 1
18748f28f3fbSths    fi
1875c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1876a4bf6780SJuan Quintela    libs_softmmu="$fmod_lib $libs_softmmu"
1877c2de5c91Smalc    ;;
1878c2de5c91Smalc
1879c2de5c91Smalc    esd)
1880c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1881a4bf6780SJuan Quintela    libs_softmmu="-lesd $libs_softmmu"
188267f86e8eSJuan Quintela    audio_pt_int="yes"
1883c2de5c91Smalc    ;;
1884b8e59f18Smalc
1885b8e59f18Smalc    pa)
1886a394aed2SMarc-André Lureau    audio_drv_probe $drv pulse/mainloop.h "-lpulse" \
1887a394aed2SMarc-André Lureau        "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;"
1888a394aed2SMarc-André Lureau    libs_softmmu="-lpulse $libs_softmmu"
188967f86e8eSJuan Quintela    audio_pt_int="yes"
1890b8e59f18Smalc    ;;
1891b8e59f18Smalc
1892997e690aSJuan Quintela    coreaudio)
1893997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
1894997e690aSJuan Quintela    ;;
1895997e690aSJuan Quintela
1896a4bf6780SJuan Quintela    dsound)
1897a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1898d5631638Smalc      audio_win_int="yes"
1899a4bf6780SJuan Quintela    ;;
1900a4bf6780SJuan Quintela
1901a4bf6780SJuan Quintela    oss)
1902a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
1903a4bf6780SJuan Quintela    ;;
1904a4bf6780SJuan Quintela
1905a4bf6780SJuan Quintela    sdl|wav)
19062f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
19072f6a1ab0Sblueswir1    ;;
19082f6a1ab0Sblueswir1
1909d5631638Smalc    winwave)
1910d5631638Smalc      libs_softmmu="-lwinmm $libs_softmmu"
1911d5631638Smalc      audio_win_int="yes"
1912d5631638Smalc    ;;
1913d5631638Smalc
1914e4c63a6aSmalc    *)
19151c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1916e4c63a6aSmalc        echo
1917e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
1918e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
1919e4c63a6aSmalc        echo
1920e4c63a6aSmalc        exit 1
1921e4c63a6aSmalc    }
1922e4c63a6aSmalc    ;;
1923c2de5c91Smalc    esac
1924c2de5c91Smalcdone
19258f28f3fbSths
19264d3b6f6eSbalrog##########################################
19272e4d9fb1Saurel32# BrlAPI probe
19282e4d9fb1Saurel32
19294ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
1930eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
19312e4d9fb1Saurel32  cat > $TMPC << EOF
19322e4d9fb1Saurel32#include <brlapi.h>
1933832ce9c2SScott Wood#include <stddef.h>
19342e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
19352e4d9fb1Saurel32EOF
193652166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
19372e4d9fb1Saurel32    brlapi=yes
1938264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
19394ffcedb6SJuan Quintela  else
19404ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
19414ffcedb6SJuan Quintela      feature_not_found "brlapi"
19424ffcedb6SJuan Quintela    fi
19434ffcedb6SJuan Quintela    brlapi=no
1944eb82284fSJuan Quintela  fi
1945eb82284fSJuan Quintelafi
19462e4d9fb1Saurel32
19472e4d9fb1Saurel32##########################################
19484d3b6f6eSbalrog# curses probe
1949e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then
1950e095e2f3SStefan Weil    curses_list="-lpdcurses"
1951e095e2f3SStefan Weilelse
19524f78ef9aSJuan Quintela    curses_list="-lncurses -lcurses"
1953e095e2f3SStefan Weilfi
19544d3b6f6eSbalrog
1955c584a6d0SJuan Quintelaif test "$curses" != "no" ; then
1956c584a6d0SJuan Quintela  curses_found=no
19574d3b6f6eSbalrog  cat > $TMPC << EOF
19584d3b6f6eSbalrog#include <curses.h>
1959ef9a2524SStefan Weilint main(void) {
1960ef9a2524SStefan Weil  const char *s = curses_version();
1961ef9a2524SStefan Weil  resize_term(0, 0);
1962ef9a2524SStefan Weil  return s != 0;
1963ef9a2524SStefan Weil}
19644d3b6f6eSbalrogEOF
19654f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
19664f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
1967c584a6d0SJuan Quintela      curses_found=yes
19684f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
19694f78ef9aSJuan Quintela      break
19704d3b6f6eSbalrog    fi
19714f78ef9aSJuan Quintela  done
1972c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
1973c584a6d0SJuan Quintela    curses=yes
1974c584a6d0SJuan Quintela  else
1975c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
1976c584a6d0SJuan Quintela      feature_not_found "curses"
1977c584a6d0SJuan Quintela    fi
1978c584a6d0SJuan Quintela    curses=no
1979c584a6d0SJuan Quintela  fi
19804f78ef9aSJuan Quintelafi
19814d3b6f6eSbalrog
1982414f0dabSblueswir1##########################################
1983769ce76dSAlexander Graf# curl probe
1984769ce76dSAlexander Graf
1985a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then
1986a8bd70adSPaolo Bonzini  curlconfig="$pkg_config libcurl"
19874e2b0658SPaolo Bonzinielse
19884e2b0658SPaolo Bonzini  curlconfig=curl-config
19894e2b0658SPaolo Bonzinifi
19904e2b0658SPaolo Bonzini
1991788c8196SJuan Quintelaif test "$curl" != "no" ; then
1992769ce76dSAlexander Graf  cat > $TMPC << EOF
1993769ce76dSAlexander Graf#include <curl/curl.h>
19940b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
1995769ce76dSAlexander GrafEOF
19964e2b0658SPaolo Bonzini  curl_cflags=`$curlconfig --cflags 2>/dev/null`
19974e2b0658SPaolo Bonzini  curl_libs=`$curlconfig --libs 2>/dev/null`
1998b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
1999769ce76dSAlexander Graf    curl=yes
2000f0302935SJuan Quintela    libs_tools="$curl_libs $libs_tools"
2001f0302935SJuan Quintela    libs_softmmu="$curl_libs $libs_softmmu"
2002788c8196SJuan Quintela  else
2003788c8196SJuan Quintela    if test "$curl" = "yes" ; then
2004788c8196SJuan Quintela      feature_not_found "curl"
2005788c8196SJuan Quintela    fi
2006788c8196SJuan Quintela    curl=no
2007769ce76dSAlexander Graf  fi
2008769ce76dSAlexander Graffi # test "$curl"
2009769ce76dSAlexander Graf
2010769ce76dSAlexander Graf##########################################
2011fb599c9aSbalrog# bluez support probe
2012a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
2013e820e3f4Sbalrog  cat > $TMPC << EOF
2014e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
2015e820e3f4Sbalrogint main(void) { return bt_error(0); }
2016e820e3f4SbalrogEOF
2017a8bd70adSPaolo Bonzini  bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
2018a8bd70adSPaolo Bonzini  bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
201952166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2020a20a6f46SJuan Quintela    bluez=yes
2021e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
2022e820e3f4Sbalrog  else
2023a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
2024a20a6f46SJuan Quintela      feature_not_found "bluez"
2025a20a6f46SJuan Quintela    fi
2026e820e3f4Sbalrog    bluez="no"
2027e820e3f4Sbalrog  fi
2028fb599c9aSbalrogfi
2029fb599c9aSbalrog
2030fb599c9aSbalrog##########################################
2031e18df141SAnthony Liguori# glib support probe
2032a52d28afSPaolo Bonzini
2033a52d28afSPaolo Bonziniif test "$mingw32" = yes; then
2034a52d28afSPaolo Bonzini    # g_poll is required in order to integrate with the glib main loop.
2035a52d28afSPaolo Bonzini    glib_req_ver=2.20
2036a52d28afSPaolo Bonzinielse
2037a52d28afSPaolo Bonzini    glib_req_ver=2.12
2038a52d28afSPaolo Bonzinifi
2039a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1
2040a52d28afSPaolo Bonzinithen
20414b76a481SStefan Hajnoczi    glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null`
20424b76a481SStefan Hajnoczi    glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null`
204314015304SAnthony Liguori    LIBS="$glib_libs $LIBS"
2044957f1f99SMichael Roth    libs_qga="$glib_libs $libs_qga"
2045e18df141SAnthony Liguorielse
2046a52d28afSPaolo Bonzini    echo "glib-$glib_req_ver required to compile QEMU"
2047e18df141SAnthony Liguori    exit 1
2048e18df141SAnthony Liguorifi
2049e18df141SAnthony Liguori
2050e18df141SAnthony Liguori##########################################
205117bff52bSM. Mohan Kumar# libcap probe
205217bff52bSM. Mohan Kumar
205317bff52bSM. Mohan Kumarif test "$cap" != "no" ; then
205417bff52bSM. Mohan Kumar  cat > $TMPC <<EOF
205517bff52bSM. Mohan Kumar#include <stdio.h>
205617bff52bSM. Mohan Kumar#include <sys/capability.h>
205717bff52bSM. Mohan Kumarint main(void) { cap_t caps; caps = cap_init(); }
205817bff52bSM. Mohan KumarEOF
205917bff52bSM. Mohan Kumar  if compile_prog "" "-lcap" ; then
206017bff52bSM. Mohan Kumar    cap=yes
206117bff52bSM. Mohan Kumar  else
206217bff52bSM. Mohan Kumar    cap=no
206317bff52bSM. Mohan Kumar  fi
206417bff52bSM. Mohan Kumarfi
206517bff52bSM. Mohan Kumar
206617bff52bSM. Mohan Kumar##########################################
2067e5d355d1Saliguori# pthread probe
20684b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
20693c529d93Saliguori
2070e5d355d1Saliguoripthread=no
2071414f0dabSblueswir1cat > $TMPC << EOF
20723c529d93Saliguori#include <pthread.h>
20737a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; }
20747a42bbe4SStefan Weilint main(void) {
20757a42bbe4SStefan Weil  pthread_t thread;
20767a42bbe4SStefan Weil  pthread_create(&thread, 0, f, 0);
20777a42bbe4SStefan Weil  return 0;
20787a42bbe4SStefan Weil}
2079414f0dabSblueswir1EOF
2080bd00d539SAndreas Färberif compile_prog "" "" ; then
2081bd00d539SAndreas Färber  pthread=yes
2082bd00d539SAndreas Färberelse
2083de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
208452166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
2085e5d355d1Saliguori      pthread=yes
20865572b539SJuan Quintela      LIBS="$pthread_lib $LIBS"
2087de65fe0fSSebastian Herbszt      break
2088414f0dabSblueswir1    fi
2089de65fe0fSSebastian Herbszt  done
2090bd00d539SAndreas Färberfi
2091414f0dabSblueswir1
20924617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
20934dd75c70SChristoph Hellwig  echo
20944dd75c70SChristoph Hellwig  echo "Error: pthread check failed"
20954dd75c70SChristoph Hellwig  echo "Make sure to have the pthread libs and headers installed."
20964dd75c70SChristoph Hellwig  echo
20974dd75c70SChristoph Hellwig  exit 1
2098e5d355d1Saliguorifi
2099e5d355d1Saliguori
2100bf9298b9Saliguori##########################################
2101f27aaf4bSChristian Brunner# rbd probe
2102f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
2103f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
2104f27aaf4bSChristian Brunner#include <stdio.h>
2105ad32e9c0SJosh Durgin#include <rbd/librbd.h>
2106f27aaf4bSChristian Brunnerint main(void) {
2107ad32e9c0SJosh Durgin    rados_t cluster;
2108ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
2109f27aaf4bSChristian Brunner    return 0;
2110f27aaf4bSChristian Brunner}
2111f27aaf4bSChristian BrunnerEOF
2112ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
2113f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
2114f27aaf4bSChristian Brunner    rbd=yes
2115f27aaf4bSChristian Brunner    libs_tools="$rbd_libs $libs_tools"
2116f27aaf4bSChristian Brunner    libs_softmmu="$rbd_libs $libs_softmmu"
2117f27aaf4bSChristian Brunner  else
2118f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
2119f27aaf4bSChristian Brunner      feature_not_found "rados block device"
2120f27aaf4bSChristian Brunner    fi
2121f27aaf4bSChristian Brunner    rbd=no
2122f27aaf4bSChristian Brunner  fi
2123f27aaf4bSChristian Brunnerfi
2124f27aaf4bSChristian Brunner
2125f27aaf4bSChristian Brunner##########################################
21265c6c3a6cSChristoph Hellwig# linux-aio probe
21275c6c3a6cSChristoph Hellwig
21285c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
21295c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
21305c6c3a6cSChristoph Hellwig#include <libaio.h>
21315c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
2132832ce9c2SScott Wood#include <stddef.h>
21335c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
21345c6c3a6cSChristoph HellwigEOF
21355c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
21365c6c3a6cSChristoph Hellwig    linux_aio=yes
2137048d179fSPaul Brook    libs_softmmu="$libs_softmmu -laio"
2138048d179fSPaul Brook    libs_tools="$libs_tools -laio"
21395c6c3a6cSChristoph Hellwig  else
21405c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
21415c6c3a6cSChristoph Hellwig      feature_not_found "linux AIO"
21425c6c3a6cSChristoph Hellwig    fi
21433cfcae3cSLuiz Capitulino    linux_aio=no
21445c6c3a6cSChristoph Hellwig  fi
21455c6c3a6cSChristoph Hellwigfi
21465c6c3a6cSChristoph Hellwig
21475c6c3a6cSChristoph Hellwig##########################################
2148758e8e38SVenkateswararao Jujjuri (JV)# attr probe
2149758e8e38SVenkateswararao Jujjuri (JV)
2150758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
2151758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
2152758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
2153758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
2154f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR
2155f2338fb4SPavel Borzenkov#include <attr/xattr.h>
2156f2338fb4SPavel Borzenkov#else
21574f26f2b6SAvi Kivity#include <sys/xattr.h>
2158f2338fb4SPavel Borzenkov#endif
2159758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
2160758e8e38SVenkateswararao Jujjuri (JV)EOF
21614f26f2b6SAvi Kivity  if compile_prog "" "" ; then
21624f26f2b6SAvi Kivity    attr=yes
21634f26f2b6SAvi Kivity  # Older distros have <attr/xattr.h>, and need -lattr:
2164f2338fb4SPavel Borzenkov  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
2165758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
2166758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
21674f26f2b6SAvi Kivity    libattr=yes
2168758e8e38SVenkateswararao Jujjuri (JV)  else
2169758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
2170758e8e38SVenkateswararao Jujjuri (JV)      feature_not_found "ATTR"
2171758e8e38SVenkateswararao Jujjuri (JV)    fi
2172758e8e38SVenkateswararao Jujjuri (JV)    attr=no
2173758e8e38SVenkateswararao Jujjuri (JV)  fi
2174758e8e38SVenkateswararao Jujjuri (JV)fi
2175758e8e38SVenkateswararao Jujjuri (JV)
2176758e8e38SVenkateswararao Jujjuri (JV)##########################################
2177bf9298b9Saliguori# iovec probe
2178bf9298b9Saliguoricat > $TMPC <<EOF
2179db34f0b3Sblueswir1#include <sys/types.h>
2180bf9298b9Saliguori#include <sys/uio.h>
2181db34f0b3Sblueswir1#include <unistd.h>
2182f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); }
2183bf9298b9SaliguoriEOF
2184bf9298b9Saliguoriiovec=no
218552166aa0SJuan Quintelaif compile_prog "" "" ; then
2186bf9298b9Saliguori  iovec=yes
2187bf9298b9Saliguorifi
2188bf9298b9Saliguori
2189f652e6afSaurel32##########################################
2190ceb42de8Saliguori# preadv probe
2191ceb42de8Saliguoricat > $TMPC <<EOF
2192ceb42de8Saliguori#include <sys/types.h>
2193ceb42de8Saliguori#include <sys/uio.h>
2194ceb42de8Saliguori#include <unistd.h>
219584972cbbSStefan Weilint main(void) { return preadv == preadv; }
2196ceb42de8SaliguoriEOF
2197ceb42de8Saliguoripreadv=no
219852166aa0SJuan Quintelaif compile_prog "" "" ; then
2199ceb42de8Saliguori  preadv=yes
2200ceb42de8Saliguorifi
2201ceb42de8Saliguori
2202ceb42de8Saliguori##########################################
2203f652e6afSaurel32# fdt probe
22042df87df7SJuan Quintelaif test "$fdt" != "no" ; then
2205b41af4baSJuan Quintela  fdt_libs="-lfdt"
2206f652e6afSaurel32  cat > $TMPC << EOF
2207f652e6afSaurel32int main(void) { return 0; }
2208f652e6afSaurel32EOF
220952166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
2210f652e6afSaurel32    fdt=yes
22112df87df7SJuan Quintela  else
22122df87df7SJuan Quintela    if test "$fdt" = "yes" ; then
22132df87df7SJuan Quintela      feature_not_found "fdt"
22142df87df7SJuan Quintela    fi
2215de3a354aSMichael Walle    fdt_libs=
22162df87df7SJuan Quintela    fdt=no
2217f652e6afSaurel32  fi
2218f652e6afSaurel32fi
2219f652e6afSaurel32
222020ff075bSMichael Walle##########################################
222120ff075bSMichael Walle# opengl probe, used by milkymist-tmu2
222220ff075bSMichael Walleif test "$opengl" != "no" ; then
222320ff075bSMichael Walle  opengl_libs="-lGL"
222420ff075bSMichael Walle  cat > $TMPC << EOF
222520ff075bSMichael Walle#include <X11/Xlib.h>
222620ff075bSMichael Walle#include <GL/gl.h>
222720ff075bSMichael Walle#include <GL/glx.h>
222884972cbbSStefan Weilint main(void) { return GL_VERSION != 0; }
222920ff075bSMichael WalleEOF
223020ff075bSMichael Walle  if compile_prog "" "-lGL" ; then
223120ff075bSMichael Walle    opengl=yes
223220ff075bSMichael Walle  else
223320ff075bSMichael Walle    if test "$opengl" = "yes" ; then
223420ff075bSMichael Walle      feature_not_found "opengl"
223520ff075bSMichael Walle    fi
2236de3a354aSMichael Walle    opengl_libs=
223720ff075bSMichael Walle    opengl=no
223820ff075bSMichael Walle  fi
223920ff075bSMichael Wallefi
224020ff075bSMichael Walle
22413b3f24adSaurel32#
22423b3f24adSaurel32# Check for xxxat() functions when we are building linux-user
22433b3f24adSaurel32# emulator.  This is done because older glibc versions don't
22443b3f24adSaurel32# have syscall stubs for these implemented.
22453b3f24adSaurel32#
22463b3f24adSaurel32atfile=no
22473b3f24adSaurel32cat > $TMPC << EOF
22483b3f24adSaurel32#define _ATFILE_SOURCE
22493b3f24adSaurel32#include <sys/types.h>
22503b3f24adSaurel32#include <fcntl.h>
22513b3f24adSaurel32#include <unistd.h>
22523b3f24adSaurel32
22533b3f24adSaurel32int
22543b3f24adSaurel32main(void)
22553b3f24adSaurel32{
22563b3f24adSaurel32	/* try to unlink nonexisting file */
22573b3f24adSaurel32	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
22583b3f24adSaurel32}
22593b3f24adSaurel32EOF
226052166aa0SJuan Quintelaif compile_prog "" "" ; then
22613b3f24adSaurel32  atfile=yes
22623b3f24adSaurel32fi
22633b3f24adSaurel32
226439386ac7Saurel32# Check for inotify functions when we are building linux-user
22653b3f24adSaurel32# emulator.  This is done because older glibc versions don't
22663b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
22673b3f24adSaurel32# don't provide them even if kernel supports them.
22683b3f24adSaurel32#
22693b3f24adSaurel32inotify=no
22703b3f24adSaurel32cat > $TMPC << EOF
22713b3f24adSaurel32#include <sys/inotify.h>
22723b3f24adSaurel32
22733b3f24adSaurel32int
22743b3f24adSaurel32main(void)
22753b3f24adSaurel32{
22763b3f24adSaurel32	/* try to start inotify */
22778690e420Saurel32	return inotify_init();
22783b3f24adSaurel32}
22793b3f24adSaurel32EOF
228052166aa0SJuan Quintelaif compile_prog "" "" ; then
22813b3f24adSaurel32  inotify=yes
22823b3f24adSaurel32fi
22833b3f24adSaurel32
2284c05c7a73SRiku Voipioinotify1=no
2285c05c7a73SRiku Voipiocat > $TMPC << EOF
2286c05c7a73SRiku Voipio#include <sys/inotify.h>
2287c05c7a73SRiku Voipio
2288c05c7a73SRiku Voipioint
2289c05c7a73SRiku Voipiomain(void)
2290c05c7a73SRiku Voipio{
2291c05c7a73SRiku Voipio    /* try to start inotify */
2292c05c7a73SRiku Voipio    return inotify_init1(0);
2293c05c7a73SRiku Voipio}
2294c05c7a73SRiku VoipioEOF
2295c05c7a73SRiku Voipioif compile_prog "" "" ; then
2296c05c7a73SRiku Voipio  inotify1=yes
2297c05c7a73SRiku Voipiofi
2298c05c7a73SRiku Voipio
2299ebc996f3SRiku Voipio# check if utimensat and futimens are supported
2300ebc996f3SRiku Voipioutimens=no
2301ebc996f3SRiku Voipiocat > $TMPC << EOF
2302ebc996f3SRiku Voipio#define _ATFILE_SOURCE
2303ebc996f3SRiku Voipio#include <stddef.h>
2304ebc996f3SRiku Voipio#include <fcntl.h>
2305ebc996f3SRiku Voipio
2306ebc996f3SRiku Voipioint main(void)
2307ebc996f3SRiku Voipio{
2308ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
2309ebc996f3SRiku Voipio    futimens(0, NULL);
2310ebc996f3SRiku Voipio    return 0;
2311ebc996f3SRiku Voipio}
2312ebc996f3SRiku VoipioEOF
231352166aa0SJuan Quintelaif compile_prog "" "" ; then
2314ebc996f3SRiku Voipio  utimens=yes
2315ebc996f3SRiku Voipiofi
2316ebc996f3SRiku Voipio
2317099d6b0fSRiku Voipio# check if pipe2 is there
2318099d6b0fSRiku Voipiopipe2=no
2319099d6b0fSRiku Voipiocat > $TMPC << EOF
2320099d6b0fSRiku Voipio#include <unistd.h>
2321099d6b0fSRiku Voipio#include <fcntl.h>
2322099d6b0fSRiku Voipio
2323099d6b0fSRiku Voipioint main(void)
2324099d6b0fSRiku Voipio{
2325099d6b0fSRiku Voipio    int pipefd[2];
2326099d6b0fSRiku Voipio    pipe2(pipefd, O_CLOEXEC);
2327099d6b0fSRiku Voipio    return 0;
2328099d6b0fSRiku Voipio}
2329099d6b0fSRiku VoipioEOF
233052166aa0SJuan Quintelaif compile_prog "" "" ; then
2331099d6b0fSRiku Voipio  pipe2=yes
2332099d6b0fSRiku Voipiofi
2333099d6b0fSRiku Voipio
233440ff6d7eSKevin Wolf# check if accept4 is there
233540ff6d7eSKevin Wolfaccept4=no
233640ff6d7eSKevin Wolfcat > $TMPC << EOF
233740ff6d7eSKevin Wolf#include <sys/socket.h>
233840ff6d7eSKevin Wolf#include <stddef.h>
233940ff6d7eSKevin Wolf
234040ff6d7eSKevin Wolfint main(void)
234140ff6d7eSKevin Wolf{
234240ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
234340ff6d7eSKevin Wolf    return 0;
234440ff6d7eSKevin Wolf}
234540ff6d7eSKevin WolfEOF
234640ff6d7eSKevin Wolfif compile_prog "" "" ; then
234740ff6d7eSKevin Wolf  accept4=yes
234840ff6d7eSKevin Wolffi
234940ff6d7eSKevin Wolf
23503ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
23513ce34dfbSvibisreenivasansplice=no
23523ce34dfbSvibisreenivasancat > $TMPC << EOF
23533ce34dfbSvibisreenivasan#include <unistd.h>
23543ce34dfbSvibisreenivasan#include <fcntl.h>
23553ce34dfbSvibisreenivasan#include <limits.h>
23563ce34dfbSvibisreenivasan
23573ce34dfbSvibisreenivasanint main(void)
23583ce34dfbSvibisreenivasan{
235966ea0f22SStefan Weil    int len, fd = 0;
23603ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
23613ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
23623ce34dfbSvibisreenivasan    return 0;
23633ce34dfbSvibisreenivasan}
23643ce34dfbSvibisreenivasanEOF
236552166aa0SJuan Quintelaif compile_prog "" "" ; then
23663ce34dfbSvibisreenivasan  splice=yes
23673ce34dfbSvibisreenivasanfi
23683ce34dfbSvibisreenivasan
2369dcc38d1cSMarcelo Tosatti##########################################
2370dcc38d1cSMarcelo Tosatti# signalfd probe
2371dcc38d1cSMarcelo Tosattisignalfd="no"
2372dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
2373dcc38d1cSMarcelo Tosatti#include <unistd.h>
2374dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
2375dcc38d1cSMarcelo Tosatti#include <signal.h>
2376dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2377dcc38d1cSMarcelo TosattiEOF
2378dcc38d1cSMarcelo Tosatti
2379dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
2380dcc38d1cSMarcelo Tosatti  signalfd=yes
2381dcc38d1cSMarcelo Tosattifi
2382dcc38d1cSMarcelo Tosatti
2383c2882b96SRiku Voipio# check if eventfd is supported
2384c2882b96SRiku Voipioeventfd=no
2385c2882b96SRiku Voipiocat > $TMPC << EOF
2386c2882b96SRiku Voipio#include <sys/eventfd.h>
2387c2882b96SRiku Voipio
2388c2882b96SRiku Voipioint main(void)
2389c2882b96SRiku Voipio{
239055cc7f3eSStefan Weil    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
2391c2882b96SRiku Voipio}
2392c2882b96SRiku VoipioEOF
2393c2882b96SRiku Voipioif compile_prog "" "" ; then
2394c2882b96SRiku Voipio  eventfd=yes
2395c2882b96SRiku Voipiofi
2396c2882b96SRiku Voipio
2397d0927938SUlrich Hecht# check for fallocate
2398d0927938SUlrich Hechtfallocate=no
2399d0927938SUlrich Hechtcat > $TMPC << EOF
2400d0927938SUlrich Hecht#include <fcntl.h>
2401d0927938SUlrich Hecht
2402d0927938SUlrich Hechtint main(void)
2403d0927938SUlrich Hecht{
2404d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
2405d0927938SUlrich Hecht    return 0;
2406d0927938SUlrich Hecht}
2407d0927938SUlrich HechtEOF
24088fb03151SPeter Maydellif compile_prog "" "" ; then
2409d0927938SUlrich Hecht  fallocate=yes
2410d0927938SUlrich Hechtfi
2411d0927938SUlrich Hecht
2412c727f47dSPeter Maydell# check for sync_file_range
2413c727f47dSPeter Maydellsync_file_range=no
2414c727f47dSPeter Maydellcat > $TMPC << EOF
2415c727f47dSPeter Maydell#include <fcntl.h>
2416c727f47dSPeter Maydell
2417c727f47dSPeter Maydellint main(void)
2418c727f47dSPeter Maydell{
2419c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
2420c727f47dSPeter Maydell    return 0;
2421c727f47dSPeter Maydell}
2422c727f47dSPeter MaydellEOF
24238fb03151SPeter Maydellif compile_prog "" "" ; then
2424c727f47dSPeter Maydell  sync_file_range=yes
2425c727f47dSPeter Maydellfi
2426c727f47dSPeter Maydell
2427dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
2428dace20dcSPeter Maydellfiemap=no
2429dace20dcSPeter Maydellcat > $TMPC << EOF
2430dace20dcSPeter Maydell#include <sys/ioctl.h>
2431dace20dcSPeter Maydell#include <linux/fs.h>
2432dace20dcSPeter Maydell#include <linux/fiemap.h>
2433dace20dcSPeter Maydell
2434dace20dcSPeter Maydellint main(void)
2435dace20dcSPeter Maydell{
2436dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
2437dace20dcSPeter Maydell    return 0;
2438dace20dcSPeter Maydell}
2439dace20dcSPeter MaydellEOF
24408fb03151SPeter Maydellif compile_prog "" "" ; then
2441dace20dcSPeter Maydell  fiemap=yes
2442dace20dcSPeter Maydellfi
2443dace20dcSPeter Maydell
2444d0927938SUlrich Hecht# check for dup3
2445d0927938SUlrich Hechtdup3=no
2446d0927938SUlrich Hechtcat > $TMPC << EOF
2447d0927938SUlrich Hecht#include <unistd.h>
2448d0927938SUlrich Hecht
2449d0927938SUlrich Hechtint main(void)
2450d0927938SUlrich Hecht{
2451d0927938SUlrich Hecht    dup3(0, 0, 0);
2452d0927938SUlrich Hecht    return 0;
2453d0927938SUlrich Hecht}
2454d0927938SUlrich HechtEOF
245578f5d726SJan Kiszkaif compile_prog "" "" ; then
2456d0927938SUlrich Hecht  dup3=yes
2457d0927938SUlrich Hechtfi
2458d0927938SUlrich Hecht
24593b6edd16SPeter Maydell# check for epoll support
24603b6edd16SPeter Maydellepoll=no
24613b6edd16SPeter Maydellcat > $TMPC << EOF
24623b6edd16SPeter Maydell#include <sys/epoll.h>
24633b6edd16SPeter Maydell
24643b6edd16SPeter Maydellint main(void)
24653b6edd16SPeter Maydell{
24663b6edd16SPeter Maydell    epoll_create(0);
24673b6edd16SPeter Maydell    return 0;
24683b6edd16SPeter Maydell}
24693b6edd16SPeter MaydellEOF
24708fb03151SPeter Maydellif compile_prog "" "" ; then
24713b6edd16SPeter Maydell  epoll=yes
24723b6edd16SPeter Maydellfi
24733b6edd16SPeter Maydell
24743b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions
24753b6edd16SPeter Maydell# so we must check separately for their presence
24763b6edd16SPeter Maydellepoll_create1=no
24773b6edd16SPeter Maydellcat > $TMPC << EOF
24783b6edd16SPeter Maydell#include <sys/epoll.h>
24793b6edd16SPeter Maydell
24803b6edd16SPeter Maydellint main(void)
24813b6edd16SPeter Maydell{
248219e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
248319e83f6bSPeter Maydell     * a function being called. This is necessary so that on
248419e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
248519e83f6bSPeter Maydell     * the library but not declared in the header file we will
248619e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
248719e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
248819e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
248919e83f6bSPeter Maydell     */
249084972cbbSStefan Weil    return epoll_create1 == epoll_create1;
24913b6edd16SPeter Maydell}
24923b6edd16SPeter MaydellEOF
24938fb03151SPeter Maydellif compile_prog "" "" ; then
24943b6edd16SPeter Maydell  epoll_create1=yes
24953b6edd16SPeter Maydellfi
24963b6edd16SPeter Maydell
24973b6edd16SPeter Maydellepoll_pwait=no
24983b6edd16SPeter Maydellcat > $TMPC << EOF
24993b6edd16SPeter Maydell#include <sys/epoll.h>
25003b6edd16SPeter Maydell
25013b6edd16SPeter Maydellint main(void)
25023b6edd16SPeter Maydell{
25033b6edd16SPeter Maydell    epoll_pwait(0, 0, 0, 0, 0);
25043b6edd16SPeter Maydell    return 0;
25053b6edd16SPeter Maydell}
25063b6edd16SPeter MaydellEOF
25078fb03151SPeter Maydellif compile_prog "" "" ; then
25083b6edd16SPeter Maydell  epoll_pwait=yes
25093b6edd16SPeter Maydellfi
25103b6edd16SPeter Maydell
2511cc8ae6deSpbrook# Check if tools are available to build documentation.
2512a25dba17SJuan Quintelaif test "$docs" != "no" ; then
251301668d98SStefan Weil  if has makeinfo && has pod2man; then
2514a25dba17SJuan Quintela    docs=yes
251583a3ab8bSJuan Quintela  else
2516a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
2517a25dba17SJuan Quintela      feature_not_found "docs"
251883a3ab8bSJuan Quintela    fi
2519a25dba17SJuan Quintela    docs=no
252083a3ab8bSJuan Quintela  fi
2521cc8ae6deSpbrookfi
2522cc8ae6deSpbrook
2523f514f41cSStefan Weil# Search for bswap_32 function
25246ae9a1f4SJuan Quintelabyteswap_h=no
25256ae9a1f4SJuan Quintelacat > $TMPC << EOF
25266ae9a1f4SJuan Quintela#include <byteswap.h>
25276ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
25286ae9a1f4SJuan QuintelaEOF
252952166aa0SJuan Quintelaif compile_prog "" "" ; then
25306ae9a1f4SJuan Quintela  byteswap_h=yes
25316ae9a1f4SJuan Quintelafi
25326ae9a1f4SJuan Quintela
2533f514f41cSStefan Weil# Search for bswap_32 function
25346ae9a1f4SJuan Quintelabswap_h=no
25356ae9a1f4SJuan Quintelacat > $TMPC << EOF
25366ae9a1f4SJuan Quintela#include <sys/endian.h>
25376ae9a1f4SJuan Quintela#include <sys/types.h>
25386ae9a1f4SJuan Quintela#include <machine/bswap.h>
25396ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
25406ae9a1f4SJuan QuintelaEOF
254152166aa0SJuan Quintelaif compile_prog "" "" ; then
25426ae9a1f4SJuan Quintela  bswap_h=yes
25436ae9a1f4SJuan Quintelafi
25446ae9a1f4SJuan Quintela
2545da93a1fdSaliguori##########################################
2546c589b249SRonnie Sahlberg# Do we have libiscsi
2547c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then
2548c589b249SRonnie Sahlberg  cat > $TMPC << EOF
2549c589b249SRonnie Sahlberg#include <iscsi/iscsi.h>
2550c589b249SRonnie Sahlbergint main(void) { iscsi_create_context(""); return 0; }
2551c589b249SRonnie SahlbergEOF
2552c589b249SRonnie Sahlberg  if compile_prog "-Werror" "-liscsi" ; then
2553c589b249SRonnie Sahlberg    libiscsi="yes"
2554c589b249SRonnie Sahlberg    LIBS="$LIBS -liscsi"
2555c589b249SRonnie Sahlberg  else
2556c589b249SRonnie Sahlberg    if test "$libiscsi" = "yes" ; then
2557c589b249SRonnie Sahlberg      feature_not_found "libiscsi"
2558c589b249SRonnie Sahlberg    fi
2559c589b249SRonnie Sahlberg    libiscsi="no"
2560c589b249SRonnie Sahlberg  fi
2561c589b249SRonnie Sahlbergfi
2562c589b249SRonnie Sahlberg
2563c589b249SRonnie Sahlberg
2564c589b249SRonnie Sahlberg##########################################
2565da93a1fdSaliguori# Do we need librt
2566da93a1fdSaliguoricat > $TMPC <<EOF
2567da93a1fdSaliguori#include <signal.h>
2568da93a1fdSaliguori#include <time.h>
256966ea0f22SStefan Weilint main(void) { return clock_gettime(CLOCK_REALTIME, NULL); }
2570da93a1fdSaliguoriEOF
2571da93a1fdSaliguori
257252166aa0SJuan Quintelaif compile_prog "" "" ; then
257307ffa4bdSJuan Quintela  :
257452166aa0SJuan Quintelaelif compile_prog "" "-lrt" ; then
257507ffa4bdSJuan Quintela  LIBS="-lrt $LIBS"
2576da93a1fdSaliguorifi
2577da93a1fdSaliguori
257831ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2579179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
25806362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
25816362a53fSJuan Quintelafi
25826362a53fSJuan Quintela
2583de5071c5SBlue Swirl##########################################
2584cd4ec0b4SGerd Hoffmann# spice probe
2585cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
2586cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
2587cd4ec0b4SGerd Hoffmann#include <spice.h>
2588cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
2589cd4ec0b4SGerd HoffmannEOF
2590710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2591710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
25924295e15aSAlon Levy  if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \
2593cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
2594cd4ec0b4SGerd Hoffmann    spice="yes"
2595cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
2596cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2597cd4ec0b4SGerd Hoffmann  else
2598cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
2599cd4ec0b4SGerd Hoffmann      feature_not_found "spice"
2600cd4ec0b4SGerd Hoffmann    fi
2601cd4ec0b4SGerd Hoffmann    spice="no"
2602cd4ec0b4SGerd Hoffmann  fi
2603cd4ec0b4SGerd Hoffmannfi
2604cd4ec0b4SGerd Hoffmann
2605111a38b0SRobert Relyea# check for libcacard for smartcard support
2606111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then
2607111a38b0SRobert Relyea    smartcard="yes"
2608111a38b0SRobert Relyea    smartcard_cflags=""
2609111a38b0SRobert Relyea    # TODO - what's the minimal nss version we support?
2610111a38b0SRobert Relyea    if test "$smartcard_nss" != "no"; then
26115f01e06fSSergei Trofimovich      cat > $TMPC << EOF
26125f01e06fSSergei Trofimovich#include <pk11pub.h>
26135f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; }
26145f01e06fSSergei TrofimovichEOF
2615111a38b0SRobert Relyea        smartcard_cflags="-I\$(SRC_PATH)/libcacard"
26168c741c22SAlon Levy        libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
26178c741c22SAlon Levy        libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
26185f01e06fSSergei Trofimovich        if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
26195f01e06fSSergei Trofimovich          compile_prog "$smartcard_cflags $libcacard_cflags" "$libcacard_libs"; then
26205f01e06fSSergei Trofimovich            smartcard_nss="yes"
2621111a38b0SRobert Relyea            QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
2622ad4cf3f6SPaul Brook            libs_softmmu="$libcacard_libs $libs_softmmu"
2623111a38b0SRobert Relyea        else
2624111a38b0SRobert Relyea            if test "$smartcard_nss" = "yes"; then
2625111a38b0SRobert Relyea                feature_not_found "nss"
2626111a38b0SRobert Relyea            fi
2627111a38b0SRobert Relyea            smartcard_nss="no"
2628111a38b0SRobert Relyea        fi
2629111a38b0SRobert Relyea    fi
2630111a38b0SRobert Relyeafi
2631111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then
2632111a38b0SRobert Relyea    smartcard_nss="no"
2633111a38b0SRobert Relyeafi
2634111a38b0SRobert Relyea
263569354a83SHans de Goede# check for usbredirparser for usb network redirection support
263669354a83SHans de Goedeif test "$usb_redir" != "no" ; then
2637097a66efSHans de Goede    if $pkg_config --atleast-version=0.3.4 libusbredirparser >/dev/null 2>&1 ; then
263869354a83SHans de Goede        usb_redir="yes"
263969354a83SHans de Goede        usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null)
264069354a83SHans de Goede        usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null)
264169354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
264269354a83SHans de Goede        LIBS="$LIBS $usb_redir_libs"
264369354a83SHans de Goede    else
264469354a83SHans de Goede        if test "$usb_redir" = "yes"; then
264569354a83SHans de Goede            feature_not_found "usb-redir"
264669354a83SHans de Goede        fi
264769354a83SHans de Goede        usb_redir="no"
264869354a83SHans de Goede    fi
264969354a83SHans de Goedefi
265069354a83SHans de Goede
2651cd4ec0b4SGerd Hoffmann##########################################
2652cd4ec0b4SGerd Hoffmann
2653747bbdf7SBlue Swirl##########################################
26545f6b9e8fSBlue Swirl# check if we have fdatasync
26555f6b9e8fSBlue Swirl
26565f6b9e8fSBlue Swirlfdatasync=no
26575f6b9e8fSBlue Swirlcat > $TMPC << EOF
26585f6b9e8fSBlue Swirl#include <unistd.h>
2659d1722a27SAlexandre Raymondint main(void) {
2660d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2661d1722a27SAlexandre Raymondreturn fdatasync(0);
2662d1722a27SAlexandre Raymond#else
2663e172fe11SStefan Weil#error Not supported
2664d1722a27SAlexandre Raymond#endif
2665d1722a27SAlexandre Raymond}
26665f6b9e8fSBlue SwirlEOF
26675f6b9e8fSBlue Swirlif compile_prog "" "" ; then
26685f6b9e8fSBlue Swirl    fdatasync=yes
26695f6b9e8fSBlue Swirlfi
26705f6b9e8fSBlue Swirl
267194a420b1SStefan Hajnoczi##########################################
2672e78815a5SAndreas Färber# check if we have madvise
2673e78815a5SAndreas Färber
2674e78815a5SAndreas Färbermadvise=no
2675e78815a5SAndreas Färbercat > $TMPC << EOF
2676e78815a5SAndreas Färber#include <sys/types.h>
2677e78815a5SAndreas Färber#include <sys/mman.h>
2678832ce9c2SScott Wood#include <stddef.h>
2679e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2680e78815a5SAndreas FärberEOF
2681e78815a5SAndreas Färberif compile_prog "" "" ; then
2682e78815a5SAndreas Färber    madvise=yes
2683e78815a5SAndreas Färberfi
2684e78815a5SAndreas Färber
2685e78815a5SAndreas Färber##########################################
2686e78815a5SAndreas Färber# check if we have posix_madvise
2687e78815a5SAndreas Färber
2688e78815a5SAndreas Färberposix_madvise=no
2689e78815a5SAndreas Färbercat > $TMPC << EOF
2690e78815a5SAndreas Färber#include <sys/mman.h>
2691832ce9c2SScott Wood#include <stddef.h>
2692e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2693e78815a5SAndreas FärberEOF
2694e78815a5SAndreas Färberif compile_prog "" "" ; then
2695e78815a5SAndreas Färber    posix_madvise=yes
2696e78815a5SAndreas Färberfi
2697e78815a5SAndreas Färber
2698e78815a5SAndreas Färber##########################################
269994a420b1SStefan Hajnoczi# check if trace backend exists
270094a420b1SStefan Hajnoczi
2701650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend  > /dev/null 2> /dev/null
270294a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
270394a420b1SStefan Hajnoczi  echo
270494a420b1SStefan Hajnoczi  echo "Error: invalid trace backend"
270594a420b1SStefan Hajnoczi  echo "Please choose a supported trace backend."
270694a420b1SStefan Hajnoczi  echo
270794a420b1SStefan Hajnoczi  exit 1
270894a420b1SStefan Hajnoczifi
270994a420b1SStefan Hajnoczi
27107e24e92aSStefan Hajnoczi##########################################
27117e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
27127e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then
27137e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
27147e24e92aSStefan Hajnoczi#include <ust/tracepoint.h>
27157e24e92aSStefan Hajnoczi#include <ust/marker.h>
27167e24e92aSStefan Hajnocziint main(void) { return 0; }
27177e24e92aSStefan HajnocziEOF
27187e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
271994b4fefaSLluís Vilanova    LIBS="-lust -lurcu-bp $LIBS"
2720c9a2e37cSLluís Vilanova    libs_qga="-lust -lurcu-bp $libs_qga"
27217e24e92aSStefan Hajnoczi  else
27227e24e92aSStefan Hajnoczi    echo
27237e24e92aSStefan Hajnoczi    echo "Error: Trace backend 'ust' missing libust header files"
27247e24e92aSStefan Hajnoczi    echo
27257e24e92aSStefan Hajnoczi    exit 1
27267e24e92aSStefan Hajnoczi  fi
27277e24e92aSStefan Hajnoczifi
2728b3d08c02SDaniel P. Berrange
2729b3d08c02SDaniel P. Berrange##########################################
2730b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
2731b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then
2732b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
2733b3d08c02SDaniel P. Berrange    echo
2734b3d08c02SDaniel P. Berrange    echo "Error: dtrace command is not found in PATH $PATH"
2735b3d08c02SDaniel P. Berrange    echo
2736b3d08c02SDaniel P. Berrange    exit 1
2737b3d08c02SDaniel P. Berrange  fi
2738c276b17dSDaniel P. Berrange  trace_backend_stap="no"
2739c276b17dSDaniel P. Berrange  if has 'stap' ; then
2740c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
2741c276b17dSDaniel P. Berrange  fi
2742b3d08c02SDaniel P. Berrangefi
2743b3d08c02SDaniel P. Berrange
27447e24e92aSStefan Hajnoczi##########################################
2745023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains
2746023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit
2747023367e6SWolfgang Mauerer# specification is necessary
27481ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then
2749023367e6SWolfgang Mauerer  cat > $TMPC << EOF
2750023367e6SWolfgang Mauererint sfaa(unsigned *ptr)
2751023367e6SWolfgang Mauerer{
2752023367e6SWolfgang Mauerer  return __sync_fetch_and_and(ptr, 0);
2753023367e6SWolfgang Mauerer}
2754023367e6SWolfgang Mauerer
2755023367e6SWolfgang Mauererint main(int argc, char **argv)
2756023367e6SWolfgang Mauerer{
2757023367e6SWolfgang Mauerer  int val = 42;
2758023367e6SWolfgang Mauerer  sfaa(&val);
2759023367e6SWolfgang Mauerer  return val;
2760023367e6SWolfgang Mauerer}
2761023367e6SWolfgang MauererEOF
2762023367e6SWolfgang Mauerer  if ! compile_prog "" "" ; then
2763023367e6SWolfgang Mauerer    CFLAGS+="-march=i486"
2764023367e6SWolfgang Mauerer  fi
2765023367e6SWolfgang Mauererfi
2766023367e6SWolfgang Mauerer
2767023367e6SWolfgang Mauerer##########################################
2768519175a2SAlex Barcelo# check and set a backend for coroutine
2769d0e2fce5SAneesh Kumar K.V
2770519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread
2771519175a2SAlex Barcelo# windows autodetected by make
2772519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then
2773d0e2fce5SAneesh Kumar K.V  if test "$darwin" != "yes"; then
2774d0e2fce5SAneesh Kumar K.V    cat > $TMPC << EOF
2775d0e2fce5SAneesh Kumar K.V#include <ucontext.h>
2776cdf84806SPeter Maydell#ifdef __stub_makecontext
2777cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail
2778cdf84806SPeter Maydell#endif
277975cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; }
2780d0e2fce5SAneesh Kumar K.VEOF
2781d0e2fce5SAneesh Kumar K.V    if compile_prog "" "" ; then
2782519175a2SAlex Barcelo        coroutine_backend=ucontext
2783519175a2SAlex Barcelo    else
2784519175a2SAlex Barcelo	coroutine_backend=gthread
2785d0e2fce5SAneesh Kumar K.V    fi
2786519175a2SAlex Barcelo  else
2787519175a2SAlex Barcelo    echo "Silently falling back into gthread backend under darwin"
2788519175a2SAlex Barcelo  fi
2789519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then
2790519175a2SAlex Barcelo  coroutine_backend=gthread
2791519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then
2792519175a2SAlex Barcelo  coroutine_backend=windows
2793fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then
2794fe91bfa8SAlex Barcelo  coroutine_backend=sigaltstack
2795519175a2SAlex Barceloelse
2796519175a2SAlex Barcelo  echo
2797519175a2SAlex Barcelo  echo "Error: unknown coroutine backend $coroutine"
2798519175a2SAlex Barcelo  echo
2799519175a2SAlex Barcelo  exit 1
2800d0e2fce5SAneesh Kumar K.Vfi
2801d0e2fce5SAneesh Kumar K.V
2802d0e2fce5SAneesh Kumar K.V##########################################
2803d2042378SAneesh Kumar K.V# check if we have open_by_handle_at
2804d2042378SAneesh Kumar K.V
2805d2042378SAneesh Kumar K.Vopen_by_hande_at=no
2806d2042378SAneesh Kumar K.Vcat > $TMPC << EOF
2807d2042378SAneesh Kumar K.V#include <fcntl.h>
280875cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
2809d2042378SAneesh Kumar K.VEOF
2810d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then
2811d2042378SAneesh Kumar K.V    open_by_handle_at=yes
2812d2042378SAneesh Kumar K.Vfi
2813d2042378SAneesh Kumar K.V
2814e06a765eSHarsh Prateek Bora########################################
2815e06a765eSHarsh Prateek Bora# check if we have linux/magic.h
2816e06a765eSHarsh Prateek Bora
2817e06a765eSHarsh Prateek Boralinux_magic_h=no
2818e06a765eSHarsh Prateek Boracat > $TMPC << EOF
2819e06a765eSHarsh Prateek Bora#include <linux/magic.h>
2820e06a765eSHarsh Prateek Boraint main(void) {
282175cafad7SStefan Weil  return 0;
2822e06a765eSHarsh Prateek Bora}
2823e06a765eSHarsh Prateek BoraEOF
2824e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then
2825e06a765eSHarsh Prateek Bora    linux_magic_h=yes
2826e06a765eSHarsh Prateek Borafi
2827e06a765eSHarsh Prateek Bora
2828d2042378SAneesh Kumar K.V##########################################
2829e86ecd4bSJuan Quintela# End of CC checks
2830e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
2831e86ecd4bSJuan Quintela
2832e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then
28331156c669SJuan Quintela  CFLAGS="-O2 $CFLAGS"
2834e86ecd4bSJuan Quintelafi
2835a316e378SJuan Quintela
2836e86ecd4bSJuan Quintela# Consult white-list to determine whether to enable werror
2837e86ecd4bSJuan Quintela# by default.  Only enable by default for git builds
2838e86ecd4bSJuan Quintelaz_version=`cut -f3 -d. $source_path/VERSION`
283920ff6c80SAnthony Liguori
284020ff6c80SAnthony Liguoriif test -z "$werror" ; then
2841e86ecd4bSJuan Quintela    if test "$z_version" = "50" -a \
2842e86ecd4bSJuan Quintela        "$linux" = "yes" ; then
2843e86ecd4bSJuan Quintela        werror="yes"
2844e86ecd4bSJuan Quintela    else
2845e86ecd4bSJuan Quintela        werror="no"
2846e86ecd4bSJuan Quintela    fi
2847e86ecd4bSJuan Quintelafi
2848e86ecd4bSJuan Quintela
284920ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to
285020ff6c80SAnthony Liguori# enable/disable
285120ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then
285220ff6c80SAnthony Liguori    if test "$z_version" = "50" ; then
285320ff6c80SAnthony Liguori	zero_malloc="no"
285420ff6c80SAnthony Liguori    else
285520ff6c80SAnthony Liguori	zero_malloc="yes"
285620ff6c80SAnthony Liguori    fi
285720ff6c80SAnthony Liguorifi
285820ff6c80SAnthony Liguori
2859e86ecd4bSJuan Quintelaif test "$werror" = "yes" ; then
2860a558ee17SJuan Quintela    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
2861e86ecd4bSJuan Quintelafi
2862e86ecd4bSJuan Quintela
2863e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
2864e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
28651156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
2866e86ecd4bSJuan Quintela    fi
2867e86ecd4bSJuan Quintelafi
2868e86ecd4bSJuan Quintela
286994dd53c5SGerd Hoffmann# test if pod2man has --utf8 option
287094dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then
287194dd53c5SGerd Hoffmann    POD2MAN="pod2man --utf8"
287294dd53c5SGerd Hoffmannelse
287394dd53c5SGerd Hoffmann    POD2MAN="pod2man"
287494dd53c5SGerd Hoffmannfi
287594dd53c5SGerd Hoffmann
2876952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
2877952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
2878952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
2879952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2880952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
2881952afb71SBlue Swirl        fi
2882952afb71SBlue Swirl    done
2883952afb71SBlue Swirlfi
2884952afb71SBlue Swirl
288510ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix
2886528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix
28875a67135aSbellard
2888ca35f780SPaolo Bonzinitools=
2889ca35f780SPaolo Bonziniif test "$softmmu" = yes ; then
2890ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2891983eef5aSMeador Inge  if test "$virtfs" != no ; then
2892983eef5aSMeador Inge      if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
2893983eef5aSMeador Inge	  virtfs=yes
289417bff52bSM. Mohan Kumar	  tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
2895983eef5aSMeador Inge      else
2896983eef5aSMeador Inge	  if test "$virtfs" = yes; then
2897983eef5aSMeador Inge	      feature_not_found "virtfs"
2898983eef5aSMeador Inge	  fi
2899983eef5aSMeador Inge      fi
290017bff52bSM. Mohan Kumar  fi
2901ca35f780SPaolo Bonzini  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2902ca35f780SPaolo Bonzini      tools="qemu-nbd\$(EXESUF) $tools"
2903d138cee9SMichael Roth    if [ "$guest_agent" = "yes" ]; then
290448ff7a62SMichael Roth      tools="qemu-ga\$(EXESUF) $tools"
2905d138cee9SMichael Roth    fi
2906ca35f780SPaolo Bonzini  fi
2907ca35f780SPaolo Bonzinifi
2908ca35f780SPaolo Bonzini
2909ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
2910ca35f780SPaolo Bonziniroms=
2911ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2912ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2913ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
2914ca35f780SPaolo Bonzini  roms="optionrom"
2915ca35f780SPaolo Bonzinifi
2916d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
291739ac8455SDavid Gibson  roms="$roms spapr-rtas"
291839ac8455SDavid Gibsonfi
2919ca35f780SPaolo Bonzini
29207d13299dSbellardecho "Install prefix    $prefix"
2921c00b2808SEduardo Habkostecho "BIOS directory    `eval echo $qemu_datadir`"
2922f2b9e1e3SPaolo Bonziniecho "binary directory  `eval echo $bindir`"
29233aa5d2beSAlon Levyecho "library directory `eval echo $libdir`"
29240f94d6daSAlon Levyecho "include directory `eval echo $includedir`"
29251c0fd160SAurelien Jarnoecho "config directory  `eval echo $sysconfdir`"
292611d9f695Sbellardif test "$mingw32" = "no" ; then
2927f2b9e1e3SPaolo Bonziniecho "Manual directory  `eval echo $mandir`"
292843ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
292911d9f695Sbellardfi
29305a67135aSbellardecho "Source path       $source_path"
29317d13299dSbellardecho "C compiler        $cc"
293283469015Sbellardecho "Host C compiler   $host_cc"
29330c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
2934a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
29350c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
29367d13299dSbellardecho "make              $make"
29376a882643Spbrookecho "install           $install"
2938c886edfbSBlue Swirlecho "python            $python"
2939e2d8830eSBradif test "$slirp" = "yes" ; then
2940e2d8830eSBrad    echo "smbd              $smbd"
2941e2d8830eSBradfi
2942a98fd896Sbellardecho "host CPU          $cpu"
2943de83cd02Sbellardecho "host big endian   $bigendian"
294497a847bcSbellardecho "target list       $target_list"
2945ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
2946b4475aa2SLuiz Capitulinoecho "Mon debug enabled $debug_mon"
29477d13299dSbellardecho "gprof enabled     $gprof"
294803b4fe7dSaliguoriecho "sparse enabled    $sparse"
29491625af87Saliguoriecho "strip binaries    $strip_opt"
295005c2a3e7Sbellardecho "profiler          $profiler"
295143ce4dfeSbellardecho "static build      $static"
295285aa5189Sbellardecho "-Werror enabled   $werror"
29535b0753e0Sbellardif test "$darwin" = "yes" ; then
29545b0753e0Sbellard    echo "Cocoa support     $cocoa"
29555b0753e0Sbellardfi
295697a847bcSbellardecho "SDL support       $sdl"
29574d3b6f6eSbalrogecho "curses support    $curses"
2958769ce76dSAlexander Grafecho "curl support      $curl"
295967b915a5Sbellardecho "mingw32 support   $mingw32"
29600c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
29610c58ac1cSmalcecho "Extra audio cards $audio_card_list"
2962eb852011SMarkus Armbrusterecho "Block whitelist   $block_drv_whitelist"
29638ff9cbf7Smalcecho "Mixer emulation   $mixemu"
2964983eef5aSMeador Ingeecho "VirtFS support    $virtfs"
2965821601eaSJes Sorensenecho "VNC support       $vnc"
2966821601eaSJes Sorensenif test "$vnc" = "yes" ; then
29678d5d2d4cSths    echo "VNC TLS support   $vnc_tls"
29682f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
29692f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
2970efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
2971bd023f95SCorentin Chary    echo "VNC thread        $vnc_thread"
2972821601eaSJes Sorensenfi
29733142255cSblueswir1if test -n "$sparc_cpu"; then
29743142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
29753142255cSblueswir1fi
2976e37630caSaliguoriecho "xen support       $xen"
29772e4d9fb1Saurel32echo "brlapi support    $brlapi"
2978a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
2979a25dba17SJuan Quintelaecho "Documentation     $docs"
2980c5937220Spbrook[ ! -z "$uname_release" ] && \
2981c5937220Spbrookecho "uname -r          $uname_release"
2982bd0c5661Spbrookecho "NPTL support      $nptl"
2983379f6698SPaul Brookecho "GUEST_BASE        $guest_base"
298440d6444eSAvi Kivityecho "PIE               $pie"
29858a16d273Sthsecho "vde support       $vde"
29865c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
2987758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
298877755340Sthsecho "Install blobs     $blobs"
2989b31a0277SJuan Quintelaecho "KVM support       $kvm"
29909195b2c2SStefan Weilecho "TCG interpreter   $tcg_interpreter"
2991f652e6afSaurel32echo "fdt support       $fdt"
2992ceb42de8Saliguoriecho "preadv support    $preadv"
29935f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
2994e78815a5SAndreas Färberecho "madvise           $madvise"
2995e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
2996ee682d27SStefan Weilecho "uuid support      $uuid"
299747e98658SCorey Bryantecho "libcap-ng support $cap_ng"
2998d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
299994a420b1SStefan Hajnocziecho "Trace backend     $trace_backend"
30009410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
3001cd4ec0b4SGerd Hoffmannecho "spice support     $spice"
3002f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
3003dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
3004111a38b0SRobert Relyeaecho "nss used          $smartcard_nss"
300569354a83SHans de Goedeecho "usb net redir     $usb_redir"
300620ff075bSMichael Walleecho "OpenGL support    $opengl"
3007c589b249SRonnie Sahlbergecho "libiscsi support  $libiscsi"
3008d138cee9SMichael Rothecho "build guest agent $guest_agent"
3009519175a2SAlex Barceloecho "coroutine backend $coroutine_backend"
301067b915a5Sbellard
30111ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then
301224b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
3013e8cd23deSbellardfi
301497a847bcSbellard
301598ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
30164bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld"
301797a847bcSbellard
301898ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
301998ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak
302098ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak
302198ec69acSJuan Quintelaecho >> $config_host_mak
302298ec69acSJuan Quintela
3023e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
302499d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
302599d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
30263aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
30270f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
302899d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
302999d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
303022d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak
30319afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak
30329afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak
30337b93fadfSCorey Bryantecho "libexecdir=\${prefix}/libexec" >> $config_host_mak
3034a7c36ee4SCorey Bryantecho "CONFIG_QEMU_HELPERDIR=\"$prefix/libexec\"" >> $config_host_mak
3035804edf29SJuan Quintela
303698ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
3037f8393946Saurel32if test "$debug_tcg" = "yes" ; then
30382358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
3039f8393946Saurel32fi
3040b4475aa2SLuiz Capitulinoif test "$debug_mon" = "yes" ; then
3041b4475aa2SLuiz Capitulino  echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
3042b4475aa2SLuiz Capitulinofi
3043f3d08ee6SPaul Brookif test "$debug" = "yes" ; then
30442358a494SJuan Quintela  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
3045f3d08ee6SPaul Brookfi
30461625af87Saliguoriif test "$strip_opt" = "yes" ; then
304752ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
30481625af87Saliguorifi
30497d13299dSbellardif test "$bigendian" = "yes" ; then
3050e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
305197a847bcSbellardfi
305267b915a5Sbellardif test "$mingw32" = "yes" ; then
305398ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
30549fe6de94SBlue Swirl  rc_version=`cat $source_path/VERSION`
30559fe6de94SBlue Swirl  version_major=${rc_version%%.*}
30569fe6de94SBlue Swirl  rc_version=${rc_version#*.}
30579fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
30589fe6de94SBlue Swirl  rc_version=${rc_version#*.}
30599fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
30609fe6de94SBlue Swirl  version_micro=0
30619fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
30629fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
3063210fa556Spbrookelse
306435f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
3065210fa556Spbrookfi
3066128ab2ffSblueswir1
3067dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
3068dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
3069dffcb71cSMark McLoughlinfi
3070dffcb71cSMark McLoughlin
307183fb7adfSbellardif test "$darwin" = "yes" ; then
307298ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
307383fb7adfSbellardfi
3074b29fe3edSmalc
3075b29fe3edSmalcif test "$aix" = "yes" ; then
307698ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
3077b29fe3edSmalcfi
3078b29fe3edSmalc
3079ec530c81Sbellardif test "$solaris" = "yes" ; then
308098ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
30812358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
30820475a5caSths  if test "$needs_libsunmath" = "yes" ; then
308375b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
30840475a5caSths  fi
3085ec530c81Sbellardfi
3086179cf400SAndreas Färberif test "$haiku" = "yes" ; then
3087179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
3088179cf400SAndreas Färberfi
308997a847bcSbellardif test "$static" = "yes" ; then
309098ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
309197a847bcSbellardfi
30921ba16968SStefan Weilif test "$profiler" = "yes" ; then
30932358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
309405c2a3e7Sbellardfi
3095c20709aaSbellardif test "$slirp" = "yes" ; then
309698ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
3097e2d8830eSBrad  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
3098f9728943SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
3099c20709aaSbellardfi
31008a16d273Sthsif test "$vde" = "yes" ; then
310198ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
31028a16d273Sthsfi
310347e98658SCorey Bryantif test "$cap_ng" = "yes" ; then
310447e98658SCorey Bryant  echo "CONFIG_LIBCAP=y" >> $config_host_mak
310547e98658SCorey Bryantfi
31060c58ac1cSmalcfor card in $audio_card_list; do
3107bb55b712SStefan Weil    def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'`
310898ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
31090c58ac1cSmalcdone
31102358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
31110c58ac1cSmalcfor drv in $audio_drv_list; do
3112bb55b712SStefan Weil    def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'`
311398ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
3114923e4521Smalc    if test "$drv" = "fmod"; then
31157aac6cb1SJuan Quintela        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
3116fb065187Sbellard    fi
31170c58ac1cSmalcdone
311867f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
311967f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
312067f86e8eSJuan Quintelafi
3121d5631638Smalcif test "$audio_win_int" = "yes" ; then
3122d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
3123d5631638Smalcfi
3124eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
31258ff9cbf7Smalcif test "$mixemu" = "yes" ; then
312698ec69acSJuan Quintela  echo "CONFIG_MIXEMU=y" >> $config_host_mak
31278ff9cbf7Smalcfi
3128821601eaSJes Sorensenif test "$vnc" = "yes" ; then
3129821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
3130821601eaSJes Sorensenfi
31318d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
313298ec69acSJuan Quintela  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
3133525061bfSJuan Quintela  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
31348d5d2d4cSthsfi
31352f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
313698ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
313760ddf533SJuan Quintela  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
31382f9606b3Saliguorifi
3139821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
31402f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
31412f6f5c7aSCorentin Chary  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
31422f6f5c7aSCorentin Charyfi
3143821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
3144efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
3145efe556adSCorentin Chary  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
3146efe556adSCorentin Charyfi
3147821601eaSJes Sorensenif test "$vnc_thread" = "yes" ; then
3148bd023f95SCorentin Chary  echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
3149bd023f95SCorentin Charyfi
315076655d6dSaliguoriif test "$fnmatch" = "yes" ; then
31512358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
315276655d6dSaliguorifi
3153ee682d27SStefan Weilif test "$uuid" = "yes" ; then
3154ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
3155ee682d27SStefan Weilfi
3156dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
3157dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
3158dce512deSChristoph Hellwigfi
3159b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
316098ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
31612358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
316298ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
316398ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
3164a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
316598ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
3166cc8ae6deSpbrookfi
31671ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
316898ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
31698ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
317049ecc3faSbellardfi
317149ecc3faSbellardif test "$cocoa" = "yes" ; then
317298ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
317349ecc3faSbellardfi
31744d3b6f6eSbalrogif test "$curses" = "yes" ; then
317598ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
3176ab4e5602SJan Kiszkafi
31773b3f24adSaurel32if test "$atfile" = "yes" ; then
31782358a494SJuan Quintela  echo "CONFIG_ATFILE=y" >> $config_host_mak
31793b3f24adSaurel32fi
3180ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
31812358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
3182ebc996f3SRiku Voipiofi
3183099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
31842358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
3185099d6b0fSRiku Voipiofi
318640ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
318740ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
318840ff6d7eSKevin Wolffi
31893ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
31902358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
31913ce34dfbSvibisreenivasanfi
3192c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
3193c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
3194c2882b96SRiku Voipiofi
3195d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
3196d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
3197d0927938SUlrich Hechtfi
3198c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
3199c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
3200c727f47dSPeter Maydellfi
3201dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
3202dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
3203dace20dcSPeter Maydellfi
3204d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
3205d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
3206d0927938SUlrich Hechtfi
32073b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
32083b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
32093b6edd16SPeter Maydellfi
32103b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
32113b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
32123b6edd16SPeter Maydellfi
32133b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then
32143b6edd16SPeter Maydell  echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
32153b6edd16SPeter Maydellfi
32163b3f24adSaurel32if test "$inotify" = "yes" ; then
32172358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
32183b3f24adSaurel32fi
3219c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
3220c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
3221c05c7a73SRiku Voipiofi
32226ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
32236ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
32246ae9a1f4SJuan Quintelafi
32256ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
32266ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
32276ae9a1f4SJuan Quintelafi
3228769ce76dSAlexander Grafif test "$curl" = "yes" ; then
322998ec69acSJuan Quintela  echo "CONFIG_CURL=y" >> $config_host_mak
3230b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
3231769ce76dSAlexander Graffi
32322e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
323398ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
32342e4d9fb1Saurel32fi
3235fb599c9aSbalrogif test "$bluez" = "yes" ; then
323698ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
3237ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
3238fb599c9aSbalrogfi
3239e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
3240e37630caSaliguoriif test "$xen" = "yes" ; then
32416dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
3242d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
3243e37630caSaliguorifi
32445c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
32455c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
32465c6c3a6cSChristoph Hellwigfi
3247758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
3248758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
3249758e8e38SVenkateswararao Jujjuri (JV)fi
32504f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then
32514f26f2b6SAvi Kivity  echo "CONFIG_LIBATTR=y" >> $config_host_mak
32524f26f2b6SAvi Kivityfi
3253983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then
3254758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_VIRTFS=y" >> $config_host_mak
3255758e8e38SVenkateswararao Jujjuri (JV)fi
325677755340Sthsif test "$blobs" = "yes" ; then
325798ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
325877755340Sthsfi
3259bf9298b9Saliguoriif test "$iovec" = "yes" ; then
32602358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
3261bf9298b9Saliguorifi
3262ceb42de8Saliguoriif test "$preadv" = "yes" ; then
32632358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
3264ceb42de8Saliguorifi
3265f652e6afSaurel32if test "$fdt" = "yes" ; then
32663f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
3267f652e6afSaurel32fi
3268dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
3269dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
3270dcc38d1cSMarcelo Tosattifi
32719195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
32729195b2c2SStefan Weil  echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
32739195b2c2SStefan Weilfi
32745f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
32755f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
32765f6b9e8fSBlue Swirlfi
3277e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
3278e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
3279e78815a5SAndreas Färberfi
3280e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
3281e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
3282e78815a5SAndreas Färberfi
328397a847bcSbellard
3284cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
3285cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
3286cd4ec0b4SGerd Hoffmannfi
3287cd4ec0b4SGerd Hoffmann
328836707144SAlon Levyif test "$smartcard" = "yes" ; then
328936707144SAlon Levy  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
329036707144SAlon Levyfi
329136707144SAlon Levy
3292111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
3293111a38b0SRobert Relyea  echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
3294ad4cf3f6SPaul Brook  echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3295ad4cf3f6SPaul Brook  echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3296111a38b0SRobert Relyeafi
3297111a38b0SRobert Relyea
329869354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
329969354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
330069354a83SHans de Goedefi
330169354a83SHans de Goede
330220ff075bSMichael Walleif test "$opengl" = "yes" ; then
330320ff075bSMichael Walle  echo "CONFIG_OPENGL=y" >> $config_host_mak
330420ff075bSMichael Wallefi
330520ff075bSMichael Walle
3306c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then
3307c589b249SRonnie Sahlberg  echo "CONFIG_LIBISCSI=y" >> $config_host_mak
3308c589b249SRonnie Sahlbergfi
3309c589b249SRonnie Sahlberg
331083fb7adfSbellard# XXX: suppress that
33117d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
33122358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
33137d3505c5Sbellardfi
33147d3505c5Sbellard
33152358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
3316c5937220Spbrook
331720ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then
331820ff6c80SAnthony Liguori  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
331920ff6c80SAnthony Liguorifi
3320f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
3321f27aaf4bSChristian Brunner  echo "CONFIG_RBD=y" >> $config_host_mak
3322f27aaf4bSChristian Brunnerfi
332320ff6c80SAnthony Liguori
3324519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then
3325d0e2fce5SAneesh Kumar K.V  echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak
3326fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then
3327fe91bfa8SAlex Barcelo  echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak
3328d0e2fce5SAneesh Kumar K.Vfi
3329d0e2fce5SAneesh Kumar K.V
3330d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then
3331d2042378SAneesh Kumar K.V  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
3332d2042378SAneesh Kumar K.Vfi
3333d2042378SAneesh Kumar K.V
3334e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then
3335e06a765eSHarsh Prateek Bora  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
3336e06a765eSHarsh Prateek Borafi
3337e06a765eSHarsh Prateek Bora
333868063649Sblueswir1# USB host support
333968063649Sblueswir1case "$usb" in
334068063649Sblueswir1linux)
334198ec69acSJuan Quintela  echo "HOST_USB=linux" >> $config_host_mak
334268063649Sblueswir1;;
334368063649Sblueswir1bsd)
334498ec69acSJuan Quintela  echo "HOST_USB=bsd" >> $config_host_mak
334568063649Sblueswir1;;
334668063649Sblueswir1*)
334798ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
334868063649Sblueswir1;;
334968063649Sblueswir1esac
335068063649Sblueswir1
3351e4858974SLluís# use default implementation for tracing backend-specific routines
3352e4858974SLluístrace_default=yes
335394a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak
33546d8a764eSLluísif test "$trace_backend" = "nop"; then
33556d8a764eSLluís  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
335622890ab5SPrerna Saxenafi
33579410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then
33586d8a764eSLluís  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
3359e4858974SLluís  trace_default=no
33606d8a764eSLluís  # Set the appropriate trace file.
3361953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
33629410b56cSPrerna Saxenafi
33636d8a764eSLluísif test "$trace_backend" = "stderr"; then
33646d8a764eSLluís  echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak
33659a82b6a5SLluís  trace_default=no
33666d8a764eSLluísfi
33676d8a764eSLluísif test "$trace_backend" = "ust"; then
33686d8a764eSLluís  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
33696d8a764eSLluísfi
33706d8a764eSLluísif test "$trace_backend" = "dtrace"; then
33716d8a764eSLluís  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
33726d8a764eSLluís  if test "$trace_backend_stap" = "yes" ; then
33736d8a764eSLluís    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
33746d8a764eSLluís  fi
3375c276b17dSDaniel P. Berrangefi
33769410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
3377e4858974SLluísif test "$trace_default" = "yes"; then
3378e4858974SLluís  echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak
3379e4858974SLluísfi
33809410b56cSPrerna Saxena
338198ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
338298ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
3383804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
3384804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
33851901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
33861901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
33871901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
3388c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
3389804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
33902b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
3391804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
3392804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
3393804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
3394804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
33959fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
339644dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak
3397e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
3398a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
3399f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
3400e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
3401e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
3402e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
3403e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
3404e39f0062SPaolo Bonzinifi
3405c81da56eSJuan Quintelaecho "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
3406e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
3407a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
3408a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak
340973da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
34103e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
3411804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
3412957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak
341394dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak
3414804edf29SJuan Quintela
34154bf6b55bSJuan Quintela# generate list of library paths for linker script
34164bf6b55bSJuan Quintela
34174bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
34184bf6b55bSJuan Quintela
34194bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then
34204bf6b55bSJuan Quintela  if cmp -s $config_host_ld ${config_host_ld}~ ; then
34214bf6b55bSJuan Quintela    mv ${config_host_ld}~ $config_host_ld
34224bf6b55bSJuan Quintela  else
34234bf6b55bSJuan Quintela    rm ${config_host_ld}~
34244bf6b55bSJuan Quintela  fi
34254bf6b55bSJuan Quintelafi
34264bf6b55bSJuan Quintela
34274d904533SBlue Swirlfor d in libdis libdis-user; do
34284d904533SBlue Swirl    mkdir -p $d
342911568d6dSPaolo Bonzini    symlink $source_path/Makefile.dis $d/Makefile
34304d904533SBlue Swirl    echo > $d/config.mak
34314d904533SBlue Swirldone
34324d904533SBlue Swirl
34336efd7517SPeter Maydell# use included Linux headers
34346efd7517SPeter Maydellif test "$linux" = "yes" ; then
34356efd7517SPeter Maydell  mkdir -p linux-headers
34366efd7517SPeter Maydell  case "$cpu" in
34376efd7517SPeter Maydell  i386|x86_64)
34386efd7517SPeter Maydell    symlink $source_path/linux-headers/asm-x86 linux-headers/asm
34396efd7517SPeter Maydell    ;;
34406efd7517SPeter Maydell  ppcemb|ppc|ppc64)
34416efd7517SPeter Maydell    symlink $source_path/linux-headers/asm-powerpc linux-headers/asm
34426efd7517SPeter Maydell    ;;
34436efd7517SPeter Maydell  s390x)
34446efd7517SPeter Maydell    symlink $source_path/linux-headers/asm-s390 linux-headers/asm
34456efd7517SPeter Maydell    ;;
34466efd7517SPeter Maydell  esac
34476efd7517SPeter Maydellfi
34486efd7517SPeter Maydell
344997a847bcSbellardfor target in $target_list; do
345097a847bcSbellardtarget_dir="$target"
345125be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
3452600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1`
345397a847bcSbellardtarget_bigendian="no"
34541f3d3c8fSJuan Quintela
3455ea2d6a39SJuan Quintelacase "$target_arch2" in
3456cfa550c6SMax Filippov  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
3457ea2d6a39SJuan Quintela  target_bigendian=yes
3458ea2d6a39SJuan Quintela  ;;
3459ea2d6a39SJuan Quintelaesac
346097a847bcSbellardtarget_softmmu="no"
3461997344f3Sbellardtarget_user_only="no"
3462831b7825Sthstarget_linux_user="no"
3463831b7825Sthstarget_darwin_user="no"
346484778508Sblueswir1target_bsd_user="no"
34659e407a85Spbrookcase "$target" in
3466600309b6SBlue Swirl  ${target_arch2}-softmmu)
34679e407a85Spbrook    target_softmmu="yes"
34689e407a85Spbrook    ;;
3469600309b6SBlue Swirl  ${target_arch2}-linux-user)
34709c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
34719c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Linux host"
34729c7a4202SBlue Swirl      exit 1
34739c7a4202SBlue Swirl    fi
34749e407a85Spbrook    target_user_only="yes"
34759e407a85Spbrook    target_linux_user="yes"
34769e407a85Spbrook    ;;
3477600309b6SBlue Swirl  ${target_arch2}-darwin-user)
34789c7a4202SBlue Swirl    if test "$darwin" != "yes" ; then
34799c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Darwin host"
34809c7a4202SBlue Swirl      exit 1
34819c7a4202SBlue Swirl    fi
34829e407a85Spbrook    target_user_only="yes"
3483831b7825Sths    target_darwin_user="yes"
34849e407a85Spbrook    ;;
3485600309b6SBlue Swirl  ${target_arch2}-bsd-user)
34869cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
34879c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a BSD host"
34889c7a4202SBlue Swirl      exit 1
34899c7a4202SBlue Swirl    fi
349084778508Sblueswir1    target_user_only="yes"
349184778508Sblueswir1    target_bsd_user="yes"
349284778508Sblueswir1    ;;
34939e407a85Spbrook  *)
34949e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
34959e407a85Spbrook    exit 1
34969e407a85Spbrook    ;;
34979e407a85Spbrookesac
3498831b7825Sths
349997a847bcSbellardmkdir -p $target_dir
3500158142c2Sbellardmkdir -p $target_dir/fpu
350157fec1feSbellardmkdir -p $target_dir/tcg
350259f2a787SGerd Hoffmannmkdir -p $target_dir/ide
3503f1ae32a1SGerd Hoffmannmkdir -p $target_dir/usb
3504353ac78dSAneesh Kumar K.Vmkdir -p $target_dir/9pfs
35053b9a6ee5SJan Kiszkamkdir -p $target_dir/kvm
350684778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
350769de927cSbellard  mkdir -p $target_dir/nwfpe
350869de927cSbellardfi
350911568d6dSPaolo Bonzinisymlink $source_path/Makefile.target $target_dir/Makefile
3510ec530c81Sbellard
351197a847bcSbellard
351225be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
351397a847bcSbellard
3514e5fe0c52Spbrookbflt="no"
3515bd0c5661Spbrooktarget_nptl="no"
3516600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
351756aebc89Spbrookgdb_xml_files=""
3518c2e3dee6SLaurent Viviertarget_short_alignment=2
3519c2e3dee6SLaurent Viviertarget_int_alignment=4
3520c2e3dee6SLaurent Viviertarget_long_alignment=4
3521c2e3dee6SLaurent Viviertarget_llong_alignment=8
3522de3a354aSMichael Walletarget_libs_softmmu=
35237ba1e619Saliguori
3524938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2"
35256acff7daSJuan QuintelaTARGET_BASE_ARCH=""
3526e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
3527e73aae67SJuan Quintela
3528600309b6SBlue Swirlcase "$target_arch2" in
35292408a527Saurel32  i386)
353071deff27SAurelien Jarno    target_phys_bits=64
35312408a527Saurel32  ;;
35322408a527Saurel32  x86_64)
35336acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
35341ad2134fSPaul Brook    target_phys_bits=64
3535c2e3dee6SLaurent Vivier    target_long_alignment=8
35362408a527Saurel32  ;;
35372408a527Saurel32  alpha)
35381ad2134fSPaul Brook    target_phys_bits=64
3539c2e3dee6SLaurent Vivier    target_long_alignment=8
3540a4b388ffSRichard Henderson    target_nptl="yes"
35412408a527Saurel32  ;;
35422408a527Saurel32  arm|armeb)
3543b498c8a0SJuan Quintela    TARGET_ARCH=arm
3544e5fe0c52Spbrook    bflt="yes"
3545bd0c5661Spbrook    target_nptl="yes"
354656aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
35471ad2134fSPaul Brook    target_phys_bits=32
3548c2e3dee6SLaurent Vivier    target_llong_alignment=4
3549412beee6SGrant Likely    target_libs_softmmu="$fdt_libs"
35502408a527Saurel32  ;;
35512408a527Saurel32  cris)
3552253bd7f8Sedgar_igl    target_nptl="yes"
35531ad2134fSPaul Brook    target_phys_bits=32
35542408a527Saurel32  ;;
3555613a22c9SMichael Walle  lm32)
3556613a22c9SMichael Walle    target_phys_bits=32
3557de3a354aSMichael Walle    target_libs_softmmu="$opengl_libs"
3558613a22c9SMichael Walle  ;;
35592408a527Saurel32  m68k)
35600938cda5Saurel32    bflt="yes"
356156aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
35621ad2134fSPaul Brook    target_phys_bits=32
3563c2e3dee6SLaurent Vivier    target_int_alignment=2
3564c2e3dee6SLaurent Vivier    target_long_alignment=2
3565c2e3dee6SLaurent Vivier    target_llong_alignment=2
35662408a527Saurel32  ;;
3567877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
3568877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
356972b675caSEdgar E. Iglesias    bflt="yes"
357072b675caSEdgar E. Iglesias    target_nptl="yes"
357172b675caSEdgar E. Iglesias    target_phys_bits=32
3572de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
357372b675caSEdgar E. Iglesias  ;;
35742408a527Saurel32  mips|mipsel)
3575b498c8a0SJuan Quintela    TARGET_ARCH=mips
357625be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
3577f04dc72fSPaul Brook    target_nptl="yes"
35781ad2134fSPaul Brook    target_phys_bits=64
35792408a527Saurel32  ;;
35802408a527Saurel32  mipsn32|mipsn32el)
3581b498c8a0SJuan Quintela    TARGET_ARCH=mipsn32
35826acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
358325be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
35841ad2134fSPaul Brook    target_phys_bits=64
35852408a527Saurel32  ;;
35862408a527Saurel32  mips64|mips64el)
3587b498c8a0SJuan Quintela    TARGET_ARCH=mips64
35886acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
358925be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
35901ad2134fSPaul Brook    target_phys_bits=64
3591c2e3dee6SLaurent Vivier    target_long_alignment=8
35922408a527Saurel32  ;;
35932408a527Saurel32  ppc)
3594c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
35958b242ebaSAlexander Graf    target_phys_bits=64
3596d6630708SNathan Froyd    target_nptl="yes"
3597de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
35982408a527Saurel32  ;;
35992408a527Saurel32  ppcemb)
36006acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3601e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3602c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
36031ad2134fSPaul Brook    target_phys_bits=64
3604d6630708SNathan Froyd    target_nptl="yes"
3605de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
36062408a527Saurel32  ;;
36072408a527Saurel32  ppc64)
36086acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3609e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3610c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
36111ad2134fSPaul Brook    target_phys_bits=64
3612c2e3dee6SLaurent Vivier    target_long_alignment=8
3613de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
36142408a527Saurel32  ;;
36152408a527Saurel32  ppc64abi32)
3616b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
36176acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3618e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
361925be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
3620c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
36211ad2134fSPaul Brook    target_phys_bits=64
3622de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
36232408a527Saurel32  ;;
36242408a527Saurel32  sh4|sh4eb)
3625b498c8a0SJuan Quintela    TARGET_ARCH=sh4
36264dbed897Spbrook    bflt="yes"
36270b6d3ae0Saurel32    target_nptl="yes"
36281ad2134fSPaul Brook    target_phys_bits=32
36292408a527Saurel32  ;;
36302408a527Saurel32  sparc)
36311ad2134fSPaul Brook    target_phys_bits=64
36322408a527Saurel32  ;;
36332408a527Saurel32  sparc64)
36346acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
36351ad2134fSPaul Brook    target_phys_bits=64
3636c2e3dee6SLaurent Vivier    target_long_alignment=8
36372408a527Saurel32  ;;
36382408a527Saurel32  sparc32plus)
3639b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
36406acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3641e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
364225be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
36431ad2134fSPaul Brook    target_phys_bits=64
36442408a527Saurel32  ;;
364524e804ecSAlexander Graf  s390x)
3646bc434676SUlrich Hecht    target_nptl="yes"
364724e804ecSAlexander Graf    target_phys_bits=64
36487b3da903SAlexander Graf    target_long_alignment=8
364924e804ecSAlexander Graf  ;;
3650d2fbca94SGuan Xuetao  unicore32)
3651d2fbca94SGuan Xuetao    target_phys_bits=32
3652d2fbca94SGuan Xuetao  ;;
3653cfa550c6SMax Filippov  xtensa|xtensaeb)
3654cfa550c6SMax Filippov    TARGET_ARCH=xtensa
3655cfa550c6SMax Filippov    target_phys_bits=32
3656cfa550c6SMax Filippov  ;;
36572408a527Saurel32  *)
3658de83cd02Sbellard    echo "Unsupported target CPU"
3659de83cd02Sbellard    exit 1
36602408a527Saurel32  ;;
36612408a527Saurel32esac
36620184e266SBlue Swirl
36630184e266SBlue Swirlcase "$target_arch2" in
3664c3082755SRichard Henderson  alpha | sparc*)
36650184e266SBlue Swirl    echo "CONFIG_TCG_PASS_AREG0=y" >> $config_target_mak
36660184e266SBlue Swirl  ;;
36670184e266SBlue Swirlesac
36680184e266SBlue Swirl
3669c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3670c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3671c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3672c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
367325be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
3674bb55b712SStefan Weiltarget_arch_name="`echo $TARGET_ARCH | LC_ALL=C tr '[a-z]' '[A-Z]'`"
367525be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
367625be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak
367742bc608bSJuan Quintela# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
36786acff7daSJuan Quintelaif [ "$TARGET_BASE_ARCH" = "" ]; then
36796acff7daSJuan Quintela  TARGET_BASE_ARCH=$TARGET_ARCH
36806acff7daSJuan Quintelafi
368125be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
3682e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
3683e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
3684e6e91b9cSJuan Quintelafi
368525be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
36861b0c87fcSJuan Quintelacase "$target_arch2" in
36871b0c87fcSJuan Quintela  i386|x86_64)
36881b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
368964b3cfdbSAnthony PERARD      target_phys_bits=64
369025be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
369159d21e53SAlexander Graf    else
369259d21e53SAlexander Graf      echo "CONFIG_NO_XEN=y" >> $config_target_mak
3693432d268cSJun Nakajima    fi
369459d21e53SAlexander Graf    ;;
369559d21e53SAlexander Graf  *)
369659d21e53SAlexander Graf    echo "CONFIG_NO_XEN=y" >> $config_target_mak
36971b0c87fcSJuan Quintelaesac
3698c59249f9SJuan Quintelacase "$target_arch2" in
36990e60a699SAlexander Graf  i386|x86_64|ppcemb|ppc|ppc64|s390x)
3700c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
3701c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3702c59249f9SJuan Quintela      \( "$target_arch2" = "$cpu" -o \
3703c59249f9SJuan Quintela      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
37045f114bc6SAlexander Graf      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
3705adf82011SRené Rebe      \( "$target_arch2" = "ppc"    -a "$cpu" = "ppc64" \) -o \
3706adf82011SRené Rebe      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
3707c59249f9SJuan Quintela      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
3708c59249f9SJuan Quintela      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
370925be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
37101ba16968SStefan Weil      if test "$vhost_net" = "yes" ; then
3711d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3712d5970055SMichael S. Tsirkin      fi
3713c59249f9SJuan Quintela    fi
3714c59249f9SJuan Quintelaesac
37157f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then
37160a6b8ddeSAlexander Graf  echo "CONFIG_PSERIES=y" >> $config_target_mak
37170a6b8ddeSAlexander Graffi
3718de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
371925be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
372097a847bcSbellardfi
372197a847bcSbellardif test "$target_softmmu" = "yes" ; then
3722b1aa27c4SPaul Brook  echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
372325be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3724de3a354aSMichael Walle  echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
37250e8c9214SAndreas Färber  echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
37265791f45bSKirill A. Shutemov  echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
3727ad4cf3f6SPaul Brook  if test "$smartcard_nss" = "yes" ; then
3728ad4cf3f6SPaul Brook    echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3729ad4cf3f6SPaul Brook  fi
3730de83cd02Sbellardfi
3731997344f3Sbellardif test "$target_user_only" = "yes" ; then
373225be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
3733a2c80be9SStefan Weil  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
3734997344f3Sbellardfi
3735831b7825Sthsif test "$target_linux_user" = "yes" ; then
373625be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
3737831b7825Sthsfi
3738831b7825Sthsif test "$target_darwin_user" = "yes" ; then
373925be210fSJuan Quintela  echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
3740831b7825Sthsfi
374156aebc89Spbrooklist=""
374256aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
374356aebc89Spbrook  for x in $gdb_xml_files; do
374456aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
374556aebc89Spbrook  done
374625be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
37473d0f1517SJuan Quintelafi
3748de83cd02Sbellard
3749e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
375025be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
3751e5fe0c52Spbrookfi
3752bd0c5661Spbrookif test "$target_user_only" = "yes" \
3753bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
375425be210fSJuan Quintela  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
3755bd0c5661Spbrookfi
3756379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
375725be210fSJuan Quintela  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
3758379f6698SPaul Brookfi
375984778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
376025be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
376184778508Sblueswir1fi
37625b0753e0Sbellard
37634afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
3764fa282484SJuan Quintela
37654afddb55SJuan Quintelacflags=""
3766f9728943SPaolo Bonziniincludes=""
3767fa282484SJuan Quintelaldflags=""
37689b8e111fSJuan Quintela
37699195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then
37709195b2c2SStefan Weil  includes="-I\$(SRC_PATH)/tcg/tci $includes"
37719195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then
3772f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/sparc $includes"
377324e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then
3774f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/s390 $includes"
37755d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then
3776f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/i386 $includes"
377757ddfbf7SJuan Quintelaelse
3778f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
377957ddfbf7SJuan Quintelafi
3780f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes"
378157ddfbf7SJuan Quintela
37826efd7517SPeter Maydellif test "$linux" = "yes" ; then
37836efd7517SPeter Maydell  includes="-I\$(SRC_PATH)/linux-headers $includes"
37846efd7517SPeter Maydellfi
37856efd7517SPeter Maydell
37864d904533SBlue Swirlif test "$target_user_only" = "yes" ; then
37874d904533SBlue Swirl    libdis_config_mak=libdis-user/config.mak
37884d904533SBlue Swirlelse
37894d904533SBlue Swirl    libdis_config_mak=libdis/config.mak
37904d904533SBlue Swirlfi
37914d904533SBlue Swirl
379264656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
379364656024SJuan Quintela  case "$i" in
379464656024SJuan Quintela  alpha)
379525be210fSJuan Quintela    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
37964d904533SBlue Swirl    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
379764656024SJuan Quintela  ;;
379864656024SJuan Quintela  arm)
379925be210fSJuan Quintela    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
38004d904533SBlue Swirl    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
380164656024SJuan Quintela  ;;
380264656024SJuan Quintela  cris)
380325be210fSJuan Quintela    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
38044d904533SBlue Swirl    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
380564656024SJuan Quintela  ;;
380664656024SJuan Quintela  hppa)
380725be210fSJuan Quintela    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
38084d904533SBlue Swirl    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
380964656024SJuan Quintela  ;;
381064656024SJuan Quintela  i386|x86_64)
381125be210fSJuan Quintela    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
38124d904533SBlue Swirl    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
381364656024SJuan Quintela  ;;
3814903ec55cSAurelien Jarno  ia64*)
3815903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
3816903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
3817903ec55cSAurelien Jarno  ;;
381879368f49SMichael Walle  lm32)
381979368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $config_target_mak
382079368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $libdis_config_mak
382179368f49SMichael Walle  ;;
382264656024SJuan Quintela  m68k)
382325be210fSJuan Quintela    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
38244d904533SBlue Swirl    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
382564656024SJuan Quintela  ;;
3826877fdc12SEdgar E. Iglesias  microblaze*)
382725be210fSJuan Quintela    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
38284d904533SBlue Swirl    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
382964656024SJuan Quintela  ;;
383064656024SJuan Quintela  mips*)
383125be210fSJuan Quintela    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
38324d904533SBlue Swirl    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
383364656024SJuan Quintela  ;;
383464656024SJuan Quintela  ppc*)
383525be210fSJuan Quintela    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
38364d904533SBlue Swirl    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
383764656024SJuan Quintela  ;;
383824e804ecSAlexander Graf  s390*)
383925be210fSJuan Quintela    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
38404d904533SBlue Swirl    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
384164656024SJuan Quintela  ;;
384264656024SJuan Quintela  sh4)
384325be210fSJuan Quintela    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
38444d904533SBlue Swirl    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
384564656024SJuan Quintela  ;;
384664656024SJuan Quintela  sparc*)
384725be210fSJuan Quintela    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
38484d904533SBlue Swirl    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
384964656024SJuan Quintela  ;;
3850cfa550c6SMax Filippov  xtensa*)
3851cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $config_target_mak
3852cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $libdis_config_mak
3853cfa550c6SMax Filippov  ;;
385464656024SJuan Quintela  esac
385564656024SJuan Quinteladone
38569195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
38579195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $config_target_mak
38589195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $libdis_config_mak
38599195b2c2SStefan Weilfi
386064656024SJuan Quintela
38616ee7126fSJuan Quintelacase "$ARCH" in
38626ee7126fSJuan Quintelaalpha)
38636ee7126fSJuan Quintela  # Ensure there's only a single GP
38646ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
38656ee7126fSJuan Quintela;;
38666ee7126fSJuan Quintelaesac
38676ee7126fSJuan Quintela
386855d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then
386955d9c04bSJuan Quintela  case "$TARGET_BASE_ARCH" in
387055d9c04bSJuan Quintela  arm)
387155d9c04bSJuan Quintela    cflags="-DHAS_AUDIO $cflags"
387255d9c04bSJuan Quintela  ;;
387325a8bb96SMichael Walle  lm32)
387425a8bb96SMichael Walle    cflags="-DHAS_AUDIO $cflags"
387525a8bb96SMichael Walle  ;;
387655d9c04bSJuan Quintela  i386|mips|ppc)
387755d9c04bSJuan Quintela    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
387855d9c04bSJuan Quintela  ;;
387955d9c04bSJuan Quintela  esac
388055d9c04bSJuan Quintelafi
388155d9c04bSJuan Quintela
3882471857ddSJuan Quintelaif test "$target_softmmu" = "yes" -a \( \
3883471857ddSJuan Quintela        "$TARGET_ARCH" = "microblaze" -o \
3884471857ddSJuan Quintela        "$TARGET_ARCH" = "cris" \) ; then
388525be210fSJuan Quintela  echo "CONFIG_NEED_MMU=y" >> $config_target_mak
3886471857ddSJuan Quintelafi
3887471857ddSJuan Quintela
3888d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
388925be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
3890d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
3891d02c1db3SJuan Quintela    cflags="-p $cflags"
3892d02c1db3SJuan Quintela    ldflags="-p $ldflags"
3893d02c1db3SJuan Quintela  fi
3894d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
3895d02c1db3SJuan Quintela    ldflags="-p $ldflags"
389625be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
3897d02c1db3SJuan Quintela  fi
3898d02c1db3SJuan Quintelafi
3899d02c1db3SJuan Quintela
39009195b2c2SStefan Weilif test "$ARCH" = "tci"; then
39019195b2c2SStefan Weil  linker_script=""
39029195b2c2SStefan Weilelse
39036ee7126fSJuan Quintela  linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
39049195b2c2SStefan Weilfi
39059195b2c2SStefan Weil
39069b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
3907fa282484SJuan Quintela  case "$ARCH" in
3908fa282484SJuan Quintela  sparc)
3909fa282484SJuan Quintela    # -static is used to avoid g1/g3 usage by the dynamic linker
3910322e5878SJuan Quintela    ldflags="$linker_script -static $ldflags"
3911fa282484SJuan Quintela    ;;
39124d58be06SRichard Henderson  alpha | s390x)
39134d58be06SRichard Henderson    # The default placement of the application is fine.
39144d58be06SRichard Henderson    ;;
3915fd76e73aSRichard Henderson  *)
3916322e5878SJuan Quintela    ldflags="$linker_script $ldflags"
3917fa282484SJuan Quintela    ;;
3918fa282484SJuan Quintela  esac
3919fa282484SJuan Quintelafi
3920fa282484SJuan Quintela
392125be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
392225be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
3923f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak
3924fa282484SJuan Quintela
392597a847bcSbellarddone # for target in $targets
39267d13299dSbellard
3927d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
3928927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32"
3929927b241dSMichael WalleDIRS="$DIRS slirp audio block net pc-bios/optionrom"
3930446b9165SAndreas FärberDIRS="$DIRS pc-bios/spapr-rtas"
39312d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
3932f1ae32a1SGerd HoffmannDIRS="$DIRS fsdev ui usb"
3933e098fc3fSMichael RothDIRS="$DIRS qapi qapi-generated"
39342f28d2ffSAnthony LiguoriDIRS="$DIRS qga trace qom"
3935c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
3936c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
3937927b241dSMichael WalleFILES="$FILES tests/tcg/lm32/Makefile"
3938ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
3939446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
39402d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
3941753d11f2SRichard Hendersonfor bios_file in \
3942753d11f2SRichard Henderson    $source_path/pc-bios/*.bin \
3943753d11f2SRichard Henderson    $source_path/pc-bios/*.rom \
3944753d11f2SRichard Henderson    $source_path/pc-bios/*.dtb \
3945753d11f2SRichard Henderson    $source_path/pc-bios/openbios-* \
3946753d11f2SRichard Henderson    $source_path/pc-bios/palcode-*
3947753d11f2SRichard Hendersondo
39487ea78b74SJan Kiszka    FILES="$FILES pc-bios/`basename $bios_file`"
39497ea78b74SJan Kiszkadone
3950d1807a4fSPaolo Bonzinimkdir -p $DIRS
39517d13299dSbellardfor f in $FILES ; do
3952f9245e10SPeter Maydell    if [ -e "$source_path/$f" ] && ! [ -e "$f" ]; then
3953f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
3954f9245e10SPeter Maydell    fi
39557d13299dSbellarddone
39561ad2134fSPaul Brook
3957c34ebfdcSAnthony Liguori# temporary config to build submodules
39582d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
3959c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
396037116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
3961c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3962c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
3963c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
3964c34ebfdcSAnthony Liguori    echo "CPP=${cross_prefix}cpp" >> $config_mak
3965c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
3966c34ebfdcSAnthony Liguori    echo "IASL=iasl" >> $config_mak
3967c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
3968c34ebfdcSAnthony Liguoridone
3969c34ebfdcSAnthony Liguori
39701ad2134fSPaul Brookfor hwlib in 32 64; do
39711ad2134fSPaul Brook  d=libhw$hwlib
39721ad2134fSPaul Brook  mkdir -p $d
39739953b2fcSBlue Swirl  mkdir -p $d/ide
3974f1ae32a1SGerd Hoffmann  mkdir -p $d/usb
397511568d6dSPaolo Bonzini  symlink $source_path/Makefile.hw $d/Makefile
3976353ac78dSAneesh Kumar K.V  mkdir -p $d/9pfs
397737116c89SStefan Weil  echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
39781ad2134fSPaul Brookdone
3979add16157SBlue Swirl
3980111a38b0SRobert Relyeaif [ "$source_path" != `pwd` ]; then
3981111a38b0SRobert Relyea    # out of tree build
3982111a38b0SRobert Relyea    mkdir -p libcacard
3983111a38b0SRobert Relyea    rm -f libcacard/Makefile
398444dc0ca3SAlon Levy    symlink "$source_path/libcacard/Makefile" libcacard/Makefile
3985111a38b0SRobert Relyeafi
3986111a38b0SRobert Relyea
3987add16157SBlue Swirld=libuser
3988add16157SBlue Swirlmkdir -p $d
3989937b1258SLluís Vilanovamkdir -p $d/trace
3990dd83b06aSAndreas Färbermkdir -p $d/qom
399111568d6dSPaolo Bonzinisymlink $source_path/Makefile.user $d/Makefile
3992b40292e7SJan Kiszka
3993b40292e7SJan Kiszkaif test "$docs" = "yes" ; then
3994b40292e7SJan Kiszka  mkdir -p QMP
3995b40292e7SJan Kiszkafi
3996