xref: /openbmc/qemu/configure (revision cbdd1999)
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
308dc38a78SPeter Maydelldo_cc() {
318dc38a78SPeter Maydell    # Run the compiler, capturing its output to the log.
328dc38a78SPeter Maydell    echo $cc "$@" >> config.log
338dc38a78SPeter Maydell    $cc "$@" >> config.log 2>&1 || return $?
348dc38a78SPeter Maydell    # Test passed. If this is an --enable-werror build, rerun
358dc38a78SPeter Maydell    # the test with -Werror and bail out if it fails. This
368dc38a78SPeter Maydell    # makes warning-generating-errors in configure test code
378dc38a78SPeter Maydell    # obvious to developers.
388dc38a78SPeter Maydell    if test "$werror" != "yes"; then
398dc38a78SPeter Maydell        return 0
408dc38a78SPeter Maydell    fi
418dc38a78SPeter Maydell    # Don't bother rerunning the compile if we were already using -Werror
428dc38a78SPeter Maydell    case "$*" in
438dc38a78SPeter Maydell        *-Werror*)
448dc38a78SPeter Maydell           return 0
458dc38a78SPeter Maydell        ;;
468dc38a78SPeter Maydell    esac
478dc38a78SPeter Maydell    echo $cc -Werror "$@" >> config.log
488dc38a78SPeter Maydell    $cc -Werror "$@" >> config.log 2>&1 && return $?
498dc38a78SPeter Maydell    echo "ERROR: configure test passed without -Werror but failed with -Werror."
508dc38a78SPeter Maydell    echo "This is probably a bug in the configure script. The failing command"
518dc38a78SPeter Maydell    echo "will be at the bottom of config.log."
528dc38a78SPeter Maydell    echo "You can run configure with --disable-werror to bypass this check."
538dc38a78SPeter Maydell    exit 1
548dc38a78SPeter Maydell}
558dc38a78SPeter Maydell
5652166aa0SJuan Quintelacompile_object() {
578dc38a78SPeter Maydell  do_cc $QEMU_CFLAGS -c -o $TMPO $TMPC
5852166aa0SJuan Quintela}
5952166aa0SJuan Quintela
6052166aa0SJuan Quintelacompile_prog() {
6152166aa0SJuan Quintela  local_cflags="$1"
6252166aa0SJuan Quintela  local_ldflags="$2"
638dc38a78SPeter Maydell  do_cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
6452166aa0SJuan Quintela}
6552166aa0SJuan Quintela
6611568d6dSPaolo Bonzini# symbolically link $1 to $2.  Portable version of "ln -sf".
6711568d6dSPaolo Bonzinisymlink() {
6872b8b5a1SStefan Weil  rm -rf "$2"
69ec5b06d7SAnthony Liguori  mkdir -p "$(dirname "$2")"
7072b8b5a1SStefan Weil  ln -s "$1" "$2"
7111568d6dSPaolo Bonzini}
7211568d6dSPaolo Bonzini
730dba6195SLoïc Minier# check whether a command is available to this shell (may be either an
740dba6195SLoïc Minier# executable or a builtin)
750dba6195SLoïc Minierhas() {
760dba6195SLoïc Minier    type "$1" >/dev/null 2>&1
770dba6195SLoïc Minier}
780dba6195SLoïc Minier
790dba6195SLoïc Minier# search for an executable in PATH
800dba6195SLoïc Minierpath_of() {
810dba6195SLoïc Minier    local_command="$1"
820dba6195SLoïc Minier    local_ifs="$IFS"
830dba6195SLoïc Minier    local_dir=""
840dba6195SLoïc Minier
850dba6195SLoïc Minier    # pathname has a dir component?
860dba6195SLoïc Minier    if [ "${local_command#*/}" != "$local_command" ]; then
870dba6195SLoïc Minier        if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
880dba6195SLoïc Minier            echo "$local_command"
890dba6195SLoïc Minier            return 0
900dba6195SLoïc Minier        fi
910dba6195SLoïc Minier    fi
920dba6195SLoïc Minier    if [ -z "$local_command" ]; then
930dba6195SLoïc Minier        return 1
940dba6195SLoïc Minier    fi
950dba6195SLoïc Minier
960dba6195SLoïc Minier    IFS=:
970dba6195SLoïc Minier    for local_dir in $PATH; do
980dba6195SLoïc Minier        if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
990dba6195SLoïc Minier            echo "$local_dir/$local_command"
1000dba6195SLoïc Minier            IFS="${local_ifs:-$(printf ' \t\n')}"
1010dba6195SLoïc Minier            return 0
1020dba6195SLoïc Minier        fi
1030dba6195SLoïc Minier    done
1040dba6195SLoïc Minier    # not found
1050dba6195SLoïc Minier    IFS="${local_ifs:-$(printf ' \t\n')}"
1060dba6195SLoïc Minier    return 1
1070dba6195SLoïc Minier}
1080dba6195SLoïc Minier
1097d13299dSbellard# default parameters
110ca4deeb1SPaolo Bonzinisource_path=`dirname "$0"`
1112ff6b91eSJuan Quintelacpu=""
1121e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M"
11343ce4dfeSbellardstatic="no"
1147d13299dSbellardcross_prefix=""
1150c58ac1cSmalcaudio_drv_list=""
11661dc008fSAnthony Liguoriaudio_card_list="ac97 es1370 sb16 hda"
11761dc008fSAnthony Liguoriaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda"
118eb852011SMarkus Armbrusterblock_drv_whitelist=""
1197d13299dSbellardhost_cc="gcc"
12073da375eSJuan Quintelalibs_softmmu=""
1213e2e0e6bSJuan Quintelalibs_tools=""
12267f86e8eSJuan Quintelaaudio_pt_int=""
123d5631638Smalcaudio_win_int=""
1242b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc
125957f1f99SMichael Rothlibs_qga=""
1265bc62e01SGerd Hoffmanndebug_info="yes"
127ac0df51dSaliguori
128afb63ebdSStefan Weil# Don't accept a target_list environment variable.
129afb63ebdSStefan Weilunset target_list
130377529c0SPaolo Bonzini
131377529c0SPaolo Bonzini# Default value for a variable defining feature "foo".
132377529c0SPaolo Bonzini#  * foo="no"  feature will only be used if --enable-foo arg is given
133377529c0SPaolo Bonzini#  * foo=""    feature will be searched for, and if found, will be used
134377529c0SPaolo Bonzini#              unless --disable-foo is given
135377529c0SPaolo Bonzini#  * foo="yes" this value will only be set by --enable-foo flag.
136377529c0SPaolo Bonzini#              feature will searched for,
137377529c0SPaolo Bonzini#              if not found, configure exits with error
138377529c0SPaolo Bonzini#
139377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args.
140377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it
141377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found.
142377529c0SPaolo Bonzini
143377529c0SPaolo Bonzinibluez=""
144377529c0SPaolo Bonzinibrlapi=""
145377529c0SPaolo Bonzinicurl=""
146377529c0SPaolo Bonzinicurses=""
147377529c0SPaolo Bonzinidocs=""
148377529c0SPaolo Bonzinifdt=""
149377529c0SPaolo Bonzininptl=""
150e2134eb9SGerd Hoffmannpixman=""
151377529c0SPaolo Bonzinisdl=""
152983eef5aSMeador Ingevirtfs=""
153821601eaSJes Sorensenvnc="yes"
154377529c0SPaolo Bonzinisparse="no"
155377529c0SPaolo Bonziniuuid=""
156377529c0SPaolo Bonzinivde=""
157377529c0SPaolo Bonzinivnc_tls=""
158377529c0SPaolo Bonzinivnc_sasl=""
159377529c0SPaolo Bonzinivnc_jpeg=""
160377529c0SPaolo Bonzinivnc_png=""
161377529c0SPaolo Bonzinixen=""
162d5b93ddfSAnthony PERARDxen_ctrl_version=""
163eb6fda0fSAnthony PERARDxen_pci_passthrough=""
164377529c0SPaolo Bonzinilinux_aio=""
16547e98658SCorey Bryantcap_ng=""
166377529c0SPaolo Bonziniattr=""
1674f26f2b6SAvi Kivitylibattr=""
168377529c0SPaolo Bonzinixfs=""
169377529c0SPaolo Bonzini
170d41a75a2SBradvhost_net="no"
171d41a75a2SBradkvm="no"
172377529c0SPaolo Bonzinigprof="no"
173377529c0SPaolo Bonzinidebug_tcg="no"
174377529c0SPaolo Bonzinidebug="no"
175377529c0SPaolo Bonzinistrip_opt="yes"
1769195b2c2SStefan Weiltcg_interpreter="no"
177377529c0SPaolo Bonzinibigendian="no"
178377529c0SPaolo Bonzinimingw32="no"
179377529c0SPaolo BonziniEXESUF=""
180377529c0SPaolo Bonziniprefix="/usr/local"
181377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
182528ae5b8SEduardo Habkostdatadir="\${prefix}/share"
183850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu"
184377529c0SPaolo Bonzinibindir="\${prefix}/bin"
1853aa5d2beSAlon Levylibdir="\${prefix}/lib"
1868bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec"
1870f94d6daSAlon Levyincludedir="\${prefix}/include"
188377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
189785c23aeSLuiz Capitulinolocal_statedir="\${prefix}/var"
190377529c0SPaolo Bonziniconfsuffix="/qemu"
191377529c0SPaolo Bonzinislirp="yes"
192377529c0SPaolo Bonzinifmod_lib=""
193377529c0SPaolo Bonzinifmod_inc=""
194377529c0SPaolo Bonzinioss_lib=""
195377529c0SPaolo Bonzinibsd="no"
196377529c0SPaolo Bonzinilinux="no"
197377529c0SPaolo Bonzinisolaris="no"
198377529c0SPaolo Bonziniprofiler="no"
199377529c0SPaolo Bonzinicocoa="no"
200377529c0SPaolo Bonzinisoftmmu="yes"
201377529c0SPaolo Bonzinilinux_user="no"
202377529c0SPaolo Bonzinibsd_user="no"
20330163d89SPeter Maydellguest_base="yes"
204377529c0SPaolo Bonziniuname_release=""
205377529c0SPaolo Bonzinimixemu="no"
206377529c0SPaolo Bonziniaix="no"
207377529c0SPaolo Bonziniblobs="yes"
208377529c0SPaolo Bonzinipkgversion=""
20940d6444eSAvi Kivitypie=""
210377529c0SPaolo Bonzinizero_malloc=""
211377529c0SPaolo Bonzinitrace_backend="nop"
212377529c0SPaolo Bonzinitrace_file="trace"
213377529c0SPaolo Bonzinispice=""
214377529c0SPaolo Bonzinirbd=""
21536707144SAlon Levysmartcard=""
216111a38b0SRobert Relyeasmartcard_nss=""
21769354a83SHans de Goedeusb_redir=""
218430a3c18SMichael Walleopengl=""
2191ece9905SAlon Levyzlib="yes"
220d138cee9SMichael Rothguest_agent="yes"
2214b1c11fdSDaniel P. Berrangewant_tools="yes"
222c589b249SRonnie Sahlberglibiscsi=""
223519175a2SAlex Barcelocoroutine=""
224f794573eSEduardo Otuboseccomp=""
225eb100396SBharata B Raoglusterfs=""
226377529c0SPaolo Bonzini
227ac0df51dSaliguori# parse CC options first
228ac0df51dSaliguorifor opt do
229ac0df51dSaliguori  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
230ac0df51dSaliguori  case "$opt" in
231ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
232ac0df51dSaliguori  ;;
2333d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
234ac0df51dSaliguori  ;;
235ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
236ca4deeb1SPaolo Bonzini  ;;
2372ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
2382ff6b91eSJuan Quintela  ;;
239a558ee17SJuan Quintela  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
240e2a2ed06SJuan Quintela  ;;
241e2a2ed06SJuan Quintela  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
242e2a2ed06SJuan Quintela  ;;
2435bc62e01SGerd Hoffmann  --enable-debug-info) debug_info="yes"
2445bc62e01SGerd Hoffmann  ;;
2455bc62e01SGerd Hoffmann  --disable-debug-info) debug_info="no"
2465bc62e01SGerd Hoffmann  ;;
247ac0df51dSaliguori  esac
248ac0df51dSaliguoridone
249ac0df51dSaliguori# OS specific
250ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
25193148aa5SStefan Weil# we can eliminate its usage altogether.
252ac0df51dSaliguori
253b3198cc2SStuart Yodercc="${CC-${cross_prefix}gcc}"
254b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}"
255b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}"
256b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}"
2573f534581SBradlibtool="${LIBTOOL-${cross_prefix}libtool}"
258b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}"
259b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}"
26017884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
26117884d7bSSergei Trofimovichquery_pkg_config() {
26217884d7bSSergei Trofimovich    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
26317884d7bSSergei Trofimovich}
26417884d7bSSergei Trofimovichpkg_config=query_pkg_config
265b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
266ac0df51dSaliguori
267be17dc90SMichael S. Tsirkin# default flags for all hosts
268be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
269f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
270be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
271be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
272cbbab922SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu"
2735bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then
2745bc62e01SGerd Hoffmann    CFLAGS="-g $CFLAGS"
275be17dc90SMichael S. Tsirkin    LDFLAGS="-g $LDFLAGS"
2765bc62e01SGerd Hoffmannfi
277be17dc90SMichael S. Tsirkin
278ca4deeb1SPaolo Bonzini# make source path absolute
279ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd`
280ca4deeb1SPaolo Bonzini
281ac0df51dSaliguoricheck_define() {
282ac0df51dSaliguoricat > $TMPC <<EOF
283ac0df51dSaliguori#if !defined($1)
284fd786e1aSPeter Maydell#error $1 not defined
285ac0df51dSaliguori#endif
286ac0df51dSaliguoriint main(void) { return 0; }
287ac0df51dSaliguoriEOF
28852166aa0SJuan Quintela  compile_object
289ac0df51dSaliguori}
290ac0df51dSaliguori
291bbea4050SPeter Maydellif check_define __linux__ ; then
292bbea4050SPeter Maydell  targetos="Linux"
293bbea4050SPeter Maydellelif check_define _WIN32 ; then
294bbea4050SPeter Maydell  targetos='MINGW32'
295bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then
296bbea4050SPeter Maydell  targetos='OpenBSD'
297bbea4050SPeter Maydellelif check_define __sun__ ; then
298bbea4050SPeter Maydell  targetos='SunOS'
299bbea4050SPeter Maydellelif check_define __HAIKU__ ; then
300bbea4050SPeter Maydell  targetos='Haiku'
301bbea4050SPeter Maydellelse
302bbea4050SPeter Maydell  targetos=`uname -s`
303bbea4050SPeter Maydellfi
304bbea4050SPeter Maydell
305bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use.
306bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're
307bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify
308bbea4050SPeter Maydell# the correct CPU with the --cpu option.
309bbea4050SPeter Maydellcase $targetos in
310bbea4050SPeter MaydellDarwin)
311bbea4050SPeter Maydell  # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
312bbea4050SPeter Maydell  # run 64-bit userspace code.
313bbea4050SPeter Maydell  # If the user didn't specify a CPU explicitly and the kernel says this is
314bbea4050SPeter Maydell  # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
315bbea4050SPeter Maydell  if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
316bbea4050SPeter Maydell    cpu="x86_64"
317bbea4050SPeter Maydell  fi
318bbea4050SPeter Maydell  ;;
319bbea4050SPeter MaydellSunOS)
320bbea4050SPeter Maydell  # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
321bbea4050SPeter Maydell  if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
322bbea4050SPeter Maydell    cpu="x86_64"
323bbea4050SPeter Maydell  fi
324bbea4050SPeter Maydellesac
325bbea4050SPeter Maydell
3262ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
3272ff6b91eSJuan Quintela  # command line argument
3282ff6b91eSJuan Quintela  :
3292ff6b91eSJuan Quintelaelif check_define __i386__ ; then
330ac0df51dSaliguori  cpu="i386"
331ac0df51dSaliguorielif check_define __x86_64__ ; then
332ac0df51dSaliguori  cpu="x86_64"
3333aa9bd6cSblueswir1elif check_define __sparc__ ; then
3343aa9bd6cSblueswir1  if check_define __arch64__ ; then
3353aa9bd6cSblueswir1    cpu="sparc64"
3363aa9bd6cSblueswir1  else
3373aa9bd6cSblueswir1    cpu="sparc"
3383aa9bd6cSblueswir1  fi
339fdf7ed96Smalcelif check_define _ARCH_PPC ; then
340fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
341fdf7ed96Smalc    cpu="ppc64"
342ac0df51dSaliguori  else
343fdf7ed96Smalc    cpu="ppc"
344fdf7ed96Smalc  fi
345afa05235SAurelien Jarnoelif check_define __mips__ ; then
346afa05235SAurelien Jarno  cpu="mips"
347477ba620SAurelien Jarnoelif check_define __ia64__ ; then
348477ba620SAurelien Jarno  cpu="ia64"
349d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
350d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
351d66ed0eaSAurelien Jarno    cpu="s390x"
352d66ed0eaSAurelien Jarno  else
353d66ed0eaSAurelien Jarno    cpu="s390"
354d66ed0eaSAurelien Jarno  fi
35521d89f84SPeter Maydellelif check_define __arm__ ; then
35621d89f84SPeter Maydell  cpu="arm"
357f28ffed5SBradelif check_define __hppa__ ; then
358f28ffed5SBrad  cpu="hppa"
359fdf7ed96Smalcelse
360fdf7ed96Smalc  cpu=`uname -m`
361ac0df51dSaliguorifi
362ac0df51dSaliguori
363359bc95dSPeter MaydellARCH=
364359bc95dSPeter Maydell# Normalise host CPU name and set ARCH.
365359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests.
3667d13299dSbellardcase "$cpu" in
367359bc95dSPeter Maydell  ia64|ppc|ppc64|s390|s390x|sparc64)
368ea8f20f8SJuan Quintela    cpu="$cpu"
369ea8f20f8SJuan Quintela  ;;
3707d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
37197a847bcSbellard    cpu="i386"
3727d13299dSbellard  ;;
373aaa5fa14Saurel32  x86_64|amd64)
374aaa5fa14Saurel32    cpu="x86_64"
375aaa5fa14Saurel32  ;;
37621d89f84SPeter Maydell  armv*b|armv*l|arm)
37721d89f84SPeter Maydell    cpu="arm"
3787d13299dSbellard  ;;
379f28ffed5SBrad  hppa|parisc|parisc64)
380f54b3f92Saurel32    cpu="hppa"
381f54b3f92Saurel32  ;;
382afa05235SAurelien Jarno  mips*)
383afa05235SAurelien Jarno    cpu="mips"
384afa05235SAurelien Jarno  ;;
3853142255cSblueswir1  sparc|sun4[cdmuv])
386ae228531Sbellard    cpu="sparc"
387ae228531Sbellard  ;;
3887d13299dSbellard  *)
389359bc95dSPeter Maydell    # This will result in either an error or falling back to TCI later
390359bc95dSPeter Maydell    ARCH=unknown
3917d13299dSbellard  ;;
3927d13299dSbellardesac
393359bc95dSPeter Maydellif test -z "$ARCH"; then
394359bc95dSPeter Maydell  ARCH="$cpu"
395359bc95dSPeter Maydellfi
396e2d52ad3SJuan Quintela
3977d13299dSbellard# OS specific
3980dbfc675SJuan Quintela
3997d13299dSbellardcase $targetos in
400c326e0afSbellardCYGWIN*)
401c326e0afSbellard  mingw32="yes"
402a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
403d5631638Smalc  audio_possible_drivers="winwave sdl"
404d5631638Smalc  audio_drv_list="winwave"
405c326e0afSbellard;;
40667b915a5SbellardMINGW32*)
40767b915a5Sbellard  mingw32="yes"
408d5631638Smalc  audio_possible_drivers="winwave dsound sdl fmod"
409d5631638Smalc  audio_drv_list="winwave"
41067b915a5Sbellard;;
4115c40d2bdSthsGNU/kFreeBSD)
412a167ba50SAurelien Jarno  bsd="yes"
4130c58ac1cSmalc  audio_drv_list="oss"
414f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
4155c40d2bdSths;;
4167d3505c5SbellardFreeBSD)
4177d3505c5Sbellard  bsd="yes"
4180db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4190c58ac1cSmalc  audio_drv_list="oss"
420f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
421f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
422f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
4237d3505c5Sbellard;;
424c5e97233Sblueswir1DragonFly)
425c5e97233Sblueswir1  bsd="yes"
4260db4a067SPaolo Bonzini  make="${MAKE-gmake}"
427c5e97233Sblueswir1  audio_drv_list="oss"
428c5e97233Sblueswir1  audio_possible_drivers="oss sdl esd pa"
429c5e97233Sblueswir1;;
4307d3505c5SbellardNetBSD)
4317d3505c5Sbellard  bsd="yes"
4320db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4330c58ac1cSmalc  audio_drv_list="oss"
434c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4358ef92a88Sblueswir1  oss_lib="-lossaudio"
4367d3505c5Sbellard;;
4377d3505c5SbellardOpenBSD)
4387d3505c5Sbellard  bsd="yes"
4390db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4400c58ac1cSmalc  audio_drv_list="oss"
441c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4422f6a1ab0Sblueswir1  oss_lib="-lossaudio"
4437d3505c5Sbellard;;
44483fb7adfSbellardDarwin)
44583fb7adfSbellard  bsd="yes"
44683fb7adfSbellard  darwin="yes"
4471b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
448a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
4490c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
4501b0f9cc2Saliguori  else
451a558ee17SJuan Quintela    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
4521b0f9cc2Saliguori  fi
453fd677642Sths  cocoa="yes"
4540c58ac1cSmalc  audio_drv_list="coreaudio"
455c2de5c91Smalc  audio_possible_drivers="coreaudio sdl fmod"
4560c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
4577973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
458a0b7cf6bSPeter Maydell  # Disable attempts to use ObjectiveC features in os/object.h since they
459a0b7cf6bSPeter Maydell  # won't work when we're compiling with gcc as a C compiler.
460a0b7cf6bSPeter Maydell  QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
46183fb7adfSbellard;;
462ec530c81SbellardSunOS)
463ec530c81Sbellard  solaris="yes"
4640db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4650db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
466fa58948dSBlue Swirl  ld="gld"
467e2d8830eSBrad  smbd="${SMBD-/usr/sfw/sbin/smbd}"
4680475a5caSths  needs_libsunmath="no"
469c2b84fabSths  solarisrev=`uname -r | cut -f2 -d.`
470c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
4710475a5caSths    if test "$solarisrev" -le 9 ; then
4720475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
4730475a5caSths        needs_libsunmath="yes"
474f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
475f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
476f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
4770475a5caSths      else
4780475a5caSths        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
4790475a5caSths        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
4800475a5caSths        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
4810475a5caSths        echo "Studio 11 can be downloaded from www.sun.com."
4820475a5caSths        exit 1
4830475a5caSths      fi
4840475a5caSths    fi
48586b2bd93Sths  fi
4866b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
4870c58ac1cSmalc    audio_drv_list="oss"
4886b4d2ba1Sths  fi
489c2de5c91Smalc  audio_possible_drivers="oss sdl"
490d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
491d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
492d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
493d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
494a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
495560d375fSAndreas Färber  solarisnetlibs="-lsocket -lnsl -lresolv"
496560d375fSAndreas Färber  LIBS="$solarisnetlibs $LIBS"
497560d375fSAndreas Färber  libs_qga="$solarisnetlibs $libs_qga"
498ec530c81Sbellard;;
499b29fe3edSmalcAIX)
500b29fe3edSmalc  aix="yes"
5010db4a067SPaolo Bonzini  make="${MAKE-gmake}"
502b29fe3edSmalc;;
503179cf400SAndreas FärberHaiku)
504179cf400SAndreas Färber  haiku="yes"
505179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
506179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
507179cf400SAndreas Färber;;
508fb065187Sbellard*)
5090c58ac1cSmalc  audio_drv_list="oss"
510b8e59f18Smalc  audio_possible_drivers="oss alsa sdl esd pa"
5115327cf48Sbellard  linux="yes"
512831b7825Sths  linux_user="yes"
51368063649Sblueswir1  usb="linux"
514af2be207SJan Kiszka  kvm="yes"
515af2be207SJan Kiszka  vhost_net="yes"
51607f4ddbfSbellard  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
517c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
518c9ec1fe4Sbellard  fi
519fb065187Sbellard;;
5207d13299dSbellardesac
5217d13299dSbellard
5227d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
523b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
52468063649Sblueswir1    usb="bsd"
52584778508Sblueswir1    bsd_user="yes"
5267d3505c5Sbellard  fi
52708de3949SAndreas Färberfi
5287d3505c5Sbellard
5290db4a067SPaolo Bonzini: ${make=${MAKE-make}}
5300db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
531c886edfbSBlue Swirl: ${python=${PYTHON-python}}
532e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}}
5330db4a067SPaolo Bonzini
5343c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC
5353c4a4d0dSPeter Maydellif has clang; then
5363c4a4d0dSPeter Maydell  objcc=clang
5373c4a4d0dSPeter Maydellelse
5383c4a4d0dSPeter Maydell  objcc="$cc"
5393c4a4d0dSPeter Maydellfi
5403c4a4d0dSPeter Maydell
5413457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
5423457a3f8SJuan Quintela  EXESUF=".exe"
543a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
544e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
545e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
546f7cf5d5bSStefan Weil  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
547f7cf5d5bSStefan Weilcat > $TMPC << EOF
548f7cf5d5bSStefan Weilint main(void) { return 0; }
549f7cf5d5bSStefan WeilEOF
550f7cf5d5bSStefan Weil  if compile_prog "" "-liberty" ; then
551f7cf5d5bSStefan Weil    LIBS="-liberty $LIBS"
552f7cf5d5bSStefan Weil  fi
553c5ec15eaSStefan Weil  prefix="c:/Program Files/QEMU"
554683035deSPaolo Bonzini  mandir="\${prefix}"
555528ae5b8SEduardo Habkost  datadir="\${prefix}"
556850da188SEduardo Habkost  qemu_docdir="\${prefix}"
557683035deSPaolo Bonzini  bindir="\${prefix}"
558683035deSPaolo Bonzini  sysconfdir="\${prefix}"
559785c23aeSLuiz Capitulino  local_statedir="\${prefix}"
560683035deSPaolo Bonzini  confsuffix=""
561368542b8SStefan Hajnoczi  libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga"
5623457a3f8SJuan Quintelafi
5633457a3f8SJuan Quintela
564487fefdbSAnthony Liguoriwerror=""
56585aa5189Sbellard
5667d13299dSbellardfor opt do
567a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
5687d13299dSbellard  case "$opt" in
5692efc3265Sbellard  --help|-h) show_help=yes
5702efc3265Sbellard  ;;
57199123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
57299123e13SMike Frysinger  ;;
573b1a550a0Spbrook  --prefix=*) prefix="$optarg"
5747d13299dSbellard  ;;
575b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
57632ce6337Sbellard  ;;
577ca4deeb1SPaolo Bonzini  --source-path=*)
5787d13299dSbellard  ;;
579ac0df51dSaliguori  --cross-prefix=*)
5807d13299dSbellard  ;;
581ac0df51dSaliguori  --cc=*)
5827d13299dSbellard  ;;
583b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
58483469015Sbellard  ;;
5853c4a4d0dSPeter Maydell  --objcc=*) objcc="$optarg"
5863c4a4d0dSPeter Maydell  ;;
587b1a550a0Spbrook  --make=*) make="$optarg"
5887d13299dSbellard  ;;
5896a882643Spbrook  --install=*) install="$optarg"
5906a882643Spbrook  ;;
591c886edfbSBlue Swirl  --python=*) python="$optarg"
592c886edfbSBlue Swirl  ;;
593e2d8830eSBrad  --smbd=*) smbd="$optarg"
594e2d8830eSBrad  ;;
595e2a2ed06SJuan Quintela  --extra-cflags=*)
5967d13299dSbellard  ;;
597e2a2ed06SJuan Quintela  --extra-ldflags=*)
5987d13299dSbellard  ;;
5995bc62e01SGerd Hoffmann  --enable-debug-info)
6005bc62e01SGerd Hoffmann  ;;
6015bc62e01SGerd Hoffmann  --disable-debug-info)
6025bc62e01SGerd Hoffmann  ;;
6032ff6b91eSJuan Quintela  --cpu=*)
6047d13299dSbellard  ;;
605b1a550a0Spbrook  --target-list=*) target_list="$optarg"
606de83cd02Sbellard  ;;
60774242e0fSPaolo Bonzini  --enable-trace-backend=*) trace_backend="$optarg"
60894a420b1SStefan Hajnoczi  ;;
60974242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
6109410b56cSPrerna Saxena  ;;
6117d13299dSbellard  --enable-gprof) gprof="yes"
6127d13299dSbellard  ;;
61379427693SLoïc Minier  --static)
61479427693SLoïc Minier    static="yes"
61579427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
61617884d7bSSergei Trofimovich    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
61743ce4dfeSbellard  ;;
6180b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
6190b24e75fSPaolo Bonzini  ;;
6200b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
6210b24e75fSPaolo Bonzini  ;;
6223aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
6233aa5d2beSAlon Levy  ;;
6248bf188aaSMichael Tokarev  --libexecdir=*) libexecdir="$optarg"
6258bf188aaSMichael Tokarev  ;;
6260f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
6270f94d6daSAlon Levy  ;;
628528ae5b8SEduardo Habkost  --datadir=*) datadir="$optarg"
6290b24e75fSPaolo Bonzini  ;;
630023d3d67SEduardo Habkost  --with-confsuffix=*) confsuffix="$optarg"
631023d3d67SEduardo Habkost  ;;
632850da188SEduardo Habkost  --docdir=*) qemu_docdir="$optarg"
6330b24e75fSPaolo Bonzini  ;;
634ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
63507381cc1SAnthony Liguori  ;;
636785c23aeSLuiz Capitulino  --localstatedir=*) local_statedir="$optarg"
637785c23aeSLuiz Capitulino  ;;
638785c23aeSLuiz Capitulino  --sbindir=*|--sharedstatedir=*|\
639023ddd74SMax Filippov  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
640023ddd74SMax Filippov  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
641023ddd74SMax Filippov    # These switches are silently ignored, for compatibility with
642023ddd74SMax Filippov    # autoconf-generated configure scripts. This allows QEMU's
643023ddd74SMax Filippov    # configure to be used by RPM and similar macros that set
644023ddd74SMax Filippov    # lots of directory switches by default.
645023ddd74SMax Filippov  ;;
646e2134eb9SGerd Hoffmann  --with-system-pixman) pixman="system"
647e2134eb9SGerd Hoffmann  ;;
648e2134eb9SGerd Hoffmann  --without-system-pixman) pixman="internal"
649e2134eb9SGerd Hoffmann  ;;
65097a847bcSbellard  --disable-sdl) sdl="no"
65197a847bcSbellard  ;;
652c4198157SJuan Quintela  --enable-sdl) sdl="yes"
653c4198157SJuan Quintela  ;;
654983eef5aSMeador Inge  --disable-virtfs) virtfs="no"
655983eef5aSMeador Inge  ;;
656983eef5aSMeador Inge  --enable-virtfs) virtfs="yes"
657983eef5aSMeador Inge  ;;
658821601eaSJes Sorensen  --disable-vnc) vnc="no"
659821601eaSJes Sorensen  ;;
660821601eaSJes Sorensen  --enable-vnc) vnc="yes"
661821601eaSJes Sorensen  ;;
662b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
663102a52e4Sbellard  ;;
664c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
665c2de5c91Smalc  ;;
6662f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
6672f6a1ab0Sblueswir1  ;;
6682fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
6690c58ac1cSmalc  ;;
6700c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
6710c58ac1cSmalc  ;;
672eb852011SMarkus Armbruster  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
673eb852011SMarkus Armbruster  ;;
674f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
675f8393946Saurel32  ;;
676f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
677f8393946Saurel32  ;;
678f3d08ee6SPaul Brook  --enable-debug)
679f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
680f3d08ee6SPaul Brook      debug_tcg="yes"
681f3d08ee6SPaul Brook      debug="yes"
682f3d08ee6SPaul Brook      strip_opt="no"
683f3d08ee6SPaul Brook  ;;
68403b4fe7dSaliguori  --enable-sparse) sparse="yes"
68503b4fe7dSaliguori  ;;
68603b4fe7dSaliguori  --disable-sparse) sparse="no"
68703b4fe7dSaliguori  ;;
6881625af87Saliguori  --disable-strip) strip_opt="no"
6891625af87Saliguori  ;;
6908d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
6918d5d2d4cSths  ;;
6921be10ad2SJuan Quintela  --enable-vnc-tls) vnc_tls="yes"
6931be10ad2SJuan Quintela  ;;
6942f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
6952f9606b3Saliguori  ;;
696ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
697ea784e3bSJuan Quintela  ;;
6982f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
6992f6f5c7aSCorentin Chary  ;;
7002f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
7012f6f5c7aSCorentin Chary  ;;
702efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
703efe556adSCorentin Chary  ;;
704efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
705efe556adSCorentin Chary  ;;
706443f1376Sbellard  --disable-slirp) slirp="no"
707c20709aaSbellard  ;;
708ee682d27SStefan Weil  --disable-uuid) uuid="no"
709ee682d27SStefan Weil  ;;
710ee682d27SStefan Weil  --enable-uuid) uuid="yes"
711ee682d27SStefan Weil  ;;
712e0e6c8c0Saliguori  --disable-vde) vde="no"
7138a16d273Sths  ;;
714dfb278bdSJuan Quintela  --enable-vde) vde="yes"
715dfb278bdSJuan Quintela  ;;
716e37630caSaliguori  --disable-xen) xen="no"
717e37630caSaliguori  ;;
718fc321b4bSJuan Quintela  --enable-xen) xen="yes"
719fc321b4bSJuan Quintela  ;;
720eb6fda0fSAnthony PERARD  --disable-xen-pci-passthrough) xen_pci_passthrough="no"
721eb6fda0fSAnthony PERARD  ;;
722eb6fda0fSAnthony PERARD  --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
723eb6fda0fSAnthony PERARD  ;;
7242e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
7252e4d9fb1Saurel32  ;;
7264ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
7274ffcedb6SJuan Quintela  ;;
728fb599c9aSbalrog  --disable-bluez) bluez="no"
729fb599c9aSbalrog  ;;
730a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
731a20a6f46SJuan Quintela  ;;
7327ba1e619Saliguori  --disable-kvm) kvm="no"
7337ba1e619Saliguori  ;;
734b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
735b31a0277SJuan Quintela  ;;
7369195b2c2SStefan Weil  --disable-tcg-interpreter) tcg_interpreter="no"
7379195b2c2SStefan Weil  ;;
7389195b2c2SStefan Weil  --enable-tcg-interpreter) tcg_interpreter="yes"
7399195b2c2SStefan Weil  ;;
74047e98658SCorey Bryant  --disable-cap-ng)  cap_ng="no"
74147e98658SCorey Bryant  ;;
74247e98658SCorey Bryant  --enable-cap-ng) cap_ng="yes"
74347e98658SCorey Bryant  ;;
744cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
745cd4ec0b4SGerd Hoffmann  ;;
746cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
747cd4ec0b4SGerd Hoffmann  ;;
748c589b249SRonnie Sahlberg  --disable-libiscsi) libiscsi="no"
749c589b249SRonnie Sahlberg  ;;
750c589b249SRonnie Sahlberg  --enable-libiscsi) libiscsi="yes"
751c589b249SRonnie Sahlberg  ;;
75205c2a3e7Sbellard  --enable-profiler) profiler="yes"
75305c2a3e7Sbellard  ;;
75414821030SPavel Borzenkov  --disable-cocoa) cocoa="no"
75514821030SPavel Borzenkov  ;;
756c2de5c91Smalc  --enable-cocoa)
757c2de5c91Smalc      cocoa="yes" ;
758c2de5c91Smalc      sdl="no" ;
759c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
7605b0753e0Sbellard  ;;
761cad25d69Spbrook  --disable-system) softmmu="no"
7620a8e90f4Spbrook  ;;
763cad25d69Spbrook  --enable-system) softmmu="yes"
7640a8e90f4Spbrook  ;;
7650953a80fSZachary Amsden  --disable-user)
7660953a80fSZachary Amsden      linux_user="no" ;
7670953a80fSZachary Amsden      bsd_user="no" ;
7680953a80fSZachary Amsden  ;;
7690953a80fSZachary Amsden  --enable-user) ;;
770831b7825Sths  --disable-linux-user) linux_user="no"
7710a8e90f4Spbrook  ;;
772831b7825Sths  --enable-linux-user) linux_user="yes"
773831b7825Sths  ;;
77484778508Sblueswir1  --disable-bsd-user) bsd_user="no"
77584778508Sblueswir1  ;;
77684778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
77784778508Sblueswir1  ;;
778379f6698SPaul Brook  --enable-guest-base) guest_base="yes"
779379f6698SPaul Brook  ;;
780379f6698SPaul Brook  --disable-guest-base) guest_base="no"
781379f6698SPaul Brook  ;;
78240d6444eSAvi Kivity  --enable-pie) pie="yes"
78334005a00SKirill A. Shutemov  ;;
78440d6444eSAvi Kivity  --disable-pie) pie="no"
78534005a00SKirill A. Shutemov  ;;
786c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
787c5937220Spbrook  ;;
78885aa5189Sbellard  --enable-werror) werror="yes"
78985aa5189Sbellard  ;;
79085aa5189Sbellard  --disable-werror) werror="no"
79185aa5189Sbellard  ;;
7924d3b6f6eSbalrog  --disable-curses) curses="no"
7934d3b6f6eSbalrog  ;;
794c584a6d0SJuan Quintela  --enable-curses) curses="yes"
795c584a6d0SJuan Quintela  ;;
796769ce76dSAlexander Graf  --disable-curl) curl="no"
797769ce76dSAlexander Graf  ;;
798788c8196SJuan Quintela  --enable-curl) curl="yes"
799788c8196SJuan Quintela  ;;
8002df87df7SJuan Quintela  --disable-fdt) fdt="no"
8012df87df7SJuan Quintela  ;;
8022df87df7SJuan Quintela  --enable-fdt) fdt="yes"
8032df87df7SJuan Quintela  ;;
804bd0c5661Spbrook  --disable-nptl) nptl="no"
805bd0c5661Spbrook  ;;
806b0a47e79SJuan Quintela  --enable-nptl) nptl="yes"
807b0a47e79SJuan Quintela  ;;
8088ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
8098ff9cbf7Smalc  ;;
8105c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
8115c6c3a6cSChristoph Hellwig  ;;
8125c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
8135c6c3a6cSChristoph Hellwig  ;;
814758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
815758e8e38SVenkateswararao Jujjuri (JV)  ;;
816758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
817758e8e38SVenkateswararao Jujjuri (JV)  ;;
81877755340Sths  --disable-blobs) blobs="no"
81977755340Sths  ;;
8204a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
8214a19f1ecSpbrook  ;;
822519175a2SAlex Barcelo  --with-coroutine=*) coroutine="$optarg"
823519175a2SAlex Barcelo  ;;
824a25dba17SJuan Quintela  --disable-docs) docs="no"
82570ec5dc0SAnthony Liguori  ;;
826a25dba17SJuan Quintela  --enable-docs) docs="yes"
82783a3ab8bSJuan Quintela  ;;
828d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
829d5970055SMichael S. Tsirkin  ;;
830d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
831d5970055SMichael S. Tsirkin  ;;
83220ff075bSMichael Walle  --disable-opengl) opengl="no"
83320ff075bSMichael Walle  ;;
83420ff075bSMichael Walle  --enable-opengl) opengl="yes"
83520ff075bSMichael Walle  ;;
836f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
837f27aaf4bSChristian Brunner  ;;
838f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
839f27aaf4bSChristian Brunner  ;;
8408c84cf11SSergei Trofimovich  --disable-xfsctl) xfs="no"
8418c84cf11SSergei Trofimovich  ;;
8428c84cf11SSergei Trofimovich  --enable-xfsctl) xfs="yes"
8438c84cf11SSergei Trofimovich  ;;
84436707144SAlon Levy  --disable-smartcard) smartcard="no"
84536707144SAlon Levy  ;;
84636707144SAlon Levy  --enable-smartcard) smartcard="yes"
84736707144SAlon Levy  ;;
848111a38b0SRobert Relyea  --disable-smartcard-nss) smartcard_nss="no"
849111a38b0SRobert Relyea  ;;
850111a38b0SRobert Relyea  --enable-smartcard-nss) smartcard_nss="yes"
851111a38b0SRobert Relyea  ;;
85269354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
85369354a83SHans de Goede  ;;
85469354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
85569354a83SHans de Goede  ;;
8561ece9905SAlon Levy  --disable-zlib-test) zlib="no"
8571ece9905SAlon Levy  ;;
858d138cee9SMichael Roth  --enable-guest-agent) guest_agent="yes"
859d138cee9SMichael Roth  ;;
860d138cee9SMichael Roth  --disable-guest-agent) guest_agent="no"
861d138cee9SMichael Roth  ;;
8624b1c11fdSDaniel P. Berrange  --enable-tools) want_tools="yes"
8634b1c11fdSDaniel P. Berrange  ;;
8644b1c11fdSDaniel P. Berrange  --disable-tools) want_tools="no"
8654b1c11fdSDaniel P. Berrange  ;;
866f794573eSEduardo Otubo  --enable-seccomp) seccomp="yes"
867f794573eSEduardo Otubo  ;;
868f794573eSEduardo Otubo  --disable-seccomp) seccomp="no"
869f794573eSEduardo Otubo  ;;
870eb100396SBharata B Rao  --disable-glusterfs) glusterfs="no"
871eb100396SBharata B Rao  ;;
872eb100396SBharata B Rao  --enable-glusterfs) glusterfs="yes"
873eb100396SBharata B Rao  ;;
8747f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
8757f1559c6Sbalrog  ;;
8767d13299dSbellard  esac
8777d13299dSbellarddone
8787d13299dSbellard
87940293e58Sbellardcase "$cpu" in
8809b9c37c3SRichard Henderson    sparc)
8810c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8829b9c37c3SRichard Henderson           QEMU_CFLAGS="-m32 -mcpu=ultrasparc $QEMU_CFLAGS"
8833142255cSblueswir1           ;;
884ed968ff1SJuan Quintela    sparc64)
8850c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
8869b9c37c3SRichard Henderson           QEMU_CFLAGS="-m64 -mcpu=ultrasparc $QEMU_CFLAGS"
8873142255cSblueswir1           ;;
88876d83bdeSths    s390)
88928d7cc49SRichard Henderson           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
89028d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
89128d7cc49SRichard Henderson           ;;
89228d7cc49SRichard Henderson    s390x)
89328d7cc49SRichard Henderson           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
89428d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
89576d83bdeSths           ;;
89640293e58Sbellard    i386)
897a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
8980c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8992b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
90040293e58Sbellard           ;;
90140293e58Sbellard    x86_64)
902a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
9030c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
9042b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
905379f6698SPaul Brook           ;;
90630163d89SPeter Maydell    # No special flags required for other host CPUs
9073142255cSblueswir1esac
9083142255cSblueswir1
90960e0df25SPeter Maydelldefault_target_list=""
91060e0df25SPeter Maydell
91160e0df25SPeter Maydell# these targets are portable
91260e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then
91360e0df25SPeter Maydell    default_target_list="\
91460e0df25SPeter Maydelli386-softmmu \
91560e0df25SPeter Maydellx86_64-softmmu \
91627cdad67SRichard Hendersonalpha-softmmu \
91760e0df25SPeter Maydellarm-softmmu \
91860e0df25SPeter Maydellcris-softmmu \
91960e0df25SPeter Maydelllm32-softmmu \
92060e0df25SPeter Maydellm68k-softmmu \
92160e0df25SPeter Maydellmicroblaze-softmmu \
92260e0df25SPeter Maydellmicroblazeel-softmmu \
92360e0df25SPeter Maydellmips-softmmu \
92460e0df25SPeter Maydellmipsel-softmmu \
92560e0df25SPeter Maydellmips64-softmmu \
92660e0df25SPeter Maydellmips64el-softmmu \
927e67db06eSJia Liuor32-softmmu \
92860e0df25SPeter Maydellppc-softmmu \
92960e0df25SPeter Maydellppcemb-softmmu \
93060e0df25SPeter Maydellppc64-softmmu \
93160e0df25SPeter Maydellsh4-softmmu \
93260e0df25SPeter Maydellsh4eb-softmmu \
93360e0df25SPeter Maydellsparc-softmmu \
93460e0df25SPeter Maydellsparc64-softmmu \
9350f3301d4SAlexander Grafs390x-softmmu \
936cfa550c6SMax Filippovxtensa-softmmu \
937cfa550c6SMax Filippovxtensaeb-softmmu \
9384f23a1e6SGuan Xuetaounicore32-softmmu \
93960e0df25SPeter Maydell"
94060e0df25SPeter Maydellfi
94160e0df25SPeter Maydell# the following are Linux specific
94260e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then
94360e0df25SPeter Maydell    default_target_list="${default_target_list}\
94460e0df25SPeter Maydelli386-linux-user \
94560e0df25SPeter Maydellx86_64-linux-user \
94660e0df25SPeter Maydellalpha-linux-user \
94760e0df25SPeter Maydellarm-linux-user \
94860e0df25SPeter Maydellarmeb-linux-user \
94960e0df25SPeter Maydellcris-linux-user \
95060e0df25SPeter Maydellm68k-linux-user \
95160e0df25SPeter Maydellmicroblaze-linux-user \
95260e0df25SPeter Maydellmicroblazeel-linux-user \
95360e0df25SPeter Maydellmips-linux-user \
95460e0df25SPeter Maydellmipsel-linux-user \
955d962783eSJia Liuor32-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 BSD specific
96960e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then
97060e0df25SPeter Maydell    default_target_list="${default_target_list}\
97160e0df25SPeter Maydelli386-bsd-user \
97260e0df25SPeter Maydellx86_64-bsd-user \
97360e0df25SPeter Maydellsparc-bsd-user \
97460e0df25SPeter Maydellsparc64-bsd-user \
97560e0df25SPeter Maydell"
97660e0df25SPeter Maydellfi
97760e0df25SPeter Maydell
978af5db58eSpbrookif test x"$show_help" = x"yes" ; then
979af5db58eSpbrookcat << EOF
980af5db58eSpbrook
981af5db58eSpbrookUsage: configure [options]
982af5db58eSpbrookOptions: [defaults in brackets after descriptions]
983af5db58eSpbrook
984af5db58eSpbrookEOF
985af5db58eSpbrookecho "Standard options:"
986af5db58eSpbrookecho "  --help                   print this message"
987af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
988af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
989af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
99060e0df25SPeter Maydellecho "  --target-list=LIST       set target list (default: build everything)"
99160e0df25SPeter Maydellecho "Available targets: $default_target_list" | \
99260e0df25SPeter Maydell    fold -s -w 53 | sed -e 's/^/                           /'
993af5db58eSpbrookecho ""
994af5db58eSpbrookecho "Advanced options (experts only):"
995af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
996af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
997af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
9980bfe8cc0SPaolo Bonziniecho "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
9990bfe8cc0SPaolo Bonziniecho "                           build time"
10003c4a4d0dSPeter Maydellecho "  --objcc=OBJCC            use Objective-C compiler OBJCC [$objcc]"
1001a558ee17SJuan Quintelaecho "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
1002e3fc14c3SJan Kiszkaecho "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
1003af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
10046a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
1005c886edfbSBlue Swirlecho "  --python=PYTHON          use specified python [$python]"
1006e2d8830eSBradecho "  --smbd=SMBD              use specified smbd [$smbd]"
1007af5db58eSpbrookecho "  --static                 enable static build [$static]"
10080b24e75fSPaolo Bonziniecho "  --mandir=PATH            install man pages in PATH"
1009023d3d67SEduardo Habkostecho "  --datadir=PATH           install firmware in PATH$confsuffix"
1010023d3d67SEduardo Habkostecho "  --docdir=PATH            install documentation in PATH$confsuffix"
10110b24e75fSPaolo Bonziniecho "  --bindir=PATH            install binaries in PATH"
1012023d3d67SEduardo Habkostecho "  --sysconfdir=PATH        install config in PATH$confsuffix"
1013785c23aeSLuiz Capitulinoecho "  --localstatedir=PATH     install local state in PATH"
10142ae4748fSStefan Weilecho "  --with-confsuffix=SUFFIX suffix for QEMU data inside datadir and sysconfdir [$confsuffix]"
1015f8393946Saurel32echo "  --enable-debug-tcg       enable TCG debugging"
1016f8393946Saurel32echo "  --disable-debug-tcg      disable TCG debugging (default)"
101709695a4aSStefan Weilecho "  --enable-debug           enable common debug build options"
1018890b1658Saliguoriecho "  --enable-sparse          enable sparse checker"
1019890b1658Saliguoriecho "  --disable-sparse         disable sparse checker (default)"
10201625af87Saliguoriecho "  --disable-strip          disable stripping binaries"
102185aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
1022fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
1023c4198157SJuan Quintelaecho "  --enable-sdl             enable SDL"
1024983eef5aSMeador Ingeecho "  --disable-virtfs         disable VirtFS"
1025983eef5aSMeador Ingeecho "  --enable-virtfs          enable VirtFS"
1026821601eaSJes Sorensenecho "  --disable-vnc            disable VNC"
1027821601eaSJes Sorensenecho "  --enable-vnc             enable VNC"
102814821030SPavel Borzenkovecho "  --disable-cocoa          disable Cocoa (Mac OS X only)"
102914821030SPavel Borzenkovecho "  --enable-cocoa           enable Cocoa (default on Mac OS X)"
1030c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
1031c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
10324c9b53e3Smalcecho "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
10334c9b53e3Smalcecho "                           Available cards: $audio_possible_cards"
1034eb852011SMarkus Armbrusterecho "  --block-drv-whitelist=L  set block driver whitelist"
1035eb852011SMarkus Armbrusterecho "                           (affects only QEMU, not qemu-img)"
10368ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
1037e37630caSaliguoriecho "  --disable-xen            disable xen backend driver support"
1038fc321b4bSJuan Quintelaecho "  --enable-xen             enable xen backend driver support"
1039eb6fda0fSAnthony PERARDecho "  --disable-xen-pci-passthrough"
1040eb6fda0fSAnthony PERARDecho "  --enable-xen-pci-passthrough"
10412e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
10424ffcedb6SJuan Quintelaecho "  --enable-brlapi          enable BrlAPI"
10438d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
10441be10ad2SJuan Quintelaecho "  --enable-vnc-tls         enable TLS encryption for VNC server"
10452f9606b3Saliguoriecho "  --disable-vnc-sasl       disable SASL encryption for VNC server"
1046ea784e3bSJuan Quintelaecho "  --enable-vnc-sasl        enable SASL encryption for VNC server"
10472f6f5c7aSCorentin Charyecho "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
10482f6f5c7aSCorentin Charyecho "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
104996763cf9SCorentin Charyecho "  --disable-vnc-png        disable PNG compression for VNC server (default)"
1050efe556adSCorentin Charyecho "  --enable-vnc-png         enable PNG compression for VNC server"
1051af896aaaSpbrookecho "  --disable-curses         disable curses output"
1052c584a6d0SJuan Quintelaecho "  --enable-curses          enable curses output"
1053769ce76dSAlexander Grafecho "  --disable-curl           disable curl connectivity"
1054788c8196SJuan Quintelaecho "  --enable-curl            enable curl connectivity"
10552df87df7SJuan Quintelaecho "  --disable-fdt            disable fdt device tree"
10562df87df7SJuan Quintelaecho "  --enable-fdt             enable fdt device tree"
1057fb599c9aSbalrogecho "  --disable-bluez          disable bluez stack connectivity"
1058a20a6f46SJuan Quintelaecho "  --enable-bluez           enable bluez stack connectivity"
10596093d3d4SPeter Maydellecho "  --disable-slirp          disable SLIRP userspace network connectivity"
10607ba1e619Saliguoriecho "  --disable-kvm            disable KVM acceleration support"
1061b31a0277SJuan Quintelaecho "  --enable-kvm             enable KVM acceleration support"
10629195b2c2SStefan Weilecho "  --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)"
1063bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
1064e5934d33SAndre Przywaraecho "  --enable-nptl            enable usermode NPTL support"
1065af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
1066af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
10670953a80fSZachary Amsdenecho "  --enable-user            enable supported user emulation targets"
10680953a80fSZachary Amsdenecho "  --disable-user           disable all user emulation targets"
1069831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
1070831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
107184778508Sblueswir1echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
107284778508Sblueswir1echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
1073379f6698SPaul Brookecho "  --enable-guest-base      enable GUEST_BASE support for usermode"
1074379f6698SPaul Brookecho "                           emulation targets"
1075379f6698SPaul Brookecho "  --disable-guest-base     disable GUEST_BASE support"
107640d6444eSAvi Kivityecho "  --enable-pie             build Position Independent Executables"
107740d6444eSAvi Kivityecho "  --disable-pie            do not build Position Independent Executables"
1078af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
1079af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
10802f6a1ab0Sblueswir1echo "  --oss-lib                path to OSS library"
1081c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
1082235e510cS陳韋任echo "  --cpu=CPU                Build for host CPU [$cpu]"
10833142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
1084ee682d27SStefan Weilecho "  --disable-uuid           disable uuid support"
1085ee682d27SStefan Weilecho "  --enable-uuid            enable uuid support"
1086e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
1087dfb278bdSJuan Quintelaecho "  --enable-vde             enable support for vde network"
10885c6c3a6cSChristoph Hellwigecho "  --disable-linux-aio      disable Linux AIO support"
10895c6c3a6cSChristoph Hellwigecho "  --enable-linux-aio       enable Linux AIO support"
109047e98658SCorey Bryantecho "  --disable-cap-ng         disable libcap-ng support"
109147e98658SCorey Bryantecho "  --enable-cap-ng          enable libcap-ng support"
1092758e8e38SVenkateswararao Jujjuri (JV)echo "  --disable-attr           disables attr and xattr support"
1093758e8e38SVenkateswararao Jujjuri (JV)echo "  --enable-attr            enable attr and xattr support"
109477755340Sthsecho "  --disable-blobs          disable installing provided firmware blobs"
1095d2807bc9SDirk Ullrichecho "  --enable-docs            enable documentation build"
1096d2807bc9SDirk Ullrichecho "  --disable-docs           disable documentation build"
1097d5970055SMichael S. Tsirkinecho "  --disable-vhost-net      disable vhost-net acceleration support"
1098d5970055SMichael S. Tsirkinecho "  --enable-vhost-net       enable vhost-net acceleration support"
1099320fba2aSFabien Chouteauecho "  --enable-trace-backend=B Set trace backend"
1100650ab98dSLluís Vilanovaecho "                           Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends)
110174242e0fSPaolo Bonziniecho "  --with-trace-file=NAME   Full PATH,NAME of file to store traces"
11029410b56cSPrerna Saxenaecho "                           Default:trace-<pid>"
1103cd4ec0b4SGerd Hoffmannecho "  --disable-spice          disable spice"
1104cd4ec0b4SGerd Hoffmannecho "  --enable-spice           enable spice"
1105f27aaf4bSChristian Brunnerecho "  --enable-rbd             enable building the rados block device (rbd)"
1106c589b249SRonnie Sahlbergecho "  --disable-libiscsi       disable iscsi support"
1107c589b249SRonnie Sahlbergecho "  --enable-libiscsi        enable iscsi support"
110836707144SAlon Levyecho "  --disable-smartcard      disable smartcard support"
110936707144SAlon Levyecho "  --enable-smartcard       enable smartcard support"
1110111a38b0SRobert Relyeaecho "  --disable-smartcard-nss  disable smartcard nss support"
1111111a38b0SRobert Relyeaecho "  --enable-smartcard-nss   enable smartcard nss support"
111269354a83SHans de Goedeecho "  --disable-usb-redir      disable usb network redirection support"
111369354a83SHans de Goedeecho "  --enable-usb-redir       enable usb network redirection support"
1114d138cee9SMichael Rothecho "  --disable-guest-agent    disable building of the QEMU Guest Agent"
1115d138cee9SMichael Rothecho "  --enable-guest-agent     enable building of the QEMU Guest Agent"
1116f794573eSEduardo Otuboecho "  --disable-seccomp        disable seccomp support"
1117f794573eSEduardo Otuboecho "  --enable-seccomp         enables seccomp support"
1118519175a2SAlex Barceloecho "  --with-coroutine=BACKEND coroutine backend. Supported options:"
1119fe91bfa8SAlex Barceloecho "                           gthread, ucontext, sigaltstack, windows"
1120eb100396SBharata B Raoecho "  --enable-glusterfs       enable GlusterFS backend"
1121eb100396SBharata B Raoecho "  --disable-glusterfs      disable GlusterFS backend"
1122af5db58eSpbrookecho ""
11235bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
1124af5db58eSpbrookexit 1
1125af5db58eSpbrookfi
1126af5db58eSpbrook
1127359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just
1128359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported.
1129359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then
1130359bc95dSPeter Maydell    if test "$tcg_interpreter" = "yes" ; then
1131359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1132359bc95dSPeter Maydell        ARCH=tci
1133359bc95dSPeter Maydell    else
1134359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1135359bc95dSPeter Maydell        exit 1
1136359bc95dSPeter Maydell    fi
1137359bc95dSPeter Maydellfi
1138359bc95dSPeter Maydell
11398d05095cSPaolo Bonzini# check that the C compiler works.
11408d05095cSPaolo Bonzinicat > $TMPC <<EOF
114175cafad7SStefan Weilint main(void) { return 0; }
11428d05095cSPaolo BonziniEOF
11438d05095cSPaolo Bonzini
11448d05095cSPaolo Bonziniif compile_object ; then
11458d05095cSPaolo Bonzini  : C compiler works ok
11468d05095cSPaolo Bonzinielse
11478d05095cSPaolo Bonzini    echo "ERROR: \"$cc\" either does not exist or does not work"
11488d05095cSPaolo Bonzini    exit 1
11498d05095cSPaolo Bonzinifi
11508d05095cSPaolo Bonzini
1151417c9d72SAlexander Graf# Consult white-list to determine whether to enable werror
1152417c9d72SAlexander Graf# by default.  Only enable by default for git builds
1153417c9d72SAlexander Grafz_version=`cut -f3 -d. $source_path/VERSION`
1154417c9d72SAlexander Graf
1155417c9d72SAlexander Grafif test -z "$werror" ; then
1156417c9d72SAlexander Graf    if test "$z_version" = "50" -a \
1157417c9d72SAlexander Graf        "$linux" = "yes" ; then
1158417c9d72SAlexander Graf        werror="yes"
1159417c9d72SAlexander Graf    else
1160417c9d72SAlexander Graf        werror="no"
1161417c9d72SAlexander Graf    fi
1162417c9d72SAlexander Graffi
1163417c9d72SAlexander Graf
11648d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
11658d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
11668d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1167f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags"
1168c1556a81SPeter Maydellgcc_flags="-Wno-initializer-overrides $gcc_flags"
11696ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would
11706ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due
11716ca026cbSPeter Maydell# to -Werror this would just silently disable some features,
11726ca026cbSPeter Maydell# so it's too error prone.
11738d05095cSPaolo Bonzinicat > $TMPC << EOF
11748d05095cSPaolo Bonziniint main(void) { return 0; }
11758d05095cSPaolo BonziniEOF
11768d05095cSPaolo Bonzinifor flag in $gcc_flags; do
1177a1d29d6cSPeter Maydell    # Use the positive sense of the flag when testing for -Wno-wombat
1178a1d29d6cSPeter Maydell    # support (gcc will happily accept the -Wno- form of unknown
1179a1d29d6cSPeter Maydell    # warning options).
1180a1d29d6cSPeter Maydell    optflag="$(echo $flag | sed -e 's/^-Wno-/-W/')"
1181a1d29d6cSPeter Maydell    if compile_prog "-Werror $optflag" "" ; then
11828d05095cSPaolo Bonzini	QEMU_CFLAGS="$QEMU_CFLAGS $flag"
11838d05095cSPaolo Bonzini    fi
11848d05095cSPaolo Bonzinidone
11858d05095cSPaolo Bonzini
1186*cbdd1999SPaolo Bonzini# Workaround for http://gcc.gnu.org/PR55489.  Happens with -fPIE/-fPIC and
1187*cbdd1999SPaolo Bonzini# large functions that use global variables.  The bug is in all releases of
1188*cbdd1999SPaolo Bonzini# GCC, but it became particularly acute in 4.6.x and 4.7.x.  It is fixed in
1189*cbdd1999SPaolo Bonzini# 4.7.3 and 4.8.0.  We should be able to delete this at the end of 2013.
1190*cbdd1999SPaolo Bonzinicat > $TMPC << EOF
1191*cbdd1999SPaolo Bonzini#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ <= 2))
1192*cbdd1999SPaolo Bonziniint main(void) { return 0; }
1193*cbdd1999SPaolo Bonzini#else
1194*cbdd1999SPaolo Bonzini#error No bug in this compiler.
1195*cbdd1999SPaolo Bonzini#endif
1196*cbdd1999SPaolo BonziniEOF
1197*cbdd1999SPaolo Bonziniif compile_prog "-Werror -fno-gcse" "" ; then
1198*cbdd1999SPaolo Bonzini  TRANSLATE_OPT_CFLAGS=-fno-gcse
1199*cbdd1999SPaolo Bonzinifi
1200*cbdd1999SPaolo Bonzini
120140d6444eSAvi Kivityif test "$static" = "yes" ; then
120240d6444eSAvi Kivity  if test "$pie" = "yes" ; then
120340d6444eSAvi Kivity    echo "static and pie are mutually incompatible"
120440d6444eSAvi Kivity    exit 1
120540d6444eSAvi Kivity  else
120640d6444eSAvi Kivity    pie="no"
120740d6444eSAvi Kivity  fi
120840d6444eSAvi Kivityfi
120940d6444eSAvi Kivity
121040d6444eSAvi Kivityif test "$pie" = ""; then
121140d6444eSAvi Kivity  case "$cpu-$targetos" in
1212f9db31a2SBrad    i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD)
121340d6444eSAvi Kivity      ;;
121440d6444eSAvi Kivity    *)
121540d6444eSAvi Kivity      pie="no"
121640d6444eSAvi Kivity      ;;
121740d6444eSAvi Kivity  esac
121840d6444eSAvi Kivityfi
121940d6444eSAvi Kivity
122040d6444eSAvi Kivityif test "$pie" != "no" ; then
122140d6444eSAvi Kivity  cat > $TMPC << EOF
122221d4a791SAvi Kivity
122321d4a791SAvi Kivity#ifdef __linux__
122421d4a791SAvi Kivity#  define THREAD __thread
122521d4a791SAvi Kivity#else
122621d4a791SAvi Kivity#  define THREAD
122721d4a791SAvi Kivity#endif
122821d4a791SAvi Kivity
122921d4a791SAvi Kivitystatic THREAD int tls_var;
123021d4a791SAvi Kivity
123121d4a791SAvi Kivityint main(void) { return tls_var; }
123221d4a791SAvi Kivity
123340d6444eSAvi KivityEOF
123440d6444eSAvi Kivity  if compile_prog "-fPIE -DPIE" "-pie"; then
123540d6444eSAvi Kivity    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
123640d6444eSAvi Kivity    LDFLAGS="-pie $LDFLAGS"
123740d6444eSAvi Kivity    pie="yes"
123840d6444eSAvi Kivity    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
123940d6444eSAvi Kivity      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
124040d6444eSAvi Kivity    fi
124140d6444eSAvi Kivity  else
124240d6444eSAvi Kivity    if test "$pie" = "yes"; then
124340d6444eSAvi Kivity      echo "PIE not available due to missing toolchain support"
124440d6444eSAvi Kivity      exit 1
124540d6444eSAvi Kivity    else
124640d6444eSAvi Kivity      echo "Disabling PIE due to missing toolchain support"
124740d6444eSAvi Kivity      pie="no"
124840d6444eSAvi Kivity    fi
124940d6444eSAvi Kivity  fi
125040d6444eSAvi Kivityfi
125140d6444eSAvi Kivity
1252ec530c81Sbellard#
1253ec530c81Sbellard# Solaris specific configure tool chain decisions
1254ec530c81Sbellard#
1255ec530c81Sbellardif test "$solaris" = "yes" ; then
12566792aa11SLoïc Minier  if has $install; then
12576792aa11SLoïc Minier    :
12586792aa11SLoïc Minier  else
1259ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
1260ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
1261ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1262ec530c81Sbellard    exit 1
1263ec530c81Sbellard  fi
12646792aa11SLoïc Minier  if test "`path_of $install`" = "/usr/sbin/install" ; then
1265ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
1266ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
1267ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1268ec530c81Sbellard    exit 1
1269ec530c81Sbellard  fi
12706792aa11SLoïc Minier  if has ar; then
12716792aa11SLoïc Minier    :
12726792aa11SLoïc Minier  else
1273ec530c81Sbellard    echo "Error: No path includes ar"
1274ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
1275ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
1276ec530c81Sbellard    fi
1277ec530c81Sbellard    exit 1
1278ec530c81Sbellard  fi
1279ec530c81Sbellardfi
1280ec530c81Sbellard
12817a3fc891SSebastian Herbsztif ! has $python; then
1282c886edfbSBlue Swirl  echo "Python not found. Use --python=/path/to/python"
1283c886edfbSBlue Swirl  exit 1
1284c886edfbSBlue Swirlfi
1285c886edfbSBlue Swirl
12866ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit
12876ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value.
1288e120d449SStefan Hajnocziif ! "$python" -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then
1289e120d449SStefan Hajnoczi  echo "Cannot use '$python', Python 2.4 or later is required."
1290e120d449SStefan Hajnoczi  echo "Note that Python 3 or later is not yet supported."
1291e120d449SStefan Hajnoczi  echo "Use --python=/path/to/python to specify a supported Python."
12926ccea1e4SPeter Maydell  exit 1
12936ccea1e4SPeter Maydellfi
12946ccea1e4SPeter Maydell
1295afb63ebdSStefan Weilif test -z "${target_list+xxx}" ; then
1296121afa9eSAnthony Liguori    target_list="$default_target_list"
1297121afa9eSAnthony Liguorielse
1298121afa9eSAnthony Liguori    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
12995327cf48Sbellardfi
1300f55fe278SPaolo Bonzini# see if system emulation was really requested
1301f55fe278SPaolo Bonzinicase " $target_list " in
1302f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1303f55fe278SPaolo Bonzini  ;;
1304f55fe278SPaolo Bonzini  *) softmmu=no
1305f55fe278SPaolo Bonzini  ;;
1306f55fe278SPaolo Bonziniesac
13075327cf48Sbellard
1308249247c9SJuan Quintelafeature_not_found() {
1309249247c9SJuan Quintela  feature=$1
1310249247c9SJuan Quintela
1311249247c9SJuan Quintela  echo "ERROR"
1312249247c9SJuan Quintela  echo "ERROR: User requested feature $feature"
13139332f6a2SSebastian Herbszt  echo "ERROR: configure was not able to find it"
1314249247c9SJuan Quintela  echo "ERROR"
1315249247c9SJuan Quintela  exit 1;
1316249247c9SJuan Quintela}
1317249247c9SJuan Quintela
13187d13299dSbellardif test -z "$cross_prefix" ; then
13197d13299dSbellard
13207d13299dSbellard# ---
13217d13299dSbellard# big/little endian test
13227d13299dSbellardcat > $TMPC << EOF
13237d13299dSbellard#include <inttypes.h>
1324abab1a0fSStefan Weilint main(void) {
13257d13299dSbellard        volatile uint32_t i=0x01234567;
13267d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
13277d13299dSbellard}
13287d13299dSbellardEOF
13297d13299dSbellard
133052166aa0SJuan Quintelaif compile_prog "" "" ; then
13317d13299dSbellard$TMPE && bigendian="yes"
13327d13299dSbellardelse
13337d13299dSbellardecho big/little test failed
13347d13299dSbellardfi
13357d13299dSbellard
13367d13299dSbellardelse
13377d13299dSbellard
13387d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
1339ea8f20f8SJuan Quintelacase "$cpu" in
134021d89f84SPeter Maydell  arm)
134121d89f84SPeter Maydell    # ARM can be either way; ask the compiler which one we are
134221d89f84SPeter Maydell    if check_define __ARMEB__; then
134321d89f84SPeter Maydell      bigendian=yes
134421d89f84SPeter Maydell    fi
134521d89f84SPeter Maydell  ;;
134621d89f84SPeter Maydell  hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1347ea8f20f8SJuan Quintela    bigendian=yes
1348ea8f20f8SJuan Quintela  ;;
1349ea8f20f8SJuan Quintelaesac
13507d13299dSbellard
13517d13299dSbellardfi
13527d13299dSbellard
1353b0a47e79SJuan Quintela##########################################
1354b0a47e79SJuan Quintela# NPTL probe
1355b0a47e79SJuan Quintela
1356b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then
1357bd0c5661Spbrook  cat > $TMPC <<EOF
1358bd0c5661Spbrook#include <sched.h>
135930813ceaSpbrook#include <linux/futex.h>
1360182eacc0SStefan Weilint main(void) {
1361bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1362bd0c5661Spbrook#error bork
1363bd0c5661Spbrook#endif
1364182eacc0SStefan Weil  return 0;
1365bd0c5661Spbrook}
1366bd0c5661SpbrookEOF
1367bd0c5661Spbrook
136852166aa0SJuan Quintela  if compile_object ; then
1369b0a47e79SJuan Quintela    nptl=yes
1370bd0c5661Spbrook  else
1371b0a47e79SJuan Quintela    if test "$nptl" = "yes" ; then
1372b0a47e79SJuan Quintela      feature_not_found "nptl"
1373b0a47e79SJuan Quintela    fi
1374b0a47e79SJuan Quintela    nptl=no
1375b0a47e79SJuan Quintela  fi
1376bd0c5661Spbrookfi
1377bd0c5661Spbrook
137811d9f695Sbellard##########################################
1379ac62922eSbalrog# zlib check
1380ac62922eSbalrog
13811ece9905SAlon Levyif test "$zlib" != "no" ; then
1382ac62922eSbalrog    cat > $TMPC << EOF
1383ac62922eSbalrog#include <zlib.h>
1384ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1385ac62922eSbalrogEOF
138652166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1387ac62922eSbalrog        :
1388ac62922eSbalrog    else
1389ac62922eSbalrog        echo
1390ac62922eSbalrog        echo "Error: zlib check failed"
1391ac62922eSbalrog        echo "Make sure to have the zlib libs and headers installed."
1392ac62922eSbalrog        echo
1393ac62922eSbalrog        exit 1
1394ac62922eSbalrog    fi
13951ece9905SAlon Levyfi
1396ac62922eSbalrog
1397ac62922eSbalrog##########################################
1398f794573eSEduardo Otubo# libseccomp check
1399f794573eSEduardo Otubo
1400f794573eSEduardo Otuboif test "$seccomp" != "no" ; then
14012c5c4451SBlue Swirl    if $pkg_config --atleast-version=1.0.0 libseccomp --modversion >/dev/null 2>&1; then
1402f794573eSEduardo Otubo        LIBS=`$pkg_config --libs libseccomp`
1403f794573eSEduardo Otubo	seccomp="yes"
1404f794573eSEduardo Otubo    else
1405f794573eSEduardo Otubo	if test "$seccomp" = "yes"; then
1406f794573eSEduardo Otubo            feature_not_found "libseccomp"
1407f794573eSEduardo Otubo	fi
1408e84d5956SYann E. MORIN	seccomp="no"
1409f794573eSEduardo Otubo    fi
1410f794573eSEduardo Otubofi
1411f794573eSEduardo Otubo##########################################
1412e37630caSaliguori# xen probe
1413e37630caSaliguori
1414fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1415b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
1416d5b93ddfSAnthony PERARD
141750ced5b3SStefan Weil  # First we test whether Xen headers and libraries are available.
141850ced5b3SStefan Weil  # If no, we are done and there is no Xen support.
141950ced5b3SStefan Weil  # If yes, more tests are run to detect the Xen version.
142050ced5b3SStefan Weil
142150ced5b3SStefan Weil  # Xen (any)
142250ced5b3SStefan Weil  cat > $TMPC <<EOF
142350ced5b3SStefan Weil#include <xenctrl.h>
142450ced5b3SStefan Weilint main(void) {
142550ced5b3SStefan Weil  return 0;
142650ced5b3SStefan Weil}
142750ced5b3SStefan WeilEOF
142850ced5b3SStefan Weil  if ! compile_prog "" "$xen_libs" ; then
142950ced5b3SStefan Weil    # Xen not found
143050ced5b3SStefan Weil    if test "$xen" = "yes" ; then
143150ced5b3SStefan Weil      feature_not_found "xen"
143250ced5b3SStefan Weil    fi
143350ced5b3SStefan Weil    xen=no
143450ced5b3SStefan Weil
1435d5b93ddfSAnthony PERARD  # Xen unstable
143669deef08SPeter Maydell  elif
143769deef08SPeter Maydell      cat > $TMPC <<EOF &&
1438e37630caSaliguori#include <xenctrl.h>
1439e108a3c1SAnthony PERARD#include <xenstore.h>
1440d5b93ddfSAnthony PERARD#include <stdint.h>
1441d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1442d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1443d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1444d5b93ddfSAnthony PERARD#endif
1445d5b93ddfSAnthony PERARDint main(void) {
1446d5b93ddfSAnthony PERARD  xc_interface *xc;
1447d5b93ddfSAnthony PERARD  xs_daemon_open();
1448d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
1449d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1450d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
1451b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
14528688e065SStefano Stabellini  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
14538688e065SStefano Stabellini  return 0;
14548688e065SStefano Stabellini}
14558688e065SStefano StabelliniEOF
14568688e065SStefano Stabellini      compile_prog "" "$xen_libs"
145769deef08SPeter Maydell    then
14588688e065SStefano Stabellini    xen_ctrl_version=420
14598688e065SStefano Stabellini    xen=yes
14608688e065SStefano Stabellini
146169deef08SPeter Maydell  elif
146269deef08SPeter Maydell      cat > $TMPC <<EOF &&
14638688e065SStefano Stabellini#include <xenctrl.h>
14648688e065SStefano Stabellini#include <xs.h>
14658688e065SStefano Stabellini#include <stdint.h>
14668688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h>
14678688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS)
14688688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined
14698688e065SStefano Stabellini#endif
14708688e065SStefano Stabelliniint main(void) {
14718688e065SStefano Stabellini  xs_daemon_open();
14729b4c0b56SPeter Maydell  xc_interface_open(0, 0, 0);
14738688e065SStefano Stabellini  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
14748688e065SStefano Stabellini  xc_gnttab_open(NULL, 0);
14758688e065SStefano Stabellini  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1476d5b93ddfSAnthony PERARD  return 0;
1477d5b93ddfSAnthony PERARD}
1478e37630caSaliguoriEOF
147950ced5b3SStefan Weil      compile_prog "" "$xen_libs"
148069deef08SPeter Maydell    then
1481d5b93ddfSAnthony PERARD    xen_ctrl_version=410
1482fc321b4bSJuan Quintela    xen=yes
1483d5b93ddfSAnthony PERARD
1484d5b93ddfSAnthony PERARD  # Xen 4.0.0
148569deef08SPeter Maydell  elif
148669deef08SPeter Maydell      cat > $TMPC <<EOF &&
1487d5b93ddfSAnthony PERARD#include <xenctrl.h>
1488d5b93ddfSAnthony PERARD#include <xs.h>
1489d5b93ddfSAnthony PERARD#include <stdint.h>
1490d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1491d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1492d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1493d5b93ddfSAnthony PERARD#endif
1494d5b93ddfSAnthony PERARDint main(void) {
1495b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1496b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1497b87de24eSAnthony PERARD  };
1498d5b93ddfSAnthony PERARD  xs_daemon_open();
1499d5b93ddfSAnthony PERARD  xc_interface_open();
1500d5b93ddfSAnthony PERARD  xc_gnttab_open();
1501d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1502b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1503d5b93ddfSAnthony PERARD  return 0;
1504d5b93ddfSAnthony PERARD}
1505d5b93ddfSAnthony PERARDEOF
1506d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
150769deef08SPeter Maydell    then
1508d5b93ddfSAnthony PERARD    xen_ctrl_version=400
1509d5b93ddfSAnthony PERARD    xen=yes
1510d5b93ddfSAnthony PERARD
1511b87de24eSAnthony PERARD  # Xen 3.4.0
151269deef08SPeter Maydell  elif
151369deef08SPeter Maydell      cat > $TMPC <<EOF &&
1514b87de24eSAnthony PERARD#include <xenctrl.h>
1515b87de24eSAnthony PERARD#include <xs.h>
1516b87de24eSAnthony PERARDint main(void) {
1517b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1518b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1519b87de24eSAnthony PERARD  };
1520b87de24eSAnthony PERARD  xs_daemon_open();
1521b87de24eSAnthony PERARD  xc_interface_open();
1522b87de24eSAnthony PERARD  xc_gnttab_open();
1523b87de24eSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1524b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1525b87de24eSAnthony PERARD  return 0;
1526b87de24eSAnthony PERARD}
1527b87de24eSAnthony PERARDEOF
1528b87de24eSAnthony PERARD      compile_prog "" "$xen_libs"
152969deef08SPeter Maydell    then
1530b87de24eSAnthony PERARD    xen_ctrl_version=340
1531b87de24eSAnthony PERARD    xen=yes
1532b87de24eSAnthony PERARD
1533b87de24eSAnthony PERARD  # Xen 3.3.0
153469deef08SPeter Maydell  elif
153569deef08SPeter Maydell      cat > $TMPC <<EOF &&
1536d5b93ddfSAnthony PERARD#include <xenctrl.h>
1537d5b93ddfSAnthony PERARD#include <xs.h>
1538d5b93ddfSAnthony PERARDint main(void) {
1539d5b93ddfSAnthony PERARD  xs_daemon_open();
1540d5b93ddfSAnthony PERARD  xc_interface_open();
1541d5b93ddfSAnthony PERARD  xc_gnttab_open();
1542d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1543d5b93ddfSAnthony PERARD  return 0;
1544d5b93ddfSAnthony PERARD}
1545d5b93ddfSAnthony PERARDEOF
1546d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
154769deef08SPeter Maydell    then
1548d5b93ddfSAnthony PERARD    xen_ctrl_version=330
1549d5b93ddfSAnthony PERARD    xen=yes
1550d5b93ddfSAnthony PERARD
155150ced5b3SStefan Weil  # Xen version unsupported
1552e37630caSaliguori  else
1553fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
155450ced5b3SStefan Weil      feature_not_found "xen (unsupported version)"
1555fc321b4bSJuan Quintela    fi
1556fc321b4bSJuan Quintela    xen=no
1557e37630caSaliguori  fi
1558d5b93ddfSAnthony PERARD
1559d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
1560d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
1561d5b93ddfSAnthony PERARD  fi
1562e37630caSaliguorifi
1563e37630caSaliguori
1564eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then
1565eb6fda0fSAnthony PERARD  if test "$xen" = "yes" && test "$linux" = "yes" &&
1566eb6fda0fSAnthony PERARD    test "$xen_ctrl_version" -ge 340; then
1567eb6fda0fSAnthony PERARD    xen_pci_passthrough=yes
1568eb6fda0fSAnthony PERARD  else
1569eb6fda0fSAnthony PERARD    if test "$xen_pci_passthrough" = "yes"; then
1570eb6fda0fSAnthony PERARD      echo "ERROR"
1571eb6fda0fSAnthony PERARD      echo "ERROR: User requested feature Xen PCI Passthrough"
1572eb6fda0fSAnthony PERARD      echo "ERROR: but this feature require /sys from Linux"
1573eb6fda0fSAnthony PERARD      if test "$xen_ctrl_version" -lt 340; then
1574eb6fda0fSAnthony PERARD        echo "ERROR: This feature does not work with Xen 3.3"
1575eb6fda0fSAnthony PERARD      fi
1576eb6fda0fSAnthony PERARD      echo "ERROR"
1577eb6fda0fSAnthony PERARD      exit 1;
1578eb6fda0fSAnthony PERARD    fi
1579eb6fda0fSAnthony PERARD    xen_pci_passthrough=no
1580eb6fda0fSAnthony PERARD  fi
1581eb6fda0fSAnthony PERARDfi
1582eb6fda0fSAnthony PERARD
1583e37630caSaliguori##########################################
1584a8bd70adSPaolo Bonzini# pkg-config probe
1585f91672e5SPaolo Bonzini
158617884d7bSSergei Trofimovichif ! has "$pkg_config_exe"; then
158717884d7bSSergei Trofimovich  echo "Error: pkg-config binary '$pkg_config_exe' not found"
1588a213fcb2SPeter Maydell  exit 1
1589f91672e5SPaolo Bonzinifi
1590f91672e5SPaolo Bonzini
1591f91672e5SPaolo Bonzini##########################################
159244dc0ca3SAlon Levy# libtool probe
159344dc0ca3SAlon Levy
15943f534581SBradif ! has $libtool; then
159544dc0ca3SAlon Levy    libtool=
159644dc0ca3SAlon Levyfi
159744dc0ca3SAlon Levy
159844dc0ca3SAlon Levy##########################################
1599dfffc653SJuan Quintela# Sparse probe
1600dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
16010dba6195SLoïc Minier  if has cgcc; then
1602dfffc653SJuan Quintela    sparse=yes
1603dfffc653SJuan Quintela  else
1604dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
1605dfffc653SJuan Quintela      feature_not_found "sparse"
1606dfffc653SJuan Quintela    fi
1607dfffc653SJuan Quintela    sparse=no
1608dfffc653SJuan Quintela  fi
1609dfffc653SJuan Quintelafi
1610dfffc653SJuan Quintela
1611dfffc653SJuan Quintela##########################################
161211d9f695Sbellard# SDL probe
161311d9f695Sbellard
16143ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
16153ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
16163ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
16173ec87ffeSPaolo Bonzini  sdl_config=sdl-config
16183ec87ffeSPaolo Bonzinifi
16193ec87ffeSPaolo Bonzini
16203ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then
1621a8bd70adSPaolo Bonzini  sdlconfig="$pkg_config sdl"
1622fec0e3e8SStefan Weil  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
16233ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
16243ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
16259316f803SPaolo Bonzini  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1626a0dfd8a4SLoïc Minierelse
1627a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
1628a0dfd8a4SLoïc Minier    feature_not_found "sdl"
1629a0dfd8a4SLoïc Minier  fi
1630a0dfd8a4SLoïc Minier  sdl=no
16319316f803SPaolo Bonzinifi
163229e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
16333ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
16343ec87ffeSPaolo Bonzinifi
163511d9f695Sbellard
16369316f803SPaolo Bonzinisdl_too_old=no
1637c4198157SJuan Quintelaif test "$sdl" != "no" ; then
163811d9f695Sbellard  cat > $TMPC << EOF
163911d9f695Sbellard#include <SDL.h>
164011d9f695Sbellard#undef main /* We don't want SDL to override our main() */
164111d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
164211d9f695SbellardEOF
16439316f803SPaolo Bonzini  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
164474f42e18STeLeMan  if test "$static" = "yes" ; then
164574f42e18STeLeMan    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
164674f42e18STeLeMan  else
16479316f803SPaolo Bonzini    sdl_libs=`$sdlconfig --libs 2> /dev/null`
164874f42e18STeLeMan  fi
164952166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
165011d9f695Sbellard    if test "$_sdlversion" -lt 121 ; then
165111d9f695Sbellard      sdl_too_old=yes
165211d9f695Sbellard    else
1653fd677642Sths      if test "$cocoa" = "no" ; then
165411d9f695Sbellard        sdl=yes
165511d9f695Sbellard      fi
1656fd677642Sths    fi
16577c1f25b4Sbellard
165867c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
16591ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
166067c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1661f8aa6c7bSStefan Weil         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1662f8aa6c7bSStefan Weil         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
166311d9f695Sbellard      fi
166452166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
16651ac88f28SJuan Quintela	:
16661ac88f28SJuan Quintela      else
16671ac88f28SJuan Quintela        sdl=no
16687c1f25b4Sbellard      fi
16697c1f25b4Sbellard    fi # static link
1670c4198157SJuan Quintela  else # sdl not found
1671c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
1672c4198157SJuan Quintela      feature_not_found "sdl"
1673c4198157SJuan Quintela    fi
1674c4198157SJuan Quintela    sdl=no
16757c1f25b4Sbellard  fi # sdl compile test
1676fd677642Sthsfi
167711d9f695Sbellard
16785368a422Saliguoriif test "$sdl" = "yes" ; then
16795368a422Saliguori  cat > $TMPC <<EOF
16805368a422Saliguori#include <SDL.h>
16815368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
16825368a422Saliguori#include <X11/XKBlib.h>
16835368a422Saliguori#else
16845368a422Saliguori#error No x11 support
16855368a422Saliguori#endif
16865368a422Saliguoriint main(void) { return 0; }
16875368a422SaliguoriEOF
168852166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1689681306dfSJuan Quintela    sdl_libs="$sdl_libs -lX11"
16905368a422Saliguori  fi
16910705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
16925368a422Saliguorifi
16935368a422Saliguori
16948f28f3fbSths##########################################
16958d5d2d4cSths# VNC TLS detection
1696821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1697ae6b5e5aSaliguori  cat > $TMPC <<EOF
1698ae6b5e5aSaliguori#include <gnutls/gnutls.h>
1699ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1700ae6b5e5aSaliguoriEOF
1701a8bd70adSPaolo Bonzini  vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1702a8bd70adSPaolo Bonzini  vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
170352166aa0SJuan Quintela  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
17041be10ad2SJuan Quintela    vnc_tls=yes
1705a5e32cc9SJuan Quintela    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1706ae6b5e5aSaliguori  else
17071be10ad2SJuan Quintela    if test "$vnc_tls" = "yes" ; then
17081be10ad2SJuan Quintela      feature_not_found "vnc-tls"
17091be10ad2SJuan Quintela    fi
17101be10ad2SJuan Quintela    vnc_tls=no
17118d5d2d4cSths  fi
17128d5d2d4cSthsfi
17138d5d2d4cSths
17148d5d2d4cSths##########################################
17152f9606b3Saliguori# VNC SASL detection
1716821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
17172f9606b3Saliguori  cat > $TMPC <<EOF
17182f9606b3Saliguori#include <sasl/sasl.h>
17192f9606b3Saliguori#include <stdio.h>
17202f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
17212f9606b3SaliguoriEOF
17222f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
17232f9606b3Saliguori  vnc_sasl_cflags=""
17242f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
172552166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1726ea784e3bSJuan Quintela    vnc_sasl=yes
1727fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
17282f9606b3Saliguori  else
1729ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
1730ea784e3bSJuan Quintela      feature_not_found "vnc-sasl"
1731ea784e3bSJuan Quintela    fi
1732ea784e3bSJuan Quintela    vnc_sasl=no
17332f9606b3Saliguori  fi
17342f9606b3Saliguorifi
17352f9606b3Saliguori
17362f9606b3Saliguori##########################################
17372f6f5c7aSCorentin Chary# VNC JPEG detection
1738821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
17392f6f5c7aSCorentin Charycat > $TMPC <<EOF
17402f6f5c7aSCorentin Chary#include <stdio.h>
17412f6f5c7aSCorentin Chary#include <jpeglib.h>
17422f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
17432f6f5c7aSCorentin CharyEOF
17442f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
17452f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
17462f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
17472f6f5c7aSCorentin Chary    vnc_jpeg=yes
17482f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
17492f6f5c7aSCorentin Chary  else
17502f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
17512f6f5c7aSCorentin Chary      feature_not_found "vnc-jpeg"
17522f6f5c7aSCorentin Chary    fi
17532f6f5c7aSCorentin Chary    vnc_jpeg=no
17542f6f5c7aSCorentin Chary  fi
17552f6f5c7aSCorentin Charyfi
17562f6f5c7aSCorentin Chary
17572f6f5c7aSCorentin Chary##########################################
1758efe556adSCorentin Chary# VNC PNG detection
1759821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
1760efe556adSCorentin Charycat > $TMPC <<EOF
1761efe556adSCorentin Chary//#include <stdio.h>
1762efe556adSCorentin Chary#include <png.h>
1763832ce9c2SScott Wood#include <stddef.h>
1764efe556adSCorentin Charyint main(void) {
1765efe556adSCorentin Chary    png_structp png_ptr;
1766efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
17677edc3fedSPeter Maydell    return png_ptr != 0;
1768efe556adSCorentin Chary}
1769efe556adSCorentin CharyEOF
17709af8025eSBrad  if $pkg_config libpng --modversion >/dev/null 2>&1; then
17719af8025eSBrad    vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null`
17729af8025eSBrad    vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null`
17739af8025eSBrad  else
1774efe556adSCorentin Chary    vnc_png_cflags=""
1775efe556adSCorentin Chary    vnc_png_libs="-lpng"
17769af8025eSBrad  fi
1777efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1778efe556adSCorentin Chary    vnc_png=yes
1779efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
17809af8025eSBrad    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
1781efe556adSCorentin Chary  else
1782efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
1783efe556adSCorentin Chary      feature_not_found "vnc-png"
1784efe556adSCorentin Chary    fi
1785efe556adSCorentin Chary    vnc_png=no
1786efe556adSCorentin Chary  fi
1787efe556adSCorentin Charyfi
1788efe556adSCorentin Chary
1789efe556adSCorentin Chary##########################################
179076655d6dSaliguori# fnmatch() probe, used for ACL routines
179176655d6dSaliguorifnmatch="no"
179276655d6dSaliguoricat > $TMPC << EOF
179376655d6dSaliguori#include <fnmatch.h>
179476655d6dSaliguoriint main(void)
179576655d6dSaliguori{
179676655d6dSaliguori    fnmatch("foo", "foo", 0);
179776655d6dSaliguori    return 0;
179876655d6dSaliguori}
179976655d6dSaliguoriEOF
180052166aa0SJuan Quintelaif compile_prog "" "" ; then
180176655d6dSaliguori   fnmatch="yes"
180276655d6dSaliguorifi
180376655d6dSaliguori
180476655d6dSaliguori##########################################
1805ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
1806ee682d27SStefan Weilif test "$uuid" != "no" ; then
1807ee682d27SStefan Weil  uuid_libs="-luuid"
1808ee682d27SStefan Weil  cat > $TMPC << EOF
1809ee682d27SStefan Weil#include <uuid/uuid.h>
1810ee682d27SStefan Weilint main(void)
1811ee682d27SStefan Weil{
1812ee682d27SStefan Weil    uuid_t my_uuid;
1813ee682d27SStefan Weil    uuid_generate(my_uuid);
1814ee682d27SStefan Weil    return 0;
1815ee682d27SStefan Weil}
1816ee682d27SStefan WeilEOF
1817ee682d27SStefan Weil  if compile_prog "" "$uuid_libs" ; then
1818ee682d27SStefan Weil    uuid="yes"
1819ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
1820ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
1821ee682d27SStefan Weil  else
1822ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
1823ee682d27SStefan Weil      feature_not_found "uuid"
1824ee682d27SStefan Weil    fi
1825ee682d27SStefan Weil    uuid=no
1826ee682d27SStefan Weil  fi
1827ee682d27SStefan Weilfi
1828ee682d27SStefan Weil
1829ee682d27SStefan Weil##########################################
1830dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
1831dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
1832dce512deSChristoph Hellwig  cat > $TMPC << EOF
1833ffc41d10SStefan Weil#include <stddef.h>  /* NULL */
1834dce512deSChristoph Hellwig#include <xfs/xfs.h>
1835dce512deSChristoph Hellwigint main(void)
1836dce512deSChristoph Hellwig{
1837dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
1838dce512deSChristoph Hellwig    return 0;
1839dce512deSChristoph Hellwig}
1840dce512deSChristoph HellwigEOF
1841dce512deSChristoph Hellwig  if compile_prog "" "" ; then
1842dce512deSChristoph Hellwig    xfs="yes"
1843dce512deSChristoph Hellwig  else
1844dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
1845dce512deSChristoph Hellwig      feature_not_found "xfs"
1846dce512deSChristoph Hellwig    fi
1847dce512deSChristoph Hellwig    xfs=no
1848dce512deSChristoph Hellwig  fi
1849dce512deSChristoph Hellwigfi
1850dce512deSChristoph Hellwig
1851dce512deSChristoph Hellwig##########################################
18528a16d273Sths# vde libraries probe
1853dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
18544baae0acSJuan Quintela  vde_libs="-lvdeplug"
18558a16d273Sths  cat > $TMPC << EOF
18568a16d273Sths#include <libvdeplug.h>
18574a7f0e06Spbrookint main(void)
18584a7f0e06Spbrook{
18594a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
1860fea08e08SPeter Maydell    char s[] = "";
1861fea08e08SPeter Maydell    vde_open(s, s, &a);
18624a7f0e06Spbrook    return 0;
18634a7f0e06Spbrook}
18648a16d273SthsEOF
186552166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
18664baae0acSJuan Quintela    vde=yes
18678e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
18688e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
1869dfb278bdSJuan Quintela  else
1870dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
1871dfb278bdSJuan Quintela      feature_not_found "vde"
1872dfb278bdSJuan Quintela    fi
1873dfb278bdSJuan Quintela    vde=no
18748a16d273Sths  fi
18758a16d273Sthsfi
18768a16d273Sths
18778a16d273Sths##########################################
187847e98658SCorey Bryant# libcap-ng library probe
187947e98658SCorey Bryantif test "$cap_ng" != "no" ; then
188047e98658SCorey Bryant  cap_libs="-lcap-ng"
188147e98658SCorey Bryant  cat > $TMPC << EOF
188247e98658SCorey Bryant#include <cap-ng.h>
188347e98658SCorey Bryantint main(void)
188447e98658SCorey Bryant{
188547e98658SCorey Bryant    capng_capability_to_name(CAPNG_EFFECTIVE);
188647e98658SCorey Bryant    return 0;
188747e98658SCorey Bryant}
188847e98658SCorey BryantEOF
188947e98658SCorey Bryant  if compile_prog "" "$cap_libs" ; then
189047e98658SCorey Bryant    cap_ng=yes
189147e98658SCorey Bryant    libs_tools="$cap_libs $libs_tools"
189247e98658SCorey Bryant  else
189347e98658SCorey Bryant    if test "$cap_ng" = "yes" ; then
189447e98658SCorey Bryant      feature_not_found "cap_ng"
189547e98658SCorey Bryant    fi
189647e98658SCorey Bryant    cap_ng=no
189747e98658SCorey Bryant  fi
189847e98658SCorey Bryantfi
189947e98658SCorey Bryant
190047e98658SCorey Bryant##########################################
1901c2de5c91Smalc# Sound support libraries probe
19028f28f3fbSths
1903c2de5c91Smalcaudio_drv_probe()
1904c2de5c91Smalc{
1905c2de5c91Smalc    drv=$1
1906c2de5c91Smalc    hdr=$2
1907c2de5c91Smalc    lib=$3
1908c2de5c91Smalc    exp=$4
1909c2de5c91Smalc    cfl=$5
19108f28f3fbSths        cat > $TMPC << EOF
1911c2de5c91Smalc#include <$hdr>
1912c2de5c91Smalcint main(void) { $exp }
19138f28f3fbSthsEOF
191452166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
19158f28f3fbSths        :
19168f28f3fbSths    else
19178f28f3fbSths        echo
1918c2de5c91Smalc        echo "Error: $drv check failed"
1919c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
19208f28f3fbSths        echo
19218f28f3fbSths        exit 1
19228f28f3fbSths    fi
1923c2de5c91Smalc}
1924c2de5c91Smalc
19252fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1926c2de5c91Smalcfor drv in $audio_drv_list; do
1927c2de5c91Smalc    case $drv in
1928c2de5c91Smalc    alsa)
1929c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1930e35bcb0cSStefan Weil        "return snd_pcm_close((snd_pcm_t *)0);"
1931a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
1932c2de5c91Smalc    ;;
1933c2de5c91Smalc
1934c2de5c91Smalc    fmod)
1935c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
1936c2de5c91Smalc        echo
1937c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
1938c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1939c2de5c91Smalc        echo
1940c2de5c91Smalc        exit 1
19418f28f3fbSths    fi
1942c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1943a4bf6780SJuan Quintela    libs_softmmu="$fmod_lib $libs_softmmu"
1944c2de5c91Smalc    ;;
1945c2de5c91Smalc
1946c2de5c91Smalc    esd)
1947c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1948a4bf6780SJuan Quintela    libs_softmmu="-lesd $libs_softmmu"
194967f86e8eSJuan Quintela    audio_pt_int="yes"
1950c2de5c91Smalc    ;;
1951b8e59f18Smalc
1952b8e59f18Smalc    pa)
1953a394aed2SMarc-André Lureau    audio_drv_probe $drv pulse/mainloop.h "-lpulse" \
1954a394aed2SMarc-André Lureau        "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;"
1955a394aed2SMarc-André Lureau    libs_softmmu="-lpulse $libs_softmmu"
195667f86e8eSJuan Quintela    audio_pt_int="yes"
1957b8e59f18Smalc    ;;
1958b8e59f18Smalc
1959997e690aSJuan Quintela    coreaudio)
1960997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
1961997e690aSJuan Quintela    ;;
1962997e690aSJuan Quintela
1963a4bf6780SJuan Quintela    dsound)
1964a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1965d5631638Smalc      audio_win_int="yes"
1966a4bf6780SJuan Quintela    ;;
1967a4bf6780SJuan Quintela
1968a4bf6780SJuan Quintela    oss)
1969a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
1970a4bf6780SJuan Quintela    ;;
1971a4bf6780SJuan Quintela
1972a4bf6780SJuan Quintela    sdl|wav)
19732f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
19742f6a1ab0Sblueswir1    ;;
19752f6a1ab0Sblueswir1
1976d5631638Smalc    winwave)
1977d5631638Smalc      libs_softmmu="-lwinmm $libs_softmmu"
1978d5631638Smalc      audio_win_int="yes"
1979d5631638Smalc    ;;
1980d5631638Smalc
1981e4c63a6aSmalc    *)
19821c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1983e4c63a6aSmalc        echo
1984e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
1985e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
1986e4c63a6aSmalc        echo
1987e4c63a6aSmalc        exit 1
1988e4c63a6aSmalc    }
1989e4c63a6aSmalc    ;;
1990c2de5c91Smalc    esac
1991c2de5c91Smalcdone
19928f28f3fbSths
19934d3b6f6eSbalrog##########################################
19942e4d9fb1Saurel32# BrlAPI probe
19952e4d9fb1Saurel32
19964ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
1997eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
19982e4d9fb1Saurel32  cat > $TMPC << EOF
19992e4d9fb1Saurel32#include <brlapi.h>
2000832ce9c2SScott Wood#include <stddef.h>
20012e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
20022e4d9fb1Saurel32EOF
200352166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
20042e4d9fb1Saurel32    brlapi=yes
2005264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
20064ffcedb6SJuan Quintela  else
20074ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
20084ffcedb6SJuan Quintela      feature_not_found "brlapi"
20094ffcedb6SJuan Quintela    fi
20104ffcedb6SJuan Quintela    brlapi=no
2011eb82284fSJuan Quintela  fi
2012eb82284fSJuan Quintelafi
20132e4d9fb1Saurel32
20142e4d9fb1Saurel32##########################################
20154d3b6f6eSbalrog# curses probe
2016e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then
2017e095e2f3SStefan Weil    curses_list="-lpdcurses"
2018e095e2f3SStefan Weilelse
20194f78ef9aSJuan Quintela    curses_list="-lncurses -lcurses"
2020e095e2f3SStefan Weilfi
20214d3b6f6eSbalrog
2022c584a6d0SJuan Quintelaif test "$curses" != "no" ; then
2023c584a6d0SJuan Quintela  curses_found=no
20244d3b6f6eSbalrog  cat > $TMPC << EOF
20254d3b6f6eSbalrog#include <curses.h>
2026ef9a2524SStefan Weilint main(void) {
2027ef9a2524SStefan Weil  const char *s = curses_version();
2028ef9a2524SStefan Weil  resize_term(0, 0);
2029ef9a2524SStefan Weil  return s != 0;
2030ef9a2524SStefan Weil}
20314d3b6f6eSbalrogEOF
20324f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
20334f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
2034c584a6d0SJuan Quintela      curses_found=yes
20354f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
20364f78ef9aSJuan Quintela      break
20374d3b6f6eSbalrog    fi
20384f78ef9aSJuan Quintela  done
2039c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
2040c584a6d0SJuan Quintela    curses=yes
2041c584a6d0SJuan Quintela  else
2042c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
2043c584a6d0SJuan Quintela      feature_not_found "curses"
2044c584a6d0SJuan Quintela    fi
2045c584a6d0SJuan Quintela    curses=no
2046c584a6d0SJuan Quintela  fi
20474f78ef9aSJuan Quintelafi
20484d3b6f6eSbalrog
2049414f0dabSblueswir1##########################################
2050769ce76dSAlexander Graf# curl probe
2051769ce76dSAlexander Graf
2052a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then
2053a8bd70adSPaolo Bonzini  curlconfig="$pkg_config libcurl"
20544e2b0658SPaolo Bonzinielse
20554e2b0658SPaolo Bonzini  curlconfig=curl-config
20564e2b0658SPaolo Bonzinifi
20574e2b0658SPaolo Bonzini
2058788c8196SJuan Quintelaif test "$curl" != "no" ; then
2059769ce76dSAlexander Graf  cat > $TMPC << EOF
2060769ce76dSAlexander Graf#include <curl/curl.h>
20610b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
2062769ce76dSAlexander GrafEOF
20634e2b0658SPaolo Bonzini  curl_cflags=`$curlconfig --cflags 2>/dev/null`
20644e2b0658SPaolo Bonzini  curl_libs=`$curlconfig --libs 2>/dev/null`
2065b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
2066769ce76dSAlexander Graf    curl=yes
2067f0302935SJuan Quintela    libs_tools="$curl_libs $libs_tools"
2068f0302935SJuan Quintela    libs_softmmu="$curl_libs $libs_softmmu"
2069788c8196SJuan Quintela  else
2070788c8196SJuan Quintela    if test "$curl" = "yes" ; then
2071788c8196SJuan Quintela      feature_not_found "curl"
2072788c8196SJuan Quintela    fi
2073788c8196SJuan Quintela    curl=no
2074769ce76dSAlexander Graf  fi
2075769ce76dSAlexander Graffi # test "$curl"
2076769ce76dSAlexander Graf
2077769ce76dSAlexander Graf##########################################
2078fb599c9aSbalrog# bluez support probe
2079a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
2080e820e3f4Sbalrog  cat > $TMPC << EOF
2081e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
2082e820e3f4Sbalrogint main(void) { return bt_error(0); }
2083e820e3f4SbalrogEOF
2084a8bd70adSPaolo Bonzini  bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
2085a8bd70adSPaolo Bonzini  bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
208652166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2087a20a6f46SJuan Quintela    bluez=yes
2088e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
2089e820e3f4Sbalrog  else
2090a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
2091a20a6f46SJuan Quintela      feature_not_found "bluez"
2092a20a6f46SJuan Quintela    fi
2093e820e3f4Sbalrog    bluez="no"
2094e820e3f4Sbalrog  fi
2095fb599c9aSbalrogfi
2096fb599c9aSbalrog
2097fb599c9aSbalrog##########################################
2098e18df141SAnthony Liguori# glib support probe
2099a52d28afSPaolo Bonzini
2100a52d28afSPaolo Bonziniif test "$mingw32" = yes; then
2101a52d28afSPaolo Bonzini    # g_poll is required in order to integrate with the glib main loop.
2102a52d28afSPaolo Bonzini    glib_req_ver=2.20
2103a52d28afSPaolo Bonzinielse
2104a52d28afSPaolo Bonzini    glib_req_ver=2.12
2105a52d28afSPaolo Bonzinifi
2106a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1
2107a52d28afSPaolo Bonzinithen
21084b76a481SStefan Hajnoczi    glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null`
21094b76a481SStefan Hajnoczi    glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null`
211014015304SAnthony Liguori    LIBS="$glib_libs $LIBS"
2111957f1f99SMichael Roth    libs_qga="$glib_libs $libs_qga"
2112e18df141SAnthony Liguorielse
2113a52d28afSPaolo Bonzini    echo "glib-$glib_req_ver required to compile QEMU"
2114e18df141SAnthony Liguori    exit 1
2115e18df141SAnthony Liguorifi
2116e18df141SAnthony Liguori
2117e18df141SAnthony Liguori##########################################
2118e2134eb9SGerd Hoffmann# pixman support probe
2119e2134eb9SGerd Hoffmann
2120e2134eb9SGerd Hoffmannif test "$pixman" = ""; then
2121e2134eb9SGerd Hoffmann  if $pkg_config pixman-1 > /dev/null 2>&1; then
2122e2134eb9SGerd Hoffmann    pixman="system"
2123e2134eb9SGerd Hoffmann  else
2124e2134eb9SGerd Hoffmann    pixman="internal"
2125e2134eb9SGerd Hoffmann  fi
2126e2134eb9SGerd Hoffmannfi
2127e2134eb9SGerd Hoffmannif test "$pixman" = "system"; then
2128e2134eb9SGerd Hoffmann  pixman_cflags=`$pkg_config --cflags pixman-1 2>/dev/null`
2129e2134eb9SGerd Hoffmann  pixman_libs=`$pkg_config --libs pixman-1 2>/dev/null`
2130e2134eb9SGerd Hoffmannelse
2131e2134eb9SGerd Hoffmann  if test ! -d ${source_path}/pixman/pixman; then
2132e2134eb9SGerd Hoffmann    echo "ERROR: pixman not present. Your options:"
2133e2134eb9SGerd Hoffmann    echo "  (1) Prefered: Install the pixman devel package (any recent"
2134e2134eb9SGerd Hoffmann    echo "      distro should have packages as Xorg needs pixman too)."
2135e2134eb9SGerd Hoffmann    echo "  (2) Fetch the pixman submodule, using:"
2136e2134eb9SGerd Hoffmann    echo "      git submodule update --init pixman"
2137e2134eb9SGerd Hoffmann    exit 1
2138e2134eb9SGerd Hoffmann  fi
21395ca9388aSGerd Hoffmann  mkdir -p pixman/pixman
21405ca9388aSGerd Hoffmann  pixman_cflags="-I\$(SRC_PATH)/pixman/pixman -I\$(BUILD_DIR)/pixman/pixman"
21415ca9388aSGerd Hoffmann  pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1"
2142e2134eb9SGerd Hoffmannfi
2143e2134eb9SGerd Hoffmann
2144e2134eb9SGerd Hoffmann##########################################
214517bff52bSM. Mohan Kumar# libcap probe
214617bff52bSM. Mohan Kumar
214717bff52bSM. Mohan Kumarif test "$cap" != "no" ; then
214817bff52bSM. Mohan Kumar  cat > $TMPC <<EOF
214917bff52bSM. Mohan Kumar#include <stdio.h>
215017bff52bSM. Mohan Kumar#include <sys/capability.h>
2151cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
215217bff52bSM. Mohan KumarEOF
215317bff52bSM. Mohan Kumar  if compile_prog "" "-lcap" ; then
215417bff52bSM. Mohan Kumar    cap=yes
215517bff52bSM. Mohan Kumar  else
215617bff52bSM. Mohan Kumar    cap=no
215717bff52bSM. Mohan Kumar  fi
215817bff52bSM. Mohan Kumarfi
215917bff52bSM. Mohan Kumar
216017bff52bSM. Mohan Kumar##########################################
2161e5d355d1Saliguori# pthread probe
21624b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
21633c529d93Saliguori
2164e5d355d1Saliguoripthread=no
2165414f0dabSblueswir1cat > $TMPC << EOF
21663c529d93Saliguori#include <pthread.h>
21677a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; }
21687a42bbe4SStefan Weilint main(void) {
21697a42bbe4SStefan Weil  pthread_t thread;
21707a42bbe4SStefan Weil  pthread_create(&thread, 0, f, 0);
21717a42bbe4SStefan Weil  return 0;
21727a42bbe4SStefan Weil}
2173414f0dabSblueswir1EOF
2174bd00d539SAndreas Färberif compile_prog "" "" ; then
2175bd00d539SAndreas Färber  pthread=yes
2176bd00d539SAndreas Färberelse
2177de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
217852166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
2179e5d355d1Saliguori      pthread=yes
2180e3c56761SPeter Portante      found=no
2181e3c56761SPeter Portante      for lib_entry in $LIBS; do
2182e3c56761SPeter Portante        if test "$lib_entry" = "$pthread_lib"; then
2183e3c56761SPeter Portante          found=yes
2184e3c56761SPeter Portante          break
2185e3c56761SPeter Portante        fi
2186e3c56761SPeter Portante      done
2187e3c56761SPeter Portante      if test "$found" = "no"; then
21885572b539SJuan Quintela        LIBS="$pthread_lib $LIBS"
2189e3c56761SPeter Portante      fi
2190de65fe0fSSebastian Herbszt      break
2191414f0dabSblueswir1    fi
2192de65fe0fSSebastian Herbszt  done
2193bd00d539SAndreas Färberfi
2194414f0dabSblueswir1
21954617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
21964dd75c70SChristoph Hellwig  echo
21974dd75c70SChristoph Hellwig  echo "Error: pthread check failed"
21984dd75c70SChristoph Hellwig  echo "Make sure to have the pthread libs and headers installed."
21994dd75c70SChristoph Hellwig  echo
22004dd75c70SChristoph Hellwig  exit 1
2201e5d355d1Saliguorifi
2202e5d355d1Saliguori
2203bf9298b9Saliguori##########################################
2204f27aaf4bSChristian Brunner# rbd probe
2205f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
2206f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
2207f27aaf4bSChristian Brunner#include <stdio.h>
2208ad32e9c0SJosh Durgin#include <rbd/librbd.h>
2209f27aaf4bSChristian Brunnerint main(void) {
2210ad32e9c0SJosh Durgin    rados_t cluster;
2211ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
2212f27aaf4bSChristian Brunner    return 0;
2213f27aaf4bSChristian Brunner}
2214f27aaf4bSChristian BrunnerEOF
2215ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
2216f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
2217f27aaf4bSChristian Brunner    rbd=yes
2218f27aaf4bSChristian Brunner    libs_tools="$rbd_libs $libs_tools"
2219f27aaf4bSChristian Brunner    libs_softmmu="$rbd_libs $libs_softmmu"
2220f27aaf4bSChristian Brunner  else
2221f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
2222f27aaf4bSChristian Brunner      feature_not_found "rados block device"
2223f27aaf4bSChristian Brunner    fi
2224f27aaf4bSChristian Brunner    rbd=no
2225f27aaf4bSChristian Brunner  fi
2226f27aaf4bSChristian Brunnerfi
2227f27aaf4bSChristian Brunner
2228f27aaf4bSChristian Brunner##########################################
22295c6c3a6cSChristoph Hellwig# linux-aio probe
22305c6c3a6cSChristoph Hellwig
22315c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
22325c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
22335c6c3a6cSChristoph Hellwig#include <libaio.h>
22345c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
2235832ce9c2SScott Wood#include <stddef.h>
22365c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
22375c6c3a6cSChristoph HellwigEOF
22385c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
22395c6c3a6cSChristoph Hellwig    linux_aio=yes
2240048d179fSPaul Brook    libs_softmmu="$libs_softmmu -laio"
2241048d179fSPaul Brook    libs_tools="$libs_tools -laio"
22425c6c3a6cSChristoph Hellwig  else
22435c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
22445c6c3a6cSChristoph Hellwig      feature_not_found "linux AIO"
22455c6c3a6cSChristoph Hellwig    fi
22463cfcae3cSLuiz Capitulino    linux_aio=no
22475c6c3a6cSChristoph Hellwig  fi
22485c6c3a6cSChristoph Hellwigfi
22495c6c3a6cSChristoph Hellwig
22505c6c3a6cSChristoph Hellwig##########################################
2251758e8e38SVenkateswararao Jujjuri (JV)# attr probe
2252758e8e38SVenkateswararao Jujjuri (JV)
2253758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
2254758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
2255758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
2256758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
2257f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR
2258f2338fb4SPavel Borzenkov#include <attr/xattr.h>
2259f2338fb4SPavel Borzenkov#else
22604f26f2b6SAvi Kivity#include <sys/xattr.h>
2261f2338fb4SPavel Borzenkov#endif
2262758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
2263758e8e38SVenkateswararao Jujjuri (JV)EOF
22644f26f2b6SAvi Kivity  if compile_prog "" "" ; then
22654f26f2b6SAvi Kivity    attr=yes
22664f26f2b6SAvi Kivity  # Older distros have <attr/xattr.h>, and need -lattr:
2267f2338fb4SPavel Borzenkov  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
2268758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
2269758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
22704f26f2b6SAvi Kivity    libattr=yes
2271758e8e38SVenkateswararao Jujjuri (JV)  else
2272758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
2273758e8e38SVenkateswararao Jujjuri (JV)      feature_not_found "ATTR"
2274758e8e38SVenkateswararao Jujjuri (JV)    fi
2275758e8e38SVenkateswararao Jujjuri (JV)    attr=no
2276758e8e38SVenkateswararao Jujjuri (JV)  fi
2277758e8e38SVenkateswararao Jujjuri (JV)fi
2278758e8e38SVenkateswararao Jujjuri (JV)
2279758e8e38SVenkateswararao Jujjuri (JV)##########################################
2280bf9298b9Saliguori# iovec probe
2281bf9298b9Saliguoricat > $TMPC <<EOF
2282db34f0b3Sblueswir1#include <sys/types.h>
2283bf9298b9Saliguori#include <sys/uio.h>
2284db34f0b3Sblueswir1#include <unistd.h>
2285f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); }
2286bf9298b9SaliguoriEOF
2287bf9298b9Saliguoriiovec=no
228852166aa0SJuan Quintelaif compile_prog "" "" ; then
2289bf9298b9Saliguori  iovec=yes
2290bf9298b9Saliguorifi
2291bf9298b9Saliguori
2292f652e6afSaurel32##########################################
2293ceb42de8Saliguori# preadv probe
2294ceb42de8Saliguoricat > $TMPC <<EOF
2295ceb42de8Saliguori#include <sys/types.h>
2296ceb42de8Saliguori#include <sys/uio.h>
2297ceb42de8Saliguori#include <unistd.h>
2298c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); }
2299ceb42de8SaliguoriEOF
2300ceb42de8Saliguoripreadv=no
230152166aa0SJuan Quintelaif compile_prog "" "" ; then
2302ceb42de8Saliguori  preadv=yes
2303ceb42de8Saliguorifi
2304ceb42de8Saliguori
2305ceb42de8Saliguori##########################################
2306f652e6afSaurel32# fdt probe
23072df87df7SJuan Quintelaif test "$fdt" != "no" ; then
2308b41af4baSJuan Quintela  fdt_libs="-lfdt"
2309f652e6afSaurel32  cat > $TMPC << EOF
2310f652e6afSaurel32int main(void) { return 0; }
2311f652e6afSaurel32EOF
231252166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
2313f652e6afSaurel32    fdt=yes
23142df87df7SJuan Quintela  else
23152df87df7SJuan Quintela    if test "$fdt" = "yes" ; then
23162df87df7SJuan Quintela      feature_not_found "fdt"
23172df87df7SJuan Quintela    fi
2318de3a354aSMichael Walle    fdt_libs=
23192df87df7SJuan Quintela    fdt=no
2320f652e6afSaurel32  fi
2321f652e6afSaurel32fi
2322f652e6afSaurel32
232320ff075bSMichael Walle##########################################
232420ff075bSMichael Walle# opengl probe, used by milkymist-tmu2
232520ff075bSMichael Walleif test "$opengl" != "no" ; then
232620ff075bSMichael Walle  opengl_libs="-lGL"
232720ff075bSMichael Walle  cat > $TMPC << EOF
232820ff075bSMichael Walle#include <X11/Xlib.h>
232920ff075bSMichael Walle#include <GL/gl.h>
233020ff075bSMichael Walle#include <GL/glx.h>
233184972cbbSStefan Weilint main(void) { return GL_VERSION != 0; }
233220ff075bSMichael WalleEOF
233320ff075bSMichael Walle  if compile_prog "" "-lGL" ; then
233420ff075bSMichael Walle    opengl=yes
233520ff075bSMichael Walle  else
233620ff075bSMichael Walle    if test "$opengl" = "yes" ; then
233720ff075bSMichael Walle      feature_not_found "opengl"
233820ff075bSMichael Walle    fi
2339de3a354aSMichael Walle    opengl_libs=
234020ff075bSMichael Walle    opengl=no
234120ff075bSMichael Walle  fi
234220ff075bSMichael Wallefi
234320ff075bSMichael Walle
2344eb100396SBharata B Rao##########################################
2345eb100396SBharata B Rao# glusterfs probe
2346eb100396SBharata B Raoif test "$glusterfs" != "no" ; then
2347eb100396SBharata B Rao  cat > $TMPC <<EOF
2348eb100396SBharata B Rao#include <glusterfs/api/glfs.h>
2349eb100396SBharata B Raoint main(void) {
2350eb100396SBharata B Rao    (void) glfs_new("volume");
2351eb100396SBharata B Rao    return 0;
2352eb100396SBharata B Rao}
2353eb100396SBharata B RaoEOF
2354eb100396SBharata B Rao  glusterfs_libs="-lgfapi -lgfrpc -lgfxdr"
2355eb100396SBharata B Rao  if compile_prog "" "$glusterfs_libs" ; then
2356eb100396SBharata B Rao    glusterfs=yes
2357eb100396SBharata B Rao    libs_tools="$glusterfs_libs $libs_tools"
2358eb100396SBharata B Rao    libs_softmmu="$glusterfs_libs $libs_softmmu"
2359eb100396SBharata B Rao  else
2360eb100396SBharata B Rao    if test "$glusterfs" = "yes" ; then
2361eb100396SBharata B Rao      feature_not_found "GlusterFS backend support"
2362eb100396SBharata B Rao    fi
2363eb100396SBharata B Rao    glusterfs=no
2364eb100396SBharata B Rao  fi
2365eb100396SBharata B Raofi
2366eb100396SBharata B Rao
23673b3f24adSaurel32#
23683b3f24adSaurel32# Check for xxxat() functions when we are building linux-user
23693b3f24adSaurel32# emulator.  This is done because older glibc versions don't
23703b3f24adSaurel32# have syscall stubs for these implemented.
23713b3f24adSaurel32#
23723b3f24adSaurel32atfile=no
23733b3f24adSaurel32cat > $TMPC << EOF
23743b3f24adSaurel32#define _ATFILE_SOURCE
23753b3f24adSaurel32#include <sys/types.h>
23763b3f24adSaurel32#include <fcntl.h>
23773b3f24adSaurel32#include <unistd.h>
23783b3f24adSaurel32
23793b3f24adSaurel32int
23803b3f24adSaurel32main(void)
23813b3f24adSaurel32{
23823b3f24adSaurel32	/* try to unlink nonexisting file */
23833b3f24adSaurel32	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
23843b3f24adSaurel32}
23853b3f24adSaurel32EOF
238652166aa0SJuan Quintelaif compile_prog "" "" ; then
23873b3f24adSaurel32  atfile=yes
23883b3f24adSaurel32fi
23893b3f24adSaurel32
239039386ac7Saurel32# Check for inotify functions when we are building linux-user
23913b3f24adSaurel32# emulator.  This is done because older glibc versions don't
23923b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
23933b3f24adSaurel32# don't provide them even if kernel supports them.
23943b3f24adSaurel32#
23953b3f24adSaurel32inotify=no
23963b3f24adSaurel32cat > $TMPC << EOF
23973b3f24adSaurel32#include <sys/inotify.h>
23983b3f24adSaurel32
23993b3f24adSaurel32int
24003b3f24adSaurel32main(void)
24013b3f24adSaurel32{
24023b3f24adSaurel32	/* try to start inotify */
24038690e420Saurel32	return inotify_init();
24043b3f24adSaurel32}
24053b3f24adSaurel32EOF
240652166aa0SJuan Quintelaif compile_prog "" "" ; then
24073b3f24adSaurel32  inotify=yes
24083b3f24adSaurel32fi
24093b3f24adSaurel32
2410c05c7a73SRiku Voipioinotify1=no
2411c05c7a73SRiku Voipiocat > $TMPC << EOF
2412c05c7a73SRiku Voipio#include <sys/inotify.h>
2413c05c7a73SRiku Voipio
2414c05c7a73SRiku Voipioint
2415c05c7a73SRiku Voipiomain(void)
2416c05c7a73SRiku Voipio{
2417c05c7a73SRiku Voipio    /* try to start inotify */
2418c05c7a73SRiku Voipio    return inotify_init1(0);
2419c05c7a73SRiku Voipio}
2420c05c7a73SRiku VoipioEOF
2421c05c7a73SRiku Voipioif compile_prog "" "" ; then
2422c05c7a73SRiku Voipio  inotify1=yes
2423c05c7a73SRiku Voipiofi
2424c05c7a73SRiku Voipio
2425ebc996f3SRiku Voipio# check if utimensat and futimens are supported
2426ebc996f3SRiku Voipioutimens=no
2427ebc996f3SRiku Voipiocat > $TMPC << EOF
2428ebc996f3SRiku Voipio#define _ATFILE_SOURCE
2429ebc996f3SRiku Voipio#include <stddef.h>
2430ebc996f3SRiku Voipio#include <fcntl.h>
24313014ee00SPeter Maydell#include <sys/stat.h>
2432ebc996f3SRiku Voipio
2433ebc996f3SRiku Voipioint main(void)
2434ebc996f3SRiku Voipio{
2435ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
2436ebc996f3SRiku Voipio    futimens(0, NULL);
2437ebc996f3SRiku Voipio    return 0;
2438ebc996f3SRiku Voipio}
2439ebc996f3SRiku VoipioEOF
244052166aa0SJuan Quintelaif compile_prog "" "" ; then
2441ebc996f3SRiku Voipio  utimens=yes
2442ebc996f3SRiku Voipiofi
2443ebc996f3SRiku Voipio
2444099d6b0fSRiku Voipio# check if pipe2 is there
2445099d6b0fSRiku Voipiopipe2=no
2446099d6b0fSRiku Voipiocat > $TMPC << EOF
2447099d6b0fSRiku Voipio#include <unistd.h>
2448099d6b0fSRiku Voipio#include <fcntl.h>
2449099d6b0fSRiku Voipio
2450099d6b0fSRiku Voipioint main(void)
2451099d6b0fSRiku Voipio{
2452099d6b0fSRiku Voipio    int pipefd[2];
24539bca8162SBruce Rogers    return pipe2(pipefd, O_CLOEXEC);
2454099d6b0fSRiku Voipio}
2455099d6b0fSRiku VoipioEOF
245652166aa0SJuan Quintelaif compile_prog "" "" ; then
2457099d6b0fSRiku Voipio  pipe2=yes
2458099d6b0fSRiku Voipiofi
2459099d6b0fSRiku Voipio
246040ff6d7eSKevin Wolf# check if accept4 is there
246140ff6d7eSKevin Wolfaccept4=no
246240ff6d7eSKevin Wolfcat > $TMPC << EOF
246340ff6d7eSKevin Wolf#include <sys/socket.h>
246440ff6d7eSKevin Wolf#include <stddef.h>
246540ff6d7eSKevin Wolf
246640ff6d7eSKevin Wolfint main(void)
246740ff6d7eSKevin Wolf{
246840ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
246940ff6d7eSKevin Wolf    return 0;
247040ff6d7eSKevin Wolf}
247140ff6d7eSKevin WolfEOF
247240ff6d7eSKevin Wolfif compile_prog "" "" ; then
247340ff6d7eSKevin Wolf  accept4=yes
247440ff6d7eSKevin Wolffi
247540ff6d7eSKevin Wolf
24763ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
24773ce34dfbSvibisreenivasansplice=no
24783ce34dfbSvibisreenivasancat > $TMPC << EOF
24793ce34dfbSvibisreenivasan#include <unistd.h>
24803ce34dfbSvibisreenivasan#include <fcntl.h>
24813ce34dfbSvibisreenivasan#include <limits.h>
24823ce34dfbSvibisreenivasan
24833ce34dfbSvibisreenivasanint main(void)
24843ce34dfbSvibisreenivasan{
248566ea0f22SStefan Weil    int len, fd = 0;
24863ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
24873ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
24883ce34dfbSvibisreenivasan    return 0;
24893ce34dfbSvibisreenivasan}
24903ce34dfbSvibisreenivasanEOF
249152166aa0SJuan Quintelaif compile_prog "" "" ; then
24923ce34dfbSvibisreenivasan  splice=yes
24933ce34dfbSvibisreenivasanfi
24943ce34dfbSvibisreenivasan
2495dcc38d1cSMarcelo Tosatti##########################################
2496dcc38d1cSMarcelo Tosatti# signalfd probe
2497dcc38d1cSMarcelo Tosattisignalfd="no"
2498dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
2499dcc38d1cSMarcelo Tosatti#include <unistd.h>
2500dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
2501dcc38d1cSMarcelo Tosatti#include <signal.h>
2502dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2503dcc38d1cSMarcelo TosattiEOF
2504dcc38d1cSMarcelo Tosatti
2505dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
2506dcc38d1cSMarcelo Tosatti  signalfd=yes
2507dcc38d1cSMarcelo Tosattifi
2508dcc38d1cSMarcelo Tosatti
2509c2882b96SRiku Voipio# check if eventfd is supported
2510c2882b96SRiku Voipioeventfd=no
2511c2882b96SRiku Voipiocat > $TMPC << EOF
2512c2882b96SRiku Voipio#include <sys/eventfd.h>
2513c2882b96SRiku Voipio
2514c2882b96SRiku Voipioint main(void)
2515c2882b96SRiku Voipio{
251655cc7f3eSStefan Weil    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
2517c2882b96SRiku Voipio}
2518c2882b96SRiku VoipioEOF
2519c2882b96SRiku Voipioif compile_prog "" "" ; then
2520c2882b96SRiku Voipio  eventfd=yes
2521c2882b96SRiku Voipiofi
2522c2882b96SRiku Voipio
2523d0927938SUlrich Hecht# check for fallocate
2524d0927938SUlrich Hechtfallocate=no
2525d0927938SUlrich Hechtcat > $TMPC << EOF
2526d0927938SUlrich Hecht#include <fcntl.h>
2527d0927938SUlrich Hecht
2528d0927938SUlrich Hechtint main(void)
2529d0927938SUlrich Hecht{
2530d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
2531d0927938SUlrich Hecht    return 0;
2532d0927938SUlrich Hecht}
2533d0927938SUlrich HechtEOF
25348fb03151SPeter Maydellif compile_prog "" "" ; then
2535d0927938SUlrich Hecht  fallocate=yes
2536d0927938SUlrich Hechtfi
2537d0927938SUlrich Hecht
2538c727f47dSPeter Maydell# check for sync_file_range
2539c727f47dSPeter Maydellsync_file_range=no
2540c727f47dSPeter Maydellcat > $TMPC << EOF
2541c727f47dSPeter Maydell#include <fcntl.h>
2542c727f47dSPeter Maydell
2543c727f47dSPeter Maydellint main(void)
2544c727f47dSPeter Maydell{
2545c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
2546c727f47dSPeter Maydell    return 0;
2547c727f47dSPeter Maydell}
2548c727f47dSPeter MaydellEOF
25498fb03151SPeter Maydellif compile_prog "" "" ; then
2550c727f47dSPeter Maydell  sync_file_range=yes
2551c727f47dSPeter Maydellfi
2552c727f47dSPeter Maydell
2553dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
2554dace20dcSPeter Maydellfiemap=no
2555dace20dcSPeter Maydellcat > $TMPC << EOF
2556dace20dcSPeter Maydell#include <sys/ioctl.h>
2557dace20dcSPeter Maydell#include <linux/fs.h>
2558dace20dcSPeter Maydell#include <linux/fiemap.h>
2559dace20dcSPeter Maydell
2560dace20dcSPeter Maydellint main(void)
2561dace20dcSPeter Maydell{
2562dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
2563dace20dcSPeter Maydell    return 0;
2564dace20dcSPeter Maydell}
2565dace20dcSPeter MaydellEOF
25668fb03151SPeter Maydellif compile_prog "" "" ; then
2567dace20dcSPeter Maydell  fiemap=yes
2568dace20dcSPeter Maydellfi
2569dace20dcSPeter Maydell
2570d0927938SUlrich Hecht# check for dup3
2571d0927938SUlrich Hechtdup3=no
2572d0927938SUlrich Hechtcat > $TMPC << EOF
2573d0927938SUlrich Hecht#include <unistd.h>
2574d0927938SUlrich Hecht
2575d0927938SUlrich Hechtint main(void)
2576d0927938SUlrich Hecht{
2577d0927938SUlrich Hecht    dup3(0, 0, 0);
2578d0927938SUlrich Hecht    return 0;
2579d0927938SUlrich Hecht}
2580d0927938SUlrich HechtEOF
258178f5d726SJan Kiszkaif compile_prog "" "" ; then
2582d0927938SUlrich Hecht  dup3=yes
2583d0927938SUlrich Hechtfi
2584d0927938SUlrich Hecht
25853b6edd16SPeter Maydell# check for epoll support
25863b6edd16SPeter Maydellepoll=no
25873b6edd16SPeter Maydellcat > $TMPC << EOF
25883b6edd16SPeter Maydell#include <sys/epoll.h>
25893b6edd16SPeter Maydell
25903b6edd16SPeter Maydellint main(void)
25913b6edd16SPeter Maydell{
25923b6edd16SPeter Maydell    epoll_create(0);
25933b6edd16SPeter Maydell    return 0;
25943b6edd16SPeter Maydell}
25953b6edd16SPeter MaydellEOF
25968fb03151SPeter Maydellif compile_prog "" "" ; then
25973b6edd16SPeter Maydell  epoll=yes
25983b6edd16SPeter Maydellfi
25993b6edd16SPeter Maydell
26003b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions
26013b6edd16SPeter Maydell# so we must check separately for their presence
26023b6edd16SPeter Maydellepoll_create1=no
26033b6edd16SPeter Maydellcat > $TMPC << EOF
26043b6edd16SPeter Maydell#include <sys/epoll.h>
26053b6edd16SPeter Maydell
26063b6edd16SPeter Maydellint main(void)
26073b6edd16SPeter Maydell{
260819e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
260919e83f6bSPeter Maydell     * a function being called. This is necessary so that on
261019e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
261119e83f6bSPeter Maydell     * the library but not declared in the header file we will
261219e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
261319e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
261419e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
261519e83f6bSPeter Maydell     */
2616c075a723SBlue Swirl    return (int)(uintptr_t)&epoll_create1;
26173b6edd16SPeter Maydell}
26183b6edd16SPeter MaydellEOF
26198fb03151SPeter Maydellif compile_prog "" "" ; then
26203b6edd16SPeter Maydell  epoll_create1=yes
26213b6edd16SPeter Maydellfi
26223b6edd16SPeter Maydell
26233b6edd16SPeter Maydellepoll_pwait=no
26243b6edd16SPeter Maydellcat > $TMPC << EOF
26253b6edd16SPeter Maydell#include <sys/epoll.h>
26263b6edd16SPeter Maydell
26273b6edd16SPeter Maydellint main(void)
26283b6edd16SPeter Maydell{
26293b6edd16SPeter Maydell    epoll_pwait(0, 0, 0, 0, 0);
26303b6edd16SPeter Maydell    return 0;
26313b6edd16SPeter Maydell}
26323b6edd16SPeter MaydellEOF
26338fb03151SPeter Maydellif compile_prog "" "" ; then
26343b6edd16SPeter Maydell  epoll_pwait=yes
26353b6edd16SPeter Maydellfi
26363b6edd16SPeter Maydell
2637cc8ae6deSpbrook# Check if tools are available to build documentation.
2638a25dba17SJuan Quintelaif test "$docs" != "no" ; then
263901668d98SStefan Weil  if has makeinfo && has pod2man; then
2640a25dba17SJuan Quintela    docs=yes
264183a3ab8bSJuan Quintela  else
2642a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
2643a25dba17SJuan Quintela      feature_not_found "docs"
264483a3ab8bSJuan Quintela    fi
2645a25dba17SJuan Quintela    docs=no
264683a3ab8bSJuan Quintela  fi
2647cc8ae6deSpbrookfi
2648cc8ae6deSpbrook
2649f514f41cSStefan Weil# Search for bswap_32 function
26506ae9a1f4SJuan Quintelabyteswap_h=no
26516ae9a1f4SJuan Quintelacat > $TMPC << EOF
26526ae9a1f4SJuan Quintela#include <byteswap.h>
26536ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
26546ae9a1f4SJuan QuintelaEOF
265552166aa0SJuan Quintelaif compile_prog "" "" ; then
26566ae9a1f4SJuan Quintela  byteswap_h=yes
26576ae9a1f4SJuan Quintelafi
26586ae9a1f4SJuan Quintela
2659f514f41cSStefan Weil# Search for bswap_32 function
26606ae9a1f4SJuan Quintelabswap_h=no
26616ae9a1f4SJuan Quintelacat > $TMPC << EOF
26626ae9a1f4SJuan Quintela#include <sys/endian.h>
26636ae9a1f4SJuan Quintela#include <sys/types.h>
26646ae9a1f4SJuan Quintela#include <machine/bswap.h>
26656ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
26666ae9a1f4SJuan QuintelaEOF
266752166aa0SJuan Quintelaif compile_prog "" "" ; then
26686ae9a1f4SJuan Quintela  bswap_h=yes
26696ae9a1f4SJuan Quintelafi
26706ae9a1f4SJuan Quintela
2671da93a1fdSaliguori##########################################
2672c589b249SRonnie Sahlberg# Do we have libiscsi
2673fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a
2674fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi.
2675c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then
2676c589b249SRonnie Sahlberg  cat > $TMPC << EOF
2677fa6acb0cSRonnie Sahlberg#include <stdio.h>
2678c589b249SRonnie Sahlberg#include <iscsi/iscsi.h>
2679fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; }
2680c589b249SRonnie SahlbergEOF
2681417c9d72SAlexander Graf  if compile_prog "" "-liscsi" ; then
2682c589b249SRonnie Sahlberg    libiscsi="yes"
2683c589b249SRonnie Sahlberg    LIBS="$LIBS -liscsi"
2684c589b249SRonnie Sahlberg  else
2685c589b249SRonnie Sahlberg    if test "$libiscsi" = "yes" ; then
2686c589b249SRonnie Sahlberg      feature_not_found "libiscsi"
2687c589b249SRonnie Sahlberg    fi
2688c589b249SRonnie Sahlberg    libiscsi="no"
2689c589b249SRonnie Sahlberg  fi
2690c589b249SRonnie Sahlbergfi
2691c589b249SRonnie Sahlberg
2692c589b249SRonnie Sahlberg
2693c589b249SRonnie Sahlberg##########################################
26948bacde8dSNatanael Copa# Do we need libm
26958bacde8dSNatanael Copacat > $TMPC << EOF
26968bacde8dSNatanael Copa#include <math.h>
26978bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); }
26988bacde8dSNatanael CopaEOF
26998bacde8dSNatanael Copaif compile_prog "" "" ; then
27008bacde8dSNatanael Copa  :
27018bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then
27028bacde8dSNatanael Copa  LIBS="-lm $LIBS"
27038bacde8dSNatanael Copa  libs_qga="-lm $libs_qga"
27048bacde8dSNatanael Copaelse
27058bacde8dSNatanael Copa  echo
27068bacde8dSNatanael Copa  echo "Error: libm check failed"
27078bacde8dSNatanael Copa  echo
27088bacde8dSNatanael Copa  exit 1
27098bacde8dSNatanael Copafi
27108bacde8dSNatanael Copa
27118bacde8dSNatanael Copa##########################################
2712da93a1fdSaliguori# Do we need librt
27138bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime
27148bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't
27158bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this
27168bacde8dSNatanael Copa# function in addition.
2717da93a1fdSaliguoricat > $TMPC <<EOF
2718da93a1fdSaliguori#include <signal.h>
2719da93a1fdSaliguori#include <time.h>
27208bacde8dSNatanael Copaint main(void) {
27218bacde8dSNatanael Copa  timer_create(CLOCK_REALTIME, NULL, NULL);
27228bacde8dSNatanael Copa  return clock_gettime(CLOCK_REALTIME, NULL);
27238bacde8dSNatanael Copa}
2724da93a1fdSaliguoriEOF
2725da93a1fdSaliguori
272652166aa0SJuan Quintelaif compile_prog "" "" ; then
272707ffa4bdSJuan Quintela  :
27288bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result
27298bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then
273007ffa4bdSJuan Quintela  LIBS="-lrt $LIBS"
27318bacde8dSNatanael Copa  libs_qga="-lrt $libs_qga"
2732da93a1fdSaliguorifi
2733da93a1fdSaliguori
273431ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2735179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
27366362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
27376362a53fSJuan Quintelafi
27386362a53fSJuan Quintela
2739de5071c5SBlue Swirl##########################################
2740cd4ec0b4SGerd Hoffmann# spice probe
2741cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
2742cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
2743cd4ec0b4SGerd Hoffmann#include <spice.h>
2744cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
2745cd4ec0b4SGerd HoffmannEOF
2746710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2747710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
274867be6726SGerd Hoffmann  if $pkg_config --atleast-version=0.12.0 spice-server >/dev/null 2>&1 && \
274967be6726SGerd Hoffmann     $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1 && \
2750cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
2751cd4ec0b4SGerd Hoffmann    spice="yes"
2752cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
2753cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
27542e0e3c39SAlon Levy    spice_protocol_version=$($pkg_config --modversion spice-protocol)
27552e0e3c39SAlon Levy    spice_server_version=$($pkg_config --modversion spice-server)
2756cd4ec0b4SGerd Hoffmann  else
2757cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
2758cd4ec0b4SGerd Hoffmann      feature_not_found "spice"
2759cd4ec0b4SGerd Hoffmann    fi
2760cd4ec0b4SGerd Hoffmann    spice="no"
2761cd4ec0b4SGerd Hoffmann  fi
2762cd4ec0b4SGerd Hoffmannfi
2763cd4ec0b4SGerd Hoffmann
2764111a38b0SRobert Relyea# check for libcacard for smartcard support
2765111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then
2766111a38b0SRobert Relyea    smartcard="yes"
2767111a38b0SRobert Relyea    smartcard_cflags=""
2768111a38b0SRobert Relyea    # TODO - what's the minimal nss version we support?
2769111a38b0SRobert Relyea    if test "$smartcard_nss" != "no"; then
27705f01e06fSSergei Trofimovich      cat > $TMPC << EOF
27715f01e06fSSergei Trofimovich#include <pk11pub.h>
27725f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; }
27735f01e06fSSergei TrofimovichEOF
27740b22ef0fSPeter Maydell        smartcard_includes="-I\$(SRC_PATH)/libcacard"
27758c741c22SAlon Levy        libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
27768c741c22SAlon Levy        libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
27776ca026cbSPeter Maydell        test_cflags="$libcacard_cflags"
27786ca026cbSPeter Maydell        # The header files in nss < 3.13.3 have a bug which causes them to
27796ca026cbSPeter Maydell        # emit a warning. If we're going to compile QEMU with -Werror, then
27806ca026cbSPeter Maydell        # test that the headers don't have this bug. Otherwise we would pass
27816ca026cbSPeter Maydell        # the configure test but fail to compile QEMU later.
27826ca026cbSPeter Maydell        if test "$werror" = "yes"; then
27836ca026cbSPeter Maydell            test_cflags="-Werror $test_cflags"
27846ca026cbSPeter Maydell        fi
27855f01e06fSSergei Trofimovich        if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
27866ca026cbSPeter Maydell          compile_prog "$test_cflags" "$libcacard_libs"; then
27875f01e06fSSergei Trofimovich            smartcard_nss="yes"
27880b22ef0fSPeter Maydell            QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
27890b22ef0fSPeter Maydell            QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes"
2790ad4cf3f6SPaul Brook            libs_softmmu="$libcacard_libs $libs_softmmu"
2791111a38b0SRobert Relyea        else
2792111a38b0SRobert Relyea            if test "$smartcard_nss" = "yes"; then
2793111a38b0SRobert Relyea                feature_not_found "nss"
2794111a38b0SRobert Relyea            fi
2795111a38b0SRobert Relyea            smartcard_nss="no"
2796111a38b0SRobert Relyea        fi
2797111a38b0SRobert Relyea    fi
2798111a38b0SRobert Relyeafi
2799111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then
2800111a38b0SRobert Relyea    smartcard_nss="no"
2801111a38b0SRobert Relyeafi
2802111a38b0SRobert Relyea
280369354a83SHans de Goede# check for usbredirparser for usb network redirection support
280469354a83SHans de Goedeif test "$usb_redir" != "no" ; then
2805c19a7981SHans de Goede    if $pkg_config --atleast-version=0.5.3 libusbredirparser-0.5 >/dev/null 2>&1 ; then
280669354a83SHans de Goede        usb_redir="yes"
28078b626aa7SHans de Goede        usb_redir_cflags=$($pkg_config --cflags libusbredirparser-0.5 2>/dev/null)
28088b626aa7SHans de Goede        usb_redir_libs=$($pkg_config --libs libusbredirparser-0.5 2>/dev/null)
280969354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
281056ab2ad1SAurelien Jarno        libs_softmmu="$libs_softmmu $usb_redir_libs"
281169354a83SHans de Goede    else
281269354a83SHans de Goede        if test "$usb_redir" = "yes"; then
281369354a83SHans de Goede            feature_not_found "usb-redir"
281469354a83SHans de Goede        fi
281569354a83SHans de Goede        usb_redir="no"
281669354a83SHans de Goede    fi
281769354a83SHans de Goedefi
281869354a83SHans de Goede
2819cd4ec0b4SGerd Hoffmann##########################################
2820cd4ec0b4SGerd Hoffmann
2821747bbdf7SBlue Swirl##########################################
28225f6b9e8fSBlue Swirl# check if we have fdatasync
28235f6b9e8fSBlue Swirl
28245f6b9e8fSBlue Swirlfdatasync=no
28255f6b9e8fSBlue Swirlcat > $TMPC << EOF
28265f6b9e8fSBlue Swirl#include <unistd.h>
2827d1722a27SAlexandre Raymondint main(void) {
2828d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2829d1722a27SAlexandre Raymondreturn fdatasync(0);
2830d1722a27SAlexandre Raymond#else
2831e172fe11SStefan Weil#error Not supported
2832d1722a27SAlexandre Raymond#endif
2833d1722a27SAlexandre Raymond}
28345f6b9e8fSBlue SwirlEOF
28355f6b9e8fSBlue Swirlif compile_prog "" "" ; then
28365f6b9e8fSBlue Swirl    fdatasync=yes
28375f6b9e8fSBlue Swirlfi
28385f6b9e8fSBlue Swirl
283994a420b1SStefan Hajnoczi##########################################
2840e78815a5SAndreas Färber# check if we have madvise
2841e78815a5SAndreas Färber
2842e78815a5SAndreas Färbermadvise=no
2843e78815a5SAndreas Färbercat > $TMPC << EOF
2844e78815a5SAndreas Färber#include <sys/types.h>
2845e78815a5SAndreas Färber#include <sys/mman.h>
2846832ce9c2SScott Wood#include <stddef.h>
2847e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2848e78815a5SAndreas FärberEOF
2849e78815a5SAndreas Färberif compile_prog "" "" ; then
2850e78815a5SAndreas Färber    madvise=yes
2851e78815a5SAndreas Färberfi
2852e78815a5SAndreas Färber
2853e78815a5SAndreas Färber##########################################
2854e78815a5SAndreas Färber# check if we have posix_madvise
2855e78815a5SAndreas Färber
2856e78815a5SAndreas Färberposix_madvise=no
2857e78815a5SAndreas Färbercat > $TMPC << EOF
2858e78815a5SAndreas Färber#include <sys/mman.h>
2859832ce9c2SScott Wood#include <stddef.h>
2860e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2861e78815a5SAndreas FärberEOF
2862e78815a5SAndreas Färberif compile_prog "" "" ; then
2863e78815a5SAndreas Färber    posix_madvise=yes
2864e78815a5SAndreas Färberfi
2865e78815a5SAndreas Färber
2866e78815a5SAndreas Färber##########################################
28671e9737daSRichard Henderson# check if we have usable SIGEV_THREAD_ID
28681e9737daSRichard Henderson
28691e9737daSRichard Hendersonsigev_thread_id=no
28701e9737daSRichard Hendersoncat > $TMPC << EOF
28711e9737daSRichard Henderson#include <signal.h>
28721e9737daSRichard Hendersonint main(void) {
28731e9737daSRichard Henderson  struct sigevent ev;
28741e9737daSRichard Henderson  ev.sigev_notify = SIGEV_THREAD_ID;
28751e9737daSRichard Henderson  ev._sigev_un._tid = 0;
28761e9737daSRichard Henderson  asm volatile("" : : "g"(&ev));
28771e9737daSRichard Henderson  return 0;
28781e9737daSRichard Henderson}
28791e9737daSRichard HendersonEOF
28801e9737daSRichard Hendersonif compile_prog "" "" ; then
28811e9737daSRichard Henderson    sigev_thread_id=yes
28821e9737daSRichard Hendersonfi
28831e9737daSRichard Henderson
28841e9737daSRichard Henderson##########################################
288594a420b1SStefan Hajnoczi# check if trace backend exists
288694a420b1SStefan Hajnoczi
2887650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend  > /dev/null 2> /dev/null
288894a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
288994a420b1SStefan Hajnoczi  echo
289094a420b1SStefan Hajnoczi  echo "Error: invalid trace backend"
289194a420b1SStefan Hajnoczi  echo "Please choose a supported trace backend."
289294a420b1SStefan Hajnoczi  echo
289394a420b1SStefan Hajnoczi  exit 1
289494a420b1SStefan Hajnoczifi
289594a420b1SStefan Hajnoczi
28967e24e92aSStefan Hajnoczi##########################################
28977e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
28987e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then
28997e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
29007e24e92aSStefan Hajnoczi#include <ust/tracepoint.h>
29017e24e92aSStefan Hajnoczi#include <ust/marker.h>
29027e24e92aSStefan Hajnocziint main(void) { return 0; }
29037e24e92aSStefan HajnocziEOF
29047e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
290594b4fefaSLluís Vilanova    LIBS="-lust -lurcu-bp $LIBS"
2906c9a2e37cSLluís Vilanova    libs_qga="-lust -lurcu-bp $libs_qga"
29077e24e92aSStefan Hajnoczi  else
29087e24e92aSStefan Hajnoczi    echo
29097e24e92aSStefan Hajnoczi    echo "Error: Trace backend 'ust' missing libust header files"
29107e24e92aSStefan Hajnoczi    echo
29117e24e92aSStefan Hajnoczi    exit 1
29127e24e92aSStefan Hajnoczi  fi
29137e24e92aSStefan Hajnoczifi
2914b3d08c02SDaniel P. Berrange
2915b3d08c02SDaniel P. Berrange##########################################
2916b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
2917b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then
2918b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
2919b3d08c02SDaniel P. Berrange    echo
2920b3d08c02SDaniel P. Berrange    echo "Error: dtrace command is not found in PATH $PATH"
2921b3d08c02SDaniel P. Berrange    echo
2922b3d08c02SDaniel P. Berrange    exit 1
2923b3d08c02SDaniel P. Berrange  fi
2924c276b17dSDaniel P. Berrange  trace_backend_stap="no"
2925c276b17dSDaniel P. Berrange  if has 'stap' ; then
2926c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
2927c276b17dSDaniel P. Berrange  fi
2928b3d08c02SDaniel P. Berrangefi
2929b3d08c02SDaniel P. Berrange
29307e24e92aSStefan Hajnoczi##########################################
2931023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains
2932023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit
2933023367e6SWolfgang Mauerer# specification is necessary
29341ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then
2935023367e6SWolfgang Mauerer  cat > $TMPC << EOF
29367ace252aSStefan Weilstatic int sfaa(int *ptr)
2937023367e6SWolfgang Mauerer{
2938023367e6SWolfgang Mauerer  return __sync_fetch_and_and(ptr, 0);
2939023367e6SWolfgang Mauerer}
2940023367e6SWolfgang Mauerer
2941abab1a0fSStefan Weilint main(void)
2942023367e6SWolfgang Mauerer{
2943023367e6SWolfgang Mauerer  int val = 42;
2944023367e6SWolfgang Mauerer  sfaa(&val);
2945023367e6SWolfgang Mauerer  return val;
2946023367e6SWolfgang Mauerer}
2947023367e6SWolfgang MauererEOF
2948023367e6SWolfgang Mauerer  if ! compile_prog "" "" ; then
2949caa50971SPeter Maydell    QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
2950023367e6SWolfgang Mauerer  fi
2951023367e6SWolfgang Mauererfi
2952023367e6SWolfgang Mauerer
2953023367e6SWolfgang Mauerer##########################################
2954519175a2SAlex Barcelo# check and set a backend for coroutine
2955d0e2fce5SAneesh Kumar K.V
2956519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread
2957519175a2SAlex Barcelo# windows autodetected by make
2958519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then
2959d0e2fce5SAneesh Kumar K.V  if test "$darwin" != "yes"; then
2960d0e2fce5SAneesh Kumar K.V    cat > $TMPC << EOF
2961d0e2fce5SAneesh Kumar K.V#include <ucontext.h>
2962cdf84806SPeter Maydell#ifdef __stub_makecontext
2963cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail
2964cdf84806SPeter Maydell#endif
296575cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; }
2966d0e2fce5SAneesh Kumar K.VEOF
2967d0e2fce5SAneesh Kumar K.V    if compile_prog "" "" ; then
2968519175a2SAlex Barcelo        coroutine_backend=ucontext
2969519175a2SAlex Barcelo    else
2970519175a2SAlex Barcelo	coroutine_backend=gthread
2971d0e2fce5SAneesh Kumar K.V    fi
2972519175a2SAlex Barcelo  else
2973519175a2SAlex Barcelo    echo "Silently falling back into gthread backend under darwin"
2974519175a2SAlex Barcelo  fi
2975519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then
2976519175a2SAlex Barcelo  coroutine_backend=gthread
2977519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then
2978519175a2SAlex Barcelo  coroutine_backend=windows
2979fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then
2980fe91bfa8SAlex Barcelo  coroutine_backend=sigaltstack
2981519175a2SAlex Barceloelse
2982519175a2SAlex Barcelo  echo
2983519175a2SAlex Barcelo  echo "Error: unknown coroutine backend $coroutine"
2984519175a2SAlex Barcelo  echo
2985519175a2SAlex Barcelo  exit 1
2986d0e2fce5SAneesh Kumar K.Vfi
2987d0e2fce5SAneesh Kumar K.V
2988d0e2fce5SAneesh Kumar K.V##########################################
2989d2042378SAneesh Kumar K.V# check if we have open_by_handle_at
2990d2042378SAneesh Kumar K.V
29914e1797f9SStefan Weilopen_by_handle_at=no
2992d2042378SAneesh Kumar K.Vcat > $TMPC << EOF
2993d2042378SAneesh Kumar K.V#include <fcntl.h>
2994acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH)
2995acc55ba8SStefan Weil# error missing definition
2996acc55ba8SStefan Weil#else
299775cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
2998acc55ba8SStefan Weil#endif
2999d2042378SAneesh Kumar K.VEOF
3000d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then
3001d2042378SAneesh Kumar K.V    open_by_handle_at=yes
3002d2042378SAneesh Kumar K.Vfi
3003d2042378SAneesh Kumar K.V
3004e06a765eSHarsh Prateek Bora########################################
3005e06a765eSHarsh Prateek Bora# check if we have linux/magic.h
3006e06a765eSHarsh Prateek Bora
3007e06a765eSHarsh Prateek Boralinux_magic_h=no
3008e06a765eSHarsh Prateek Boracat > $TMPC << EOF
3009e06a765eSHarsh Prateek Bora#include <linux/magic.h>
3010e06a765eSHarsh Prateek Boraint main(void) {
301175cafad7SStefan Weil  return 0;
3012e06a765eSHarsh Prateek Bora}
3013e06a765eSHarsh Prateek BoraEOF
3014e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then
3015e06a765eSHarsh Prateek Bora    linux_magic_h=yes
3016e06a765eSHarsh Prateek Borafi
3017e06a765eSHarsh Prateek Bora
30188ab1bf12SLuiz Capitulino########################################
301906d71fa1SPeter Maydell# check whether we can disable the -Wunused-but-set-variable
302006d71fa1SPeter Maydell# option with a pragma (this is needed to silence a warning in
302106d71fa1SPeter Maydell# some versions of the valgrind VALGRIND_STACK_DEREGISTER macro.)
302206d71fa1SPeter Maydell# This test has to be compiled with -Werror as otherwise an
302306d71fa1SPeter Maydell# unknown pragma is only a warning.
302406d71fa1SPeter Maydellpragma_disable_unused_but_set=no
302506d71fa1SPeter Maydellcat > $TMPC << EOF
302606d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
302706d71fa1SPeter Maydellint main(void) {
302806d71fa1SPeter Maydell    return 0;
302906d71fa1SPeter Maydell}
303006d71fa1SPeter MaydellEOF
303106d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then
303206d71fa1SPeter Maydell    pragma_disable_unused_but_set=yes
303306d71fa1SPeter Maydellfi
303406d71fa1SPeter Maydell
303506d71fa1SPeter Maydell########################################
303662fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h
30373f4349dcSKevin Wolf
30383f4349dcSKevin Wolfvalgrind_h=no
30393f4349dcSKevin Wolfcat > $TMPC << EOF
30403f4349dcSKevin Wolf#include <valgrind/valgrind.h>
304162fe8331SChristian Borntraeger#include <valgrind/memcheck.h>
30423f4349dcSKevin Wolfint main(void) {
30433f4349dcSKevin Wolf  return 0;
30443f4349dcSKevin Wolf}
30453f4349dcSKevin WolfEOF
30463f4349dcSKevin Wolfif compile_prog "" "" ; then
30473f4349dcSKevin Wolf    valgrind_h=yes
30483f4349dcSKevin Wolffi
30493f4349dcSKevin Wolf
30503f4349dcSKevin Wolf########################################
30518ab1bf12SLuiz Capitulino# check if environ is declared
30528ab1bf12SLuiz Capitulino
30538ab1bf12SLuiz Capitulinohas_environ=no
30548ab1bf12SLuiz Capitulinocat > $TMPC << EOF
30558ab1bf12SLuiz Capitulino#include <unistd.h>
30568ab1bf12SLuiz Capitulinoint main(void) {
3057c075a723SBlue Swirl    environ = 0;
30588ab1bf12SLuiz Capitulino    return 0;
30598ab1bf12SLuiz Capitulino}
30608ab1bf12SLuiz CapitulinoEOF
30618ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then
30628ab1bf12SLuiz Capitulino    has_environ=yes
30638ab1bf12SLuiz Capitulinofi
30648ab1bf12SLuiz Capitulino
3065d2042378SAneesh Kumar K.V##########################################
3066e86ecd4bSJuan Quintela# End of CC checks
3067e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
3068e86ecd4bSJuan Quintela
3069e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then
30708be74dc0SAvi Kivity  CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS"
3071e86ecd4bSJuan Quintelafi
3072a316e378SJuan Quintela
307320ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to
307420ff6c80SAnthony Liguori# enable/disable
307520ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then
307620ff6c80SAnthony Liguori    if test "$z_version" = "50" ; then
307720ff6c80SAnthony Liguori	zero_malloc="no"
307820ff6c80SAnthony Liguori    else
307920ff6c80SAnthony Liguori	zero_malloc="yes"
308020ff6c80SAnthony Liguori    fi
308120ff6c80SAnthony Liguorifi
308220ff6c80SAnthony Liguori
30836ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags
30846ca026cbSPeter Maydellif test "$werror" = "yes"; then
30856ca026cbSPeter Maydell    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
30866ca026cbSPeter Maydellfi
30876ca026cbSPeter Maydell
3088e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
3089e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
30901156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
3091e86ecd4bSJuan Quintela    fi
3092e86ecd4bSJuan Quintelafi
3093e86ecd4bSJuan Quintela
309494dd53c5SGerd Hoffmann# test if pod2man has --utf8 option
309594dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then
309694dd53c5SGerd Hoffmann    POD2MAN="pod2man --utf8"
309794dd53c5SGerd Hoffmannelse
309894dd53c5SGerd Hoffmann    POD2MAN="pod2man"
309994dd53c5SGerd Hoffmannfi
310094dd53c5SGerd Hoffmann
3101952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
3102952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
3103952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
3104952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
3105952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
3106952afb71SBlue Swirl        fi
3107952afb71SBlue Swirl    done
3108952afb71SBlue Swirlfi
3109952afb71SBlue Swirl
311010ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix
3111528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix
31125a67135aSbellard
31134b1c11fdSDaniel P. Berrangetools=""
31144b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then
3115ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
31164b1c11fdSDaniel P. Berrange  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
31174b1c11fdSDaniel P. Berrange    tools="qemu-nbd\$(EXESUF) $tools"
31184b1c11fdSDaniel P. Berrange  fi
31194b1c11fdSDaniel P. Berrangefi
31204b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then
3121983eef5aSMeador Inge  if test "$virtfs" != no ; then
3122be5ea8edSAnthony Liguori    if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
3123983eef5aSMeador Inge      virtfs=yes
312417bff52bSM. Mohan Kumar      tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
3125983eef5aSMeador Inge    else
3126983eef5aSMeador Inge      if test "$virtfs" = yes; then
3127263ddcc8SHarsh Prateek Bora        echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel"
3128263ddcc8SHarsh Prateek Bora        exit 1
3129983eef5aSMeador Inge      fi
313017500370SAndreas Färber      virtfs=no
3131983eef5aSMeador Inge    fi
313217bff52bSM. Mohan Kumar  fi
3133ca35f780SPaolo Bonzini  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
3134d138cee9SMichael Roth    if [ "$guest_agent" = "yes" ]; then
313548ff7a62SMichael Roth      tools="qemu-ga\$(EXESUF) $tools"
3136d138cee9SMichael Roth    fi
3137ca35f780SPaolo Bonzini  fi
313800c705fbSPaolo Bonzini  if test "$smartcard_nss" = "yes" ; then
313900c705fbSPaolo Bonzini    tools="vscclient\$(EXESUF) $tools"
314000c705fbSPaolo Bonzini  fi
31414b1c11fdSDaniel P. Berrangefi
3142ca35f780SPaolo Bonzini
3143ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
3144ca35f780SPaolo Bonziniroms=
3145ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
3146ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
3147ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
3148ca35f780SPaolo Bonzini  roms="optionrom"
3149ca35f780SPaolo Bonzinifi
3150d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
315139ac8455SDavid Gibson  roms="$roms spapr-rtas"
315239ac8455SDavid Gibsonfi
3153ca35f780SPaolo Bonzini
31545ca9388aSGerd Hoffmann# add pixman flags after all config tests are done
31555ca9388aSGerd HoffmannQEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags"
31565ca9388aSGerd Hoffmannlibs_softmmu="$libs_softmmu $pixman_libs"
31575ca9388aSGerd Hoffmann
31587d13299dSbellardecho "Install prefix    $prefix"
3159c00b2808SEduardo Habkostecho "BIOS directory    `eval echo $qemu_datadir`"
3160f2b9e1e3SPaolo Bonziniecho "binary directory  `eval echo $bindir`"
31613aa5d2beSAlon Levyecho "library directory `eval echo $libdir`"
31628bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`"
31630f94d6daSAlon Levyecho "include directory `eval echo $includedir`"
31641c0fd160SAurelien Jarnoecho "config directory  `eval echo $sysconfdir`"
3165785c23aeSLuiz Capitulinoecho "local state directory   `eval echo $local_statedir`"
316611d9f695Sbellardif test "$mingw32" = "no" ; then
3167f2b9e1e3SPaolo Bonziniecho "Manual directory  `eval echo $mandir`"
316843ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
316911d9f695Sbellardfi
31705a67135aSbellardecho "Source path       $source_path"
31717d13299dSbellardecho "C compiler        $cc"
317283469015Sbellardecho "Host C compiler   $host_cc"
31733c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc"
31740c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
3175a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
31760c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
31777d13299dSbellardecho "make              $make"
31786a882643Spbrookecho "install           $install"
3179c886edfbSBlue Swirlecho "python            $python"
3180e2d8830eSBradif test "$slirp" = "yes" ; then
3181e2d8830eSBrad    echo "smbd              $smbd"
3182e2d8830eSBradfi
3183a98fd896Sbellardecho "host CPU          $cpu"
3184de83cd02Sbellardecho "host big endian   $bigendian"
318597a847bcSbellardecho "target list       $target_list"
3186ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
31877d13299dSbellardecho "gprof enabled     $gprof"
318803b4fe7dSaliguoriecho "sparse enabled    $sparse"
31891625af87Saliguoriecho "strip binaries    $strip_opt"
319005c2a3e7Sbellardecho "profiler          $profiler"
319143ce4dfeSbellardecho "static build      $static"
319285aa5189Sbellardecho "-Werror enabled   $werror"
31935b0753e0Sbellardif test "$darwin" = "yes" ; then
31945b0753e0Sbellard    echo "Cocoa support     $cocoa"
31955b0753e0Sbellardfi
3196e2134eb9SGerd Hoffmannecho "pixman            $pixman"
319797a847bcSbellardecho "SDL support       $sdl"
31984d3b6f6eSbalrogecho "curses support    $curses"
3199769ce76dSAlexander Grafecho "curl support      $curl"
320067b915a5Sbellardecho "mingw32 support   $mingw32"
32010c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
32020c58ac1cSmalcecho "Extra audio cards $audio_card_list"
3203eb852011SMarkus Armbrusterecho "Block whitelist   $block_drv_whitelist"
32048ff9cbf7Smalcecho "Mixer emulation   $mixemu"
3205983eef5aSMeador Ingeecho "VirtFS support    $virtfs"
3206821601eaSJes Sorensenecho "VNC support       $vnc"
3207821601eaSJes Sorensenif test "$vnc" = "yes" ; then
32088d5d2d4cSths    echo "VNC TLS support   $vnc_tls"
32092f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
32102f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
3211efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
3212821601eaSJes Sorensenfi
32133142255cSblueswir1if test -n "$sparc_cpu"; then
32143142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
32153142255cSblueswir1fi
3216e37630caSaliguoriecho "xen support       $xen"
32172e4d9fb1Saurel32echo "brlapi support    $brlapi"
3218a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
3219a25dba17SJuan Quintelaecho "Documentation     $docs"
3220c5937220Spbrook[ ! -z "$uname_release" ] && \
3221c5937220Spbrookecho "uname -r          $uname_release"
3222bd0c5661Spbrookecho "NPTL support      $nptl"
3223379f6698SPaul Brookecho "GUEST_BASE        $guest_base"
322440d6444eSAvi Kivityecho "PIE               $pie"
32258a16d273Sthsecho "vde support       $vde"
32265c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
3227758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
322877755340Sthsecho "Install blobs     $blobs"
3229b31a0277SJuan Quintelaecho "KVM support       $kvm"
32309195b2c2SStefan Weilecho "TCG interpreter   $tcg_interpreter"
3231f652e6afSaurel32echo "fdt support       $fdt"
3232ceb42de8Saliguoriecho "preadv support    $preadv"
32335f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
3234e78815a5SAndreas Färberecho "madvise           $madvise"
3235e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
32361e9737daSRichard Hendersonecho "sigev_thread_id   $sigev_thread_id"
3237ee682d27SStefan Weilecho "uuid support      $uuid"
323847e98658SCorey Bryantecho "libcap-ng support $cap_ng"
3239d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
324094a420b1SStefan Hajnocziecho "Trace backend     $trace_backend"
32419410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
32422e0e3c39SAlon Levyecho "spice support     $spice ($spice_protocol_version/$spice_server_version)"
3243f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
3244dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
3245111a38b0SRobert Relyeaecho "nss used          $smartcard_nss"
324669354a83SHans de Goedeecho "usb net redir     $usb_redir"
324720ff075bSMichael Walleecho "OpenGL support    $opengl"
3248c589b249SRonnie Sahlbergecho "libiscsi support  $libiscsi"
3249d138cee9SMichael Rothecho "build guest agent $guest_agent"
3250f794573eSEduardo Otuboecho "seccomp support   $seccomp"
3251519175a2SAlex Barceloecho "coroutine backend $coroutine_backend"
3252eb100396SBharata B Raoecho "GlusterFS support $glusterfs"
325367b915a5Sbellard
32541ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then
325524b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
3256e8cd23deSbellardfi
325797a847bcSbellard
325898ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
32594bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld"
326097a847bcSbellard
326198ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
326298ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak
326398ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak
326498ec69acSJuan Quintelaecho >> $config_host_mak
326598ec69acSJuan Quintela
3266e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
326799d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
326899d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
32693aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
32708bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak
32710f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
327299d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
327399d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
327422d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak
32759afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak
32769afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak
3277785c23aeSLuiz Capitulinoecho "qemu_localstatedir=$local_statedir" >> $config_host_mak
3278f354b1a1SMichael Tokarevecho "qemu_helperdir=$libexecdir" >> $config_host_mak
3279804edf29SJuan Quintela
328098ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
3281f8393946Saurel32if test "$debug_tcg" = "yes" ; then
32822358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
3283f8393946Saurel32fi
3284f3d08ee6SPaul Brookif test "$debug" = "yes" ; then
32852358a494SJuan Quintela  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
3286f3d08ee6SPaul Brookfi
32871625af87Saliguoriif test "$strip_opt" = "yes" ; then
328852ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
32891625af87Saliguorifi
32907d13299dSbellardif test "$bigendian" = "yes" ; then
3291e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
329297a847bcSbellardfi
329367b915a5Sbellardif test "$mingw32" = "yes" ; then
329498ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
32959fe6de94SBlue Swirl  rc_version=`cat $source_path/VERSION`
32969fe6de94SBlue Swirl  version_major=${rc_version%%.*}
32979fe6de94SBlue Swirl  rc_version=${rc_version#*.}
32989fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
32999fe6de94SBlue Swirl  rc_version=${rc_version#*.}
33009fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
33019fe6de94SBlue Swirl  version_micro=0
33029fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
33039fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
3304210fa556Spbrookelse
330535f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
3306210fa556Spbrookfi
3307128ab2ffSblueswir1
3308dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
3309dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
3310dffcb71cSMark McLoughlinfi
3311dffcb71cSMark McLoughlin
331283fb7adfSbellardif test "$darwin" = "yes" ; then
331398ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
331483fb7adfSbellardfi
3315b29fe3edSmalc
3316b29fe3edSmalcif test "$aix" = "yes" ; then
331798ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
3318b29fe3edSmalcfi
3319b29fe3edSmalc
3320ec530c81Sbellardif test "$solaris" = "yes" ; then
332198ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
33222358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
33230475a5caSths  if test "$needs_libsunmath" = "yes" ; then
332475b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
33250475a5caSths  fi
3326ec530c81Sbellardfi
3327179cf400SAndreas Färberif test "$haiku" = "yes" ; then
3328179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
3329179cf400SAndreas Färberfi
333097a847bcSbellardif test "$static" = "yes" ; then
333198ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
333297a847bcSbellardfi
33331ba16968SStefan Weilif test "$profiler" = "yes" ; then
33342358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
333505c2a3e7Sbellardfi
3336c20709aaSbellardif test "$slirp" = "yes" ; then
333798ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
3338e2d8830eSBrad  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
3339f9728943SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
3340c20709aaSbellardfi
33418a16d273Sthsif test "$vde" = "yes" ; then
334298ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
33438a16d273Sthsfi
334447e98658SCorey Bryantif test "$cap_ng" = "yes" ; then
334547e98658SCorey Bryant  echo "CONFIG_LIBCAP=y" >> $config_host_mak
334647e98658SCorey Bryantfi
33470c58ac1cSmalcfor card in $audio_card_list; do
3348bb55b712SStefan Weil    def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'`
334998ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
33500c58ac1cSmalcdone
33512358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
33520c58ac1cSmalcfor drv in $audio_drv_list; do
3353bb55b712SStefan Weil    def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'`
335498ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
3355923e4521Smalc    if test "$drv" = "fmod"; then
33567aac6cb1SJuan Quintela        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
3357fb065187Sbellard    fi
33580c58ac1cSmalcdone
335967f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
336067f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
336167f86e8eSJuan Quintelafi
3362d5631638Smalcif test "$audio_win_int" = "yes" ; then
3363d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
3364d5631638Smalcfi
3365eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
33668ff9cbf7Smalcif test "$mixemu" = "yes" ; then
336798ec69acSJuan Quintela  echo "CONFIG_MIXEMU=y" >> $config_host_mak
33688ff9cbf7Smalcfi
3369821601eaSJes Sorensenif test "$vnc" = "yes" ; then
3370821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
3371821601eaSJes Sorensenfi
33728d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
337398ec69acSJuan Quintela  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
3374525061bfSJuan Quintela  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
33758d5d2d4cSthsfi
33762f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
337798ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
337860ddf533SJuan Quintela  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
33792f9606b3Saliguorifi
3380821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
33812f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
33822f6f5c7aSCorentin Chary  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
33832f6f5c7aSCorentin Charyfi
3384821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
3385efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
3386efe556adSCorentin Chary  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
3387efe556adSCorentin Charyfi
338876655d6dSaliguoriif test "$fnmatch" = "yes" ; then
33892358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
339076655d6dSaliguorifi
3391ee682d27SStefan Weilif test "$uuid" = "yes" ; then
3392ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
3393ee682d27SStefan Weilfi
3394dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
3395dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
3396dce512deSChristoph Hellwigfi
3397b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
339898ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
33992358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
340098ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
340198ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
3402a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
340398ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
3404cc8ae6deSpbrookfi
34051ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
340698ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
34078ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
340849ecc3faSbellardfi
340949ecc3faSbellardif test "$cocoa" = "yes" ; then
341098ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
341149ecc3faSbellardfi
34124d3b6f6eSbalrogif test "$curses" = "yes" ; then
341398ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
3414ab4e5602SJan Kiszkafi
34153b3f24adSaurel32if test "$atfile" = "yes" ; then
34162358a494SJuan Quintela  echo "CONFIG_ATFILE=y" >> $config_host_mak
34173b3f24adSaurel32fi
3418ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
34192358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
3420ebc996f3SRiku Voipiofi
3421099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
34222358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
3423099d6b0fSRiku Voipiofi
342440ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
342540ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
342640ff6d7eSKevin Wolffi
34273ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
34282358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
34293ce34dfbSvibisreenivasanfi
3430c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
3431c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
3432c2882b96SRiku Voipiofi
3433d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
3434d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
3435d0927938SUlrich Hechtfi
3436c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
3437c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
3438c727f47dSPeter Maydellfi
3439dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
3440dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
3441dace20dcSPeter Maydellfi
3442d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
3443d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
3444d0927938SUlrich Hechtfi
34453b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
34463b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
34473b6edd16SPeter Maydellfi
34483b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
34493b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
34503b6edd16SPeter Maydellfi
34513b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then
34523b6edd16SPeter Maydell  echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
34533b6edd16SPeter Maydellfi
34543b3f24adSaurel32if test "$inotify" = "yes" ; then
34552358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
34563b3f24adSaurel32fi
3457c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
3458c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
3459c05c7a73SRiku Voipiofi
34606ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
34616ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
34626ae9a1f4SJuan Quintelafi
34636ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
34646ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
34656ae9a1f4SJuan Quintelafi
3466769ce76dSAlexander Grafif test "$curl" = "yes" ; then
346798ec69acSJuan Quintela  echo "CONFIG_CURL=y" >> $config_host_mak
3468b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
3469769ce76dSAlexander Graffi
34702e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
347198ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
34722e4d9fb1Saurel32fi
3473fb599c9aSbalrogif test "$bluez" = "yes" ; then
347498ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
3475ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
3476fb599c9aSbalrogfi
3477e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
3478e37630caSaliguoriif test "$xen" = "yes" ; then
34796dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
3480d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
3481e37630caSaliguorifi
34825c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
34835c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
34845c6c3a6cSChristoph Hellwigfi
3485758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
3486758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
3487758e8e38SVenkateswararao Jujjuri (JV)fi
34884f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then
34894f26f2b6SAvi Kivity  echo "CONFIG_LIBATTR=y" >> $config_host_mak
34904f26f2b6SAvi Kivityfi
3491983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then
3492758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_VIRTFS=y" >> $config_host_mak
3493758e8e38SVenkateswararao Jujjuri (JV)fi
349477755340Sthsif test "$blobs" = "yes" ; then
349598ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
349677755340Sthsfi
3497bf9298b9Saliguoriif test "$iovec" = "yes" ; then
34982358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
3499bf9298b9Saliguorifi
3500ceb42de8Saliguoriif test "$preadv" = "yes" ; then
35012358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
3502ceb42de8Saliguorifi
3503f652e6afSaurel32if test "$fdt" = "yes" ; then
35043f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
3505f652e6afSaurel32fi
3506dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
3507dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
3508dcc38d1cSMarcelo Tosattifi
35099195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
35109195b2c2SStefan Weil  echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
35119195b2c2SStefan Weilfi
35125f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
35135f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
35145f6b9e8fSBlue Swirlfi
3515e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
3516e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
3517e78815a5SAndreas Färberfi
3518e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
3519e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
3520e78815a5SAndreas Färberfi
35211e9737daSRichard Hendersonif test "$sigev_thread_id" = "yes" ; then
35221e9737daSRichard Henderson  echo "CONFIG_SIGEV_THREAD_ID=y" >> $config_host_mak
35231e9737daSRichard Hendersonfi
352497a847bcSbellard
3525cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
3526cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
3527cd4ec0b4SGerd Hoffmannfi
3528cd4ec0b4SGerd Hoffmann
352936707144SAlon Levyif test "$smartcard" = "yes" ; then
353036707144SAlon Levy  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
353136707144SAlon Levyfi
353236707144SAlon Levy
3533111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
3534111a38b0SRobert Relyea  echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
3535ad4cf3f6SPaul Brook  echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3536ad4cf3f6SPaul Brook  echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3537111a38b0SRobert Relyeafi
3538111a38b0SRobert Relyea
353969354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
354069354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
354169354a83SHans de Goedefi
354269354a83SHans de Goede
354320ff075bSMichael Walleif test "$opengl" = "yes" ; then
354420ff075bSMichael Walle  echo "CONFIG_OPENGL=y" >> $config_host_mak
354520ff075bSMichael Wallefi
354620ff075bSMichael Walle
3547c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then
3548c589b249SRonnie Sahlberg  echo "CONFIG_LIBISCSI=y" >> $config_host_mak
3549c589b249SRonnie Sahlbergfi
3550c589b249SRonnie Sahlberg
3551f794573eSEduardo Otuboif test "$seccomp" = "yes"; then
3552f794573eSEduardo Otubo  echo "CONFIG_SECCOMP=y" >> $config_host_mak
3553f794573eSEduardo Otubofi
3554f794573eSEduardo Otubo
355583fb7adfSbellard# XXX: suppress that
35567d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
35572358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
35587d3505c5Sbellardfi
35597d3505c5Sbellard
35602358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
3561c5937220Spbrook
356220ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then
356320ff6c80SAnthony Liguori  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
356420ff6c80SAnthony Liguorifi
3565f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
3566f27aaf4bSChristian Brunner  echo "CONFIG_RBD=y" >> $config_host_mak
3567f27aaf4bSChristian Brunnerfi
356820ff6c80SAnthony Liguori
3569519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then
3570d0e2fce5SAneesh Kumar K.V  echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak
3571fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then
3572fe91bfa8SAlex Barcelo  echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak
3573d0e2fce5SAneesh Kumar K.Vfi
3574d0e2fce5SAneesh Kumar K.V
3575d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then
3576d2042378SAneesh Kumar K.V  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
3577d2042378SAneesh Kumar K.Vfi
3578d2042378SAneesh Kumar K.V
3579e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then
3580e06a765eSHarsh Prateek Bora  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
3581e06a765eSHarsh Prateek Borafi
3582e06a765eSHarsh Prateek Bora
358306d71fa1SPeter Maydellif test "$pragma_disable_unused_but_set" = "yes" ; then
358406d71fa1SPeter Maydell  echo "CONFIG_PRAGMA_DISABLE_UNUSED_BUT_SET=y" >> $config_host_mak
358506d71fa1SPeter Maydellfi
358606d71fa1SPeter Maydell
35873f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then
35883f4349dcSKevin Wolf  echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
35893f4349dcSKevin Wolffi
35903f4349dcSKevin Wolf
35918ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then
35928ab1bf12SLuiz Capitulino  echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
35938ab1bf12SLuiz Capitulinofi
35948ab1bf12SLuiz Capitulino
3595eb100396SBharata B Raoif test "$glusterfs" = "yes" ; then
3596eb100396SBharata B Rao  echo "CONFIG_GLUSTERFS=y" >> $config_host_mak
3597eb100396SBharata B Raofi
3598eb100396SBharata B Rao
359968063649Sblueswir1# USB host support
360068063649Sblueswir1case "$usb" in
360168063649Sblueswir1linux)
360298ec69acSJuan Quintela  echo "HOST_USB=linux" >> $config_host_mak
360368063649Sblueswir1;;
360468063649Sblueswir1bsd)
360598ec69acSJuan Quintela  echo "HOST_USB=bsd" >> $config_host_mak
360668063649Sblueswir1;;
360768063649Sblueswir1*)
360898ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
360968063649Sblueswir1;;
361068063649Sblueswir1esac
361168063649Sblueswir1
3612e4858974SLluís# use default implementation for tracing backend-specific routines
3613e4858974SLluístrace_default=yes
361494a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak
36156d8a764eSLluísif test "$trace_backend" = "nop"; then
36166d8a764eSLluís  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
361722890ab5SPrerna Saxenafi
36189410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then
36196d8a764eSLluís  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
3620e4858974SLluís  trace_default=no
36216d8a764eSLluís  # Set the appropriate trace file.
3622953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
36239410b56cSPrerna Saxenafi
36246d8a764eSLluísif test "$trace_backend" = "stderr"; then
36256d8a764eSLluís  echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak
36269a82b6a5SLluís  trace_default=no
36276d8a764eSLluísfi
36286d8a764eSLluísif test "$trace_backend" = "ust"; then
36296d8a764eSLluís  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
36306d8a764eSLluísfi
36316d8a764eSLluísif test "$trace_backend" = "dtrace"; then
36326d8a764eSLluís  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
36336d8a764eSLluís  if test "$trace_backend_stap" = "yes" ; then
36346d8a764eSLluís    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
36356d8a764eSLluís  fi
3636c276b17dSDaniel P. Berrangefi
36379410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
3638e4858974SLluísif test "$trace_default" = "yes"; then
3639e4858974SLluís  echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak
3640e4858974SLluísfi
36419410b56cSPrerna Saxena
364298ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
364398ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
3644804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
3645804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
36461901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
36471901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
36481901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
3649c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
3650804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
36512b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
3652804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
36533c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak
3654804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
3655804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
3656804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
36579fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
365844dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak
3659e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
3660a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
3661f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
3662e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
3663e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
3664e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
3665e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
3666e39f0062SPaolo Bonzinifi
366742da6041SGerd Hoffmannif test "$cross_prefix" != ""; then
366842da6041SGerd Hoffmann  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
366942da6041SGerd Hoffmannelse
367042da6041SGerd Hoffmann  echo "AUTOCONF_HOST := "                             >> $config_host_mak
367142da6041SGerd Hoffmannfi
3672e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
3673a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
3674a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak
367573da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
36763e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
3677804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
3678957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak
367994dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak
3680*cbdd1999SPaolo Bonziniecho "TRANSLATE_OPT_CFLAGS=$TRANSLATE_OPT_CFLAGS" >> $config_host_mak
3681804edf29SJuan Quintela
36824bf6b55bSJuan Quintela# generate list of library paths for linker script
36834bf6b55bSJuan Quintela
36844bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
36854bf6b55bSJuan Quintela
36864bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then
36874bf6b55bSJuan Quintela  if cmp -s $config_host_ld ${config_host_ld}~ ; then
36884bf6b55bSJuan Quintela    mv ${config_host_ld}~ $config_host_ld
36894bf6b55bSJuan Quintela  else
36904bf6b55bSJuan Quintela    rm ${config_host_ld}~
36914bf6b55bSJuan Quintela  fi
36924bf6b55bSJuan Quintelafi
36934bf6b55bSJuan Quintela
36944d904533SBlue Swirlfor d in libdis libdis-user; do
369572b8b5a1SStefan Weil    symlink "$source_path/Makefile.dis" "$d/Makefile"
36964d904533SBlue Swirl    echo > $d/config.mak
36974d904533SBlue Swirldone
36984d904533SBlue Swirl
36996efd7517SPeter Maydell# use included Linux headers
37006efd7517SPeter Maydellif test "$linux" = "yes" ; then
3701a307beb6SAndreas Färber  mkdir -p linux-headers
37026efd7517SPeter Maydell  case "$cpu" in
37036efd7517SPeter Maydell  i386|x86_64)
370408312a63SPeter Maydell    linux_arch=x86
37056efd7517SPeter Maydell    ;;
37066efd7517SPeter Maydell  ppcemb|ppc|ppc64)
370708312a63SPeter Maydell    linux_arch=powerpc
37086efd7517SPeter Maydell    ;;
37096efd7517SPeter Maydell  s390x)
371008312a63SPeter Maydell    linux_arch=s390
371108312a63SPeter Maydell    ;;
371208312a63SPeter Maydell  *)
371308312a63SPeter Maydell    # For most CPUs the kernel architecture name and QEMU CPU name match.
371408312a63SPeter Maydell    linux_arch="$cpu"
37156efd7517SPeter Maydell    ;;
37166efd7517SPeter Maydell  esac
371708312a63SPeter Maydell    # For non-KVM architectures we will not have asm headers
371808312a63SPeter Maydell    if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
371908312a63SPeter Maydell      symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
372008312a63SPeter Maydell    fi
37216efd7517SPeter Maydellfi
37226efd7517SPeter Maydell
372397a847bcSbellardfor target in $target_list; do
372497a847bcSbellardtarget_dir="$target"
372525be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
3726600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1`
372797a847bcSbellardtarget_bigendian="no"
37281f3d3c8fSJuan Quintela
3729ea2d6a39SJuan Quintelacase "$target_arch2" in
3730e67db06eSJia Liu  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
3731ea2d6a39SJuan Quintela  target_bigendian=yes
3732ea2d6a39SJuan Quintela  ;;
3733ea2d6a39SJuan Quintelaesac
373497a847bcSbellardtarget_softmmu="no"
3735997344f3Sbellardtarget_user_only="no"
3736831b7825Sthstarget_linux_user="no"
373784778508Sblueswir1target_bsd_user="no"
37389e407a85Spbrookcase "$target" in
3739600309b6SBlue Swirl  ${target_arch2}-softmmu)
37409e407a85Spbrook    target_softmmu="yes"
37419e407a85Spbrook    ;;
3742600309b6SBlue Swirl  ${target_arch2}-linux-user)
37439c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
37449c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Linux host"
37459c7a4202SBlue Swirl      exit 1
37469c7a4202SBlue Swirl    fi
37479e407a85Spbrook    target_user_only="yes"
37489e407a85Spbrook    target_linux_user="yes"
37499e407a85Spbrook    ;;
3750600309b6SBlue Swirl  ${target_arch2}-bsd-user)
37519cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
37529c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a BSD host"
37539c7a4202SBlue Swirl      exit 1
37549c7a4202SBlue Swirl    fi
375584778508Sblueswir1    target_user_only="yes"
375684778508Sblueswir1    target_bsd_user="yes"
375784778508Sblueswir1    ;;
37589e407a85Spbrook  *)
37599e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
37609e407a85Spbrook    exit 1
37619e407a85Spbrook    ;;
37629e407a85Spbrookesac
3763831b7825Sths
376497a847bcSbellardmkdir -p $target_dir
376525be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
376697a847bcSbellard
3767e5fe0c52Spbrookbflt="no"
3768bd0c5661Spbrooktarget_nptl="no"
3769600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
377056aebc89Spbrookgdb_xml_files=""
3771c2e3dee6SLaurent Viviertarget_short_alignment=2
3772c2e3dee6SLaurent Viviertarget_int_alignment=4
3773c2e3dee6SLaurent Viviertarget_long_alignment=4
3774c2e3dee6SLaurent Viviertarget_llong_alignment=8
3775de3a354aSMichael Walletarget_libs_softmmu=
37767ba1e619Saliguori
3777938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2"
37786acff7daSJuan QuintelaTARGET_BASE_ARCH=""
3779e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
3780e73aae67SJuan Quintela
3781600309b6SBlue Swirlcase "$target_arch2" in
37822408a527Saurel32  i386)
37832408a527Saurel32  ;;
37842408a527Saurel32  x86_64)
37856acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
3786c2e3dee6SLaurent Vivier    target_long_alignment=8
37872408a527Saurel32  ;;
37882408a527Saurel32  alpha)
3789c2e3dee6SLaurent Vivier    target_long_alignment=8
3790a4b388ffSRichard Henderson    target_nptl="yes"
37912408a527Saurel32  ;;
37922408a527Saurel32  arm|armeb)
3793b498c8a0SJuan Quintela    TARGET_ARCH=arm
3794e5fe0c52Spbrook    bflt="yes"
3795bd0c5661Spbrook    target_nptl="yes"
379656aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
3797c2e3dee6SLaurent Vivier    target_llong_alignment=4
3798412beee6SGrant Likely    target_libs_softmmu="$fdt_libs"
37992408a527Saurel32  ;;
38002408a527Saurel32  cris)
3801253bd7f8Sedgar_igl    target_nptl="yes"
38022408a527Saurel32  ;;
3803613a22c9SMichael Walle  lm32)
3804de3a354aSMichael Walle    target_libs_softmmu="$opengl_libs"
3805613a22c9SMichael Walle  ;;
38062408a527Saurel32  m68k)
38070938cda5Saurel32    bflt="yes"
380856aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
3809c2e3dee6SLaurent Vivier    target_int_alignment=2
3810c2e3dee6SLaurent Vivier    target_long_alignment=2
3811c2e3dee6SLaurent Vivier    target_llong_alignment=2
38122408a527Saurel32  ;;
3813877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
3814877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
381572b675caSEdgar E. Iglesias    bflt="yes"
381672b675caSEdgar E. Iglesias    target_nptl="yes"
3817de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
381872b675caSEdgar E. Iglesias  ;;
38192408a527Saurel32  mips|mipsel)
3820b498c8a0SJuan Quintela    TARGET_ARCH=mips
382125be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
3822f04dc72fSPaul Brook    target_nptl="yes"
38232408a527Saurel32  ;;
38242408a527Saurel32  mipsn32|mipsn32el)
3825b498c8a0SJuan Quintela    TARGET_ARCH=mipsn32
38266acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
382725be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
38282408a527Saurel32  ;;
38292408a527Saurel32  mips64|mips64el)
3830b498c8a0SJuan Quintela    TARGET_ARCH=mips64
38316acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
383225be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
3833c2e3dee6SLaurent Vivier    target_long_alignment=8
38342408a527Saurel32  ;;
3835e67db06eSJia Liu  or32)
3836e67db06eSJia Liu    TARGET_ARCH=openrisc
3837e67db06eSJia Liu    TARGET_BASE_ARCH=openrisc
3838e67db06eSJia Liu  ;;
38392408a527Saurel32  ppc)
3840c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
3841d6630708SNathan Froyd    target_nptl="yes"
3842de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
38432408a527Saurel32  ;;
38442408a527Saurel32  ppcemb)
38456acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3846e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3847c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
3848d6630708SNathan Froyd    target_nptl="yes"
3849de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
38502408a527Saurel32  ;;
38512408a527Saurel32  ppc64)
38526acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3853e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3854c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
3855c2e3dee6SLaurent Vivier    target_long_alignment=8
3856de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
38572408a527Saurel32  ;;
38582408a527Saurel32  ppc64abi32)
3859b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
38606acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3861e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
386225be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
3863c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
3864de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
38652408a527Saurel32  ;;
38662408a527Saurel32  sh4|sh4eb)
3867b498c8a0SJuan Quintela    TARGET_ARCH=sh4
38684dbed897Spbrook    bflt="yes"
38690b6d3ae0Saurel32    target_nptl="yes"
38702408a527Saurel32  ;;
38712408a527Saurel32  sparc)
38722408a527Saurel32  ;;
38732408a527Saurel32  sparc64)
38746acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3875c2e3dee6SLaurent Vivier    target_long_alignment=8
38762408a527Saurel32  ;;
38772408a527Saurel32  sparc32plus)
3878b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
38796acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3880e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
388125be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
38822408a527Saurel32  ;;
388324e804ecSAlexander Graf  s390x)
3884bc434676SUlrich Hecht    target_nptl="yes"
38857b3da903SAlexander Graf    target_long_alignment=8
388624e804ecSAlexander Graf  ;;
3887d2fbca94SGuan Xuetao  unicore32)
3888d2fbca94SGuan Xuetao  ;;
3889cfa550c6SMax Filippov  xtensa|xtensaeb)
3890cfa550c6SMax Filippov    TARGET_ARCH=xtensa
3891cfa550c6SMax Filippov  ;;
38922408a527Saurel32  *)
3893de83cd02Sbellard    echo "Unsupported target CPU"
3894de83cd02Sbellard    exit 1
38952408a527Saurel32  ;;
38962408a527Saurel32esac
38975e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
38985e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then
38995e8861a0SPaolo Bonzini  TARGET_BASE_ARCH=$TARGET_ARCH
39005e8861a0SPaolo Bonzinifi
39015e8861a0SPaolo Bonzini
39025e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile"
39035e8861a0SPaolo Bonzini
390499afc91dSDaniel P. Berrangeupper() {
390599afc91dSDaniel P. Berrange    echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
390699afc91dSDaniel P. Berrange}
390799afc91dSDaniel P. Berrange
390832761257SYeongkyoon Leecase "$cpu" in
3909ed224a56Smalc  i386|x86_64|ppc)
391013586813SStefan Weil    # The TCG interpreter currently does not support ld/st optimization.
391113586813SStefan Weil    if test "$tcg_interpreter" = "no" ; then
391232761257SYeongkyoon Lee        echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_target_mak
391313586813SStefan Weil    fi
391432761257SYeongkyoon Lee  ;;
391532761257SYeongkyoon Leeesac
391632761257SYeongkyoon Lee
3917c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3918c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3919c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3920c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
392125be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
392299afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`"
392325be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
392425be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak
392599afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak
392625be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
3927e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
3928e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
3929e6e91b9cSJuan Quintelafi
393025be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
39311b0c87fcSJuan Quintelacase "$target_arch2" in
39321b0c87fcSJuan Quintela  i386|x86_64)
39331b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
393425be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
3935eb6fda0fSAnthony PERARD      if test "$xen_pci_passthrough" = yes; then
3936eb6fda0fSAnthony PERARD        echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
3937eb6fda0fSAnthony PERARD      fi
393859d21e53SAlexander Graf    else
393959d21e53SAlexander Graf      echo "CONFIG_NO_XEN=y" >> $config_target_mak
3940432d268cSJun Nakajima    fi
394159d21e53SAlexander Graf    ;;
394259d21e53SAlexander Graf  *)
394359d21e53SAlexander Graf    echo "CONFIG_NO_XEN=y" >> $config_target_mak
39441b0c87fcSJuan Quintelaesac
3945c59249f9SJuan Quintelacase "$target_arch2" in
39460e60a699SAlexander Graf  i386|x86_64|ppcemb|ppc|ppc64|s390x)
3947c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
3948c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3949c59249f9SJuan Quintela      \( "$target_arch2" = "$cpu" -o \
3950c59249f9SJuan Quintela      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
39515f114bc6SAlexander Graf      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
3952adf82011SRené Rebe      \( "$target_arch2" = "ppc"    -a "$cpu" = "ppc64" \) -o \
3953adf82011SRené Rebe      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
3954c59249f9SJuan Quintela      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
3955c59249f9SJuan Quintela      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
395625be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
39571ba16968SStefan Weil      if test "$vhost_net" = "yes" ; then
3958d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3959d5970055SMichael S. Tsirkin      fi
3960c59249f9SJuan Quintela    fi
3961c59249f9SJuan Quintelaesac
3962fae001f5SWen Congyangcase "$target_arch2" in
3963fae001f5SWen Congyang  i386|x86_64)
3964fae001f5SWen Congyang    echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak
3965fae001f5SWen Congyangesac
39667f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then
39670a6b8ddeSAlexander Graf  echo "CONFIG_PSERIES=y" >> $config_target_mak
39680a6b8ddeSAlexander Graffi
3969de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
397025be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
397197a847bcSbellardfi
397297a847bcSbellardif test "$target_softmmu" = "yes" ; then
397325be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3974de3a354aSMichael Walle  echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
3975ad4cf3f6SPaul Brook  if test "$smartcard_nss" = "yes" ; then
3976ad4cf3f6SPaul Brook    echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3977ad4cf3f6SPaul Brook  fi
39789fecbed0SWen Congyang  case "$target_arch2" in
39799fecbed0SWen Congyang    i386|x86_64)
39809fecbed0SWen Congyang      echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak
39819fecbed0SWen Congyang  esac
3982de83cd02Sbellardfi
3983997344f3Sbellardif test "$target_user_only" = "yes" ; then
398425be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
3985a2c80be9SStefan Weil  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
3986997344f3Sbellardfi
3987831b7825Sthsif test "$target_linux_user" = "yes" ; then
398825be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
3989831b7825Sthsfi
399056aebc89Spbrooklist=""
399156aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
399256aebc89Spbrook  for x in $gdb_xml_files; do
399356aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
399456aebc89Spbrook  done
399525be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
39963d0f1517SJuan Quintelafi
3997de83cd02Sbellard
3998e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
399925be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
4000e5fe0c52Spbrookfi
4001bd0c5661Spbrookif test "$target_user_only" = "yes" \
4002bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
400325be210fSJuan Quintela  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
4004bd0c5661Spbrookfi
4005379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
400625be210fSJuan Quintela  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
4007379f6698SPaul Brookfi
400884778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
400925be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
401084778508Sblueswir1fi
40115b0753e0Sbellard
40125a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround
40135a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then
40145a4d701aSJan Kiszka  echo "CONFIG_PCSPK=y" >> $config_target_mak
40155a4d701aSJan Kiszkafi
40165a4d701aSJan Kiszka
40174afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
4018fa282484SJuan Quintela
40194afddb55SJuan Quintelacflags=""
4020f9728943SPaolo Bonziniincludes=""
4021fa282484SJuan Quintelaldflags=""
40229b8e111fSJuan Quintela
40239195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then
40249195b2c2SStefan Weil  includes="-I\$(SRC_PATH)/tcg/tci $includes"
40259195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then
4026f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/sparc $includes"
402724e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then
4028f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/s390 $includes"
40295d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then
4030f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/i386 $includes"
403157ddfbf7SJuan Quintelaelse
4032f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
403357ddfbf7SJuan Quintelafi
4034f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes"
403557ddfbf7SJuan Quintela
40366efd7517SPeter Maydellif test "$linux" = "yes" ; then
40376efd7517SPeter Maydell  includes="-I\$(SRC_PATH)/linux-headers $includes"
40386efd7517SPeter Maydellfi
40396efd7517SPeter Maydell
40404d904533SBlue Swirlif test "$target_user_only" = "yes" ; then
40414d904533SBlue Swirl    libdis_config_mak=libdis-user/config.mak
40424d904533SBlue Swirlelse
40434d904533SBlue Swirl    libdis_config_mak=libdis/config.mak
40444d904533SBlue Swirlfi
40454d904533SBlue Swirl
404664656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
404764656024SJuan Quintela  case "$i" in
404864656024SJuan Quintela  alpha)
404925be210fSJuan Quintela    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
40504d904533SBlue Swirl    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
405164656024SJuan Quintela  ;;
405264656024SJuan Quintela  arm)
405325be210fSJuan Quintela    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
40544d904533SBlue Swirl    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
405564656024SJuan Quintela  ;;
405664656024SJuan Quintela  cris)
405725be210fSJuan Quintela    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
40584d904533SBlue Swirl    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
405964656024SJuan Quintela  ;;
406064656024SJuan Quintela  hppa)
406125be210fSJuan Quintela    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
40624d904533SBlue Swirl    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
406364656024SJuan Quintela  ;;
406464656024SJuan Quintela  i386|x86_64)
406525be210fSJuan Quintela    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
40664d904533SBlue Swirl    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
406764656024SJuan Quintela  ;;
4068903ec55cSAurelien Jarno  ia64*)
4069903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
4070903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
4071903ec55cSAurelien Jarno  ;;
407279368f49SMichael Walle  lm32)
407379368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $config_target_mak
407479368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $libdis_config_mak
407579368f49SMichael Walle  ;;
407664656024SJuan Quintela  m68k)
407725be210fSJuan Quintela    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
40784d904533SBlue Swirl    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
407964656024SJuan Quintela  ;;
4080877fdc12SEdgar E. Iglesias  microblaze*)
408125be210fSJuan Quintela    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
40824d904533SBlue Swirl    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
408364656024SJuan Quintela  ;;
408464656024SJuan Quintela  mips*)
408525be210fSJuan Quintela    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
40864d904533SBlue Swirl    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
408764656024SJuan Quintela  ;;
4088e67db06eSJia Liu  or32)
4089e67db06eSJia Liu    echo "CONFIG_OPENRISC_DIS=y"  >> $config_target_mak
4090e67db06eSJia Liu    echo "CONFIG_OPENRISC_DIS=y"  >> $libdis_config_mak
4091e67db06eSJia Liu  ;;
409264656024SJuan Quintela  ppc*)
409325be210fSJuan Quintela    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
40944d904533SBlue Swirl    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
409564656024SJuan Quintela  ;;
409624e804ecSAlexander Graf  s390*)
409725be210fSJuan Quintela    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
40984d904533SBlue Swirl    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
409964656024SJuan Quintela  ;;
410064656024SJuan Quintela  sh4)
410125be210fSJuan Quintela    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
41024d904533SBlue Swirl    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
410364656024SJuan Quintela  ;;
410464656024SJuan Quintela  sparc*)
410525be210fSJuan Quintela    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
41064d904533SBlue Swirl    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
410764656024SJuan Quintela  ;;
4108cfa550c6SMax Filippov  xtensa*)
4109cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $config_target_mak
4110cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $libdis_config_mak
4111cfa550c6SMax Filippov  ;;
411264656024SJuan Quintela  esac
411364656024SJuan Quinteladone
41149195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
41159195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $config_target_mak
41169195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $libdis_config_mak
41179195b2c2SStefan Weilfi
411864656024SJuan Quintela
41196ee7126fSJuan Quintelacase "$ARCH" in
41206ee7126fSJuan Quintelaalpha)
41216ee7126fSJuan Quintela  # Ensure there's only a single GP
41226ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
41236ee7126fSJuan Quintela;;
41246ee7126fSJuan Quintelaesac
41256ee7126fSJuan Quintela
412655d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then
412755d9c04bSJuan Quintela  case "$TARGET_BASE_ARCH" in
412855d9c04bSJuan Quintela  arm)
412955d9c04bSJuan Quintela    cflags="-DHAS_AUDIO $cflags"
413055d9c04bSJuan Quintela  ;;
413125a8bb96SMichael Walle  lm32)
413225a8bb96SMichael Walle    cflags="-DHAS_AUDIO $cflags"
413325a8bb96SMichael Walle  ;;
413455d9c04bSJuan Quintela  i386|mips|ppc)
413555d9c04bSJuan Quintela    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
413655d9c04bSJuan Quintela  ;;
413755d9c04bSJuan Quintela  esac
413855d9c04bSJuan Quintelafi
413955d9c04bSJuan Quintela
4140d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
414125be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
4142d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
4143d02c1db3SJuan Quintela    cflags="-p $cflags"
4144d02c1db3SJuan Quintela    ldflags="-p $ldflags"
4145d02c1db3SJuan Quintela  fi
4146d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
4147d02c1db3SJuan Quintela    ldflags="-p $ldflags"
414825be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
4149d02c1db3SJuan Quintela  fi
4150d02c1db3SJuan Quintelafi
4151d02c1db3SJuan Quintela
41529195b2c2SStefan Weilif test "$ARCH" = "tci"; then
41539195b2c2SStefan Weil  linker_script=""
41549195b2c2SStefan Weilelse
41556ee7126fSJuan Quintela  linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
41569195b2c2SStefan Weilfi
41579195b2c2SStefan Weil
41589b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
4159fa282484SJuan Quintela  case "$ARCH" in
41604d58be06SRichard Henderson  alpha | s390x)
41614d58be06SRichard Henderson    # The default placement of the application is fine.
41624d58be06SRichard Henderson    ;;
4163fd76e73aSRichard Henderson  *)
4164322e5878SJuan Quintela    ldflags="$linker_script $ldflags"
4165fa282484SJuan Quintela    ;;
4166fa282484SJuan Quintela  esac
4167fa282484SJuan Quintelafi
4168fa282484SJuan Quintela
416925be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
417025be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
4171f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak
4172fa282484SJuan Quintela
417397a847bcSbellarddone # for target in $targets
41747d13299dSbellard
4175b776eca1SGerd Hoffmannif [ "$pixman" = "internal" ]; then
4176b776eca1SGerd Hoffmann  echo "config-host.h: subdir-pixman" >> $config_host_mak
4177b776eca1SGerd Hoffmannfi
4178b776eca1SGerd Hoffmann
4179d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
4180927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32"
41812dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas"
41822d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
41832dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated"
418400c705fbSPaolo BonziniDIRS="$DIRS libcacard libcacard/libcacard libcacard/trace"
4185c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
4186c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
418700c705fbSPaolo BonziniFILES="$FILES tests/tcg/lm32/Makefile libcacard/Makefile"
4188ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
4189446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
41902d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
4191753d11f2SRichard Hendersonfor bios_file in \
4192753d11f2SRichard Henderson    $source_path/pc-bios/*.bin \
4193753d11f2SRichard Henderson    $source_path/pc-bios/*.rom \
4194753d11f2SRichard Henderson    $source_path/pc-bios/*.dtb \
4195753d11f2SRichard Henderson    $source_path/pc-bios/openbios-* \
4196753d11f2SRichard Henderson    $source_path/pc-bios/palcode-*
4197753d11f2SRichard Hendersondo
41987ea78b74SJan Kiszka    FILES="$FILES pc-bios/`basename $bios_file`"
41997ea78b74SJan Kiszkadone
4200d1807a4fSPaolo Bonzinimkdir -p $DIRS
42017d13299dSbellardfor f in $FILES ; do
420272b8b5a1SStefan Weil    if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then
4203f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
4204f9245e10SPeter Maydell    fi
42057d13299dSbellarddone
42061ad2134fSPaul Brook
4207c34ebfdcSAnthony Liguori# temporary config to build submodules
42082d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
4209c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
421037116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
4211c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
4212c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
4213c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
4214c34ebfdcSAnthony Liguori    echo "CPP=${cross_prefix}cpp" >> $config_mak
4215c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
4216c34ebfdcSAnthony Liguori    echo "IASL=iasl" >> $config_mak
4217c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
4218c34ebfdcSAnthony Liguoridone
4219c34ebfdcSAnthony Liguori
4220add16157SBlue Swirld=libuser
422172b8b5a1SStefan Weilsymlink "$source_path/Makefile.user" "$d/Makefile"
4222b40292e7SJan Kiszka
4223b40292e7SJan Kiszkaif test "$docs" = "yes" ; then
4224b40292e7SJan Kiszka  mkdir -p QMP
4225b40292e7SJan Kiszkafi
4226