xref: /openbmc/qemu/configure (revision c6f7e4fb9a0f82bb826f4bd7dff6f2c90d6a83be)
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
128121afa9eSAnthony Liguoritarget_list=""
129377529c0SPaolo Bonzini
130377529c0SPaolo Bonzini# Default value for a variable defining feature "foo".
131377529c0SPaolo Bonzini#  * foo="no"  feature will only be used if --enable-foo arg is given
132377529c0SPaolo Bonzini#  * foo=""    feature will be searched for, and if found, will be used
133377529c0SPaolo Bonzini#              unless --disable-foo is given
134377529c0SPaolo Bonzini#  * foo="yes" this value will only be set by --enable-foo flag.
135377529c0SPaolo Bonzini#              feature will searched for,
136377529c0SPaolo Bonzini#              if not found, configure exits with error
137377529c0SPaolo Bonzini#
138377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args.
139377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it
140377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found.
141377529c0SPaolo Bonzini
142377529c0SPaolo Bonzinibluez=""
143377529c0SPaolo Bonzinibrlapi=""
144377529c0SPaolo Bonzinicurl=""
145377529c0SPaolo Bonzinicurses=""
146377529c0SPaolo Bonzinidocs=""
147377529c0SPaolo Bonzinifdt=""
148377529c0SPaolo Bonzininptl=""
149377529c0SPaolo Bonzinisdl=""
150983eef5aSMeador Ingevirtfs=""
151821601eaSJes Sorensenvnc="yes"
152377529c0SPaolo Bonzinisparse="no"
153377529c0SPaolo Bonziniuuid=""
154377529c0SPaolo Bonzinivde=""
155377529c0SPaolo Bonzinivnc_tls=""
156377529c0SPaolo Bonzinivnc_sasl=""
157377529c0SPaolo Bonzinivnc_jpeg=""
158377529c0SPaolo Bonzinivnc_png=""
159377529c0SPaolo Bonzinixen=""
160d5b93ddfSAnthony PERARDxen_ctrl_version=""
161eb6fda0fSAnthony PERARDxen_pci_passthrough=""
162377529c0SPaolo Bonzinilinux_aio=""
16347e98658SCorey Bryantcap_ng=""
164377529c0SPaolo Bonziniattr=""
1654f26f2b6SAvi Kivitylibattr=""
166377529c0SPaolo Bonzinixfs=""
167377529c0SPaolo Bonzini
168d41a75a2SBradvhost_net="no"
169d41a75a2SBradkvm="no"
170377529c0SPaolo Bonzinigprof="no"
171377529c0SPaolo Bonzinidebug_tcg="no"
172377529c0SPaolo Bonzinidebug="no"
173377529c0SPaolo Bonzinistrip_opt="yes"
1749195b2c2SStefan Weiltcg_interpreter="no"
175377529c0SPaolo Bonzinibigendian="no"
176377529c0SPaolo Bonzinimingw32="no"
177377529c0SPaolo BonziniEXESUF=""
178377529c0SPaolo Bonziniprefix="/usr/local"
179377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
180528ae5b8SEduardo Habkostdatadir="\${prefix}/share"
181850da188SEduardo Habkostqemu_docdir="\${prefix}/share/doc/qemu"
182377529c0SPaolo Bonzinibindir="\${prefix}/bin"
1833aa5d2beSAlon Levylibdir="\${prefix}/lib"
1848bf188aaSMichael Tokarevlibexecdir="\${prefix}/libexec"
1850f94d6daSAlon Levyincludedir="\${prefix}/include"
186377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
187377529c0SPaolo Bonziniconfsuffix="/qemu"
188377529c0SPaolo Bonzinislirp="yes"
189377529c0SPaolo Bonzinifmod_lib=""
190377529c0SPaolo Bonzinifmod_inc=""
191377529c0SPaolo Bonzinioss_lib=""
192377529c0SPaolo Bonzinibsd="no"
193377529c0SPaolo Bonzinilinux="no"
194377529c0SPaolo Bonzinisolaris="no"
195377529c0SPaolo Bonziniprofiler="no"
196377529c0SPaolo Bonzinicocoa="no"
197377529c0SPaolo Bonzinisoftmmu="yes"
198377529c0SPaolo Bonzinilinux_user="no"
199377529c0SPaolo Bonzinibsd_user="no"
200377529c0SPaolo Bonziniguest_base=""
201377529c0SPaolo Bonziniuname_release=""
202377529c0SPaolo Bonzinimixemu="no"
203377529c0SPaolo Bonziniaix="no"
204377529c0SPaolo Bonziniblobs="yes"
205377529c0SPaolo Bonzinipkgversion=""
20640d6444eSAvi Kivitypie=""
207377529c0SPaolo Bonzinizero_malloc=""
208377529c0SPaolo Bonzinitrace_backend="nop"
209377529c0SPaolo Bonzinitrace_file="trace"
210377529c0SPaolo Bonzinispice=""
211377529c0SPaolo Bonzinirbd=""
21236707144SAlon Levysmartcard=""
213111a38b0SRobert Relyeasmartcard_nss=""
21469354a83SHans de Goedeusb_redir=""
215430a3c18SMichael Walleopengl=""
2161ece9905SAlon Levyzlib="yes"
217d138cee9SMichael Rothguest_agent="yes"
2184b1c11fdSDaniel P. Berrangewant_tools="yes"
219c589b249SRonnie Sahlberglibiscsi=""
220519175a2SAlex Barcelocoroutine=""
221f794573eSEduardo Otuboseccomp=""
222377529c0SPaolo Bonzini
223ac0df51dSaliguori# parse CC options first
224ac0df51dSaliguorifor opt do
225ac0df51dSaliguori  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
226ac0df51dSaliguori  case "$opt" in
227ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
228ac0df51dSaliguori  ;;
2293d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
230ac0df51dSaliguori  ;;
231ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
232ca4deeb1SPaolo Bonzini  ;;
2332ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
2342ff6b91eSJuan Quintela  ;;
235a558ee17SJuan Quintela  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
236e2a2ed06SJuan Quintela  ;;
237e2a2ed06SJuan Quintela  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
238e2a2ed06SJuan Quintela  ;;
2395bc62e01SGerd Hoffmann  --enable-debug-info) debug_info="yes"
2405bc62e01SGerd Hoffmann  ;;
2415bc62e01SGerd Hoffmann  --disable-debug-info) debug_info="no"
2425bc62e01SGerd Hoffmann  ;;
243ac0df51dSaliguori  esac
244ac0df51dSaliguoridone
245ac0df51dSaliguori# OS specific
246ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
24793148aa5SStefan Weil# we can eliminate its usage altogether.
248ac0df51dSaliguori
249b3198cc2SStuart Yodercc="${CC-${cross_prefix}gcc}"
250b3198cc2SStuart Yoderar="${AR-${cross_prefix}ar}"
251b3198cc2SStuart Yoderobjcopy="${OBJCOPY-${cross_prefix}objcopy}"
252b3198cc2SStuart Yoderld="${LD-${cross_prefix}ld}"
2533f534581SBradlibtool="${LIBTOOL-${cross_prefix}libtool}"
254b3198cc2SStuart Yoderstrip="${STRIP-${cross_prefix}strip}"
255b3198cc2SStuart Yoderwindres="${WINDRES-${cross_prefix}windres}"
25617884d7bSSergei Trofimovichpkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
25717884d7bSSergei Trofimovichquery_pkg_config() {
25817884d7bSSergei Trofimovich    "${pkg_config_exe}" ${QEMU_PKG_CONFIG_FLAGS} "$@"
25917884d7bSSergei Trofimovich}
26017884d7bSSergei Trofimovichpkg_config=query_pkg_config
261b3198cc2SStuart Yodersdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
262ac0df51dSaliguori
263be17dc90SMichael S. Tsirkin# default flags for all hosts
264be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
265f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
266be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
267be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
268cbbab922SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu"
2695bc62e01SGerd Hoffmannif test "$debug_info" = "yes"; then
2705bc62e01SGerd Hoffmann    CFLAGS="-g $CFLAGS"
271be17dc90SMichael S. Tsirkin    LDFLAGS="-g $LDFLAGS"
2725bc62e01SGerd Hoffmannfi
273be17dc90SMichael S. Tsirkin
274ca4deeb1SPaolo Bonzini# make source path absolute
275ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd`
276ca4deeb1SPaolo Bonzini
277ac0df51dSaliguoricheck_define() {
278ac0df51dSaliguoricat > $TMPC <<EOF
279ac0df51dSaliguori#if !defined($1)
280fd786e1aSPeter Maydell#error $1 not defined
281ac0df51dSaliguori#endif
282ac0df51dSaliguoriint main(void) { return 0; }
283ac0df51dSaliguoriEOF
28452166aa0SJuan Quintela  compile_object
285ac0df51dSaliguori}
286ac0df51dSaliguori
287bbea4050SPeter Maydellif check_define __linux__ ; then
288bbea4050SPeter Maydell  targetos="Linux"
289bbea4050SPeter Maydellelif check_define _WIN32 ; then
290bbea4050SPeter Maydell  targetos='MINGW32'
291bbea4050SPeter Maydellelif check_define __OpenBSD__ ; then
292bbea4050SPeter Maydell  targetos='OpenBSD'
293bbea4050SPeter Maydellelif check_define __sun__ ; then
294bbea4050SPeter Maydell  targetos='SunOS'
295bbea4050SPeter Maydellelif check_define __HAIKU__ ; then
296bbea4050SPeter Maydell  targetos='Haiku'
297bbea4050SPeter Maydellelse
298bbea4050SPeter Maydell  targetos=`uname -s`
299bbea4050SPeter Maydellfi
300bbea4050SPeter Maydell
301bbea4050SPeter Maydell# Some host OSes need non-standard checks for which CPU to use.
302bbea4050SPeter Maydell# Note that these checks are broken for cross-compilation: if you're
303bbea4050SPeter Maydell# cross-compiling to one of these OSes then you'll need to specify
304bbea4050SPeter Maydell# the correct CPU with the --cpu option.
305bbea4050SPeter Maydellcase $targetos in
306bbea4050SPeter MaydellDarwin)
307bbea4050SPeter Maydell  # on Leopard most of the system is 32-bit, so we have to ask the kernel if we can
308bbea4050SPeter Maydell  # run 64-bit userspace code.
309bbea4050SPeter Maydell  # If the user didn't specify a CPU explicitly and the kernel says this is
310bbea4050SPeter Maydell  # 64 bit hw, then assume x86_64. Otherwise fall through to the usual detection code.
311bbea4050SPeter Maydell  if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
312bbea4050SPeter Maydell    cpu="x86_64"
313bbea4050SPeter Maydell  fi
314bbea4050SPeter Maydell  ;;
315bbea4050SPeter MaydellSunOS)
316bbea4050SPeter Maydell  # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
317bbea4050SPeter Maydell  if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
318bbea4050SPeter Maydell    cpu="x86_64"
319bbea4050SPeter Maydell  fi
320bbea4050SPeter Maydellesac
321bbea4050SPeter Maydell
3222ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
3232ff6b91eSJuan Quintela  # command line argument
3242ff6b91eSJuan Quintela  :
3252ff6b91eSJuan Quintelaelif check_define __i386__ ; then
326ac0df51dSaliguori  cpu="i386"
327ac0df51dSaliguorielif check_define __x86_64__ ; then
328ac0df51dSaliguori  cpu="x86_64"
3293aa9bd6cSblueswir1elif check_define __sparc__ ; then
3303aa9bd6cSblueswir1  if check_define __arch64__ ; then
3313aa9bd6cSblueswir1    cpu="sparc64"
3323aa9bd6cSblueswir1  else
3333aa9bd6cSblueswir1    cpu="sparc"
3343aa9bd6cSblueswir1  fi
335fdf7ed96Smalcelif check_define _ARCH_PPC ; then
336fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
337fdf7ed96Smalc    cpu="ppc64"
338ac0df51dSaliguori  else
339fdf7ed96Smalc    cpu="ppc"
340fdf7ed96Smalc  fi
341afa05235SAurelien Jarnoelif check_define __mips__ ; then
342afa05235SAurelien Jarno  cpu="mips"
343477ba620SAurelien Jarnoelif check_define __ia64__ ; then
344477ba620SAurelien Jarno  cpu="ia64"
345d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
346d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
347d66ed0eaSAurelien Jarno    cpu="s390x"
348d66ed0eaSAurelien Jarno  else
349d66ed0eaSAurelien Jarno    cpu="s390"
350d66ed0eaSAurelien Jarno  fi
35121d89f84SPeter Maydellelif check_define __arm__ ; then
35221d89f84SPeter Maydell  cpu="arm"
353f28ffed5SBradelif check_define __hppa__ ; then
354f28ffed5SBrad  cpu="hppa"
355fdf7ed96Smalcelse
356fdf7ed96Smalc  cpu=`uname -m`
357ac0df51dSaliguorifi
358ac0df51dSaliguori
359359bc95dSPeter MaydellARCH=
360359bc95dSPeter Maydell# Normalise host CPU name and set ARCH.
361359bc95dSPeter Maydell# Note that this case should only have supported host CPUs, not guests.
3627d13299dSbellardcase "$cpu" in
363359bc95dSPeter Maydell  ia64|ppc|ppc64|s390|s390x|sparc64)
364ea8f20f8SJuan Quintela    cpu="$cpu"
365ea8f20f8SJuan Quintela  ;;
3667d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
36797a847bcSbellard    cpu="i386"
3687d13299dSbellard  ;;
369aaa5fa14Saurel32  x86_64|amd64)
370aaa5fa14Saurel32    cpu="x86_64"
371aaa5fa14Saurel32  ;;
37221d89f84SPeter Maydell  armv*b|armv*l|arm)
37321d89f84SPeter Maydell    cpu="arm"
3747d13299dSbellard  ;;
375f28ffed5SBrad  hppa|parisc|parisc64)
376f54b3f92Saurel32    cpu="hppa"
377f54b3f92Saurel32  ;;
378afa05235SAurelien Jarno  mips*)
379afa05235SAurelien Jarno    cpu="mips"
380afa05235SAurelien Jarno  ;;
3813142255cSblueswir1  sparc|sun4[cdmuv])
382ae228531Sbellard    cpu="sparc"
383ae228531Sbellard  ;;
3847d13299dSbellard  *)
385359bc95dSPeter Maydell    # This will result in either an error or falling back to TCI later
386359bc95dSPeter Maydell    ARCH=unknown
3877d13299dSbellard  ;;
3887d13299dSbellardesac
389359bc95dSPeter Maydellif test -z "$ARCH"; then
390359bc95dSPeter Maydell  ARCH="$cpu"
391359bc95dSPeter Maydellfi
392e2d52ad3SJuan Quintela
3937d13299dSbellard# OS specific
3940dbfc675SJuan Quintela
3957d13299dSbellardcase $targetos in
396c326e0afSbellardCYGWIN*)
397c326e0afSbellard  mingw32="yes"
398a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
399d5631638Smalc  audio_possible_drivers="winwave sdl"
400d5631638Smalc  audio_drv_list="winwave"
401c326e0afSbellard;;
40267b915a5SbellardMINGW32*)
40367b915a5Sbellard  mingw32="yes"
404d5631638Smalc  audio_possible_drivers="winwave dsound sdl fmod"
405d5631638Smalc  audio_drv_list="winwave"
40667b915a5Sbellard;;
4075c40d2bdSthsGNU/kFreeBSD)
408a167ba50SAurelien Jarno  bsd="yes"
4090c58ac1cSmalc  audio_drv_list="oss"
410f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
4115c40d2bdSths;;
4127d3505c5SbellardFreeBSD)
4137d3505c5Sbellard  bsd="yes"
4140db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4150c58ac1cSmalc  audio_drv_list="oss"
416f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
417f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
418f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
4197d3505c5Sbellard;;
420c5e97233Sblueswir1DragonFly)
421c5e97233Sblueswir1  bsd="yes"
4220db4a067SPaolo Bonzini  make="${MAKE-gmake}"
423c5e97233Sblueswir1  audio_drv_list="oss"
424c5e97233Sblueswir1  audio_possible_drivers="oss sdl esd pa"
425c5e97233Sblueswir1;;
4267d3505c5SbellardNetBSD)
4277d3505c5Sbellard  bsd="yes"
4280db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4290c58ac1cSmalc  audio_drv_list="oss"
430c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4318ef92a88Sblueswir1  oss_lib="-lossaudio"
4327d3505c5Sbellard;;
4337d3505c5SbellardOpenBSD)
4347d3505c5Sbellard  bsd="yes"
4350db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4360c58ac1cSmalc  audio_drv_list="oss"
437c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
4382f6a1ab0Sblueswir1  oss_lib="-lossaudio"
4397d3505c5Sbellard;;
44083fb7adfSbellardDarwin)
44183fb7adfSbellard  bsd="yes"
44283fb7adfSbellard  darwin="yes"
4431b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
444a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
4450c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
4461b0f9cc2Saliguori  else
447a558ee17SJuan Quintela    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
4481b0f9cc2Saliguori  fi
449fd677642Sths  cocoa="yes"
4500c58ac1cSmalc  audio_drv_list="coreaudio"
451c2de5c91Smalc  audio_possible_drivers="coreaudio sdl fmod"
4520c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
4537973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
454a0b7cf6bSPeter Maydell  # Disable attempts to use ObjectiveC features in os/object.h since they
455a0b7cf6bSPeter Maydell  # won't work when we're compiling with gcc as a C compiler.
456a0b7cf6bSPeter Maydell  QEMU_CFLAGS="-DOS_OBJECT_USE_OBJC=0 $QEMU_CFLAGS"
45783fb7adfSbellard;;
458ec530c81SbellardSunOS)
459ec530c81Sbellard  solaris="yes"
4600db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4610db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
462fa58948dSBlue Swirl  ld="gld"
463e2d8830eSBrad  smbd="${SMBD-/usr/sfw/sbin/smbd}"
4640475a5caSths  needs_libsunmath="no"
465c2b84fabSths  solarisrev=`uname -r | cut -f2 -d.`
466c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
4670475a5caSths    if test "$solarisrev" -le 9 ; then
4680475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
4690475a5caSths        needs_libsunmath="yes"
470f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
471f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
472f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
4730475a5caSths      else
4740475a5caSths        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
4750475a5caSths        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
4760475a5caSths        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
4770475a5caSths        echo "Studio 11 can be downloaded from www.sun.com."
4780475a5caSths        exit 1
4790475a5caSths      fi
4800475a5caSths    fi
48186b2bd93Sths  fi
4826b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
4830c58ac1cSmalc    audio_drv_list="oss"
4846b4d2ba1Sths  fi
485c2de5c91Smalc  audio_possible_drivers="oss sdl"
486d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
487d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
488d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
489d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
490a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
491560d375fSAndreas Färber  solarisnetlibs="-lsocket -lnsl -lresolv"
492560d375fSAndreas Färber  LIBS="$solarisnetlibs $LIBS"
493560d375fSAndreas Färber  libs_qga="$solarisnetlibs $libs_qga"
494ec530c81Sbellard;;
495b29fe3edSmalcAIX)
496b29fe3edSmalc  aix="yes"
4970db4a067SPaolo Bonzini  make="${MAKE-gmake}"
498b29fe3edSmalc;;
499179cf400SAndreas FärberHaiku)
500179cf400SAndreas Färber  haiku="yes"
501179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
502179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
503179cf400SAndreas Färber;;
504fb065187Sbellard*)
5050c58ac1cSmalc  audio_drv_list="oss"
506b8e59f18Smalc  audio_possible_drivers="oss alsa sdl esd pa"
5075327cf48Sbellard  linux="yes"
508831b7825Sths  linux_user="yes"
50968063649Sblueswir1  usb="linux"
510af2be207SJan Kiszka  kvm="yes"
511af2be207SJan Kiszka  vhost_net="yes"
51207f4ddbfSbellard  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
513c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
514c9ec1fe4Sbellard  fi
515fb065187Sbellard;;
5167d13299dSbellardesac
5177d13299dSbellard
5187d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
519b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
52068063649Sblueswir1    usb="bsd"
52184778508Sblueswir1    bsd_user="yes"
5227d3505c5Sbellard  fi
52308de3949SAndreas Färberfi
5247d3505c5Sbellard
5250db4a067SPaolo Bonzini: ${make=${MAKE-make}}
5260db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
527c886edfbSBlue Swirl: ${python=${PYTHON-python}}
528e2d8830eSBrad: ${smbd=${SMBD-/usr/sbin/smbd}}
5290db4a067SPaolo Bonzini
5303c4a4d0dSPeter Maydell# Default objcc to clang if available, otherwise use CC
5313c4a4d0dSPeter Maydellif has clang; then
5323c4a4d0dSPeter Maydell  objcc=clang
5333c4a4d0dSPeter Maydellelse
5343c4a4d0dSPeter Maydell  objcc="$cc"
5353c4a4d0dSPeter Maydellfi
5363c4a4d0dSPeter Maydell
5373457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
5383457a3f8SJuan Quintela  EXESUF=".exe"
539a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
540e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
541e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
542f7cf5d5bSStefan Weil  LIBS="-lwinmm -lws2_32 -liphlpapi $LIBS"
543f7cf5d5bSStefan Weilcat > $TMPC << EOF
544f7cf5d5bSStefan Weilint main(void) { return 0; }
545f7cf5d5bSStefan WeilEOF
546f7cf5d5bSStefan Weil  if compile_prog "" "-liberty" ; then
547f7cf5d5bSStefan Weil    LIBS="-liberty $LIBS"
548f7cf5d5bSStefan Weil  fi
549c5ec15eaSStefan Weil  prefix="c:/Program Files/QEMU"
550683035deSPaolo Bonzini  mandir="\${prefix}"
551528ae5b8SEduardo Habkost  datadir="\${prefix}"
552850da188SEduardo Habkost  qemu_docdir="\${prefix}"
553683035deSPaolo Bonzini  bindir="\${prefix}"
554683035deSPaolo Bonzini  sysconfdir="\${prefix}"
555683035deSPaolo Bonzini  confsuffix=""
556368542b8SStefan Hajnoczi  libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga"
5573457a3f8SJuan Quintelafi
5583457a3f8SJuan Quintela
559487fefdbSAnthony Liguoriwerror=""
56085aa5189Sbellard
5617d13299dSbellardfor opt do
562a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
5637d13299dSbellard  case "$opt" in
5642efc3265Sbellard  --help|-h) show_help=yes
5652efc3265Sbellard  ;;
56699123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
56799123e13SMike Frysinger  ;;
568b1a550a0Spbrook  --prefix=*) prefix="$optarg"
5697d13299dSbellard  ;;
570b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
57132ce6337Sbellard  ;;
572ca4deeb1SPaolo Bonzini  --source-path=*)
5737d13299dSbellard  ;;
574ac0df51dSaliguori  --cross-prefix=*)
5757d13299dSbellard  ;;
576ac0df51dSaliguori  --cc=*)
5777d13299dSbellard  ;;
578b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
57983469015Sbellard  ;;
5803c4a4d0dSPeter Maydell  --objcc=*) objcc="$optarg"
5813c4a4d0dSPeter Maydell  ;;
582b1a550a0Spbrook  --make=*) make="$optarg"
5837d13299dSbellard  ;;
5846a882643Spbrook  --install=*) install="$optarg"
5856a882643Spbrook  ;;
586c886edfbSBlue Swirl  --python=*) python="$optarg"
587c886edfbSBlue Swirl  ;;
588e2d8830eSBrad  --smbd=*) smbd="$optarg"
589e2d8830eSBrad  ;;
590e2a2ed06SJuan Quintela  --extra-cflags=*)
5917d13299dSbellard  ;;
592e2a2ed06SJuan Quintela  --extra-ldflags=*)
5937d13299dSbellard  ;;
5945bc62e01SGerd Hoffmann  --enable-debug-info)
5955bc62e01SGerd Hoffmann  ;;
5965bc62e01SGerd Hoffmann  --disable-debug-info)
5975bc62e01SGerd Hoffmann  ;;
5982ff6b91eSJuan Quintela  --cpu=*)
5997d13299dSbellard  ;;
600b1a550a0Spbrook  --target-list=*) target_list="$optarg"
601de83cd02Sbellard  ;;
60274242e0fSPaolo Bonzini  --enable-trace-backend=*) trace_backend="$optarg"
60394a420b1SStefan Hajnoczi  ;;
60474242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
6059410b56cSPrerna Saxena  ;;
6067d13299dSbellard  --enable-gprof) gprof="yes"
6077d13299dSbellard  ;;
60879427693SLoïc Minier  --static)
60979427693SLoïc Minier    static="yes"
61079427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
61117884d7bSSergei Trofimovich    QEMU_PKG_CONFIG_FLAGS="--static $QEMU_PKG_CONFIG_FLAGS"
61243ce4dfeSbellard  ;;
6130b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
6140b24e75fSPaolo Bonzini  ;;
6150b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
6160b24e75fSPaolo Bonzini  ;;
6173aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
6183aa5d2beSAlon Levy  ;;
6198bf188aaSMichael Tokarev  --libexecdir=*) libexecdir="$optarg"
6208bf188aaSMichael Tokarev  ;;
6210f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
6220f94d6daSAlon Levy  ;;
623528ae5b8SEduardo Habkost  --datadir=*) datadir="$optarg"
6240b24e75fSPaolo Bonzini  ;;
625023d3d67SEduardo Habkost  --with-confsuffix=*) confsuffix="$optarg"
626023d3d67SEduardo Habkost  ;;
627850da188SEduardo Habkost  --docdir=*) qemu_docdir="$optarg"
6280b24e75fSPaolo Bonzini  ;;
629ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
63007381cc1SAnthony Liguori  ;;
6318bf188aaSMichael Tokarev  --sbindir=*|--sharedstatedir=*|--localstatedir=*|\
632023ddd74SMax Filippov  --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\
633023ddd74SMax Filippov  --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*)
634023ddd74SMax Filippov    # These switches are silently ignored, for compatibility with
635023ddd74SMax Filippov    # autoconf-generated configure scripts. This allows QEMU's
636023ddd74SMax Filippov    # configure to be used by RPM and similar macros that set
637023ddd74SMax Filippov    # lots of directory switches by default.
638023ddd74SMax Filippov  ;;
63997a847bcSbellard  --disable-sdl) sdl="no"
64097a847bcSbellard  ;;
641c4198157SJuan Quintela  --enable-sdl) sdl="yes"
642c4198157SJuan Quintela  ;;
643983eef5aSMeador Inge  --disable-virtfs) virtfs="no"
644983eef5aSMeador Inge  ;;
645983eef5aSMeador Inge  --enable-virtfs) virtfs="yes"
646983eef5aSMeador Inge  ;;
647821601eaSJes Sorensen  --disable-vnc) vnc="no"
648821601eaSJes Sorensen  ;;
649821601eaSJes Sorensen  --enable-vnc) vnc="yes"
650821601eaSJes Sorensen  ;;
651b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
652102a52e4Sbellard  ;;
653c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
654c2de5c91Smalc  ;;
6552f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
6562f6a1ab0Sblueswir1  ;;
6572fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
6580c58ac1cSmalc  ;;
6590c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
6600c58ac1cSmalc  ;;
661eb852011SMarkus Armbruster  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
662eb852011SMarkus Armbruster  ;;
663f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
664f8393946Saurel32  ;;
665f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
666f8393946Saurel32  ;;
667f3d08ee6SPaul Brook  --enable-debug)
668f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
669f3d08ee6SPaul Brook      debug_tcg="yes"
670f3d08ee6SPaul Brook      debug="yes"
671f3d08ee6SPaul Brook      strip_opt="no"
672f3d08ee6SPaul Brook  ;;
67303b4fe7dSaliguori  --enable-sparse) sparse="yes"
67403b4fe7dSaliguori  ;;
67503b4fe7dSaliguori  --disable-sparse) sparse="no"
67603b4fe7dSaliguori  ;;
6771625af87Saliguori  --disable-strip) strip_opt="no"
6781625af87Saliguori  ;;
6798d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
6808d5d2d4cSths  ;;
6811be10ad2SJuan Quintela  --enable-vnc-tls) vnc_tls="yes"
6821be10ad2SJuan Quintela  ;;
6832f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
6842f9606b3Saliguori  ;;
685ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
686ea784e3bSJuan Quintela  ;;
6872f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
6882f6f5c7aSCorentin Chary  ;;
6892f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
6902f6f5c7aSCorentin Chary  ;;
691efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
692efe556adSCorentin Chary  ;;
693efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
694efe556adSCorentin Chary  ;;
695443f1376Sbellard  --disable-slirp) slirp="no"
696c20709aaSbellard  ;;
697ee682d27SStefan Weil  --disable-uuid) uuid="no"
698ee682d27SStefan Weil  ;;
699ee682d27SStefan Weil  --enable-uuid) uuid="yes"
700ee682d27SStefan Weil  ;;
701e0e6c8c0Saliguori  --disable-vde) vde="no"
7028a16d273Sths  ;;
703dfb278bdSJuan Quintela  --enable-vde) vde="yes"
704dfb278bdSJuan Quintela  ;;
705e37630caSaliguori  --disable-xen) xen="no"
706e37630caSaliguori  ;;
707fc321b4bSJuan Quintela  --enable-xen) xen="yes"
708fc321b4bSJuan Quintela  ;;
709eb6fda0fSAnthony PERARD  --disable-xen-pci-passthrough) xen_pci_passthrough="no"
710eb6fda0fSAnthony PERARD  ;;
711eb6fda0fSAnthony PERARD  --enable-xen-pci-passthrough) xen_pci_passthrough="yes"
712eb6fda0fSAnthony PERARD  ;;
7132e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
7142e4d9fb1Saurel32  ;;
7154ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
7164ffcedb6SJuan Quintela  ;;
717fb599c9aSbalrog  --disable-bluez) bluez="no"
718fb599c9aSbalrog  ;;
719a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
720a20a6f46SJuan Quintela  ;;
7217ba1e619Saliguori  --disable-kvm) kvm="no"
7227ba1e619Saliguori  ;;
723b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
724b31a0277SJuan Quintela  ;;
7259195b2c2SStefan Weil  --disable-tcg-interpreter) tcg_interpreter="no"
7269195b2c2SStefan Weil  ;;
7279195b2c2SStefan Weil  --enable-tcg-interpreter) tcg_interpreter="yes"
7289195b2c2SStefan Weil  ;;
72947e98658SCorey Bryant  --disable-cap-ng)  cap_ng="no"
73047e98658SCorey Bryant  ;;
73147e98658SCorey Bryant  --enable-cap-ng) cap_ng="yes"
73247e98658SCorey Bryant  ;;
733cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
734cd4ec0b4SGerd Hoffmann  ;;
735cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
736cd4ec0b4SGerd Hoffmann  ;;
737c589b249SRonnie Sahlberg  --disable-libiscsi) libiscsi="no"
738c589b249SRonnie Sahlberg  ;;
739c589b249SRonnie Sahlberg  --enable-libiscsi) libiscsi="yes"
740c589b249SRonnie Sahlberg  ;;
74105c2a3e7Sbellard  --enable-profiler) profiler="yes"
74205c2a3e7Sbellard  ;;
74314821030SPavel Borzenkov  --disable-cocoa) cocoa="no"
74414821030SPavel Borzenkov  ;;
745c2de5c91Smalc  --enable-cocoa)
746c2de5c91Smalc      cocoa="yes" ;
747c2de5c91Smalc      sdl="no" ;
748c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
7495b0753e0Sbellard  ;;
750cad25d69Spbrook  --disable-system) softmmu="no"
7510a8e90f4Spbrook  ;;
752cad25d69Spbrook  --enable-system) softmmu="yes"
7530a8e90f4Spbrook  ;;
7540953a80fSZachary Amsden  --disable-user)
7550953a80fSZachary Amsden      linux_user="no" ;
7560953a80fSZachary Amsden      bsd_user="no" ;
7570953a80fSZachary Amsden  ;;
7580953a80fSZachary Amsden  --enable-user) ;;
759831b7825Sths  --disable-linux-user) linux_user="no"
7600a8e90f4Spbrook  ;;
761831b7825Sths  --enable-linux-user) linux_user="yes"
762831b7825Sths  ;;
76384778508Sblueswir1  --disable-bsd-user) bsd_user="no"
76484778508Sblueswir1  ;;
76584778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
76684778508Sblueswir1  ;;
767379f6698SPaul Brook  --enable-guest-base) guest_base="yes"
768379f6698SPaul Brook  ;;
769379f6698SPaul Brook  --disable-guest-base) guest_base="no"
770379f6698SPaul Brook  ;;
77140d6444eSAvi Kivity  --enable-pie) pie="yes"
77234005a00SKirill A. Shutemov  ;;
77340d6444eSAvi Kivity  --disable-pie) pie="no"
77434005a00SKirill A. Shutemov  ;;
775c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
776c5937220Spbrook  ;;
77785aa5189Sbellard  --enable-werror) werror="yes"
77885aa5189Sbellard  ;;
77985aa5189Sbellard  --disable-werror) werror="no"
78085aa5189Sbellard  ;;
7814d3b6f6eSbalrog  --disable-curses) curses="no"
7824d3b6f6eSbalrog  ;;
783c584a6d0SJuan Quintela  --enable-curses) curses="yes"
784c584a6d0SJuan Quintela  ;;
785769ce76dSAlexander Graf  --disable-curl) curl="no"
786769ce76dSAlexander Graf  ;;
787788c8196SJuan Quintela  --enable-curl) curl="yes"
788788c8196SJuan Quintela  ;;
7892df87df7SJuan Quintela  --disable-fdt) fdt="no"
7902df87df7SJuan Quintela  ;;
7912df87df7SJuan Quintela  --enable-fdt) fdt="yes"
7922df87df7SJuan Quintela  ;;
793bd0c5661Spbrook  --disable-nptl) nptl="no"
794bd0c5661Spbrook  ;;
795b0a47e79SJuan Quintela  --enable-nptl) nptl="yes"
796b0a47e79SJuan Quintela  ;;
7978ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
7988ff9cbf7Smalc  ;;
7995c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
8005c6c3a6cSChristoph Hellwig  ;;
8015c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
8025c6c3a6cSChristoph Hellwig  ;;
803758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
804758e8e38SVenkateswararao Jujjuri (JV)  ;;
805758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
806758e8e38SVenkateswararao Jujjuri (JV)  ;;
80777755340Sths  --disable-blobs) blobs="no"
80877755340Sths  ;;
8094a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
8104a19f1ecSpbrook  ;;
811519175a2SAlex Barcelo  --with-coroutine=*) coroutine="$optarg"
812519175a2SAlex Barcelo  ;;
813a25dba17SJuan Quintela  --disable-docs) docs="no"
81470ec5dc0SAnthony Liguori  ;;
815a25dba17SJuan Quintela  --enable-docs) docs="yes"
81683a3ab8bSJuan Quintela  ;;
817d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
818d5970055SMichael S. Tsirkin  ;;
819d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
820d5970055SMichael S. Tsirkin  ;;
82120ff075bSMichael Walle  --disable-opengl) opengl="no"
82220ff075bSMichael Walle  ;;
82320ff075bSMichael Walle  --enable-opengl) opengl="yes"
82420ff075bSMichael Walle  ;;
825f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
826f27aaf4bSChristian Brunner  ;;
827f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
828f27aaf4bSChristian Brunner  ;;
8298c84cf11SSergei Trofimovich  --disable-xfsctl) xfs="no"
8308c84cf11SSergei Trofimovich  ;;
8318c84cf11SSergei Trofimovich  --enable-xfsctl) xfs="yes"
8328c84cf11SSergei Trofimovich  ;;
83336707144SAlon Levy  --disable-smartcard) smartcard="no"
83436707144SAlon Levy  ;;
83536707144SAlon Levy  --enable-smartcard) smartcard="yes"
83636707144SAlon Levy  ;;
837111a38b0SRobert Relyea  --disable-smartcard-nss) smartcard_nss="no"
838111a38b0SRobert Relyea  ;;
839111a38b0SRobert Relyea  --enable-smartcard-nss) smartcard_nss="yes"
840111a38b0SRobert Relyea  ;;
84169354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
84269354a83SHans de Goede  ;;
84369354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
84469354a83SHans de Goede  ;;
8451ece9905SAlon Levy  --disable-zlib-test) zlib="no"
8461ece9905SAlon Levy  ;;
847d138cee9SMichael Roth  --enable-guest-agent) guest_agent="yes"
848d138cee9SMichael Roth  ;;
849d138cee9SMichael Roth  --disable-guest-agent) guest_agent="no"
850d138cee9SMichael Roth  ;;
8514b1c11fdSDaniel P. Berrange  --enable-tools) want_tools="yes"
8524b1c11fdSDaniel P. Berrange  ;;
8534b1c11fdSDaniel P. Berrange  --disable-tools) want_tools="no"
8544b1c11fdSDaniel P. Berrange  ;;
855f794573eSEduardo Otubo  --enable-seccomp) seccomp="yes"
856f794573eSEduardo Otubo  ;;
857f794573eSEduardo Otubo  --disable-seccomp) seccomp="no"
858f794573eSEduardo Otubo  ;;
8597f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
8607f1559c6Sbalrog  ;;
8617d13299dSbellard  esac
8627d13299dSbellarddone
8637d13299dSbellard
864379f6698SPaul Brookhost_guest_base="no"
86540293e58Sbellardcase "$cpu" in
8669b9c37c3SRichard Henderson    sparc)
8670c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8689b9c37c3SRichard Henderson           QEMU_CFLAGS="-m32 -mcpu=ultrasparc $QEMU_CFLAGS"
8699b9c37c3SRichard Henderson           QEMU_CFLAGS="-ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
870762e8230Sblueswir1           if test "$solaris" = "no" ; then
871a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
872762e8230Sblueswir1           fi
873*c6f7e4fbSRichard Henderson           host_guest_base="yes"
8743142255cSblueswir1           ;;
875ed968ff1SJuan Quintela    sparc64)
8760c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
8779b9c37c3SRichard Henderson           QEMU_CFLAGS="-m64 -mcpu=ultrasparc $QEMU_CFLAGS"
878a558ee17SJuan Quintela           QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
879ed968ff1SJuan Quintela           if test "$solaris" != "no" ; then
880a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
881762e8230Sblueswir1           fi
882*c6f7e4fbSRichard Henderson           host_guest_base="yes"
8833142255cSblueswir1           ;;
88476d83bdeSths    s390)
88528d7cc49SRichard Henderson           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
88628d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
88748bb3750SRichard Henderson           host_guest_base="yes"
88828d7cc49SRichard Henderson           ;;
88928d7cc49SRichard Henderson    s390x)
89028d7cc49SRichard Henderson           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
89128d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
89248bb3750SRichard Henderson           host_guest_base="yes"
89376d83bdeSths           ;;
89440293e58Sbellard    i386)
895a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
8960c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8972b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
898379f6698SPaul Brook           host_guest_base="yes"
89940293e58Sbellard           ;;
90040293e58Sbellard    x86_64)
901a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
9020c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
9032b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
904379f6698SPaul Brook           host_guest_base="yes"
905379f6698SPaul Brook           ;;
906379f6698SPaul Brook    arm*)
907379f6698SPaul Brook           host_guest_base="yes"
90840293e58Sbellard           ;;
909f6548c0aSmalc    ppc*)
910f6548c0aSmalc           host_guest_base="yes"
911f6548c0aSmalc           ;;
912cc01cc8eSAurelien Jarno    mips*)
913cc01cc8eSAurelien Jarno           host_guest_base="yes"
914cc01cc8eSAurelien Jarno           ;;
915477ba620SAurelien Jarno    ia64*)
916477ba620SAurelien Jarno           host_guest_base="yes"
917477ba620SAurelien Jarno           ;;
918fd76e73aSRichard Henderson    hppa*)
919fd76e73aSRichard Henderson           host_guest_base="yes"
920fd76e73aSRichard Henderson           ;;
921d2fbca94SGuan Xuetao    unicore32*)
922d2fbca94SGuan Xuetao           host_guest_base="yes"
923d2fbca94SGuan Xuetao           ;;
9243142255cSblueswir1esac
9253142255cSblueswir1
926379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base"
927379f6698SPaul Brook
92860e0df25SPeter Maydell
92960e0df25SPeter Maydelldefault_target_list=""
93060e0df25SPeter Maydell
93160e0df25SPeter Maydell# these targets are portable
93260e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then
93360e0df25SPeter Maydell    default_target_list="\
93460e0df25SPeter Maydelli386-softmmu \
93560e0df25SPeter Maydellx86_64-softmmu \
93627cdad67SRichard Hendersonalpha-softmmu \
93760e0df25SPeter Maydellarm-softmmu \
93860e0df25SPeter Maydellcris-softmmu \
93960e0df25SPeter Maydelllm32-softmmu \
94060e0df25SPeter Maydellm68k-softmmu \
94160e0df25SPeter Maydellmicroblaze-softmmu \
94260e0df25SPeter Maydellmicroblazeel-softmmu \
94360e0df25SPeter Maydellmips-softmmu \
94460e0df25SPeter Maydellmipsel-softmmu \
94560e0df25SPeter Maydellmips64-softmmu \
94660e0df25SPeter Maydellmips64el-softmmu \
947e67db06eSJia Liuor32-softmmu \
94860e0df25SPeter Maydellppc-softmmu \
94960e0df25SPeter Maydellppcemb-softmmu \
95060e0df25SPeter Maydellppc64-softmmu \
95160e0df25SPeter Maydellsh4-softmmu \
95260e0df25SPeter Maydellsh4eb-softmmu \
95360e0df25SPeter Maydellsparc-softmmu \
95460e0df25SPeter Maydellsparc64-softmmu \
9550f3301d4SAlexander Grafs390x-softmmu \
956cfa550c6SMax Filippovxtensa-softmmu \
957cfa550c6SMax Filippovxtensaeb-softmmu \
9584f23a1e6SGuan Xuetaounicore32-softmmu \
95960e0df25SPeter Maydell"
96060e0df25SPeter Maydellfi
96160e0df25SPeter Maydell# the following are Linux specific
96260e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then
96360e0df25SPeter Maydell    default_target_list="${default_target_list}\
96460e0df25SPeter Maydelli386-linux-user \
96560e0df25SPeter Maydellx86_64-linux-user \
96660e0df25SPeter Maydellalpha-linux-user \
96760e0df25SPeter Maydellarm-linux-user \
96860e0df25SPeter Maydellarmeb-linux-user \
96960e0df25SPeter Maydellcris-linux-user \
97060e0df25SPeter Maydellm68k-linux-user \
97160e0df25SPeter Maydellmicroblaze-linux-user \
97260e0df25SPeter Maydellmicroblazeel-linux-user \
97360e0df25SPeter Maydellmips-linux-user \
97460e0df25SPeter Maydellmipsel-linux-user \
975d962783eSJia Liuor32-linux-user \
97660e0df25SPeter Maydellppc-linux-user \
97760e0df25SPeter Maydellppc64-linux-user \
97860e0df25SPeter Maydellppc64abi32-linux-user \
97960e0df25SPeter Maydellsh4-linux-user \
98060e0df25SPeter Maydellsh4eb-linux-user \
98160e0df25SPeter Maydellsparc-linux-user \
98260e0df25SPeter Maydellsparc64-linux-user \
98360e0df25SPeter Maydellsparc32plus-linux-user \
98460e0df25SPeter Maydellunicore32-linux-user \
9850f3301d4SAlexander Grafs390x-linux-user \
98660e0df25SPeter Maydell"
98760e0df25SPeter Maydellfi
98860e0df25SPeter Maydell# the following are BSD specific
98960e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then
99060e0df25SPeter Maydell    default_target_list="${default_target_list}\
99160e0df25SPeter Maydelli386-bsd-user \
99260e0df25SPeter Maydellx86_64-bsd-user \
99360e0df25SPeter Maydellsparc-bsd-user \
99460e0df25SPeter Maydellsparc64-bsd-user \
99560e0df25SPeter Maydell"
99660e0df25SPeter Maydellfi
99760e0df25SPeter Maydell
998af5db58eSpbrookif test x"$show_help" = x"yes" ; then
999af5db58eSpbrookcat << EOF
1000af5db58eSpbrook
1001af5db58eSpbrookUsage: configure [options]
1002af5db58eSpbrookOptions: [defaults in brackets after descriptions]
1003af5db58eSpbrook
1004af5db58eSpbrookEOF
1005af5db58eSpbrookecho "Standard options:"
1006af5db58eSpbrookecho "  --help                   print this message"
1007af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
1008af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
1009af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
101060e0df25SPeter Maydellecho "  --target-list=LIST       set target list (default: build everything)"
101160e0df25SPeter Maydellecho "Available targets: $default_target_list" | \
101260e0df25SPeter Maydell    fold -s -w 53 | sed -e 's/^/                           /'
1013af5db58eSpbrookecho ""
1014af5db58eSpbrookecho "Advanced options (experts only):"
1015af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
1016af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
1017af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
10180bfe8cc0SPaolo Bonziniecho "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
10190bfe8cc0SPaolo Bonziniecho "                           build time"
10203c4a4d0dSPeter Maydellecho "  --objcc=OBJCC            use Objective-C compiler OBJCC [$objcc]"
1021a558ee17SJuan Quintelaecho "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
1022e3fc14c3SJan Kiszkaecho "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
1023af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
10246a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
1025c886edfbSBlue Swirlecho "  --python=PYTHON          use specified python [$python]"
1026e2d8830eSBradecho "  --smbd=SMBD              use specified smbd [$smbd]"
1027af5db58eSpbrookecho "  --static                 enable static build [$static]"
10280b24e75fSPaolo Bonziniecho "  --mandir=PATH            install man pages in PATH"
1029023d3d67SEduardo Habkostecho "  --datadir=PATH           install firmware in PATH$confsuffix"
1030023d3d67SEduardo Habkostecho "  --docdir=PATH            install documentation in PATH$confsuffix"
10310b24e75fSPaolo Bonziniecho "  --bindir=PATH            install binaries in PATH"
1032023d3d67SEduardo Habkostecho "  --sysconfdir=PATH        install config in PATH$confsuffix"
10332ae4748fSStefan Weilecho "  --with-confsuffix=SUFFIX suffix for QEMU data inside datadir and sysconfdir [$confsuffix]"
1034f8393946Saurel32echo "  --enable-debug-tcg       enable TCG debugging"
1035f8393946Saurel32echo "  --disable-debug-tcg      disable TCG debugging (default)"
103609695a4aSStefan Weilecho "  --enable-debug           enable common debug build options"
1037890b1658Saliguoriecho "  --enable-sparse          enable sparse checker"
1038890b1658Saliguoriecho "  --disable-sparse         disable sparse checker (default)"
10391625af87Saliguoriecho "  --disable-strip          disable stripping binaries"
104085aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
1041fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
1042c4198157SJuan Quintelaecho "  --enable-sdl             enable SDL"
1043983eef5aSMeador Ingeecho "  --disable-virtfs         disable VirtFS"
1044983eef5aSMeador Ingeecho "  --enable-virtfs          enable VirtFS"
1045821601eaSJes Sorensenecho "  --disable-vnc            disable VNC"
1046821601eaSJes Sorensenecho "  --enable-vnc             enable VNC"
104714821030SPavel Borzenkovecho "  --disable-cocoa          disable Cocoa (Mac OS X only)"
104814821030SPavel Borzenkovecho "  --enable-cocoa           enable Cocoa (default on Mac OS X)"
1049c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
1050c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
10514c9b53e3Smalcecho "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
10524c9b53e3Smalcecho "                           Available cards: $audio_possible_cards"
1053eb852011SMarkus Armbrusterecho "  --block-drv-whitelist=L  set block driver whitelist"
1054eb852011SMarkus Armbrusterecho "                           (affects only QEMU, not qemu-img)"
10558ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
1056e37630caSaliguoriecho "  --disable-xen            disable xen backend driver support"
1057fc321b4bSJuan Quintelaecho "  --enable-xen             enable xen backend driver support"
1058eb6fda0fSAnthony PERARDecho "  --disable-xen-pci-passthrough"
1059eb6fda0fSAnthony PERARDecho "  --enable-xen-pci-passthrough"
10602e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
10614ffcedb6SJuan Quintelaecho "  --enable-brlapi          enable BrlAPI"
10628d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
10631be10ad2SJuan Quintelaecho "  --enable-vnc-tls         enable TLS encryption for VNC server"
10642f9606b3Saliguoriecho "  --disable-vnc-sasl       disable SASL encryption for VNC server"
1065ea784e3bSJuan Quintelaecho "  --enable-vnc-sasl        enable SASL encryption for VNC server"
10662f6f5c7aSCorentin Charyecho "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
10672f6f5c7aSCorentin Charyecho "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
106896763cf9SCorentin Charyecho "  --disable-vnc-png        disable PNG compression for VNC server (default)"
1069efe556adSCorentin Charyecho "  --enable-vnc-png         enable PNG compression for VNC server"
1070af896aaaSpbrookecho "  --disable-curses         disable curses output"
1071c584a6d0SJuan Quintelaecho "  --enable-curses          enable curses output"
1072769ce76dSAlexander Grafecho "  --disable-curl           disable curl connectivity"
1073788c8196SJuan Quintelaecho "  --enable-curl            enable curl connectivity"
10742df87df7SJuan Quintelaecho "  --disable-fdt            disable fdt device tree"
10752df87df7SJuan Quintelaecho "  --enable-fdt             enable fdt device tree"
1076fb599c9aSbalrogecho "  --disable-bluez          disable bluez stack connectivity"
1077a20a6f46SJuan Quintelaecho "  --enable-bluez           enable bluez stack connectivity"
10786093d3d4SPeter Maydellecho "  --disable-slirp          disable SLIRP userspace network connectivity"
10797ba1e619Saliguoriecho "  --disable-kvm            disable KVM acceleration support"
1080b31a0277SJuan Quintelaecho "  --enable-kvm             enable KVM acceleration support"
10819195b2c2SStefan Weilecho "  --enable-tcg-interpreter enable TCG with bytecode interpreter (TCI)"
1082bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
1083e5934d33SAndre Przywaraecho "  --enable-nptl            enable usermode NPTL support"
1084af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
1085af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
10860953a80fSZachary Amsdenecho "  --enable-user            enable supported user emulation targets"
10870953a80fSZachary Amsdenecho "  --disable-user           disable all user emulation targets"
1088831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
1089831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
109084778508Sblueswir1echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
109184778508Sblueswir1echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
1092379f6698SPaul Brookecho "  --enable-guest-base      enable GUEST_BASE support for usermode"
1093379f6698SPaul Brookecho "                           emulation targets"
1094379f6698SPaul Brookecho "  --disable-guest-base     disable GUEST_BASE support"
109540d6444eSAvi Kivityecho "  --enable-pie             build Position Independent Executables"
109640d6444eSAvi Kivityecho "  --disable-pie            do not build Position Independent Executables"
1097af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
1098af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
10992f6a1ab0Sblueswir1echo "  --oss-lib                path to OSS library"
1100c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
1101235e510cS陳韋任echo "  --cpu=CPU                Build for host CPU [$cpu]"
11023142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
1103ee682d27SStefan Weilecho "  --disable-uuid           disable uuid support"
1104ee682d27SStefan Weilecho "  --enable-uuid            enable uuid support"
1105e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
1106dfb278bdSJuan Quintelaecho "  --enable-vde             enable support for vde network"
11075c6c3a6cSChristoph Hellwigecho "  --disable-linux-aio      disable Linux AIO support"
11085c6c3a6cSChristoph Hellwigecho "  --enable-linux-aio       enable Linux AIO support"
110947e98658SCorey Bryantecho "  --disable-cap-ng         disable libcap-ng support"
111047e98658SCorey Bryantecho "  --enable-cap-ng          enable libcap-ng support"
1111758e8e38SVenkateswararao Jujjuri (JV)echo "  --disable-attr           disables attr and xattr support"
1112758e8e38SVenkateswararao Jujjuri (JV)echo "  --enable-attr            enable attr and xattr support"
111377755340Sthsecho "  --disable-blobs          disable installing provided firmware blobs"
1114d2807bc9SDirk Ullrichecho "  --enable-docs            enable documentation build"
1115d2807bc9SDirk Ullrichecho "  --disable-docs           disable documentation build"
1116d5970055SMichael S. Tsirkinecho "  --disable-vhost-net      disable vhost-net acceleration support"
1117d5970055SMichael S. Tsirkinecho "  --enable-vhost-net       enable vhost-net acceleration support"
1118320fba2aSFabien Chouteauecho "  --enable-trace-backend=B Set trace backend"
1119650ab98dSLluís Vilanovaecho "                           Available backends:" $($python "$source_path"/scripts/tracetool.py --list-backends)
112074242e0fSPaolo Bonziniecho "  --with-trace-file=NAME   Full PATH,NAME of file to store traces"
11219410b56cSPrerna Saxenaecho "                           Default:trace-<pid>"
1122cd4ec0b4SGerd Hoffmannecho "  --disable-spice          disable spice"
1123cd4ec0b4SGerd Hoffmannecho "  --enable-spice           enable spice"
1124f27aaf4bSChristian Brunnerecho "  --enable-rbd             enable building the rados block device (rbd)"
1125c589b249SRonnie Sahlbergecho "  --disable-libiscsi       disable iscsi support"
1126c589b249SRonnie Sahlbergecho "  --enable-libiscsi        enable iscsi support"
112736707144SAlon Levyecho "  --disable-smartcard      disable smartcard support"
112836707144SAlon Levyecho "  --enable-smartcard       enable smartcard support"
1129111a38b0SRobert Relyeaecho "  --disable-smartcard-nss  disable smartcard nss support"
1130111a38b0SRobert Relyeaecho "  --enable-smartcard-nss   enable smartcard nss support"
113169354a83SHans de Goedeecho "  --disable-usb-redir      disable usb network redirection support"
113269354a83SHans de Goedeecho "  --enable-usb-redir       enable usb network redirection support"
1133d138cee9SMichael Rothecho "  --disable-guest-agent    disable building of the QEMU Guest Agent"
1134d138cee9SMichael Rothecho "  --enable-guest-agent     enable building of the QEMU Guest Agent"
1135f794573eSEduardo Otuboecho "  --disable-seccomp        disable seccomp support"
1136f794573eSEduardo Otuboecho "  --enable-seccomp         enables seccomp support"
1137519175a2SAlex Barceloecho "  --with-coroutine=BACKEND coroutine backend. Supported options:"
1138fe91bfa8SAlex Barceloecho "                           gthread, ucontext, sigaltstack, windows"
1139af5db58eSpbrookecho ""
11405bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
1141af5db58eSpbrookexit 1
1142af5db58eSpbrookfi
1143af5db58eSpbrook
1144359bc95dSPeter Maydell# Now we have handled --enable-tcg-interpreter and know we're not just
1145359bc95dSPeter Maydell# printing the help message, bail out if the host CPU isn't supported.
1146359bc95dSPeter Maydellif test "$ARCH" = "unknown"; then
1147359bc95dSPeter Maydell    if test "$tcg_interpreter" = "yes" ; then
1148359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, will use TCG with TCI (experimental)"
1149359bc95dSPeter Maydell        ARCH=tci
1150359bc95dSPeter Maydell    else
1151359bc95dSPeter Maydell        echo "Unsupported CPU = $cpu, try --enable-tcg-interpreter"
1152359bc95dSPeter Maydell        exit 1
1153359bc95dSPeter Maydell    fi
1154359bc95dSPeter Maydellfi
1155359bc95dSPeter Maydell
11568d05095cSPaolo Bonzini# check that the C compiler works.
11578d05095cSPaolo Bonzinicat > $TMPC <<EOF
115875cafad7SStefan Weilint main(void) { return 0; }
11598d05095cSPaolo BonziniEOF
11608d05095cSPaolo Bonzini
11618d05095cSPaolo Bonziniif compile_object ; then
11628d05095cSPaolo Bonzini  : C compiler works ok
11638d05095cSPaolo Bonzinielse
11648d05095cSPaolo Bonzini    echo "ERROR: \"$cc\" either does not exist or does not work"
11658d05095cSPaolo Bonzini    exit 1
11668d05095cSPaolo Bonzinifi
11678d05095cSPaolo Bonzini
1168417c9d72SAlexander Graf# Consult white-list to determine whether to enable werror
1169417c9d72SAlexander Graf# by default.  Only enable by default for git builds
1170417c9d72SAlexander Grafz_version=`cut -f3 -d. $source_path/VERSION`
1171417c9d72SAlexander Graf
1172417c9d72SAlexander Grafif test -z "$werror" ; then
1173417c9d72SAlexander Graf    if test "$z_version" = "50" -a \
1174417c9d72SAlexander Graf        "$linux" = "yes" ; then
1175417c9d72SAlexander Graf        werror="yes"
1176417c9d72SAlexander Graf    else
1177417c9d72SAlexander Graf        werror="no"
1178417c9d72SAlexander Graf    fi
1179417c9d72SAlexander Graffi
1180417c9d72SAlexander Graf
11818d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
11828d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
11838d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1184f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags"
11856ca026cbSPeter Maydell# Note that we do not add -Werror to gcc_flags here, because that would
11866ca026cbSPeter Maydell# enable it for all configure tests. If a configure test failed due
11876ca026cbSPeter Maydell# to -Werror this would just silently disable some features,
11886ca026cbSPeter Maydell# so it's too error prone.
11898d05095cSPaolo Bonzinicat > $TMPC << EOF
11908d05095cSPaolo Bonziniint main(void) { return 0; }
11918d05095cSPaolo BonziniEOF
11928d05095cSPaolo Bonzinifor flag in $gcc_flags; do
1193bd947d30SStefan Weil    if compile_prog "-Werror $flag" "" ; then
11948d05095cSPaolo Bonzini	QEMU_CFLAGS="$QEMU_CFLAGS $flag"
11958d05095cSPaolo Bonzini    fi
11968d05095cSPaolo Bonzinidone
11978d05095cSPaolo Bonzini
119840d6444eSAvi Kivityif test "$static" = "yes" ; then
119940d6444eSAvi Kivity  if test "$pie" = "yes" ; then
120040d6444eSAvi Kivity    echo "static and pie are mutually incompatible"
120140d6444eSAvi Kivity    exit 1
120240d6444eSAvi Kivity  else
120340d6444eSAvi Kivity    pie="no"
120440d6444eSAvi Kivity  fi
120540d6444eSAvi Kivityfi
120640d6444eSAvi Kivity
120740d6444eSAvi Kivityif test "$pie" = ""; then
120840d6444eSAvi Kivity  case "$cpu-$targetos" in
1209f9db31a2SBrad    i386-Linux|x86_64-Linux|i386-OpenBSD|x86_64-OpenBSD)
121040d6444eSAvi Kivity      ;;
121140d6444eSAvi Kivity    *)
121240d6444eSAvi Kivity      pie="no"
121340d6444eSAvi Kivity      ;;
121440d6444eSAvi Kivity  esac
121540d6444eSAvi Kivityfi
121640d6444eSAvi Kivity
121740d6444eSAvi Kivityif test "$pie" != "no" ; then
121840d6444eSAvi Kivity  cat > $TMPC << EOF
121921d4a791SAvi Kivity
122021d4a791SAvi Kivity#ifdef __linux__
122121d4a791SAvi Kivity#  define THREAD __thread
122221d4a791SAvi Kivity#else
122321d4a791SAvi Kivity#  define THREAD
122421d4a791SAvi Kivity#endif
122521d4a791SAvi Kivity
122621d4a791SAvi Kivitystatic THREAD int tls_var;
122721d4a791SAvi Kivity
122821d4a791SAvi Kivityint main(void) { return tls_var; }
122921d4a791SAvi Kivity
123040d6444eSAvi KivityEOF
123140d6444eSAvi Kivity  if compile_prog "-fPIE -DPIE" "-pie"; then
123240d6444eSAvi Kivity    QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS"
123340d6444eSAvi Kivity    LDFLAGS="-pie $LDFLAGS"
123440d6444eSAvi Kivity    pie="yes"
123540d6444eSAvi Kivity    if compile_prog "" "-Wl,-z,relro -Wl,-z,now" ; then
123640d6444eSAvi Kivity      LDFLAGS="-Wl,-z,relro -Wl,-z,now $LDFLAGS"
123740d6444eSAvi Kivity    fi
123840d6444eSAvi Kivity  else
123940d6444eSAvi Kivity    if test "$pie" = "yes"; then
124040d6444eSAvi Kivity      echo "PIE not available due to missing toolchain support"
124140d6444eSAvi Kivity      exit 1
124240d6444eSAvi Kivity    else
124340d6444eSAvi Kivity      echo "Disabling PIE due to missing toolchain support"
124440d6444eSAvi Kivity      pie="no"
124540d6444eSAvi Kivity    fi
124640d6444eSAvi Kivity  fi
124740d6444eSAvi Kivityfi
124840d6444eSAvi Kivity
1249ec530c81Sbellard#
1250ec530c81Sbellard# Solaris specific configure tool chain decisions
1251ec530c81Sbellard#
1252ec530c81Sbellardif test "$solaris" = "yes" ; then
12536792aa11SLoïc Minier  if has $install; then
12546792aa11SLoïc Minier    :
12556792aa11SLoïc Minier  else
1256ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
1257ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
1258ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1259ec530c81Sbellard    exit 1
1260ec530c81Sbellard  fi
12616792aa11SLoïc Minier  if test "`path_of $install`" = "/usr/sbin/install" ; then
1262ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
1263ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
1264ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1265ec530c81Sbellard    exit 1
1266ec530c81Sbellard  fi
12676792aa11SLoïc Minier  if has ar; then
12686792aa11SLoïc Minier    :
12696792aa11SLoïc Minier  else
1270ec530c81Sbellard    echo "Error: No path includes ar"
1271ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
1272ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
1273ec530c81Sbellard    fi
1274ec530c81Sbellard    exit 1
1275ec530c81Sbellard  fi
1276ec530c81Sbellardfi
1277ec530c81Sbellard
12787a3fc891SSebastian Herbsztif ! has $python; then
1279c886edfbSBlue Swirl  echo "Python not found. Use --python=/path/to/python"
1280c886edfbSBlue Swirl  exit 1
1281c886edfbSBlue Swirlfi
1282c886edfbSBlue Swirl
12836ccea1e4SPeter Maydell# Note that if the Python conditional here evaluates True we will exit
12846ccea1e4SPeter Maydell# with status 1 which is a shell 'false' value.
1285e120d449SStefan Hajnocziif ! "$python" -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then
1286e120d449SStefan Hajnoczi  echo "Cannot use '$python', Python 2.4 or later is required."
1287e120d449SStefan Hajnoczi  echo "Note that Python 3 or later is not yet supported."
1288e120d449SStefan Hajnoczi  echo "Use --python=/path/to/python to specify a supported Python."
12896ccea1e4SPeter Maydell  exit 1
12906ccea1e4SPeter Maydellfi
12916ccea1e4SPeter Maydell
1292121afa9eSAnthony Liguoriif test -z "$target_list" ; then
1293121afa9eSAnthony Liguori    target_list="$default_target_list"
1294121afa9eSAnthony Liguorielse
1295121afa9eSAnthony Liguori    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
12965327cf48Sbellardfi
1297121afa9eSAnthony Liguoriif test -z "$target_list" ; then
1298121afa9eSAnthony Liguori    echo "No targets enabled"
1299121afa9eSAnthony Liguori    exit 1
1300121afa9eSAnthony Liguorifi
1301f55fe278SPaolo Bonzini# see if system emulation was really requested
1302f55fe278SPaolo Bonzinicase " $target_list " in
1303f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1304f55fe278SPaolo Bonzini  ;;
1305f55fe278SPaolo Bonzini  *) softmmu=no
1306f55fe278SPaolo Bonzini  ;;
1307f55fe278SPaolo Bonziniesac
13085327cf48Sbellard
1309249247c9SJuan Quintelafeature_not_found() {
1310249247c9SJuan Quintela  feature=$1
1311249247c9SJuan Quintela
1312249247c9SJuan Quintela  echo "ERROR"
1313249247c9SJuan Quintela  echo "ERROR: User requested feature $feature"
13149332f6a2SSebastian Herbszt  echo "ERROR: configure was not able to find it"
1315249247c9SJuan Quintela  echo "ERROR"
1316249247c9SJuan Quintela  exit 1;
1317249247c9SJuan Quintela}
1318249247c9SJuan Quintela
13197d13299dSbellardif test -z "$cross_prefix" ; then
13207d13299dSbellard
13217d13299dSbellard# ---
13227d13299dSbellard# big/little endian test
13237d13299dSbellardcat > $TMPC << EOF
13247d13299dSbellard#include <inttypes.h>
13257d13299dSbellardint main(int argc, char ** argv){
13267d13299dSbellard        volatile uint32_t i=0x01234567;
13277d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
13287d13299dSbellard}
13297d13299dSbellardEOF
13307d13299dSbellard
133152166aa0SJuan Quintelaif compile_prog "" "" ; then
13327d13299dSbellard$TMPE && bigendian="yes"
13337d13299dSbellardelse
13347d13299dSbellardecho big/little test failed
13357d13299dSbellardfi
13367d13299dSbellard
13377d13299dSbellardelse
13387d13299dSbellard
13397d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
1340ea8f20f8SJuan Quintelacase "$cpu" in
134121d89f84SPeter Maydell  arm)
134221d89f84SPeter Maydell    # ARM can be either way; ask the compiler which one we are
134321d89f84SPeter Maydell    if check_define __ARMEB__; then
134421d89f84SPeter Maydell      bigendian=yes
134521d89f84SPeter Maydell    fi
134621d89f84SPeter Maydell  ;;
134721d89f84SPeter Maydell  hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1348ea8f20f8SJuan Quintela    bigendian=yes
1349ea8f20f8SJuan Quintela  ;;
1350ea8f20f8SJuan Quintelaesac
13517d13299dSbellard
13527d13299dSbellardfi
13537d13299dSbellard
1354b0a47e79SJuan Quintela##########################################
1355b0a47e79SJuan Quintela# NPTL probe
1356b0a47e79SJuan Quintela
1357b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then
1358bd0c5661Spbrook  cat > $TMPC <<EOF
1359bd0c5661Spbrook#include <sched.h>
136030813ceaSpbrook#include <linux/futex.h>
1361182eacc0SStefan Weilint main(void) {
1362bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1363bd0c5661Spbrook#error bork
1364bd0c5661Spbrook#endif
1365182eacc0SStefan Weil  return 0;
1366bd0c5661Spbrook}
1367bd0c5661SpbrookEOF
1368bd0c5661Spbrook
136952166aa0SJuan Quintela  if compile_object ; then
1370b0a47e79SJuan Quintela    nptl=yes
1371bd0c5661Spbrook  else
1372b0a47e79SJuan Quintela    if test "$nptl" = "yes" ; then
1373b0a47e79SJuan Quintela      feature_not_found "nptl"
1374b0a47e79SJuan Quintela    fi
1375b0a47e79SJuan Quintela    nptl=no
1376b0a47e79SJuan Quintela  fi
1377bd0c5661Spbrookfi
1378bd0c5661Spbrook
137911d9f695Sbellard##########################################
1380ac62922eSbalrog# zlib check
1381ac62922eSbalrog
13821ece9905SAlon Levyif test "$zlib" != "no" ; then
1383ac62922eSbalrog    cat > $TMPC << EOF
1384ac62922eSbalrog#include <zlib.h>
1385ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1386ac62922eSbalrogEOF
138752166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1388ac62922eSbalrog        :
1389ac62922eSbalrog    else
1390ac62922eSbalrog        echo
1391ac62922eSbalrog        echo "Error: zlib check failed"
1392ac62922eSbalrog        echo "Make sure to have the zlib libs and headers installed."
1393ac62922eSbalrog        echo
1394ac62922eSbalrog        exit 1
1395ac62922eSbalrog    fi
13961ece9905SAlon Levyfi
1397ac62922eSbalrog
1398ac62922eSbalrog##########################################
1399f794573eSEduardo Otubo# libseccomp check
1400f794573eSEduardo Otubo
1401f794573eSEduardo Otuboif test "$seccomp" != "no" ; then
1402f794573eSEduardo Otubo    if $pkg_config libseccomp --modversion >/dev/null 2>&1; then
1403f794573eSEduardo Otubo        LIBS=`$pkg_config --libs libseccomp`
1404f794573eSEduardo Otubo	seccomp="yes"
1405f794573eSEduardo Otubo    else
1406f794573eSEduardo Otubo	if test "$seccomp" = "yes"; then
1407f794573eSEduardo Otubo            feature_not_found "libseccomp"
1408f794573eSEduardo Otubo	fi
1409e84d5956SYann E. MORIN	seccomp="no"
1410f794573eSEduardo Otubo    fi
1411f794573eSEduardo Otubofi
1412f794573eSEduardo Otubo##########################################
1413e37630caSaliguori# xen probe
1414e37630caSaliguori
1415fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1416b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
1417d5b93ddfSAnthony PERARD
141850ced5b3SStefan Weil  # First we test whether Xen headers and libraries are available.
141950ced5b3SStefan Weil  # If no, we are done and there is no Xen support.
142050ced5b3SStefan Weil  # If yes, more tests are run to detect the Xen version.
142150ced5b3SStefan Weil
142250ced5b3SStefan Weil  # Xen (any)
142350ced5b3SStefan Weil  cat > $TMPC <<EOF
142450ced5b3SStefan Weil#include <xenctrl.h>
142550ced5b3SStefan Weilint main(void) {
142650ced5b3SStefan Weil  return 0;
142750ced5b3SStefan Weil}
142850ced5b3SStefan WeilEOF
142950ced5b3SStefan Weil  if ! compile_prog "" "$xen_libs" ; then
143050ced5b3SStefan Weil    # Xen not found
143150ced5b3SStefan Weil    if test "$xen" = "yes" ; then
143250ced5b3SStefan Weil      feature_not_found "xen"
143350ced5b3SStefan Weil    fi
143450ced5b3SStefan Weil    xen=no
143550ced5b3SStefan Weil
1436d5b93ddfSAnthony PERARD  # Xen unstable
143769deef08SPeter Maydell  elif
143869deef08SPeter Maydell      cat > $TMPC <<EOF &&
1439e37630caSaliguori#include <xenctrl.h>
1440e108a3c1SAnthony PERARD#include <xenstore.h>
1441d5b93ddfSAnthony PERARD#include <stdint.h>
1442d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1443d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1444d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1445d5b93ddfSAnthony PERARD#endif
1446d5b93ddfSAnthony PERARDint main(void) {
1447d5b93ddfSAnthony PERARD  xc_interface *xc;
1448d5b93ddfSAnthony PERARD  xs_daemon_open();
1449d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
1450d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1451d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
1452b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
14538688e065SStefano Stabellini  xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000);
14548688e065SStefano Stabellini  return 0;
14558688e065SStefano Stabellini}
14568688e065SStefano StabelliniEOF
14578688e065SStefano Stabellini      compile_prog "" "$xen_libs"
145869deef08SPeter Maydell    then
14598688e065SStefano Stabellini    xen_ctrl_version=420
14608688e065SStefano Stabellini    xen=yes
14618688e065SStefano Stabellini
146269deef08SPeter Maydell  elif
146369deef08SPeter Maydell      cat > $TMPC <<EOF &&
14648688e065SStefano Stabellini#include <xenctrl.h>
14658688e065SStefano Stabellini#include <xs.h>
14668688e065SStefano Stabellini#include <stdint.h>
14678688e065SStefano Stabellini#include <xen/hvm/hvm_info_table.h>
14688688e065SStefano Stabellini#if !defined(HVM_MAX_VCPUS)
14698688e065SStefano Stabellini# error HVM_MAX_VCPUS not defined
14708688e065SStefano Stabellini#endif
14718688e065SStefano Stabelliniint main(void) {
14728688e065SStefano Stabellini  xs_daemon_open();
14739b4c0b56SPeter Maydell  xc_interface_open(0, 0, 0);
14748688e065SStefano Stabellini  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
14758688e065SStefano Stabellini  xc_gnttab_open(NULL, 0);
14768688e065SStefano Stabellini  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1477d5b93ddfSAnthony PERARD  return 0;
1478d5b93ddfSAnthony PERARD}
1479e37630caSaliguoriEOF
148050ced5b3SStefan Weil      compile_prog "" "$xen_libs"
148169deef08SPeter Maydell    then
1482d5b93ddfSAnthony PERARD    xen_ctrl_version=410
1483fc321b4bSJuan Quintela    xen=yes
1484d5b93ddfSAnthony PERARD
1485d5b93ddfSAnthony PERARD  # Xen 4.0.0
148669deef08SPeter Maydell  elif
148769deef08SPeter Maydell      cat > $TMPC <<EOF &&
1488d5b93ddfSAnthony PERARD#include <xenctrl.h>
1489d5b93ddfSAnthony PERARD#include <xs.h>
1490d5b93ddfSAnthony PERARD#include <stdint.h>
1491d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1492d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1493d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1494d5b93ddfSAnthony PERARD#endif
1495d5b93ddfSAnthony PERARDint main(void) {
1496b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1497b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1498b87de24eSAnthony PERARD  };
1499d5b93ddfSAnthony PERARD  xs_daemon_open();
1500d5b93ddfSAnthony PERARD  xc_interface_open();
1501d5b93ddfSAnthony PERARD  xc_gnttab_open();
1502d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1503b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1504d5b93ddfSAnthony PERARD  return 0;
1505d5b93ddfSAnthony PERARD}
1506d5b93ddfSAnthony PERARDEOF
1507d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
150869deef08SPeter Maydell    then
1509d5b93ddfSAnthony PERARD    xen_ctrl_version=400
1510d5b93ddfSAnthony PERARD    xen=yes
1511d5b93ddfSAnthony PERARD
1512b87de24eSAnthony PERARD  # Xen 3.4.0
151369deef08SPeter Maydell  elif
151469deef08SPeter Maydell      cat > $TMPC <<EOF &&
1515b87de24eSAnthony PERARD#include <xenctrl.h>
1516b87de24eSAnthony PERARD#include <xs.h>
1517b87de24eSAnthony PERARDint main(void) {
1518b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1519b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1520b87de24eSAnthony PERARD  };
1521b87de24eSAnthony PERARD  xs_daemon_open();
1522b87de24eSAnthony PERARD  xc_interface_open();
1523b87de24eSAnthony PERARD  xc_gnttab_open();
1524b87de24eSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1525b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1526b87de24eSAnthony PERARD  return 0;
1527b87de24eSAnthony PERARD}
1528b87de24eSAnthony PERARDEOF
1529b87de24eSAnthony PERARD      compile_prog "" "$xen_libs"
153069deef08SPeter Maydell    then
1531b87de24eSAnthony PERARD    xen_ctrl_version=340
1532b87de24eSAnthony PERARD    xen=yes
1533b87de24eSAnthony PERARD
1534b87de24eSAnthony PERARD  # Xen 3.3.0
153569deef08SPeter Maydell  elif
153669deef08SPeter Maydell      cat > $TMPC <<EOF &&
1537d5b93ddfSAnthony PERARD#include <xenctrl.h>
1538d5b93ddfSAnthony PERARD#include <xs.h>
1539d5b93ddfSAnthony PERARDint main(void) {
1540d5b93ddfSAnthony PERARD  xs_daemon_open();
1541d5b93ddfSAnthony PERARD  xc_interface_open();
1542d5b93ddfSAnthony PERARD  xc_gnttab_open();
1543d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1544d5b93ddfSAnthony PERARD  return 0;
1545d5b93ddfSAnthony PERARD}
1546d5b93ddfSAnthony PERARDEOF
1547d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
154869deef08SPeter Maydell    then
1549d5b93ddfSAnthony PERARD    xen_ctrl_version=330
1550d5b93ddfSAnthony PERARD    xen=yes
1551d5b93ddfSAnthony PERARD
155250ced5b3SStefan Weil  # Xen version unsupported
1553e37630caSaliguori  else
1554fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
155550ced5b3SStefan Weil      feature_not_found "xen (unsupported version)"
1556fc321b4bSJuan Quintela    fi
1557fc321b4bSJuan Quintela    xen=no
1558e37630caSaliguori  fi
1559d5b93ddfSAnthony PERARD
1560d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
1561d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
1562d5b93ddfSAnthony PERARD  fi
1563e37630caSaliguorifi
1564e37630caSaliguori
1565eb6fda0fSAnthony PERARDif test "$xen_pci_passthrough" != "no"; then
1566eb6fda0fSAnthony PERARD  if test "$xen" = "yes" && test "$linux" = "yes" &&
1567eb6fda0fSAnthony PERARD    test "$xen_ctrl_version" -ge 340; then
1568eb6fda0fSAnthony PERARD    xen_pci_passthrough=yes
1569eb6fda0fSAnthony PERARD  else
1570eb6fda0fSAnthony PERARD    if test "$xen_pci_passthrough" = "yes"; then
1571eb6fda0fSAnthony PERARD      echo "ERROR"
1572eb6fda0fSAnthony PERARD      echo "ERROR: User requested feature Xen PCI Passthrough"
1573eb6fda0fSAnthony PERARD      echo "ERROR: but this feature require /sys from Linux"
1574eb6fda0fSAnthony PERARD      if test "$xen_ctrl_version" -lt 340; then
1575eb6fda0fSAnthony PERARD        echo "ERROR: This feature does not work with Xen 3.3"
1576eb6fda0fSAnthony PERARD      fi
1577eb6fda0fSAnthony PERARD      echo "ERROR"
1578eb6fda0fSAnthony PERARD      exit 1;
1579eb6fda0fSAnthony PERARD    fi
1580eb6fda0fSAnthony PERARD    xen_pci_passthrough=no
1581eb6fda0fSAnthony PERARD  fi
1582eb6fda0fSAnthony PERARDfi
1583eb6fda0fSAnthony PERARD
1584e37630caSaliguori##########################################
1585a8bd70adSPaolo Bonzini# pkg-config probe
1586f91672e5SPaolo Bonzini
158717884d7bSSergei Trofimovichif ! has "$pkg_config_exe"; then
158817884d7bSSergei Trofimovich  echo "Error: pkg-config binary '$pkg_config_exe' not found"
1589a213fcb2SPeter Maydell  exit 1
1590f91672e5SPaolo Bonzinifi
1591f91672e5SPaolo Bonzini
1592f91672e5SPaolo Bonzini##########################################
159344dc0ca3SAlon Levy# libtool probe
159444dc0ca3SAlon Levy
15953f534581SBradif ! has $libtool; then
159644dc0ca3SAlon Levy    libtool=
159744dc0ca3SAlon Levyfi
159844dc0ca3SAlon Levy
159944dc0ca3SAlon Levy##########################################
1600dfffc653SJuan Quintela# Sparse probe
1601dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
16020dba6195SLoïc Minier  if has cgcc; then
1603dfffc653SJuan Quintela    sparse=yes
1604dfffc653SJuan Quintela  else
1605dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
1606dfffc653SJuan Quintela      feature_not_found "sparse"
1607dfffc653SJuan Quintela    fi
1608dfffc653SJuan Quintela    sparse=no
1609dfffc653SJuan Quintela  fi
1610dfffc653SJuan Quintelafi
1611dfffc653SJuan Quintela
1612dfffc653SJuan Quintela##########################################
161311d9f695Sbellard# SDL probe
161411d9f695Sbellard
16153ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
16163ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
16173ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
16183ec87ffeSPaolo Bonzini  sdl_config=sdl-config
16193ec87ffeSPaolo Bonzinifi
16203ec87ffeSPaolo Bonzini
16213ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then
1622a8bd70adSPaolo Bonzini  sdlconfig="$pkg_config sdl"
1623fec0e3e8SStefan Weil  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
16243ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
16253ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
16269316f803SPaolo Bonzini  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1627a0dfd8a4SLoïc Minierelse
1628a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
1629a0dfd8a4SLoïc Minier    feature_not_found "sdl"
1630a0dfd8a4SLoïc Minier  fi
1631a0dfd8a4SLoïc Minier  sdl=no
16329316f803SPaolo Bonzinifi
163329e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
16343ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
16353ec87ffeSPaolo Bonzinifi
163611d9f695Sbellard
16379316f803SPaolo Bonzinisdl_too_old=no
1638c4198157SJuan Quintelaif test "$sdl" != "no" ; then
163911d9f695Sbellard  cat > $TMPC << EOF
164011d9f695Sbellard#include <SDL.h>
164111d9f695Sbellard#undef main /* We don't want SDL to override our main() */
164211d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
164311d9f695SbellardEOF
16449316f803SPaolo Bonzini  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
164574f42e18STeLeMan  if test "$static" = "yes" ; then
164674f42e18STeLeMan    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
164774f42e18STeLeMan  else
16489316f803SPaolo Bonzini    sdl_libs=`$sdlconfig --libs 2> /dev/null`
164974f42e18STeLeMan  fi
165052166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
165111d9f695Sbellard    if test "$_sdlversion" -lt 121 ; then
165211d9f695Sbellard      sdl_too_old=yes
165311d9f695Sbellard    else
1654fd677642Sths      if test "$cocoa" = "no" ; then
165511d9f695Sbellard        sdl=yes
165611d9f695Sbellard      fi
1657fd677642Sths    fi
16587c1f25b4Sbellard
165967c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
16601ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
166167c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1662f8aa6c7bSStefan Weil         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1663f8aa6c7bSStefan Weil         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
166411d9f695Sbellard      fi
166552166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
16661ac88f28SJuan Quintela	:
16671ac88f28SJuan Quintela      else
16681ac88f28SJuan Quintela        sdl=no
16697c1f25b4Sbellard      fi
16707c1f25b4Sbellard    fi # static link
1671c4198157SJuan Quintela  else # sdl not found
1672c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
1673c4198157SJuan Quintela      feature_not_found "sdl"
1674c4198157SJuan Quintela    fi
1675c4198157SJuan Quintela    sdl=no
16767c1f25b4Sbellard  fi # sdl compile test
1677fd677642Sthsfi
167811d9f695Sbellard
16795368a422Saliguoriif test "$sdl" = "yes" ; then
16805368a422Saliguori  cat > $TMPC <<EOF
16815368a422Saliguori#include <SDL.h>
16825368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
16835368a422Saliguori#include <X11/XKBlib.h>
16845368a422Saliguori#else
16855368a422Saliguori#error No x11 support
16865368a422Saliguori#endif
16875368a422Saliguoriint main(void) { return 0; }
16885368a422SaliguoriEOF
168952166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1690681306dfSJuan Quintela    sdl_libs="$sdl_libs -lX11"
16915368a422Saliguori  fi
16920705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
16935368a422Saliguorifi
16945368a422Saliguori
16958f28f3fbSths##########################################
16968d5d2d4cSths# VNC TLS detection
1697821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1698ae6b5e5aSaliguori  cat > $TMPC <<EOF
1699ae6b5e5aSaliguori#include <gnutls/gnutls.h>
1700ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1701ae6b5e5aSaliguoriEOF
1702a8bd70adSPaolo Bonzini  vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1703a8bd70adSPaolo Bonzini  vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
170452166aa0SJuan Quintela  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
17051be10ad2SJuan Quintela    vnc_tls=yes
1706a5e32cc9SJuan Quintela    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1707ae6b5e5aSaliguori  else
17081be10ad2SJuan Quintela    if test "$vnc_tls" = "yes" ; then
17091be10ad2SJuan Quintela      feature_not_found "vnc-tls"
17101be10ad2SJuan Quintela    fi
17111be10ad2SJuan Quintela    vnc_tls=no
17128d5d2d4cSths  fi
17138d5d2d4cSthsfi
17148d5d2d4cSths
17158d5d2d4cSths##########################################
17162f9606b3Saliguori# VNC SASL detection
1717821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
17182f9606b3Saliguori  cat > $TMPC <<EOF
17192f9606b3Saliguori#include <sasl/sasl.h>
17202f9606b3Saliguori#include <stdio.h>
17212f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
17222f9606b3SaliguoriEOF
17232f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
17242f9606b3Saliguori  vnc_sasl_cflags=""
17252f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
172652166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1727ea784e3bSJuan Quintela    vnc_sasl=yes
1728fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
17292f9606b3Saliguori  else
1730ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
1731ea784e3bSJuan Quintela      feature_not_found "vnc-sasl"
1732ea784e3bSJuan Quintela    fi
1733ea784e3bSJuan Quintela    vnc_sasl=no
17342f9606b3Saliguori  fi
17352f9606b3Saliguorifi
17362f9606b3Saliguori
17372f9606b3Saliguori##########################################
17382f6f5c7aSCorentin Chary# VNC JPEG detection
1739821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
17402f6f5c7aSCorentin Charycat > $TMPC <<EOF
17412f6f5c7aSCorentin Chary#include <stdio.h>
17422f6f5c7aSCorentin Chary#include <jpeglib.h>
17432f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
17442f6f5c7aSCorentin CharyEOF
17452f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
17462f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
17472f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
17482f6f5c7aSCorentin Chary    vnc_jpeg=yes
17492f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
17502f6f5c7aSCorentin Chary  else
17512f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
17522f6f5c7aSCorentin Chary      feature_not_found "vnc-jpeg"
17532f6f5c7aSCorentin Chary    fi
17542f6f5c7aSCorentin Chary    vnc_jpeg=no
17552f6f5c7aSCorentin Chary  fi
17562f6f5c7aSCorentin Charyfi
17572f6f5c7aSCorentin Chary
17582f6f5c7aSCorentin Chary##########################################
1759efe556adSCorentin Chary# VNC PNG detection
1760821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
1761efe556adSCorentin Charycat > $TMPC <<EOF
1762efe556adSCorentin Chary//#include <stdio.h>
1763efe556adSCorentin Chary#include <png.h>
1764832ce9c2SScott Wood#include <stddef.h>
1765efe556adSCorentin Charyint main(void) {
1766efe556adSCorentin Chary    png_structp png_ptr;
1767efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
17687edc3fedSPeter Maydell    return png_ptr != 0;
1769efe556adSCorentin Chary}
1770efe556adSCorentin CharyEOF
17719af8025eSBrad  if $pkg_config libpng --modversion >/dev/null 2>&1; then
17729af8025eSBrad    vnc_png_cflags=`$pkg_config libpng --cflags 2> /dev/null`
17739af8025eSBrad    vnc_png_libs=`$pkg_config libpng --libs 2> /dev/null`
17749af8025eSBrad  else
1775efe556adSCorentin Chary    vnc_png_cflags=""
1776efe556adSCorentin Chary    vnc_png_libs="-lpng"
17779af8025eSBrad  fi
1778efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1779efe556adSCorentin Chary    vnc_png=yes
1780efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
17819af8025eSBrad    QEMU_CFLAGS="$QEMU_CFLAGS $vnc_png_cflags"
1782efe556adSCorentin Chary  else
1783efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
1784efe556adSCorentin Chary      feature_not_found "vnc-png"
1785efe556adSCorentin Chary    fi
1786efe556adSCorentin Chary    vnc_png=no
1787efe556adSCorentin Chary  fi
1788efe556adSCorentin Charyfi
1789efe556adSCorentin Chary
1790efe556adSCorentin Chary##########################################
179176655d6dSaliguori# fnmatch() probe, used for ACL routines
179276655d6dSaliguorifnmatch="no"
179376655d6dSaliguoricat > $TMPC << EOF
179476655d6dSaliguori#include <fnmatch.h>
179576655d6dSaliguoriint main(void)
179676655d6dSaliguori{
179776655d6dSaliguori    fnmatch("foo", "foo", 0);
179876655d6dSaliguori    return 0;
179976655d6dSaliguori}
180076655d6dSaliguoriEOF
180152166aa0SJuan Quintelaif compile_prog "" "" ; then
180276655d6dSaliguori   fnmatch="yes"
180376655d6dSaliguorifi
180476655d6dSaliguori
180576655d6dSaliguori##########################################
1806ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
1807ee682d27SStefan Weilif test "$uuid" != "no" ; then
1808ee682d27SStefan Weil  uuid_libs="-luuid"
1809ee682d27SStefan Weil  cat > $TMPC << EOF
1810ee682d27SStefan Weil#include <uuid/uuid.h>
1811ee682d27SStefan Weilint main(void)
1812ee682d27SStefan Weil{
1813ee682d27SStefan Weil    uuid_t my_uuid;
1814ee682d27SStefan Weil    uuid_generate(my_uuid);
1815ee682d27SStefan Weil    return 0;
1816ee682d27SStefan Weil}
1817ee682d27SStefan WeilEOF
1818ee682d27SStefan Weil  if compile_prog "" "$uuid_libs" ; then
1819ee682d27SStefan Weil    uuid="yes"
1820ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
1821ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
1822ee682d27SStefan Weil  else
1823ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
1824ee682d27SStefan Weil      feature_not_found "uuid"
1825ee682d27SStefan Weil    fi
1826ee682d27SStefan Weil    uuid=no
1827ee682d27SStefan Weil  fi
1828ee682d27SStefan Weilfi
1829ee682d27SStefan Weil
1830ee682d27SStefan Weil##########################################
1831dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
1832dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
1833dce512deSChristoph Hellwig  cat > $TMPC << EOF
1834ffc41d10SStefan Weil#include <stddef.h>  /* NULL */
1835dce512deSChristoph Hellwig#include <xfs/xfs.h>
1836dce512deSChristoph Hellwigint main(void)
1837dce512deSChristoph Hellwig{
1838dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
1839dce512deSChristoph Hellwig    return 0;
1840dce512deSChristoph Hellwig}
1841dce512deSChristoph HellwigEOF
1842dce512deSChristoph Hellwig  if compile_prog "" "" ; then
1843dce512deSChristoph Hellwig    xfs="yes"
1844dce512deSChristoph Hellwig  else
1845dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
1846dce512deSChristoph Hellwig      feature_not_found "xfs"
1847dce512deSChristoph Hellwig    fi
1848dce512deSChristoph Hellwig    xfs=no
1849dce512deSChristoph Hellwig  fi
1850dce512deSChristoph Hellwigfi
1851dce512deSChristoph Hellwig
1852dce512deSChristoph Hellwig##########################################
18538a16d273Sths# vde libraries probe
1854dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
18554baae0acSJuan Quintela  vde_libs="-lvdeplug"
18568a16d273Sths  cat > $TMPC << EOF
18578a16d273Sths#include <libvdeplug.h>
18584a7f0e06Spbrookint main(void)
18594a7f0e06Spbrook{
18604a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
1861fea08e08SPeter Maydell    char s[] = "";
1862fea08e08SPeter Maydell    vde_open(s, s, &a);
18634a7f0e06Spbrook    return 0;
18644a7f0e06Spbrook}
18658a16d273SthsEOF
186652166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
18674baae0acSJuan Quintela    vde=yes
18688e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
18698e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
1870dfb278bdSJuan Quintela  else
1871dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
1872dfb278bdSJuan Quintela      feature_not_found "vde"
1873dfb278bdSJuan Quintela    fi
1874dfb278bdSJuan Quintela    vde=no
18758a16d273Sths  fi
18768a16d273Sthsfi
18778a16d273Sths
18788a16d273Sths##########################################
187947e98658SCorey Bryant# libcap-ng library probe
188047e98658SCorey Bryantif test "$cap_ng" != "no" ; then
188147e98658SCorey Bryant  cap_libs="-lcap-ng"
188247e98658SCorey Bryant  cat > $TMPC << EOF
188347e98658SCorey Bryant#include <cap-ng.h>
188447e98658SCorey Bryantint main(void)
188547e98658SCorey Bryant{
188647e98658SCorey Bryant    capng_capability_to_name(CAPNG_EFFECTIVE);
188747e98658SCorey Bryant    return 0;
188847e98658SCorey Bryant}
188947e98658SCorey BryantEOF
189047e98658SCorey Bryant  if compile_prog "" "$cap_libs" ; then
189147e98658SCorey Bryant    cap_ng=yes
189247e98658SCorey Bryant    libs_tools="$cap_libs $libs_tools"
189347e98658SCorey Bryant  else
189447e98658SCorey Bryant    if test "$cap_ng" = "yes" ; then
189547e98658SCorey Bryant      feature_not_found "cap_ng"
189647e98658SCorey Bryant    fi
189747e98658SCorey Bryant    cap_ng=no
189847e98658SCorey Bryant  fi
189947e98658SCorey Bryantfi
190047e98658SCorey Bryant
190147e98658SCorey Bryant##########################################
1902c2de5c91Smalc# Sound support libraries probe
19038f28f3fbSths
1904c2de5c91Smalcaudio_drv_probe()
1905c2de5c91Smalc{
1906c2de5c91Smalc    drv=$1
1907c2de5c91Smalc    hdr=$2
1908c2de5c91Smalc    lib=$3
1909c2de5c91Smalc    exp=$4
1910c2de5c91Smalc    cfl=$5
19118f28f3fbSths        cat > $TMPC << EOF
1912c2de5c91Smalc#include <$hdr>
1913c2de5c91Smalcint main(void) { $exp }
19148f28f3fbSthsEOF
191552166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
19168f28f3fbSths        :
19178f28f3fbSths    else
19188f28f3fbSths        echo
1919c2de5c91Smalc        echo "Error: $drv check failed"
1920c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
19218f28f3fbSths        echo
19228f28f3fbSths        exit 1
19238f28f3fbSths    fi
1924c2de5c91Smalc}
1925c2de5c91Smalc
19262fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1927c2de5c91Smalcfor drv in $audio_drv_list; do
1928c2de5c91Smalc    case $drv in
1929c2de5c91Smalc    alsa)
1930c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1931e35bcb0cSStefan Weil        "return snd_pcm_close((snd_pcm_t *)0);"
1932a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
1933c2de5c91Smalc    ;;
1934c2de5c91Smalc
1935c2de5c91Smalc    fmod)
1936c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
1937c2de5c91Smalc        echo
1938c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
1939c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1940c2de5c91Smalc        echo
1941c2de5c91Smalc        exit 1
19428f28f3fbSths    fi
1943c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1944a4bf6780SJuan Quintela    libs_softmmu="$fmod_lib $libs_softmmu"
1945c2de5c91Smalc    ;;
1946c2de5c91Smalc
1947c2de5c91Smalc    esd)
1948c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1949a4bf6780SJuan Quintela    libs_softmmu="-lesd $libs_softmmu"
195067f86e8eSJuan Quintela    audio_pt_int="yes"
1951c2de5c91Smalc    ;;
1952b8e59f18Smalc
1953b8e59f18Smalc    pa)
1954a394aed2SMarc-André Lureau    audio_drv_probe $drv pulse/mainloop.h "-lpulse" \
1955a394aed2SMarc-André Lureau        "pa_mainloop *m = 0; pa_mainloop_free (m); return 0;"
1956a394aed2SMarc-André Lureau    libs_softmmu="-lpulse $libs_softmmu"
195767f86e8eSJuan Quintela    audio_pt_int="yes"
1958b8e59f18Smalc    ;;
1959b8e59f18Smalc
1960997e690aSJuan Quintela    coreaudio)
1961997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
1962997e690aSJuan Quintela    ;;
1963997e690aSJuan Quintela
1964a4bf6780SJuan Quintela    dsound)
1965a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1966d5631638Smalc      audio_win_int="yes"
1967a4bf6780SJuan Quintela    ;;
1968a4bf6780SJuan Quintela
1969a4bf6780SJuan Quintela    oss)
1970a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
1971a4bf6780SJuan Quintela    ;;
1972a4bf6780SJuan Quintela
1973a4bf6780SJuan Quintela    sdl|wav)
19742f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
19752f6a1ab0Sblueswir1    ;;
19762f6a1ab0Sblueswir1
1977d5631638Smalc    winwave)
1978d5631638Smalc      libs_softmmu="-lwinmm $libs_softmmu"
1979d5631638Smalc      audio_win_int="yes"
1980d5631638Smalc    ;;
1981d5631638Smalc
1982e4c63a6aSmalc    *)
19831c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1984e4c63a6aSmalc        echo
1985e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
1986e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
1987e4c63a6aSmalc        echo
1988e4c63a6aSmalc        exit 1
1989e4c63a6aSmalc    }
1990e4c63a6aSmalc    ;;
1991c2de5c91Smalc    esac
1992c2de5c91Smalcdone
19938f28f3fbSths
19944d3b6f6eSbalrog##########################################
19952e4d9fb1Saurel32# BrlAPI probe
19962e4d9fb1Saurel32
19974ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
1998eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
19992e4d9fb1Saurel32  cat > $TMPC << EOF
20002e4d9fb1Saurel32#include <brlapi.h>
2001832ce9c2SScott Wood#include <stddef.h>
20022e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
20032e4d9fb1Saurel32EOF
200452166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
20052e4d9fb1Saurel32    brlapi=yes
2006264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
20074ffcedb6SJuan Quintela  else
20084ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
20094ffcedb6SJuan Quintela      feature_not_found "brlapi"
20104ffcedb6SJuan Quintela    fi
20114ffcedb6SJuan Quintela    brlapi=no
2012eb82284fSJuan Quintela  fi
2013eb82284fSJuan Quintelafi
20142e4d9fb1Saurel32
20152e4d9fb1Saurel32##########################################
20164d3b6f6eSbalrog# curses probe
2017e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then
2018e095e2f3SStefan Weil    curses_list="-lpdcurses"
2019e095e2f3SStefan Weilelse
20204f78ef9aSJuan Quintela    curses_list="-lncurses -lcurses"
2021e095e2f3SStefan Weilfi
20224d3b6f6eSbalrog
2023c584a6d0SJuan Quintelaif test "$curses" != "no" ; then
2024c584a6d0SJuan Quintela  curses_found=no
20254d3b6f6eSbalrog  cat > $TMPC << EOF
20264d3b6f6eSbalrog#include <curses.h>
2027ef9a2524SStefan Weilint main(void) {
2028ef9a2524SStefan Weil  const char *s = curses_version();
2029ef9a2524SStefan Weil  resize_term(0, 0);
2030ef9a2524SStefan Weil  return s != 0;
2031ef9a2524SStefan Weil}
20324d3b6f6eSbalrogEOF
20334f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
20344f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
2035c584a6d0SJuan Quintela      curses_found=yes
20364f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
20374f78ef9aSJuan Quintela      break
20384d3b6f6eSbalrog    fi
20394f78ef9aSJuan Quintela  done
2040c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
2041c584a6d0SJuan Quintela    curses=yes
2042c584a6d0SJuan Quintela  else
2043c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
2044c584a6d0SJuan Quintela      feature_not_found "curses"
2045c584a6d0SJuan Quintela    fi
2046c584a6d0SJuan Quintela    curses=no
2047c584a6d0SJuan Quintela  fi
20484f78ef9aSJuan Quintelafi
20494d3b6f6eSbalrog
2050414f0dabSblueswir1##########################################
2051769ce76dSAlexander Graf# curl probe
2052769ce76dSAlexander Graf
2053a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then
2054a8bd70adSPaolo Bonzini  curlconfig="$pkg_config libcurl"
20554e2b0658SPaolo Bonzinielse
20564e2b0658SPaolo Bonzini  curlconfig=curl-config
20574e2b0658SPaolo Bonzinifi
20584e2b0658SPaolo Bonzini
2059788c8196SJuan Quintelaif test "$curl" != "no" ; then
2060769ce76dSAlexander Graf  cat > $TMPC << EOF
2061769ce76dSAlexander Graf#include <curl/curl.h>
20620b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
2063769ce76dSAlexander GrafEOF
20644e2b0658SPaolo Bonzini  curl_cflags=`$curlconfig --cflags 2>/dev/null`
20654e2b0658SPaolo Bonzini  curl_libs=`$curlconfig --libs 2>/dev/null`
2066b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
2067769ce76dSAlexander Graf    curl=yes
2068f0302935SJuan Quintela    libs_tools="$curl_libs $libs_tools"
2069f0302935SJuan Quintela    libs_softmmu="$curl_libs $libs_softmmu"
2070788c8196SJuan Quintela  else
2071788c8196SJuan Quintela    if test "$curl" = "yes" ; then
2072788c8196SJuan Quintela      feature_not_found "curl"
2073788c8196SJuan Quintela    fi
2074788c8196SJuan Quintela    curl=no
2075769ce76dSAlexander Graf  fi
2076769ce76dSAlexander Graffi # test "$curl"
2077769ce76dSAlexander Graf
2078769ce76dSAlexander Graf##########################################
2079fb599c9aSbalrog# bluez support probe
2080a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
2081e820e3f4Sbalrog  cat > $TMPC << EOF
2082e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
2083e820e3f4Sbalrogint main(void) { return bt_error(0); }
2084e820e3f4SbalrogEOF
2085a8bd70adSPaolo Bonzini  bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
2086a8bd70adSPaolo Bonzini  bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
208752166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
2088a20a6f46SJuan Quintela    bluez=yes
2089e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
2090e820e3f4Sbalrog  else
2091a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
2092a20a6f46SJuan Quintela      feature_not_found "bluez"
2093a20a6f46SJuan Quintela    fi
2094e820e3f4Sbalrog    bluez="no"
2095e820e3f4Sbalrog  fi
2096fb599c9aSbalrogfi
2097fb599c9aSbalrog
2098fb599c9aSbalrog##########################################
2099e18df141SAnthony Liguori# glib support probe
2100a52d28afSPaolo Bonzini
2101a52d28afSPaolo Bonziniif test "$mingw32" = yes; then
2102a52d28afSPaolo Bonzini    # g_poll is required in order to integrate with the glib main loop.
2103a52d28afSPaolo Bonzini    glib_req_ver=2.20
2104a52d28afSPaolo Bonzinielse
2105a52d28afSPaolo Bonzini    glib_req_ver=2.12
2106a52d28afSPaolo Bonzinifi
2107a52d28afSPaolo Bonziniif $pkg_config --atleast-version=$glib_req_ver gthread-2.0 > /dev/null 2>&1
2108a52d28afSPaolo Bonzinithen
21094b76a481SStefan Hajnoczi    glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null`
21104b76a481SStefan Hajnoczi    glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null`
211114015304SAnthony Liguori    LIBS="$glib_libs $LIBS"
2112957f1f99SMichael Roth    libs_qga="$glib_libs $libs_qga"
2113e18df141SAnthony Liguorielse
2114a52d28afSPaolo Bonzini    echo "glib-$glib_req_ver required to compile QEMU"
2115e18df141SAnthony Liguori    exit 1
2116e18df141SAnthony Liguorifi
2117e18df141SAnthony Liguori
2118e18df141SAnthony Liguori##########################################
211917bff52bSM. Mohan Kumar# libcap probe
212017bff52bSM. Mohan Kumar
212117bff52bSM. Mohan Kumarif test "$cap" != "no" ; then
212217bff52bSM. Mohan Kumar  cat > $TMPC <<EOF
212317bff52bSM. Mohan Kumar#include <stdio.h>
212417bff52bSM. Mohan Kumar#include <sys/capability.h>
2125cc939743SStefan Weilint main(void) { cap_t caps; caps = cap_init(); return caps != NULL; }
212617bff52bSM. Mohan KumarEOF
212717bff52bSM. Mohan Kumar  if compile_prog "" "-lcap" ; then
212817bff52bSM. Mohan Kumar    cap=yes
212917bff52bSM. Mohan Kumar  else
213017bff52bSM. Mohan Kumar    cap=no
213117bff52bSM. Mohan Kumar  fi
213217bff52bSM. Mohan Kumarfi
213317bff52bSM. Mohan Kumar
213417bff52bSM. Mohan Kumar##########################################
2135e5d355d1Saliguori# pthread probe
21364b29ec41SBradPTHREADLIBS_LIST="-pthread -lpthread -lpthreadGC2"
21373c529d93Saliguori
2138e5d355d1Saliguoripthread=no
2139414f0dabSblueswir1cat > $TMPC << EOF
21403c529d93Saliguori#include <pthread.h>
21417a42bbe4SStefan Weilstatic void *f(void *p) { return NULL; }
21427a42bbe4SStefan Weilint main(void) {
21437a42bbe4SStefan Weil  pthread_t thread;
21447a42bbe4SStefan Weil  pthread_create(&thread, 0, f, 0);
21457a42bbe4SStefan Weil  return 0;
21467a42bbe4SStefan Weil}
2147414f0dabSblueswir1EOF
2148bd00d539SAndreas Färberif compile_prog "" "" ; then
2149bd00d539SAndreas Färber  pthread=yes
2150bd00d539SAndreas Färberelse
2151de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
215252166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
2153e5d355d1Saliguori      pthread=yes
2154e3c56761SPeter Portante      found=no
2155e3c56761SPeter Portante      for lib_entry in $LIBS; do
2156e3c56761SPeter Portante        if test "$lib_entry" = "$pthread_lib"; then
2157e3c56761SPeter Portante          found=yes
2158e3c56761SPeter Portante          break
2159e3c56761SPeter Portante        fi
2160e3c56761SPeter Portante      done
2161e3c56761SPeter Portante      if test "$found" = "no"; then
21625572b539SJuan Quintela        LIBS="$pthread_lib $LIBS"
2163e3c56761SPeter Portante      fi
2164de65fe0fSSebastian Herbszt      break
2165414f0dabSblueswir1    fi
2166de65fe0fSSebastian Herbszt  done
2167bd00d539SAndreas Färberfi
2168414f0dabSblueswir1
21694617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
21704dd75c70SChristoph Hellwig  echo
21714dd75c70SChristoph Hellwig  echo "Error: pthread check failed"
21724dd75c70SChristoph Hellwig  echo "Make sure to have the pthread libs and headers installed."
21734dd75c70SChristoph Hellwig  echo
21744dd75c70SChristoph Hellwig  exit 1
2175e5d355d1Saliguorifi
2176e5d355d1Saliguori
2177bf9298b9Saliguori##########################################
2178f27aaf4bSChristian Brunner# rbd probe
2179f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
2180f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
2181f27aaf4bSChristian Brunner#include <stdio.h>
2182ad32e9c0SJosh Durgin#include <rbd/librbd.h>
2183f27aaf4bSChristian Brunnerint main(void) {
2184ad32e9c0SJosh Durgin    rados_t cluster;
2185ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
2186f27aaf4bSChristian Brunner    return 0;
2187f27aaf4bSChristian Brunner}
2188f27aaf4bSChristian BrunnerEOF
2189ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
2190f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
2191f27aaf4bSChristian Brunner    rbd=yes
2192f27aaf4bSChristian Brunner    libs_tools="$rbd_libs $libs_tools"
2193f27aaf4bSChristian Brunner    libs_softmmu="$rbd_libs $libs_softmmu"
2194f27aaf4bSChristian Brunner  else
2195f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
2196f27aaf4bSChristian Brunner      feature_not_found "rados block device"
2197f27aaf4bSChristian Brunner    fi
2198f27aaf4bSChristian Brunner    rbd=no
2199f27aaf4bSChristian Brunner  fi
2200f27aaf4bSChristian Brunnerfi
2201f27aaf4bSChristian Brunner
2202f27aaf4bSChristian Brunner##########################################
22035c6c3a6cSChristoph Hellwig# linux-aio probe
22045c6c3a6cSChristoph Hellwig
22055c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
22065c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
22075c6c3a6cSChristoph Hellwig#include <libaio.h>
22085c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
2209832ce9c2SScott Wood#include <stddef.h>
22105c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
22115c6c3a6cSChristoph HellwigEOF
22125c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
22135c6c3a6cSChristoph Hellwig    linux_aio=yes
2214048d179fSPaul Brook    libs_softmmu="$libs_softmmu -laio"
2215048d179fSPaul Brook    libs_tools="$libs_tools -laio"
22165c6c3a6cSChristoph Hellwig  else
22175c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
22185c6c3a6cSChristoph Hellwig      feature_not_found "linux AIO"
22195c6c3a6cSChristoph Hellwig    fi
22203cfcae3cSLuiz Capitulino    linux_aio=no
22215c6c3a6cSChristoph Hellwig  fi
22225c6c3a6cSChristoph Hellwigfi
22235c6c3a6cSChristoph Hellwig
22245c6c3a6cSChristoph Hellwig##########################################
2225758e8e38SVenkateswararao Jujjuri (JV)# attr probe
2226758e8e38SVenkateswararao Jujjuri (JV)
2227758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
2228758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
2229758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
2230758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
2231f2338fb4SPavel Borzenkov#ifdef CONFIG_LIBATTR
2232f2338fb4SPavel Borzenkov#include <attr/xattr.h>
2233f2338fb4SPavel Borzenkov#else
22344f26f2b6SAvi Kivity#include <sys/xattr.h>
2235f2338fb4SPavel Borzenkov#endif
2236758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
2237758e8e38SVenkateswararao Jujjuri (JV)EOF
22384f26f2b6SAvi Kivity  if compile_prog "" "" ; then
22394f26f2b6SAvi Kivity    attr=yes
22404f26f2b6SAvi Kivity  # Older distros have <attr/xattr.h>, and need -lattr:
2241f2338fb4SPavel Borzenkov  elif compile_prog "-DCONFIG_LIBATTR" "-lattr" ; then
2242758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
2243758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
22444f26f2b6SAvi Kivity    libattr=yes
2245758e8e38SVenkateswararao Jujjuri (JV)  else
2246758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
2247758e8e38SVenkateswararao Jujjuri (JV)      feature_not_found "ATTR"
2248758e8e38SVenkateswararao Jujjuri (JV)    fi
2249758e8e38SVenkateswararao Jujjuri (JV)    attr=no
2250758e8e38SVenkateswararao Jujjuri (JV)  fi
2251758e8e38SVenkateswararao Jujjuri (JV)fi
2252758e8e38SVenkateswararao Jujjuri (JV)
2253758e8e38SVenkateswararao Jujjuri (JV)##########################################
2254bf9298b9Saliguori# iovec probe
2255bf9298b9Saliguoricat > $TMPC <<EOF
2256db34f0b3Sblueswir1#include <sys/types.h>
2257bf9298b9Saliguori#include <sys/uio.h>
2258db34f0b3Sblueswir1#include <unistd.h>
2259f91f9beeSStefan Weilint main(void) { return sizeof(struct iovec); }
2260bf9298b9SaliguoriEOF
2261bf9298b9Saliguoriiovec=no
226252166aa0SJuan Quintelaif compile_prog "" "" ; then
2263bf9298b9Saliguori  iovec=yes
2264bf9298b9Saliguorifi
2265bf9298b9Saliguori
2266f652e6afSaurel32##########################################
2267ceb42de8Saliguori# preadv probe
2268ceb42de8Saliguoricat > $TMPC <<EOF
2269ceb42de8Saliguori#include <sys/types.h>
2270ceb42de8Saliguori#include <sys/uio.h>
2271ceb42de8Saliguori#include <unistd.h>
2272c075a723SBlue Swirlint main(void) { return preadv(0, 0, 0, 0); }
2273ceb42de8SaliguoriEOF
2274ceb42de8Saliguoripreadv=no
227552166aa0SJuan Quintelaif compile_prog "" "" ; then
2276ceb42de8Saliguori  preadv=yes
2277ceb42de8Saliguorifi
2278ceb42de8Saliguori
2279ceb42de8Saliguori##########################################
2280f652e6afSaurel32# fdt probe
22812df87df7SJuan Quintelaif test "$fdt" != "no" ; then
2282b41af4baSJuan Quintela  fdt_libs="-lfdt"
2283f652e6afSaurel32  cat > $TMPC << EOF
2284f652e6afSaurel32int main(void) { return 0; }
2285f652e6afSaurel32EOF
228652166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
2287f652e6afSaurel32    fdt=yes
22882df87df7SJuan Quintela  else
22892df87df7SJuan Quintela    if test "$fdt" = "yes" ; then
22902df87df7SJuan Quintela      feature_not_found "fdt"
22912df87df7SJuan Quintela    fi
2292de3a354aSMichael Walle    fdt_libs=
22932df87df7SJuan Quintela    fdt=no
2294f652e6afSaurel32  fi
2295f652e6afSaurel32fi
2296f652e6afSaurel32
229720ff075bSMichael Walle##########################################
229820ff075bSMichael Walle# opengl probe, used by milkymist-tmu2
229920ff075bSMichael Walleif test "$opengl" != "no" ; then
230020ff075bSMichael Walle  opengl_libs="-lGL"
230120ff075bSMichael Walle  cat > $TMPC << EOF
230220ff075bSMichael Walle#include <X11/Xlib.h>
230320ff075bSMichael Walle#include <GL/gl.h>
230420ff075bSMichael Walle#include <GL/glx.h>
230584972cbbSStefan Weilint main(void) { return GL_VERSION != 0; }
230620ff075bSMichael WalleEOF
230720ff075bSMichael Walle  if compile_prog "" "-lGL" ; then
230820ff075bSMichael Walle    opengl=yes
230920ff075bSMichael Walle  else
231020ff075bSMichael Walle    if test "$opengl" = "yes" ; then
231120ff075bSMichael Walle      feature_not_found "opengl"
231220ff075bSMichael Walle    fi
2313de3a354aSMichael Walle    opengl_libs=
231420ff075bSMichael Walle    opengl=no
231520ff075bSMichael Walle  fi
231620ff075bSMichael Wallefi
231720ff075bSMichael Walle
23183b3f24adSaurel32#
23193b3f24adSaurel32# Check for xxxat() functions when we are building linux-user
23203b3f24adSaurel32# emulator.  This is done because older glibc versions don't
23213b3f24adSaurel32# have syscall stubs for these implemented.
23223b3f24adSaurel32#
23233b3f24adSaurel32atfile=no
23243b3f24adSaurel32cat > $TMPC << EOF
23253b3f24adSaurel32#define _ATFILE_SOURCE
23263b3f24adSaurel32#include <sys/types.h>
23273b3f24adSaurel32#include <fcntl.h>
23283b3f24adSaurel32#include <unistd.h>
23293b3f24adSaurel32
23303b3f24adSaurel32int
23313b3f24adSaurel32main(void)
23323b3f24adSaurel32{
23333b3f24adSaurel32	/* try to unlink nonexisting file */
23343b3f24adSaurel32	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
23353b3f24adSaurel32}
23363b3f24adSaurel32EOF
233752166aa0SJuan Quintelaif compile_prog "" "" ; then
23383b3f24adSaurel32  atfile=yes
23393b3f24adSaurel32fi
23403b3f24adSaurel32
234139386ac7Saurel32# Check for inotify functions when we are building linux-user
23423b3f24adSaurel32# emulator.  This is done because older glibc versions don't
23433b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
23443b3f24adSaurel32# don't provide them even if kernel supports them.
23453b3f24adSaurel32#
23463b3f24adSaurel32inotify=no
23473b3f24adSaurel32cat > $TMPC << EOF
23483b3f24adSaurel32#include <sys/inotify.h>
23493b3f24adSaurel32
23503b3f24adSaurel32int
23513b3f24adSaurel32main(void)
23523b3f24adSaurel32{
23533b3f24adSaurel32	/* try to start inotify */
23548690e420Saurel32	return inotify_init();
23553b3f24adSaurel32}
23563b3f24adSaurel32EOF
235752166aa0SJuan Quintelaif compile_prog "" "" ; then
23583b3f24adSaurel32  inotify=yes
23593b3f24adSaurel32fi
23603b3f24adSaurel32
2361c05c7a73SRiku Voipioinotify1=no
2362c05c7a73SRiku Voipiocat > $TMPC << EOF
2363c05c7a73SRiku Voipio#include <sys/inotify.h>
2364c05c7a73SRiku Voipio
2365c05c7a73SRiku Voipioint
2366c05c7a73SRiku Voipiomain(void)
2367c05c7a73SRiku Voipio{
2368c05c7a73SRiku Voipio    /* try to start inotify */
2369c05c7a73SRiku Voipio    return inotify_init1(0);
2370c05c7a73SRiku Voipio}
2371c05c7a73SRiku VoipioEOF
2372c05c7a73SRiku Voipioif compile_prog "" "" ; then
2373c05c7a73SRiku Voipio  inotify1=yes
2374c05c7a73SRiku Voipiofi
2375c05c7a73SRiku Voipio
2376ebc996f3SRiku Voipio# check if utimensat and futimens are supported
2377ebc996f3SRiku Voipioutimens=no
2378ebc996f3SRiku Voipiocat > $TMPC << EOF
2379ebc996f3SRiku Voipio#define _ATFILE_SOURCE
2380ebc996f3SRiku Voipio#include <stddef.h>
2381ebc996f3SRiku Voipio#include <fcntl.h>
23823014ee00SPeter Maydell#include <sys/stat.h>
2383ebc996f3SRiku Voipio
2384ebc996f3SRiku Voipioint main(void)
2385ebc996f3SRiku Voipio{
2386ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
2387ebc996f3SRiku Voipio    futimens(0, NULL);
2388ebc996f3SRiku Voipio    return 0;
2389ebc996f3SRiku Voipio}
2390ebc996f3SRiku VoipioEOF
239152166aa0SJuan Quintelaif compile_prog "" "" ; then
2392ebc996f3SRiku Voipio  utimens=yes
2393ebc996f3SRiku Voipiofi
2394ebc996f3SRiku Voipio
2395099d6b0fSRiku Voipio# check if pipe2 is there
2396099d6b0fSRiku Voipiopipe2=no
2397099d6b0fSRiku Voipiocat > $TMPC << EOF
2398099d6b0fSRiku Voipio#include <unistd.h>
2399099d6b0fSRiku Voipio#include <fcntl.h>
2400099d6b0fSRiku Voipio
2401099d6b0fSRiku Voipioint main(void)
2402099d6b0fSRiku Voipio{
2403099d6b0fSRiku Voipio    int pipefd[2];
2404099d6b0fSRiku Voipio    pipe2(pipefd, O_CLOEXEC);
2405099d6b0fSRiku Voipio    return 0;
2406099d6b0fSRiku Voipio}
2407099d6b0fSRiku VoipioEOF
240852166aa0SJuan Quintelaif compile_prog "" "" ; then
2409099d6b0fSRiku Voipio  pipe2=yes
2410099d6b0fSRiku Voipiofi
2411099d6b0fSRiku Voipio
241240ff6d7eSKevin Wolf# check if accept4 is there
241340ff6d7eSKevin Wolfaccept4=no
241440ff6d7eSKevin Wolfcat > $TMPC << EOF
241540ff6d7eSKevin Wolf#include <sys/socket.h>
241640ff6d7eSKevin Wolf#include <stddef.h>
241740ff6d7eSKevin Wolf
241840ff6d7eSKevin Wolfint main(void)
241940ff6d7eSKevin Wolf{
242040ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
242140ff6d7eSKevin Wolf    return 0;
242240ff6d7eSKevin Wolf}
242340ff6d7eSKevin WolfEOF
242440ff6d7eSKevin Wolfif compile_prog "" "" ; then
242540ff6d7eSKevin Wolf  accept4=yes
242640ff6d7eSKevin Wolffi
242740ff6d7eSKevin Wolf
24283ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
24293ce34dfbSvibisreenivasansplice=no
24303ce34dfbSvibisreenivasancat > $TMPC << EOF
24313ce34dfbSvibisreenivasan#include <unistd.h>
24323ce34dfbSvibisreenivasan#include <fcntl.h>
24333ce34dfbSvibisreenivasan#include <limits.h>
24343ce34dfbSvibisreenivasan
24353ce34dfbSvibisreenivasanint main(void)
24363ce34dfbSvibisreenivasan{
243766ea0f22SStefan Weil    int len, fd = 0;
24383ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
24393ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
24403ce34dfbSvibisreenivasan    return 0;
24413ce34dfbSvibisreenivasan}
24423ce34dfbSvibisreenivasanEOF
244352166aa0SJuan Quintelaif compile_prog "" "" ; then
24443ce34dfbSvibisreenivasan  splice=yes
24453ce34dfbSvibisreenivasanfi
24463ce34dfbSvibisreenivasan
2447dcc38d1cSMarcelo Tosatti##########################################
2448dcc38d1cSMarcelo Tosatti# signalfd probe
2449dcc38d1cSMarcelo Tosattisignalfd="no"
2450dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
2451dcc38d1cSMarcelo Tosatti#include <unistd.h>
2452dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
2453dcc38d1cSMarcelo Tosatti#include <signal.h>
2454dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2455dcc38d1cSMarcelo TosattiEOF
2456dcc38d1cSMarcelo Tosatti
2457dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
2458dcc38d1cSMarcelo Tosatti  signalfd=yes
2459dcc38d1cSMarcelo Tosattifi
2460dcc38d1cSMarcelo Tosatti
2461c2882b96SRiku Voipio# check if eventfd is supported
2462c2882b96SRiku Voipioeventfd=no
2463c2882b96SRiku Voipiocat > $TMPC << EOF
2464c2882b96SRiku Voipio#include <sys/eventfd.h>
2465c2882b96SRiku Voipio
2466c2882b96SRiku Voipioint main(void)
2467c2882b96SRiku Voipio{
246855cc7f3eSStefan Weil    return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
2469c2882b96SRiku Voipio}
2470c2882b96SRiku VoipioEOF
2471c2882b96SRiku Voipioif compile_prog "" "" ; then
2472c2882b96SRiku Voipio  eventfd=yes
2473c2882b96SRiku Voipiofi
2474c2882b96SRiku Voipio
2475d0927938SUlrich Hecht# check for fallocate
2476d0927938SUlrich Hechtfallocate=no
2477d0927938SUlrich Hechtcat > $TMPC << EOF
2478d0927938SUlrich Hecht#include <fcntl.h>
2479d0927938SUlrich Hecht
2480d0927938SUlrich Hechtint main(void)
2481d0927938SUlrich Hecht{
2482d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
2483d0927938SUlrich Hecht    return 0;
2484d0927938SUlrich Hecht}
2485d0927938SUlrich HechtEOF
24868fb03151SPeter Maydellif compile_prog "" "" ; then
2487d0927938SUlrich Hecht  fallocate=yes
2488d0927938SUlrich Hechtfi
2489d0927938SUlrich Hecht
2490c727f47dSPeter Maydell# check for sync_file_range
2491c727f47dSPeter Maydellsync_file_range=no
2492c727f47dSPeter Maydellcat > $TMPC << EOF
2493c727f47dSPeter Maydell#include <fcntl.h>
2494c727f47dSPeter Maydell
2495c727f47dSPeter Maydellint main(void)
2496c727f47dSPeter Maydell{
2497c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
2498c727f47dSPeter Maydell    return 0;
2499c727f47dSPeter Maydell}
2500c727f47dSPeter MaydellEOF
25018fb03151SPeter Maydellif compile_prog "" "" ; then
2502c727f47dSPeter Maydell  sync_file_range=yes
2503c727f47dSPeter Maydellfi
2504c727f47dSPeter Maydell
2505dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
2506dace20dcSPeter Maydellfiemap=no
2507dace20dcSPeter Maydellcat > $TMPC << EOF
2508dace20dcSPeter Maydell#include <sys/ioctl.h>
2509dace20dcSPeter Maydell#include <linux/fs.h>
2510dace20dcSPeter Maydell#include <linux/fiemap.h>
2511dace20dcSPeter Maydell
2512dace20dcSPeter Maydellint main(void)
2513dace20dcSPeter Maydell{
2514dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
2515dace20dcSPeter Maydell    return 0;
2516dace20dcSPeter Maydell}
2517dace20dcSPeter MaydellEOF
25188fb03151SPeter Maydellif compile_prog "" "" ; then
2519dace20dcSPeter Maydell  fiemap=yes
2520dace20dcSPeter Maydellfi
2521dace20dcSPeter Maydell
2522d0927938SUlrich Hecht# check for dup3
2523d0927938SUlrich Hechtdup3=no
2524d0927938SUlrich Hechtcat > $TMPC << EOF
2525d0927938SUlrich Hecht#include <unistd.h>
2526d0927938SUlrich Hecht
2527d0927938SUlrich Hechtint main(void)
2528d0927938SUlrich Hecht{
2529d0927938SUlrich Hecht    dup3(0, 0, 0);
2530d0927938SUlrich Hecht    return 0;
2531d0927938SUlrich Hecht}
2532d0927938SUlrich HechtEOF
253378f5d726SJan Kiszkaif compile_prog "" "" ; then
2534d0927938SUlrich Hecht  dup3=yes
2535d0927938SUlrich Hechtfi
2536d0927938SUlrich Hecht
25373b6edd16SPeter Maydell# check for epoll support
25383b6edd16SPeter Maydellepoll=no
25393b6edd16SPeter Maydellcat > $TMPC << EOF
25403b6edd16SPeter Maydell#include <sys/epoll.h>
25413b6edd16SPeter Maydell
25423b6edd16SPeter Maydellint main(void)
25433b6edd16SPeter Maydell{
25443b6edd16SPeter Maydell    epoll_create(0);
25453b6edd16SPeter Maydell    return 0;
25463b6edd16SPeter Maydell}
25473b6edd16SPeter MaydellEOF
25488fb03151SPeter Maydellif compile_prog "" "" ; then
25493b6edd16SPeter Maydell  epoll=yes
25503b6edd16SPeter Maydellfi
25513b6edd16SPeter Maydell
25523b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions
25533b6edd16SPeter Maydell# so we must check separately for their presence
25543b6edd16SPeter Maydellepoll_create1=no
25553b6edd16SPeter Maydellcat > $TMPC << EOF
25563b6edd16SPeter Maydell#include <sys/epoll.h>
25573b6edd16SPeter Maydell
25583b6edd16SPeter Maydellint main(void)
25593b6edd16SPeter Maydell{
256019e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
256119e83f6bSPeter Maydell     * a function being called. This is necessary so that on
256219e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
256319e83f6bSPeter Maydell     * the library but not declared in the header file we will
256419e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
256519e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
256619e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
256719e83f6bSPeter Maydell     */
2568c075a723SBlue Swirl    return (int)(uintptr_t)&epoll_create1;
25693b6edd16SPeter Maydell}
25703b6edd16SPeter MaydellEOF
25718fb03151SPeter Maydellif compile_prog "" "" ; then
25723b6edd16SPeter Maydell  epoll_create1=yes
25733b6edd16SPeter Maydellfi
25743b6edd16SPeter Maydell
25753b6edd16SPeter Maydellepoll_pwait=no
25763b6edd16SPeter Maydellcat > $TMPC << EOF
25773b6edd16SPeter Maydell#include <sys/epoll.h>
25783b6edd16SPeter Maydell
25793b6edd16SPeter Maydellint main(void)
25803b6edd16SPeter Maydell{
25813b6edd16SPeter Maydell    epoll_pwait(0, 0, 0, 0, 0);
25823b6edd16SPeter Maydell    return 0;
25833b6edd16SPeter Maydell}
25843b6edd16SPeter MaydellEOF
25858fb03151SPeter Maydellif compile_prog "" "" ; then
25863b6edd16SPeter Maydell  epoll_pwait=yes
25873b6edd16SPeter Maydellfi
25883b6edd16SPeter Maydell
2589cc8ae6deSpbrook# Check if tools are available to build documentation.
2590a25dba17SJuan Quintelaif test "$docs" != "no" ; then
259101668d98SStefan Weil  if has makeinfo && has pod2man; then
2592a25dba17SJuan Quintela    docs=yes
259383a3ab8bSJuan Quintela  else
2594a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
2595a25dba17SJuan Quintela      feature_not_found "docs"
259683a3ab8bSJuan Quintela    fi
2597a25dba17SJuan Quintela    docs=no
259883a3ab8bSJuan Quintela  fi
2599cc8ae6deSpbrookfi
2600cc8ae6deSpbrook
2601f514f41cSStefan Weil# Search for bswap_32 function
26026ae9a1f4SJuan Quintelabyteswap_h=no
26036ae9a1f4SJuan Quintelacat > $TMPC << EOF
26046ae9a1f4SJuan Quintela#include <byteswap.h>
26056ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
26066ae9a1f4SJuan QuintelaEOF
260752166aa0SJuan Quintelaif compile_prog "" "" ; then
26086ae9a1f4SJuan Quintela  byteswap_h=yes
26096ae9a1f4SJuan Quintelafi
26106ae9a1f4SJuan Quintela
2611f514f41cSStefan Weil# Search for bswap_32 function
26126ae9a1f4SJuan Quintelabswap_h=no
26136ae9a1f4SJuan Quintelacat > $TMPC << EOF
26146ae9a1f4SJuan Quintela#include <sys/endian.h>
26156ae9a1f4SJuan Quintela#include <sys/types.h>
26166ae9a1f4SJuan Quintela#include <machine/bswap.h>
26176ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
26186ae9a1f4SJuan QuintelaEOF
261952166aa0SJuan Quintelaif compile_prog "" "" ; then
26206ae9a1f4SJuan Quintela  bswap_h=yes
26216ae9a1f4SJuan Quintelafi
26226ae9a1f4SJuan Quintela
2623da93a1fdSaliguori##########################################
2624c589b249SRonnie Sahlberg# Do we have libiscsi
2625fa6acb0cSRonnie Sahlberg# We check for iscsi_unmap_sync() to make sure we have a
2626fa6acb0cSRonnie Sahlberg# recent enough version of libiscsi.
2627c589b249SRonnie Sahlbergif test "$libiscsi" != "no" ; then
2628c589b249SRonnie Sahlberg  cat > $TMPC << EOF
2629fa6acb0cSRonnie Sahlberg#include <stdio.h>
2630c589b249SRonnie Sahlberg#include <iscsi/iscsi.h>
2631fa6acb0cSRonnie Sahlbergint main(void) { iscsi_unmap_sync(NULL,0,0,0,NULL,0); return 0; }
2632c589b249SRonnie SahlbergEOF
2633417c9d72SAlexander Graf  if compile_prog "" "-liscsi" ; then
2634c589b249SRonnie Sahlberg    libiscsi="yes"
2635c589b249SRonnie Sahlberg    LIBS="$LIBS -liscsi"
2636c589b249SRonnie Sahlberg  else
2637c589b249SRonnie Sahlberg    if test "$libiscsi" = "yes" ; then
2638c589b249SRonnie Sahlberg      feature_not_found "libiscsi"
2639c589b249SRonnie Sahlberg    fi
2640c589b249SRonnie Sahlberg    libiscsi="no"
2641c589b249SRonnie Sahlberg  fi
2642c589b249SRonnie Sahlbergfi
2643c589b249SRonnie Sahlberg
2644c589b249SRonnie Sahlberg
2645c589b249SRonnie Sahlberg##########################################
26468bacde8dSNatanael Copa# Do we need libm
26478bacde8dSNatanael Copacat > $TMPC << EOF
26488bacde8dSNatanael Copa#include <math.h>
26498bacde8dSNatanael Copaint main(void) { return isnan(sin(0.0)); }
26508bacde8dSNatanael CopaEOF
26518bacde8dSNatanael Copaif compile_prog "" "" ; then
26528bacde8dSNatanael Copa  :
26538bacde8dSNatanael Copaelif compile_prog "" "-lm" ; then
26548bacde8dSNatanael Copa  LIBS="-lm $LIBS"
26558bacde8dSNatanael Copa  libs_qga="-lm $libs_qga"
26568bacde8dSNatanael Copaelse
26578bacde8dSNatanael Copa  echo
26588bacde8dSNatanael Copa  echo "Error: libm check failed"
26598bacde8dSNatanael Copa  echo
26608bacde8dSNatanael Copa  exit 1
26618bacde8dSNatanael Copafi
26628bacde8dSNatanael Copa
26638bacde8dSNatanael Copa##########################################
2664da93a1fdSaliguori# Do we need librt
26658bacde8dSNatanael Copa# uClibc provides 2 versions of clock_gettime(), one with realtime
26668bacde8dSNatanael Copa# support and one without. This means that the clock_gettime() don't
26678bacde8dSNatanael Copa# need -lrt. We still need it for timer_create() so we check for this
26688bacde8dSNatanael Copa# function in addition.
2669da93a1fdSaliguoricat > $TMPC <<EOF
2670da93a1fdSaliguori#include <signal.h>
2671da93a1fdSaliguori#include <time.h>
26728bacde8dSNatanael Copaint main(void) {
26738bacde8dSNatanael Copa  timer_create(CLOCK_REALTIME, NULL, NULL);
26748bacde8dSNatanael Copa  return clock_gettime(CLOCK_REALTIME, NULL);
26758bacde8dSNatanael Copa}
2676da93a1fdSaliguoriEOF
2677da93a1fdSaliguori
267852166aa0SJuan Quintelaif compile_prog "" "" ; then
267907ffa4bdSJuan Quintela  :
26808bacde8dSNatanael Copa# we need pthread for static linking. use previous pthread test result
26818bacde8dSNatanael Copaelif compile_prog "" "-lrt $pthread_lib" ; then
268207ffa4bdSJuan Quintela  LIBS="-lrt $LIBS"
26838bacde8dSNatanael Copa  libs_qga="-lrt $libs_qga"
2684da93a1fdSaliguorifi
2685da93a1fdSaliguori
268631ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2687179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
26886362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
26896362a53fSJuan Quintelafi
26906362a53fSJuan Quintela
2691de5071c5SBlue Swirl##########################################
2692cd4ec0b4SGerd Hoffmann# spice probe
2693cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
2694cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
2695cd4ec0b4SGerd Hoffmann#include <spice.h>
2696cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
2697cd4ec0b4SGerd HoffmannEOF
2698710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2699710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
27004295e15aSAlon Levy  if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \
27017e3efdacSAlon Levy     $pkg_config --atleast-version=0.8.1 spice-protocol > /dev/null 2>&1 && \
2702cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
2703cd4ec0b4SGerd Hoffmann    spice="yes"
2704cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
2705cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
27062e0e3c39SAlon Levy    spice_protocol_version=$($pkg_config --modversion spice-protocol)
27072e0e3c39SAlon Levy    spice_server_version=$($pkg_config --modversion spice-server)
2708020af1c4SAlon Levy    if $pkg_config --atleast-version=0.12.0 spice-protocol >/dev/null 2>&1; then
2709020af1c4SAlon Levy        spice_qxl_io_monitors_config_async="yes"
2710020af1c4SAlon Levy    fi
2711a639ab04SAlon Levy    if $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1; then
2712a639ab04SAlon Levy        spice_qxl_client_monitors_config="yes"
2713a639ab04SAlon Levy    fi
2714cd4ec0b4SGerd Hoffmann  else
2715cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
2716cd4ec0b4SGerd Hoffmann      feature_not_found "spice"
2717cd4ec0b4SGerd Hoffmann    fi
2718cd4ec0b4SGerd Hoffmann    spice="no"
2719cd4ec0b4SGerd Hoffmann  fi
2720cd4ec0b4SGerd Hoffmannfi
2721cd4ec0b4SGerd Hoffmann
2722111a38b0SRobert Relyea# check for libcacard for smartcard support
2723111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then
2724111a38b0SRobert Relyea    smartcard="yes"
2725111a38b0SRobert Relyea    smartcard_cflags=""
2726111a38b0SRobert Relyea    # TODO - what's the minimal nss version we support?
2727111a38b0SRobert Relyea    if test "$smartcard_nss" != "no"; then
27285f01e06fSSergei Trofimovich      cat > $TMPC << EOF
27295f01e06fSSergei Trofimovich#include <pk11pub.h>
27305f01e06fSSergei Trofimovichint main(void) { PK11_FreeSlot(0); return 0; }
27315f01e06fSSergei TrofimovichEOF
27320b22ef0fSPeter Maydell        smartcard_includes="-I\$(SRC_PATH)/libcacard"
27338c741c22SAlon Levy        libcacard_libs="$($pkg_config --libs nss 2>/dev/null) $glib_libs"
27348c741c22SAlon Levy        libcacard_cflags="$($pkg_config --cflags nss 2>/dev/null) $glib_cflags"
27356ca026cbSPeter Maydell        test_cflags="$libcacard_cflags"
27366ca026cbSPeter Maydell        # The header files in nss < 3.13.3 have a bug which causes them to
27376ca026cbSPeter Maydell        # emit a warning. If we're going to compile QEMU with -Werror, then
27386ca026cbSPeter Maydell        # test that the headers don't have this bug. Otherwise we would pass
27396ca026cbSPeter Maydell        # the configure test but fail to compile QEMU later.
27406ca026cbSPeter Maydell        if test "$werror" = "yes"; then
27416ca026cbSPeter Maydell            test_cflags="-Werror $test_cflags"
27426ca026cbSPeter Maydell        fi
27435f01e06fSSergei Trofimovich        if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 && \
27446ca026cbSPeter Maydell          compile_prog "$test_cflags" "$libcacard_libs"; then
27455f01e06fSSergei Trofimovich            smartcard_nss="yes"
27460b22ef0fSPeter Maydell            QEMU_CFLAGS="$QEMU_CFLAGS $libcacard_cflags"
27470b22ef0fSPeter Maydell            QEMU_INCLUDES="$QEMU_INCLUDES $smartcard_includes"
2748ad4cf3f6SPaul Brook            libs_softmmu="$libcacard_libs $libs_softmmu"
2749111a38b0SRobert Relyea        else
2750111a38b0SRobert Relyea            if test "$smartcard_nss" = "yes"; then
2751111a38b0SRobert Relyea                feature_not_found "nss"
2752111a38b0SRobert Relyea            fi
2753111a38b0SRobert Relyea            smartcard_nss="no"
2754111a38b0SRobert Relyea        fi
2755111a38b0SRobert Relyea    fi
2756111a38b0SRobert Relyeafi
2757111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then
2758111a38b0SRobert Relyea    smartcard_nss="no"
2759111a38b0SRobert Relyeafi
2760111a38b0SRobert Relyea
276169354a83SHans de Goede# check for usbredirparser for usb network redirection support
276269354a83SHans de Goedeif test "$usb_redir" != "no" ; then
2763be4a8928SHans de Goede    if $pkg_config --atleast-version=0.5 libusbredirparser >/dev/null 2>&1 ; then
276469354a83SHans de Goede        usb_redir="yes"
276569354a83SHans de Goede        usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null)
276669354a83SHans de Goede        usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null)
276769354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
276856ab2ad1SAurelien Jarno        libs_softmmu="$libs_softmmu $usb_redir_libs"
276969354a83SHans de Goede    else
277069354a83SHans de Goede        if test "$usb_redir" = "yes"; then
277169354a83SHans de Goede            feature_not_found "usb-redir"
277269354a83SHans de Goede        fi
277369354a83SHans de Goede        usb_redir="no"
277469354a83SHans de Goede    fi
277569354a83SHans de Goedefi
277669354a83SHans de Goede
2777cd4ec0b4SGerd Hoffmann##########################################
2778cd4ec0b4SGerd Hoffmann
2779747bbdf7SBlue Swirl##########################################
27805f6b9e8fSBlue Swirl# check if we have fdatasync
27815f6b9e8fSBlue Swirl
27825f6b9e8fSBlue Swirlfdatasync=no
27835f6b9e8fSBlue Swirlcat > $TMPC << EOF
27845f6b9e8fSBlue Swirl#include <unistd.h>
2785d1722a27SAlexandre Raymondint main(void) {
2786d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2787d1722a27SAlexandre Raymondreturn fdatasync(0);
2788d1722a27SAlexandre Raymond#else
2789e172fe11SStefan Weil#error Not supported
2790d1722a27SAlexandre Raymond#endif
2791d1722a27SAlexandre Raymond}
27925f6b9e8fSBlue SwirlEOF
27935f6b9e8fSBlue Swirlif compile_prog "" "" ; then
27945f6b9e8fSBlue Swirl    fdatasync=yes
27955f6b9e8fSBlue Swirlfi
27965f6b9e8fSBlue Swirl
279794a420b1SStefan Hajnoczi##########################################
2798e78815a5SAndreas Färber# check if we have madvise
2799e78815a5SAndreas Färber
2800e78815a5SAndreas Färbermadvise=no
2801e78815a5SAndreas Färbercat > $TMPC << EOF
2802e78815a5SAndreas Färber#include <sys/types.h>
2803e78815a5SAndreas Färber#include <sys/mman.h>
2804832ce9c2SScott Wood#include <stddef.h>
2805e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2806e78815a5SAndreas FärberEOF
2807e78815a5SAndreas Färberif compile_prog "" "" ; then
2808e78815a5SAndreas Färber    madvise=yes
2809e78815a5SAndreas Färberfi
2810e78815a5SAndreas Färber
2811e78815a5SAndreas Färber##########################################
2812e78815a5SAndreas Färber# check if we have posix_madvise
2813e78815a5SAndreas Färber
2814e78815a5SAndreas Färberposix_madvise=no
2815e78815a5SAndreas Färbercat > $TMPC << EOF
2816e78815a5SAndreas Färber#include <sys/mman.h>
2817832ce9c2SScott Wood#include <stddef.h>
2818e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2819e78815a5SAndreas FärberEOF
2820e78815a5SAndreas Färberif compile_prog "" "" ; then
2821e78815a5SAndreas Färber    posix_madvise=yes
2822e78815a5SAndreas Färberfi
2823e78815a5SAndreas Färber
2824e78815a5SAndreas Färber##########################################
282594a420b1SStefan Hajnoczi# check if trace backend exists
282694a420b1SStefan Hajnoczi
2827650ab98dSLluís Vilanova$python "$source_path/scripts/tracetool.py" "--backend=$trace_backend" --check-backend  > /dev/null 2> /dev/null
282894a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
282994a420b1SStefan Hajnoczi  echo
283094a420b1SStefan Hajnoczi  echo "Error: invalid trace backend"
283194a420b1SStefan Hajnoczi  echo "Please choose a supported trace backend."
283294a420b1SStefan Hajnoczi  echo
283394a420b1SStefan Hajnoczi  exit 1
283494a420b1SStefan Hajnoczifi
283594a420b1SStefan Hajnoczi
28367e24e92aSStefan Hajnoczi##########################################
28377e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
28387e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then
28397e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
28407e24e92aSStefan Hajnoczi#include <ust/tracepoint.h>
28417e24e92aSStefan Hajnoczi#include <ust/marker.h>
28427e24e92aSStefan Hajnocziint main(void) { return 0; }
28437e24e92aSStefan HajnocziEOF
28447e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
284594b4fefaSLluís Vilanova    LIBS="-lust -lurcu-bp $LIBS"
2846c9a2e37cSLluís Vilanova    libs_qga="-lust -lurcu-bp $libs_qga"
28477e24e92aSStefan Hajnoczi  else
28487e24e92aSStefan Hajnoczi    echo
28497e24e92aSStefan Hajnoczi    echo "Error: Trace backend 'ust' missing libust header files"
28507e24e92aSStefan Hajnoczi    echo
28517e24e92aSStefan Hajnoczi    exit 1
28527e24e92aSStefan Hajnoczi  fi
28537e24e92aSStefan Hajnoczifi
2854b3d08c02SDaniel P. Berrange
2855b3d08c02SDaniel P. Berrange##########################################
2856b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
2857b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then
2858b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
2859b3d08c02SDaniel P. Berrange    echo
2860b3d08c02SDaniel P. Berrange    echo "Error: dtrace command is not found in PATH $PATH"
2861b3d08c02SDaniel P. Berrange    echo
2862b3d08c02SDaniel P. Berrange    exit 1
2863b3d08c02SDaniel P. Berrange  fi
2864c276b17dSDaniel P. Berrange  trace_backend_stap="no"
2865c276b17dSDaniel P. Berrange  if has 'stap' ; then
2866c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
2867c276b17dSDaniel P. Berrange  fi
2868b3d08c02SDaniel P. Berrangefi
2869b3d08c02SDaniel P. Berrange
28707e24e92aSStefan Hajnoczi##########################################
2871023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains
2872023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit
2873023367e6SWolfgang Mauerer# specification is necessary
28741ba16968SStefan Weilif test "$vhost_net" = "yes" && test "$cpu" = "i386"; then
2875023367e6SWolfgang Mauerer  cat > $TMPC << EOF
28767ace252aSStefan Weilstatic int sfaa(int *ptr)
2877023367e6SWolfgang Mauerer{
2878023367e6SWolfgang Mauerer  return __sync_fetch_and_and(ptr, 0);
2879023367e6SWolfgang Mauerer}
2880023367e6SWolfgang Mauerer
2881023367e6SWolfgang Mauererint main(int argc, char **argv)
2882023367e6SWolfgang Mauerer{
2883023367e6SWolfgang Mauerer  int val = 42;
2884023367e6SWolfgang Mauerer  sfaa(&val);
2885023367e6SWolfgang Mauerer  return val;
2886023367e6SWolfgang Mauerer}
2887023367e6SWolfgang MauererEOF
2888023367e6SWolfgang Mauerer  if ! compile_prog "" "" ; then
2889caa50971SPeter Maydell    QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS"
2890023367e6SWolfgang Mauerer  fi
2891023367e6SWolfgang Mauererfi
2892023367e6SWolfgang Mauerer
2893023367e6SWolfgang Mauerer##########################################
2894519175a2SAlex Barcelo# check and set a backend for coroutine
2895d0e2fce5SAneesh Kumar K.V
2896519175a2SAlex Barcelo# default is ucontext, but always fallback to gthread
2897519175a2SAlex Barcelo# windows autodetected by make
2898519175a2SAlex Barceloif test "$coroutine" = "" -o "$coroutine" = "ucontext"; then
2899d0e2fce5SAneesh Kumar K.V  if test "$darwin" != "yes"; then
2900d0e2fce5SAneesh Kumar K.V    cat > $TMPC << EOF
2901d0e2fce5SAneesh Kumar K.V#include <ucontext.h>
2902cdf84806SPeter Maydell#ifdef __stub_makecontext
2903cdf84806SPeter Maydell#error Ignoring glibc stub makecontext which will always fail
2904cdf84806SPeter Maydell#endif
290575cafad7SStefan Weilint main(void) { makecontext(0, 0, 0); return 0; }
2906d0e2fce5SAneesh Kumar K.VEOF
2907d0e2fce5SAneesh Kumar K.V    if compile_prog "" "" ; then
2908519175a2SAlex Barcelo        coroutine_backend=ucontext
2909519175a2SAlex Barcelo    else
2910519175a2SAlex Barcelo	coroutine_backend=gthread
2911d0e2fce5SAneesh Kumar K.V    fi
2912519175a2SAlex Barcelo  else
2913519175a2SAlex Barcelo    echo "Silently falling back into gthread backend under darwin"
2914519175a2SAlex Barcelo  fi
2915519175a2SAlex Barceloelif test "$coroutine" = "gthread" ; then
2916519175a2SAlex Barcelo  coroutine_backend=gthread
2917519175a2SAlex Barceloelif test "$coroutine" = "windows" ; then
2918519175a2SAlex Barcelo  coroutine_backend=windows
2919fe91bfa8SAlex Barceloelif test "$coroutine" = "sigaltstack" ; then
2920fe91bfa8SAlex Barcelo  coroutine_backend=sigaltstack
2921519175a2SAlex Barceloelse
2922519175a2SAlex Barcelo  echo
2923519175a2SAlex Barcelo  echo "Error: unknown coroutine backend $coroutine"
2924519175a2SAlex Barcelo  echo
2925519175a2SAlex Barcelo  exit 1
2926d0e2fce5SAneesh Kumar K.Vfi
2927d0e2fce5SAneesh Kumar K.V
2928d0e2fce5SAneesh Kumar K.V##########################################
2929d2042378SAneesh Kumar K.V# check if we have open_by_handle_at
2930d2042378SAneesh Kumar K.V
29314e1797f9SStefan Weilopen_by_handle_at=no
2932d2042378SAneesh Kumar K.Vcat > $TMPC << EOF
2933d2042378SAneesh Kumar K.V#include <fcntl.h>
2934acc55ba8SStefan Weil#if !defined(AT_EMPTY_PATH)
2935acc55ba8SStefan Weil# error missing definition
2936acc55ba8SStefan Weil#else
293775cafad7SStefan Weilint main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
2938acc55ba8SStefan Weil#endif
2939d2042378SAneesh Kumar K.VEOF
2940d2042378SAneesh Kumar K.Vif compile_prog "" "" ; then
2941d2042378SAneesh Kumar K.V    open_by_handle_at=yes
2942d2042378SAneesh Kumar K.Vfi
2943d2042378SAneesh Kumar K.V
2944e06a765eSHarsh Prateek Bora########################################
2945e06a765eSHarsh Prateek Bora# check if we have linux/magic.h
2946e06a765eSHarsh Prateek Bora
2947e06a765eSHarsh Prateek Boralinux_magic_h=no
2948e06a765eSHarsh Prateek Boracat > $TMPC << EOF
2949e06a765eSHarsh Prateek Bora#include <linux/magic.h>
2950e06a765eSHarsh Prateek Boraint main(void) {
295175cafad7SStefan Weil  return 0;
2952e06a765eSHarsh Prateek Bora}
2953e06a765eSHarsh Prateek BoraEOF
2954e06a765eSHarsh Prateek Boraif compile_prog "" "" ; then
2955e06a765eSHarsh Prateek Bora    linux_magic_h=yes
2956e06a765eSHarsh Prateek Borafi
2957e06a765eSHarsh Prateek Bora
29588ab1bf12SLuiz Capitulino########################################
295906d71fa1SPeter Maydell# check whether we can disable the -Wunused-but-set-variable
296006d71fa1SPeter Maydell# option with a pragma (this is needed to silence a warning in
296106d71fa1SPeter Maydell# some versions of the valgrind VALGRIND_STACK_DEREGISTER macro.)
296206d71fa1SPeter Maydell# This test has to be compiled with -Werror as otherwise an
296306d71fa1SPeter Maydell# unknown pragma is only a warning.
296406d71fa1SPeter Maydellpragma_disable_unused_but_set=no
296506d71fa1SPeter Maydellcat > $TMPC << EOF
296606d71fa1SPeter Maydell#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
296706d71fa1SPeter Maydellint main(void) {
296806d71fa1SPeter Maydell    return 0;
296906d71fa1SPeter Maydell}
297006d71fa1SPeter MaydellEOF
297106d71fa1SPeter Maydellif compile_prog "-Werror" "" ; then
297206d71fa1SPeter Maydell    pragma_disable_unused_but_set=yes
297306d71fa1SPeter Maydellfi
297406d71fa1SPeter Maydell
297506d71fa1SPeter Maydell########################################
297662fe8331SChristian Borntraeger# check if we have valgrind/valgrind.h and valgrind/memcheck.h
29773f4349dcSKevin Wolf
29783f4349dcSKevin Wolfvalgrind_h=no
29793f4349dcSKevin Wolfcat > $TMPC << EOF
29803f4349dcSKevin Wolf#include <valgrind/valgrind.h>
298162fe8331SChristian Borntraeger#include <valgrind/memcheck.h>
29823f4349dcSKevin Wolfint main(void) {
29833f4349dcSKevin Wolf  return 0;
29843f4349dcSKevin Wolf}
29853f4349dcSKevin WolfEOF
29863f4349dcSKevin Wolfif compile_prog "" "" ; then
29873f4349dcSKevin Wolf    valgrind_h=yes
29883f4349dcSKevin Wolffi
29893f4349dcSKevin Wolf
29903f4349dcSKevin Wolf########################################
29918ab1bf12SLuiz Capitulino# check if environ is declared
29928ab1bf12SLuiz Capitulino
29938ab1bf12SLuiz Capitulinohas_environ=no
29948ab1bf12SLuiz Capitulinocat > $TMPC << EOF
29958ab1bf12SLuiz Capitulino#include <unistd.h>
29968ab1bf12SLuiz Capitulinoint main(void) {
2997c075a723SBlue Swirl    environ = 0;
29988ab1bf12SLuiz Capitulino    return 0;
29998ab1bf12SLuiz Capitulino}
30008ab1bf12SLuiz CapitulinoEOF
30018ab1bf12SLuiz Capitulinoif compile_prog "" "" ; then
30028ab1bf12SLuiz Capitulino    has_environ=yes
30038ab1bf12SLuiz Capitulinofi
30048ab1bf12SLuiz Capitulino
3005d2042378SAneesh Kumar K.V##########################################
3006e86ecd4bSJuan Quintela# End of CC checks
3007e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
3008e86ecd4bSJuan Quintela
3009e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then
30108be74dc0SAvi Kivity  CFLAGS="-O2 -D_FORTIFY_SOURCE=2 $CFLAGS"
3011e86ecd4bSJuan Quintelafi
3012a316e378SJuan Quintela
301320ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to
301420ff6c80SAnthony Liguori# enable/disable
301520ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then
301620ff6c80SAnthony Liguori    if test "$z_version" = "50" ; then
301720ff6c80SAnthony Liguori	zero_malloc="no"
301820ff6c80SAnthony Liguori    else
301920ff6c80SAnthony Liguori	zero_malloc="yes"
302020ff6c80SAnthony Liguori    fi
302120ff6c80SAnthony Liguorifi
302220ff6c80SAnthony Liguori
30236ca026cbSPeter Maydell# Now we've finished running tests it's OK to add -Werror to the compiler flags
30246ca026cbSPeter Maydellif test "$werror" = "yes"; then
30256ca026cbSPeter Maydell    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
30266ca026cbSPeter Maydellfi
30276ca026cbSPeter Maydell
3028e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
3029e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
30301156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
3031e86ecd4bSJuan Quintela    fi
3032e86ecd4bSJuan Quintelafi
3033e86ecd4bSJuan Quintela
303494dd53c5SGerd Hoffmann# test if pod2man has --utf8 option
303594dd53c5SGerd Hoffmannif pod2man --help | grep -q utf8; then
303694dd53c5SGerd Hoffmann    POD2MAN="pod2man --utf8"
303794dd53c5SGerd Hoffmannelse
303894dd53c5SGerd Hoffmann    POD2MAN="pod2man"
303994dd53c5SGerd Hoffmannfi
304094dd53c5SGerd Hoffmann
3041952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
3042952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
3043952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
3044952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
3045952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
3046952afb71SBlue Swirl        fi
3047952afb71SBlue Swirl    done
3048952afb71SBlue Swirlfi
3049952afb71SBlue Swirl
305010ea68b3SEduardo Habkostqemu_confdir=$sysconfdir$confsuffix
3051528ae5b8SEduardo Habkostqemu_datadir=$datadir$confsuffix
30525a67135aSbellard
30534b1c11fdSDaniel P. Berrangetools=""
30544b1c11fdSDaniel P. Berrangeif test "$want_tools" = "yes" ; then
3055ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
30564b1c11fdSDaniel P. Berrange  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
30574b1c11fdSDaniel P. Berrange    tools="qemu-nbd\$(EXESUF) $tools"
30584b1c11fdSDaniel P. Berrange  fi
30594b1c11fdSDaniel P. Berrangefi
30604b1c11fdSDaniel P. Berrangeif test "$softmmu" = yes ; then
3061983eef5aSMeador Inge  if test "$virtfs" != no ; then
3062be5ea8edSAnthony Liguori    if test "$cap" = yes && test "$linux" = yes && test "$attr" = yes ; then
3063983eef5aSMeador Inge      virtfs=yes
306417bff52bSM. Mohan Kumar      tools="$tools fsdev/virtfs-proxy-helper\$(EXESUF)"
3065983eef5aSMeador Inge    else
3066983eef5aSMeador Inge      if test "$virtfs" = yes; then
3067263ddcc8SHarsh Prateek Bora        echo "VirtFS is supported only on Linux and requires libcap-devel and libattr-devel"
3068263ddcc8SHarsh Prateek Bora        exit 1
3069983eef5aSMeador Inge      fi
307017500370SAndreas Färber      virtfs=no
3071983eef5aSMeador Inge    fi
307217bff52bSM. Mohan Kumar  fi
3073ca35f780SPaolo Bonzini  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
3074d138cee9SMichael Roth    if [ "$guest_agent" = "yes" ]; then
307548ff7a62SMichael Roth      tools="qemu-ga\$(EXESUF) $tools"
3076d138cee9SMichael Roth    fi
3077ca35f780SPaolo Bonzini  fi
307800c705fbSPaolo Bonzini  if test "$smartcard_nss" = "yes" ; then
307900c705fbSPaolo Bonzini    tools="vscclient\$(EXESUF) $tools"
308000c705fbSPaolo Bonzini  fi
30814b1c11fdSDaniel P. Berrangefi
3082ca35f780SPaolo Bonzini
3083ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
3084ca35f780SPaolo Bonziniroms=
3085ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
3086ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
3087ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
3088ca35f780SPaolo Bonzini  roms="optionrom"
3089ca35f780SPaolo Bonzinifi
3090d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
309139ac8455SDavid Gibson  roms="$roms spapr-rtas"
309239ac8455SDavid Gibsonfi
3093ca35f780SPaolo Bonzini
30947d13299dSbellardecho "Install prefix    $prefix"
3095c00b2808SEduardo Habkostecho "BIOS directory    `eval echo $qemu_datadir`"
3096f2b9e1e3SPaolo Bonziniecho "binary directory  `eval echo $bindir`"
30973aa5d2beSAlon Levyecho "library directory `eval echo $libdir`"
30988bf188aaSMichael Tokarevecho "libexec directory `eval echo $libexecdir`"
30990f94d6daSAlon Levyecho "include directory `eval echo $includedir`"
31001c0fd160SAurelien Jarnoecho "config directory  `eval echo $sysconfdir`"
310111d9f695Sbellardif test "$mingw32" = "no" ; then
3102f2b9e1e3SPaolo Bonziniecho "Manual directory  `eval echo $mandir`"
310343ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
310411d9f695Sbellardfi
31055a67135aSbellardecho "Source path       $source_path"
31067d13299dSbellardecho "C compiler        $cc"
310783469015Sbellardecho "Host C compiler   $host_cc"
31083c4a4d0dSPeter Maydellecho "Objective-C compiler $objcc"
31090c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
3110a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
31110c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
31127d13299dSbellardecho "make              $make"
31136a882643Spbrookecho "install           $install"
3114c886edfbSBlue Swirlecho "python            $python"
3115e2d8830eSBradif test "$slirp" = "yes" ; then
3116e2d8830eSBrad    echo "smbd              $smbd"
3117e2d8830eSBradfi
3118a98fd896Sbellardecho "host CPU          $cpu"
3119de83cd02Sbellardecho "host big endian   $bigendian"
312097a847bcSbellardecho "target list       $target_list"
3121ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
31227d13299dSbellardecho "gprof enabled     $gprof"
312303b4fe7dSaliguoriecho "sparse enabled    $sparse"
31241625af87Saliguoriecho "strip binaries    $strip_opt"
312505c2a3e7Sbellardecho "profiler          $profiler"
312643ce4dfeSbellardecho "static build      $static"
312785aa5189Sbellardecho "-Werror enabled   $werror"
31285b0753e0Sbellardif test "$darwin" = "yes" ; then
31295b0753e0Sbellard    echo "Cocoa support     $cocoa"
31305b0753e0Sbellardfi
313197a847bcSbellardecho "SDL support       $sdl"
31324d3b6f6eSbalrogecho "curses support    $curses"
3133769ce76dSAlexander Grafecho "curl support      $curl"
313467b915a5Sbellardecho "mingw32 support   $mingw32"
31350c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
31360c58ac1cSmalcecho "Extra audio cards $audio_card_list"
3137eb852011SMarkus Armbrusterecho "Block whitelist   $block_drv_whitelist"
31388ff9cbf7Smalcecho "Mixer emulation   $mixemu"
3139983eef5aSMeador Ingeecho "VirtFS support    $virtfs"
3140821601eaSJes Sorensenecho "VNC support       $vnc"
3141821601eaSJes Sorensenif test "$vnc" = "yes" ; then
31428d5d2d4cSths    echo "VNC TLS support   $vnc_tls"
31432f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
31442f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
3145efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
3146821601eaSJes Sorensenfi
31473142255cSblueswir1if test -n "$sparc_cpu"; then
31483142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
31493142255cSblueswir1fi
3150e37630caSaliguoriecho "xen support       $xen"
31512e4d9fb1Saurel32echo "brlapi support    $brlapi"
3152a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
3153a25dba17SJuan Quintelaecho "Documentation     $docs"
3154c5937220Spbrook[ ! -z "$uname_release" ] && \
3155c5937220Spbrookecho "uname -r          $uname_release"
3156bd0c5661Spbrookecho "NPTL support      $nptl"
3157379f6698SPaul Brookecho "GUEST_BASE        $guest_base"
315840d6444eSAvi Kivityecho "PIE               $pie"
31598a16d273Sthsecho "vde support       $vde"
31605c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
3161758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
316277755340Sthsecho "Install blobs     $blobs"
3163b31a0277SJuan Quintelaecho "KVM support       $kvm"
31649195b2c2SStefan Weilecho "TCG interpreter   $tcg_interpreter"
3165f652e6afSaurel32echo "fdt support       $fdt"
3166ceb42de8Saliguoriecho "preadv support    $preadv"
31675f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
3168e78815a5SAndreas Färberecho "madvise           $madvise"
3169e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
3170ee682d27SStefan Weilecho "uuid support      $uuid"
317147e98658SCorey Bryantecho "libcap-ng support $cap_ng"
3172d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
317394a420b1SStefan Hajnocziecho "Trace backend     $trace_backend"
31749410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
31752e0e3c39SAlon Levyecho "spice support     $spice ($spice_protocol_version/$spice_server_version)"
3176f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
3177dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
3178111a38b0SRobert Relyeaecho "nss used          $smartcard_nss"
317969354a83SHans de Goedeecho "usb net redir     $usb_redir"
318020ff075bSMichael Walleecho "OpenGL support    $opengl"
3181c589b249SRonnie Sahlbergecho "libiscsi support  $libiscsi"
3182d138cee9SMichael Rothecho "build guest agent $guest_agent"
3183f794573eSEduardo Otuboecho "seccomp support   $seccomp"
3184519175a2SAlex Barceloecho "coroutine backend $coroutine_backend"
318567b915a5Sbellard
31861ba16968SStefan Weilif test "$sdl_too_old" = "yes"; then
318724b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
3188e8cd23deSbellardfi
318997a847bcSbellard
319098ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
31914bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld"
319297a847bcSbellard
319398ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
319498ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak
319598ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak
319698ec69acSJuan Quintelaecho >> $config_host_mak
319798ec69acSJuan Quintela
3198e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
319999d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
320099d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
32013aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
32028bf188aaSMichael Tokarevecho "libexecdir=$libexecdir" >> $config_host_mak
32030f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
320499d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
320599d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
320622d07038SEduardo Habkostecho "qemu_confdir=$qemu_confdir" >> $config_host_mak
32079afa52ceSEduardo Habkostecho "qemu_datadir=$qemu_datadir" >> $config_host_mak
32089afa52ceSEduardo Habkostecho "qemu_docdir=$qemu_docdir" >> $config_host_mak
32098bf188aaSMichael Tokarevecho "CONFIG_QEMU_HELPERDIR=\"$libexecdir\"" >> $config_host_mak
3210804edf29SJuan Quintela
321198ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
3212f8393946Saurel32if test "$debug_tcg" = "yes" ; then
32132358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
3214f8393946Saurel32fi
3215f3d08ee6SPaul Brookif test "$debug" = "yes" ; then
32162358a494SJuan Quintela  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
3217f3d08ee6SPaul Brookfi
32181625af87Saliguoriif test "$strip_opt" = "yes" ; then
321952ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
32201625af87Saliguorifi
32217d13299dSbellardif test "$bigendian" = "yes" ; then
3222e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
322397a847bcSbellardfi
322467b915a5Sbellardif test "$mingw32" = "yes" ; then
322598ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
32269fe6de94SBlue Swirl  rc_version=`cat $source_path/VERSION`
32279fe6de94SBlue Swirl  version_major=${rc_version%%.*}
32289fe6de94SBlue Swirl  rc_version=${rc_version#*.}
32299fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
32309fe6de94SBlue Swirl  rc_version=${rc_version#*.}
32319fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
32329fe6de94SBlue Swirl  version_micro=0
32339fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
32349fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
3235210fa556Spbrookelse
323635f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
3237210fa556Spbrookfi
3238128ab2ffSblueswir1
3239dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
3240dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
3241dffcb71cSMark McLoughlinfi
3242dffcb71cSMark McLoughlin
324383fb7adfSbellardif test "$darwin" = "yes" ; then
324498ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
324583fb7adfSbellardfi
3246b29fe3edSmalc
3247b29fe3edSmalcif test "$aix" = "yes" ; then
324898ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
3249b29fe3edSmalcfi
3250b29fe3edSmalc
3251ec530c81Sbellardif test "$solaris" = "yes" ; then
325298ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
32532358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
32540475a5caSths  if test "$needs_libsunmath" = "yes" ; then
325575b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
32560475a5caSths  fi
3257ec530c81Sbellardfi
3258179cf400SAndreas Färberif test "$haiku" = "yes" ; then
3259179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
3260179cf400SAndreas Färberfi
326197a847bcSbellardif test "$static" = "yes" ; then
326298ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
326397a847bcSbellardfi
32641ba16968SStefan Weilif test "$profiler" = "yes" ; then
32652358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
326605c2a3e7Sbellardfi
3267c20709aaSbellardif test "$slirp" = "yes" ; then
326898ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
3269e2d8830eSBrad  echo "CONFIG_SMBD_COMMAND=\"$smbd\"" >> $config_host_mak
3270f9728943SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
3271c20709aaSbellardfi
32728a16d273Sthsif test "$vde" = "yes" ; then
327398ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
32748a16d273Sthsfi
327547e98658SCorey Bryantif test "$cap_ng" = "yes" ; then
327647e98658SCorey Bryant  echo "CONFIG_LIBCAP=y" >> $config_host_mak
327747e98658SCorey Bryantfi
32780c58ac1cSmalcfor card in $audio_card_list; do
3279bb55b712SStefan Weil    def=CONFIG_`echo $card | LC_ALL=C tr '[a-z]' '[A-Z]'`
328098ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
32810c58ac1cSmalcdone
32822358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
32830c58ac1cSmalcfor drv in $audio_drv_list; do
3284bb55b712SStefan Weil    def=CONFIG_`echo $drv | LC_ALL=C tr '[a-z]' '[A-Z]'`
328598ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
3286923e4521Smalc    if test "$drv" = "fmod"; then
32877aac6cb1SJuan Quintela        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
3288fb065187Sbellard    fi
32890c58ac1cSmalcdone
329067f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
329167f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
329267f86e8eSJuan Quintelafi
3293d5631638Smalcif test "$audio_win_int" = "yes" ; then
3294d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
3295d5631638Smalcfi
3296eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
32978ff9cbf7Smalcif test "$mixemu" = "yes" ; then
329898ec69acSJuan Quintela  echo "CONFIG_MIXEMU=y" >> $config_host_mak
32998ff9cbf7Smalcfi
3300821601eaSJes Sorensenif test "$vnc" = "yes" ; then
3301821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
3302821601eaSJes Sorensenfi
33038d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
330498ec69acSJuan Quintela  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
3305525061bfSJuan Quintela  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
33068d5d2d4cSthsfi
33072f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
330898ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
330960ddf533SJuan Quintela  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
33102f9606b3Saliguorifi
3311821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
33122f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
33132f6f5c7aSCorentin Chary  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
33142f6f5c7aSCorentin Charyfi
3315821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
3316efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
3317efe556adSCorentin Chary  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
3318efe556adSCorentin Charyfi
331976655d6dSaliguoriif test "$fnmatch" = "yes" ; then
33202358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
332176655d6dSaliguorifi
3322ee682d27SStefan Weilif test "$uuid" = "yes" ; then
3323ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
3324ee682d27SStefan Weilfi
3325dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
3326dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
3327dce512deSChristoph Hellwigfi
3328b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
332998ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
33302358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
333198ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
333298ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
3333a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
333498ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
3335cc8ae6deSpbrookfi
33361ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
333798ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
33388ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
333949ecc3faSbellardfi
334049ecc3faSbellardif test "$cocoa" = "yes" ; then
334198ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
334249ecc3faSbellardfi
33434d3b6f6eSbalrogif test "$curses" = "yes" ; then
334498ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
3345ab4e5602SJan Kiszkafi
33463b3f24adSaurel32if test "$atfile" = "yes" ; then
33472358a494SJuan Quintela  echo "CONFIG_ATFILE=y" >> $config_host_mak
33483b3f24adSaurel32fi
3349ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
33502358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
3351ebc996f3SRiku Voipiofi
3352099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
33532358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
3354099d6b0fSRiku Voipiofi
335540ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
335640ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
335740ff6d7eSKevin Wolffi
33583ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
33592358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
33603ce34dfbSvibisreenivasanfi
3361c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
3362c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
3363c2882b96SRiku Voipiofi
3364d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
3365d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
3366d0927938SUlrich Hechtfi
3367c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
3368c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
3369c727f47dSPeter Maydellfi
3370dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
3371dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
3372dace20dcSPeter Maydellfi
3373d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
3374d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
3375d0927938SUlrich Hechtfi
33763b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
33773b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
33783b6edd16SPeter Maydellfi
33793b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
33803b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
33813b6edd16SPeter Maydellfi
33823b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then
33833b6edd16SPeter Maydell  echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
33843b6edd16SPeter Maydellfi
33853b3f24adSaurel32if test "$inotify" = "yes" ; then
33862358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
33873b3f24adSaurel32fi
3388c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
3389c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
3390c05c7a73SRiku Voipiofi
33916ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
33926ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
33936ae9a1f4SJuan Quintelafi
33946ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
33956ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
33966ae9a1f4SJuan Quintelafi
3397769ce76dSAlexander Grafif test "$curl" = "yes" ; then
339898ec69acSJuan Quintela  echo "CONFIG_CURL=y" >> $config_host_mak
3399b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
3400769ce76dSAlexander Graffi
34012e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
340298ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
34032e4d9fb1Saurel32fi
3404fb599c9aSbalrogif test "$bluez" = "yes" ; then
340598ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
3406ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
3407fb599c9aSbalrogfi
3408e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
3409e37630caSaliguoriif test "$xen" = "yes" ; then
34106dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
3411d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
3412e37630caSaliguorifi
34135c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
34145c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
34155c6c3a6cSChristoph Hellwigfi
3416758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
3417758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
3418758e8e38SVenkateswararao Jujjuri (JV)fi
34194f26f2b6SAvi Kivityif test "$libattr" = "yes" ; then
34204f26f2b6SAvi Kivity  echo "CONFIG_LIBATTR=y" >> $config_host_mak
34214f26f2b6SAvi Kivityfi
3422983eef5aSMeador Ingeif test "$virtfs" = "yes" ; then
3423758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_VIRTFS=y" >> $config_host_mak
3424758e8e38SVenkateswararao Jujjuri (JV)fi
342577755340Sthsif test "$blobs" = "yes" ; then
342698ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
342777755340Sthsfi
3428bf9298b9Saliguoriif test "$iovec" = "yes" ; then
34292358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
3430bf9298b9Saliguorifi
3431ceb42de8Saliguoriif test "$preadv" = "yes" ; then
34322358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
3433ceb42de8Saliguorifi
3434f652e6afSaurel32if test "$fdt" = "yes" ; then
34353f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
3436f652e6afSaurel32fi
3437dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
3438dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
3439dcc38d1cSMarcelo Tosattifi
34409195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
34419195b2c2SStefan Weil  echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
34429195b2c2SStefan Weilfi
34435f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
34445f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
34455f6b9e8fSBlue Swirlfi
3446e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
3447e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
3448e78815a5SAndreas Färberfi
3449e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
3450e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
3451e78815a5SAndreas Färberfi
345297a847bcSbellard
3453cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
3454cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
3455cd4ec0b4SGerd Hoffmannfi
3456cd4ec0b4SGerd Hoffmann
3457020af1c4SAlon Levyif test "$spice_qxl_io_monitors_config_async" = "yes" ; then
3458020af1c4SAlon Levy  echo "CONFIG_QXL_IO_MONITORS_CONFIG_ASYNC=y" >> $config_host_mak
3459020af1c4SAlon Levyfi
3460020af1c4SAlon Levy
3461a639ab04SAlon Levyif test "$spice_qxl_client_monitors_config" = "yes" ; then
3462a639ab04SAlon Levy  echo "CONFIG_QXL_CLIENT_MONITORS_CONFIG=y" >> $config_host_mak
3463a639ab04SAlon Levyfi
3464a639ab04SAlon Levy
346536707144SAlon Levyif test "$smartcard" = "yes" ; then
346636707144SAlon Levy  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
346736707144SAlon Levyfi
346836707144SAlon Levy
3469111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
3470111a38b0SRobert Relyea  echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
3471ad4cf3f6SPaul Brook  echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3472ad4cf3f6SPaul Brook  echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3473111a38b0SRobert Relyeafi
3474111a38b0SRobert Relyea
347569354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
347669354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
347769354a83SHans de Goedefi
347869354a83SHans de Goede
347920ff075bSMichael Walleif test "$opengl" = "yes" ; then
348020ff075bSMichael Walle  echo "CONFIG_OPENGL=y" >> $config_host_mak
348120ff075bSMichael Wallefi
348220ff075bSMichael Walle
3483c589b249SRonnie Sahlbergif test "$libiscsi" = "yes" ; then
3484c589b249SRonnie Sahlberg  echo "CONFIG_LIBISCSI=y" >> $config_host_mak
3485c589b249SRonnie Sahlbergfi
3486c589b249SRonnie Sahlberg
3487f794573eSEduardo Otuboif test "$seccomp" = "yes"; then
3488f794573eSEduardo Otubo  echo "CONFIG_SECCOMP=y" >> $config_host_mak
3489f794573eSEduardo Otubofi
3490f794573eSEduardo Otubo
349183fb7adfSbellard# XXX: suppress that
34927d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
34932358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
34947d3505c5Sbellardfi
34957d3505c5Sbellard
34962358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
3497c5937220Spbrook
349820ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then
349920ff6c80SAnthony Liguori  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
350020ff6c80SAnthony Liguorifi
3501f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
3502f27aaf4bSChristian Brunner  echo "CONFIG_RBD=y" >> $config_host_mak
3503f27aaf4bSChristian Brunnerfi
350420ff6c80SAnthony Liguori
3505519175a2SAlex Barceloif test "$coroutine_backend" = "ucontext" ; then
3506d0e2fce5SAneesh Kumar K.V  echo "CONFIG_UCONTEXT_COROUTINE=y" >> $config_host_mak
3507fe91bfa8SAlex Barceloelif test "$coroutine_backend" = "sigaltstack" ; then
3508fe91bfa8SAlex Barcelo  echo "CONFIG_SIGALTSTACK_COROUTINE=y" >> $config_host_mak
3509d0e2fce5SAneesh Kumar K.Vfi
3510d0e2fce5SAneesh Kumar K.V
3511d2042378SAneesh Kumar K.Vif test "$open_by_handle_at" = "yes" ; then
3512d2042378SAneesh Kumar K.V  echo "CONFIG_OPEN_BY_HANDLE=y" >> $config_host_mak
3513d2042378SAneesh Kumar K.Vfi
3514d2042378SAneesh Kumar K.V
3515e06a765eSHarsh Prateek Boraif test "$linux_magic_h" = "yes" ; then
3516e06a765eSHarsh Prateek Bora  echo "CONFIG_LINUX_MAGIC_H=y" >> $config_host_mak
3517e06a765eSHarsh Prateek Borafi
3518e06a765eSHarsh Prateek Bora
351906d71fa1SPeter Maydellif test "$pragma_disable_unused_but_set" = "yes" ; then
352006d71fa1SPeter Maydell  echo "CONFIG_PRAGMA_DISABLE_UNUSED_BUT_SET=y" >> $config_host_mak
352106d71fa1SPeter Maydellfi
352206d71fa1SPeter Maydell
35233f4349dcSKevin Wolfif test "$valgrind_h" = "yes" ; then
35243f4349dcSKevin Wolf  echo "CONFIG_VALGRIND_H=y" >> $config_host_mak
35253f4349dcSKevin Wolffi
35263f4349dcSKevin Wolf
35278ab1bf12SLuiz Capitulinoif test "$has_environ" = "yes" ; then
35288ab1bf12SLuiz Capitulino  echo "CONFIG_HAS_ENVIRON=y" >> $config_host_mak
35298ab1bf12SLuiz Capitulinofi
35308ab1bf12SLuiz Capitulino
353168063649Sblueswir1# USB host support
353268063649Sblueswir1case "$usb" in
353368063649Sblueswir1linux)
353498ec69acSJuan Quintela  echo "HOST_USB=linux" >> $config_host_mak
353568063649Sblueswir1;;
353668063649Sblueswir1bsd)
353798ec69acSJuan Quintela  echo "HOST_USB=bsd" >> $config_host_mak
353868063649Sblueswir1;;
353968063649Sblueswir1*)
354098ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
354168063649Sblueswir1;;
354268063649Sblueswir1esac
354368063649Sblueswir1
3544e4858974SLluís# use default implementation for tracing backend-specific routines
3545e4858974SLluístrace_default=yes
354694a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak
35476d8a764eSLluísif test "$trace_backend" = "nop"; then
35486d8a764eSLluís  echo "CONFIG_TRACE_NOP=y" >> $config_host_mak
354922890ab5SPrerna Saxenafi
35509410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then
35516d8a764eSLluís  echo "CONFIG_TRACE_SIMPLE=y" >> $config_host_mak
3552e4858974SLluís  trace_default=no
35536d8a764eSLluís  # Set the appropriate trace file.
3554953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
35559410b56cSPrerna Saxenafi
35566d8a764eSLluísif test "$trace_backend" = "stderr"; then
35576d8a764eSLluís  echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak
35589a82b6a5SLluís  trace_default=no
35596d8a764eSLluísfi
35606d8a764eSLluísif test "$trace_backend" = "ust"; then
35616d8a764eSLluís  echo "CONFIG_TRACE_UST=y" >> $config_host_mak
35626d8a764eSLluísfi
35636d8a764eSLluísif test "$trace_backend" = "dtrace"; then
35646d8a764eSLluís  echo "CONFIG_TRACE_DTRACE=y" >> $config_host_mak
35656d8a764eSLluís  if test "$trace_backend_stap" = "yes" ; then
35666d8a764eSLluís    echo "CONFIG_TRACE_SYSTEMTAP=y" >> $config_host_mak
35676d8a764eSLluís  fi
3568c276b17dSDaniel P. Berrangefi
35699410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
3570e4858974SLluísif test "$trace_default" = "yes"; then
3571e4858974SLluís  echo "CONFIG_TRACE_DEFAULT=y" >> $config_host_mak
3572e4858974SLluísfi
35739410b56cSPrerna Saxena
357498ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
357598ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
3576804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
3577804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
35781901cb14SBradecho "INSTALL_DIR=$install -d -m 0755" >> $config_host_mak
35791901cb14SBradecho "INSTALL_DATA=$install -c -m 0644" >> $config_host_mak
35801901cb14SBradecho "INSTALL_PROG=$install -c -m 0755" >> $config_host_mak
3581c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
3582804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
35832b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
3584804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
35853c4a4d0dSPeter Maydellecho "OBJCC=$objcc" >> $config_host_mak
3586804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
3587804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
3588804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
35899fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
359044dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak
3591e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
3592a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
3593f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
3594e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
3595e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
3596e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
3597e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
3598e39f0062SPaolo Bonzinifi
3599e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
3600a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
3601a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak
360273da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
36033e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
3604804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
3605957f1f99SMichael Rothecho "LIBS_QGA+=$libs_qga" >> $config_host_mak
360694dd53c5SGerd Hoffmannecho "POD2MAN=$POD2MAN" >> $config_host_mak
3607804edf29SJuan Quintela
36084bf6b55bSJuan Quintela# generate list of library paths for linker script
36094bf6b55bSJuan Quintela
36104bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
36114bf6b55bSJuan Quintela
36124bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then
36134bf6b55bSJuan Quintela  if cmp -s $config_host_ld ${config_host_ld}~ ; then
36144bf6b55bSJuan Quintela    mv ${config_host_ld}~ $config_host_ld
36154bf6b55bSJuan Quintela  else
36164bf6b55bSJuan Quintela    rm ${config_host_ld}~
36174bf6b55bSJuan Quintela  fi
36184bf6b55bSJuan Quintelafi
36194bf6b55bSJuan Quintela
36204d904533SBlue Swirlfor d in libdis libdis-user; do
362172b8b5a1SStefan Weil    symlink "$source_path/Makefile.dis" "$d/Makefile"
36224d904533SBlue Swirl    echo > $d/config.mak
36234d904533SBlue Swirldone
36244d904533SBlue Swirl
36256efd7517SPeter Maydell# use included Linux headers
36266efd7517SPeter Maydellif test "$linux" = "yes" ; then
3627a307beb6SAndreas Färber  mkdir -p linux-headers
36286efd7517SPeter Maydell  case "$cpu" in
36296efd7517SPeter Maydell  i386|x86_64)
363008312a63SPeter Maydell    linux_arch=x86
36316efd7517SPeter Maydell    ;;
36326efd7517SPeter Maydell  ppcemb|ppc|ppc64)
363308312a63SPeter Maydell    linux_arch=powerpc
36346efd7517SPeter Maydell    ;;
36356efd7517SPeter Maydell  s390x)
363608312a63SPeter Maydell    linux_arch=s390
363708312a63SPeter Maydell    ;;
363808312a63SPeter Maydell  *)
363908312a63SPeter Maydell    # For most CPUs the kernel architecture name and QEMU CPU name match.
364008312a63SPeter Maydell    linux_arch="$cpu"
36416efd7517SPeter Maydell    ;;
36426efd7517SPeter Maydell  esac
364308312a63SPeter Maydell    # For non-KVM architectures we will not have asm headers
364408312a63SPeter Maydell    if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then
364508312a63SPeter Maydell      symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm
364608312a63SPeter Maydell    fi
36476efd7517SPeter Maydellfi
36486efd7517SPeter Maydell
364997a847bcSbellardfor target in $target_list; do
365097a847bcSbellardtarget_dir="$target"
365125be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
3652600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1`
365397a847bcSbellardtarget_bigendian="no"
36541f3d3c8fSJuan Quintela
3655ea2d6a39SJuan Quintelacase "$target_arch2" in
3656e67db06eSJia Liu  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|or32|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus|xtensaeb)
3657ea2d6a39SJuan Quintela  target_bigendian=yes
3658ea2d6a39SJuan Quintela  ;;
3659ea2d6a39SJuan Quintelaesac
366097a847bcSbellardtarget_softmmu="no"
3661997344f3Sbellardtarget_user_only="no"
3662831b7825Sthstarget_linux_user="no"
366384778508Sblueswir1target_bsd_user="no"
36649e407a85Spbrookcase "$target" in
3665600309b6SBlue Swirl  ${target_arch2}-softmmu)
36669e407a85Spbrook    target_softmmu="yes"
36679e407a85Spbrook    ;;
3668600309b6SBlue Swirl  ${target_arch2}-linux-user)
36699c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
36709c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Linux host"
36719c7a4202SBlue Swirl      exit 1
36729c7a4202SBlue Swirl    fi
36739e407a85Spbrook    target_user_only="yes"
36749e407a85Spbrook    target_linux_user="yes"
36759e407a85Spbrook    ;;
3676600309b6SBlue Swirl  ${target_arch2}-bsd-user)
36779cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
36789c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a BSD host"
36799c7a4202SBlue Swirl      exit 1
36809c7a4202SBlue Swirl    fi
368184778508Sblueswir1    target_user_only="yes"
368284778508Sblueswir1    target_bsd_user="yes"
368384778508Sblueswir1    ;;
36849e407a85Spbrook  *)
36859e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
36869e407a85Spbrook    exit 1
36879e407a85Spbrook    ;;
36889e407a85Spbrookesac
3689831b7825Sths
369097a847bcSbellardmkdir -p $target_dir
369125be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
369297a847bcSbellard
3693e5fe0c52Spbrookbflt="no"
3694bd0c5661Spbrooktarget_nptl="no"
3695600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
369656aebc89Spbrookgdb_xml_files=""
3697c2e3dee6SLaurent Viviertarget_short_alignment=2
3698c2e3dee6SLaurent Viviertarget_int_alignment=4
3699c2e3dee6SLaurent Viviertarget_long_alignment=4
3700c2e3dee6SLaurent Viviertarget_llong_alignment=8
3701de3a354aSMichael Walletarget_libs_softmmu=
37027ba1e619Saliguori
3703938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2"
37046acff7daSJuan QuintelaTARGET_BASE_ARCH=""
3705e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
3706e73aae67SJuan Quintela
3707600309b6SBlue Swirlcase "$target_arch2" in
37082408a527Saurel32  i386)
370971deff27SAurelien Jarno    target_phys_bits=64
37102408a527Saurel32  ;;
37112408a527Saurel32  x86_64)
37126acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
37131ad2134fSPaul Brook    target_phys_bits=64
3714c2e3dee6SLaurent Vivier    target_long_alignment=8
37152408a527Saurel32  ;;
37162408a527Saurel32  alpha)
37171ad2134fSPaul Brook    target_phys_bits=64
3718c2e3dee6SLaurent Vivier    target_long_alignment=8
3719a4b388ffSRichard Henderson    target_nptl="yes"
37202408a527Saurel32  ;;
37212408a527Saurel32  arm|armeb)
3722b498c8a0SJuan Quintela    TARGET_ARCH=arm
3723e5fe0c52Spbrook    bflt="yes"
3724bd0c5661Spbrook    target_nptl="yes"
372556aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
37263cc0cd61SPeter Maydell    target_phys_bits=64
3727c2e3dee6SLaurent Vivier    target_llong_alignment=4
3728412beee6SGrant Likely    target_libs_softmmu="$fdt_libs"
37292408a527Saurel32  ;;
37302408a527Saurel32  cris)
3731253bd7f8Sedgar_igl    target_nptl="yes"
37321ad2134fSPaul Brook    target_phys_bits=32
37332408a527Saurel32  ;;
3734613a22c9SMichael Walle  lm32)
3735613a22c9SMichael Walle    target_phys_bits=32
3736de3a354aSMichael Walle    target_libs_softmmu="$opengl_libs"
3737613a22c9SMichael Walle  ;;
37382408a527Saurel32  m68k)
37390938cda5Saurel32    bflt="yes"
374056aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
37411ad2134fSPaul Brook    target_phys_bits=32
3742c2e3dee6SLaurent Vivier    target_int_alignment=2
3743c2e3dee6SLaurent Vivier    target_long_alignment=2
3744c2e3dee6SLaurent Vivier    target_llong_alignment=2
37452408a527Saurel32  ;;
3746877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
3747877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
374872b675caSEdgar E. Iglesias    bflt="yes"
374972b675caSEdgar E. Iglesias    target_nptl="yes"
375072b675caSEdgar E. Iglesias    target_phys_bits=32
3751de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
375272b675caSEdgar E. Iglesias  ;;
37532408a527Saurel32  mips|mipsel)
3754b498c8a0SJuan Quintela    TARGET_ARCH=mips
375525be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
3756f04dc72fSPaul Brook    target_nptl="yes"
37571ad2134fSPaul Brook    target_phys_bits=64
37582408a527Saurel32  ;;
37592408a527Saurel32  mipsn32|mipsn32el)
3760b498c8a0SJuan Quintela    TARGET_ARCH=mipsn32
37616acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
376225be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
37631ad2134fSPaul Brook    target_phys_bits=64
37642408a527Saurel32  ;;
37652408a527Saurel32  mips64|mips64el)
3766b498c8a0SJuan Quintela    TARGET_ARCH=mips64
37676acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
376825be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
37691ad2134fSPaul Brook    target_phys_bits=64
3770c2e3dee6SLaurent Vivier    target_long_alignment=8
37712408a527Saurel32  ;;
3772e67db06eSJia Liu  or32)
3773e67db06eSJia Liu    TARGET_ARCH=openrisc
3774e67db06eSJia Liu    TARGET_BASE_ARCH=openrisc
3775e67db06eSJia Liu    target_phys_bits=32
3776e67db06eSJia Liu  ;;
37772408a527Saurel32  ppc)
3778c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
37798b242ebaSAlexander Graf    target_phys_bits=64
3780d6630708SNathan Froyd    target_nptl="yes"
3781de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
37822408a527Saurel32  ;;
37832408a527Saurel32  ppcemb)
37846acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3785e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3786c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
37871ad2134fSPaul Brook    target_phys_bits=64
3788d6630708SNathan Froyd    target_nptl="yes"
3789de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
37902408a527Saurel32  ;;
37912408a527Saurel32  ppc64)
37926acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3793e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3794c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
37951ad2134fSPaul Brook    target_phys_bits=64
3796c2e3dee6SLaurent Vivier    target_long_alignment=8
3797de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
37982408a527Saurel32  ;;
37992408a527Saurel32  ppc64abi32)
3800b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
38016acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3802e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
380325be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
3804c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
38051ad2134fSPaul Brook    target_phys_bits=64
3806de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
38072408a527Saurel32  ;;
38082408a527Saurel32  sh4|sh4eb)
3809b498c8a0SJuan Quintela    TARGET_ARCH=sh4
38104dbed897Spbrook    bflt="yes"
38110b6d3ae0Saurel32    target_nptl="yes"
38121ad2134fSPaul Brook    target_phys_bits=32
38132408a527Saurel32  ;;
38142408a527Saurel32  sparc)
38151ad2134fSPaul Brook    target_phys_bits=64
38162408a527Saurel32  ;;
38172408a527Saurel32  sparc64)
38186acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
38191ad2134fSPaul Brook    target_phys_bits=64
3820c2e3dee6SLaurent Vivier    target_long_alignment=8
38212408a527Saurel32  ;;
38222408a527Saurel32  sparc32plus)
3823b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
38246acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3825e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
382625be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
38271ad2134fSPaul Brook    target_phys_bits=64
38282408a527Saurel32  ;;
382924e804ecSAlexander Graf  s390x)
3830bc434676SUlrich Hecht    target_nptl="yes"
383124e804ecSAlexander Graf    target_phys_bits=64
38327b3da903SAlexander Graf    target_long_alignment=8
383324e804ecSAlexander Graf  ;;
3834d2fbca94SGuan Xuetao  unicore32)
3835d2fbca94SGuan Xuetao    target_phys_bits=32
3836d2fbca94SGuan Xuetao  ;;
3837cfa550c6SMax Filippov  xtensa|xtensaeb)
3838cfa550c6SMax Filippov    TARGET_ARCH=xtensa
3839cfa550c6SMax Filippov    target_phys_bits=32
3840cfa550c6SMax Filippov  ;;
38412408a527Saurel32  *)
3842de83cd02Sbellard    echo "Unsupported target CPU"
3843de83cd02Sbellard    exit 1
38442408a527Saurel32  ;;
38452408a527Saurel32esac
38465e8861a0SPaolo Bonzini# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
38475e8861a0SPaolo Bonziniif [ "$TARGET_BASE_ARCH" = "" ]; then
38485e8861a0SPaolo Bonzini  TARGET_BASE_ARCH=$TARGET_ARCH
38495e8861a0SPaolo Bonzinifi
38505e8861a0SPaolo Bonzini
38515e8861a0SPaolo Bonzinisymlink "$source_path/Makefile.target" "$target_dir/Makefile"
38525e8861a0SPaolo Bonzini
385399afc91dSDaniel P. Berrangeupper() {
385499afc91dSDaniel P. Berrange    echo "$@"| LC_ALL=C tr '[a-z]' '[A-Z]'
385599afc91dSDaniel P. Berrange}
385699afc91dSDaniel P. Berrange
3857c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3858c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3859c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3860c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
386125be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
386299afc91dSDaniel P. Berrangetarget_arch_name="`upper $TARGET_ARCH`"
386325be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
386425be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak
386599afc91dSDaniel P. Berrangeecho "TARGET_TYPE=TARGET_TYPE_`upper $target_arch2`" >> $config_target_mak
386625be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
3867e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
3868e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
3869e6e91b9cSJuan Quintelafi
387025be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
38711b0c87fcSJuan Quintelacase "$target_arch2" in
38721b0c87fcSJuan Quintela  i386|x86_64)
38731b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
387464b3cfdbSAnthony PERARD      target_phys_bits=64
387525be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
3876eb6fda0fSAnthony PERARD      if test "$xen_pci_passthrough" = yes; then
3877eb6fda0fSAnthony PERARD        echo "CONFIG_XEN_PCI_PASSTHROUGH=y" >> "$config_target_mak"
3878eb6fda0fSAnthony PERARD      fi
387959d21e53SAlexander Graf    else
388059d21e53SAlexander Graf      echo "CONFIG_NO_XEN=y" >> $config_target_mak
3881432d268cSJun Nakajima    fi
388259d21e53SAlexander Graf    ;;
388359d21e53SAlexander Graf  *)
388459d21e53SAlexander Graf    echo "CONFIG_NO_XEN=y" >> $config_target_mak
38851b0c87fcSJuan Quintelaesac
3886c59249f9SJuan Quintelacase "$target_arch2" in
38870e60a699SAlexander Graf  i386|x86_64|ppcemb|ppc|ppc64|s390x)
3888c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
3889c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3890c59249f9SJuan Quintela      \( "$target_arch2" = "$cpu" -o \
3891c59249f9SJuan Quintela      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
38925f114bc6SAlexander Graf      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
3893adf82011SRené Rebe      \( "$target_arch2" = "ppc"    -a "$cpu" = "ppc64" \) -o \
3894adf82011SRené Rebe      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
3895c59249f9SJuan Quintela      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
3896c59249f9SJuan Quintela      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
389725be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
38981ba16968SStefan Weil      if test "$vhost_net" = "yes" ; then
3899d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3900d5970055SMichael S. Tsirkin      fi
3901c59249f9SJuan Quintela    fi
3902c59249f9SJuan Quintelaesac
3903fae001f5SWen Congyangcase "$target_arch2" in
3904fae001f5SWen Congyang  i386|x86_64)
3905fae001f5SWen Congyang    echo "CONFIG_HAVE_GET_MEMORY_MAPPING=y" >> $config_target_mak
3906fae001f5SWen Congyangesac
39077f762366SBlue Swirlif test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then
39080a6b8ddeSAlexander Graf  echo "CONFIG_PSERIES=y" >> $config_target_mak
39090a6b8ddeSAlexander Graffi
3910de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
391125be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
391297a847bcSbellardfi
391397a847bcSbellardif test "$target_softmmu" = "yes" ; then
3914b1aa27c4SPaul Brook  echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
391525be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3916de3a354aSMichael Walle  echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
39170e8c9214SAndreas Färber  echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
39185791f45bSKirill A. Shutemov  echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
3919ad4cf3f6SPaul Brook  if test "$smartcard_nss" = "yes" ; then
3920ad4cf3f6SPaul Brook    echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3921ad4cf3f6SPaul Brook  fi
39229fecbed0SWen Congyang  case "$target_arch2" in
39239fecbed0SWen Congyang    i386|x86_64)
39249fecbed0SWen Congyang      echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak
39259fecbed0SWen Congyang  esac
3926de83cd02Sbellardfi
3927997344f3Sbellardif test "$target_user_only" = "yes" ; then
392825be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
3929a2c80be9SStefan Weil  echo "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
3930997344f3Sbellardfi
3931831b7825Sthsif test "$target_linux_user" = "yes" ; then
393225be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
3933831b7825Sthsfi
393456aebc89Spbrooklist=""
393556aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
393656aebc89Spbrook  for x in $gdb_xml_files; do
393756aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
393856aebc89Spbrook  done
393925be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
39403d0f1517SJuan Quintelafi
3941de83cd02Sbellard
3942e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
394325be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
3944e5fe0c52Spbrookfi
3945bd0c5661Spbrookif test "$target_user_only" = "yes" \
3946bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
394725be210fSJuan Quintela  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
3948bd0c5661Spbrookfi
3949379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
395025be210fSJuan Quintela  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
3951379f6698SPaul Brookfi
395284778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
395325be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
395484778508Sblueswir1fi
39555b0753e0Sbellard
39565a4d701aSJan Kiszka# the static way of configuring available audio cards requires this workaround
39575a4d701aSJan Kiszkaif test "$target_user_only" != "yes" && grep -q CONFIG_PCSPK $source_path/default-configs/$target.mak; then
39585a4d701aSJan Kiszka  echo "CONFIG_PCSPK=y" >> $config_target_mak
39595a4d701aSJan Kiszkafi
39605a4d701aSJan Kiszka
39614afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
3962fa282484SJuan Quintela
39634afddb55SJuan Quintelacflags=""
3964f9728943SPaolo Bonziniincludes=""
3965fa282484SJuan Quintelaldflags=""
39669b8e111fSJuan Quintela
39679195b2c2SStefan Weilif test "$tcg_interpreter" = "yes"; then
39689195b2c2SStefan Weil  includes="-I\$(SRC_PATH)/tcg/tci $includes"
39699195b2c2SStefan Weilelif test "$ARCH" = "sparc64" ; then
3970f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/sparc $includes"
397124e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then
3972f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/s390 $includes"
39735d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then
3974f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/i386 $includes"
397557ddfbf7SJuan Quintelaelse
3976f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
397757ddfbf7SJuan Quintelafi
3978f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes"
397957ddfbf7SJuan Quintela
39806efd7517SPeter Maydellif test "$linux" = "yes" ; then
39816efd7517SPeter Maydell  includes="-I\$(SRC_PATH)/linux-headers $includes"
39826efd7517SPeter Maydellfi
39836efd7517SPeter Maydell
39844d904533SBlue Swirlif test "$target_user_only" = "yes" ; then
39854d904533SBlue Swirl    libdis_config_mak=libdis-user/config.mak
39864d904533SBlue Swirlelse
39874d904533SBlue Swirl    libdis_config_mak=libdis/config.mak
39884d904533SBlue Swirlfi
39894d904533SBlue Swirl
399064656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
399164656024SJuan Quintela  case "$i" in
399264656024SJuan Quintela  alpha)
399325be210fSJuan Quintela    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
39944d904533SBlue Swirl    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
399564656024SJuan Quintela  ;;
399664656024SJuan Quintela  arm)
399725be210fSJuan Quintela    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
39984d904533SBlue Swirl    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
399964656024SJuan Quintela  ;;
400064656024SJuan Quintela  cris)
400125be210fSJuan Quintela    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
40024d904533SBlue Swirl    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
400364656024SJuan Quintela  ;;
400464656024SJuan Quintela  hppa)
400525be210fSJuan Quintela    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
40064d904533SBlue Swirl    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
400764656024SJuan Quintela  ;;
400864656024SJuan Quintela  i386|x86_64)
400925be210fSJuan Quintela    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
40104d904533SBlue Swirl    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
401164656024SJuan Quintela  ;;
4012903ec55cSAurelien Jarno  ia64*)
4013903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
4014903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
4015903ec55cSAurelien Jarno  ;;
401679368f49SMichael Walle  lm32)
401779368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $config_target_mak
401879368f49SMichael Walle    echo "CONFIG_LM32_DIS=y"  >> $libdis_config_mak
401979368f49SMichael Walle  ;;
402064656024SJuan Quintela  m68k)
402125be210fSJuan Quintela    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
40224d904533SBlue Swirl    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
402364656024SJuan Quintela  ;;
4024877fdc12SEdgar E. Iglesias  microblaze*)
402525be210fSJuan Quintela    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
40264d904533SBlue Swirl    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
402764656024SJuan Quintela  ;;
402864656024SJuan Quintela  mips*)
402925be210fSJuan Quintela    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
40304d904533SBlue Swirl    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
403164656024SJuan Quintela  ;;
4032e67db06eSJia Liu  or32)
4033e67db06eSJia Liu    echo "CONFIG_OPENRISC_DIS=y"  >> $config_target_mak
4034e67db06eSJia Liu    echo "CONFIG_OPENRISC_DIS=y"  >> $libdis_config_mak
4035e67db06eSJia Liu  ;;
403664656024SJuan Quintela  ppc*)
403725be210fSJuan Quintela    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
40384d904533SBlue Swirl    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
403964656024SJuan Quintela  ;;
404024e804ecSAlexander Graf  s390*)
404125be210fSJuan Quintela    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
40424d904533SBlue Swirl    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
404364656024SJuan Quintela  ;;
404464656024SJuan Quintela  sh4)
404525be210fSJuan Quintela    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
40464d904533SBlue Swirl    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
404764656024SJuan Quintela  ;;
404864656024SJuan Quintela  sparc*)
404925be210fSJuan Quintela    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
40504d904533SBlue Swirl    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
405164656024SJuan Quintela  ;;
4052cfa550c6SMax Filippov  xtensa*)
4053cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $config_target_mak
4054cfa550c6SMax Filippov    echo "CONFIG_XTENSA_DIS=y"  >> $libdis_config_mak
4055cfa550c6SMax Filippov  ;;
405664656024SJuan Quintela  esac
405764656024SJuan Quinteladone
40589195b2c2SStefan Weilif test "$tcg_interpreter" = "yes" ; then
40599195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $config_target_mak
40609195b2c2SStefan Weil  echo "CONFIG_TCI_DIS=y"  >> $libdis_config_mak
40619195b2c2SStefan Weilfi
406264656024SJuan Quintela
40636ee7126fSJuan Quintelacase "$ARCH" in
40646ee7126fSJuan Quintelaalpha)
40656ee7126fSJuan Quintela  # Ensure there's only a single GP
40666ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
40676ee7126fSJuan Quintela;;
40686ee7126fSJuan Quintelaesac
40696ee7126fSJuan Quintela
407055d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then
407155d9c04bSJuan Quintela  case "$TARGET_BASE_ARCH" in
407255d9c04bSJuan Quintela  arm)
407355d9c04bSJuan Quintela    cflags="-DHAS_AUDIO $cflags"
407455d9c04bSJuan Quintela  ;;
407525a8bb96SMichael Walle  lm32)
407625a8bb96SMichael Walle    cflags="-DHAS_AUDIO $cflags"
407725a8bb96SMichael Walle  ;;
407855d9c04bSJuan Quintela  i386|mips|ppc)
407955d9c04bSJuan Quintela    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
408055d9c04bSJuan Quintela  ;;
408155d9c04bSJuan Quintela  esac
408255d9c04bSJuan Quintelafi
408355d9c04bSJuan Quintela
4084d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
408525be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
4086d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
4087d02c1db3SJuan Quintela    cflags="-p $cflags"
4088d02c1db3SJuan Quintela    ldflags="-p $ldflags"
4089d02c1db3SJuan Quintela  fi
4090d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
4091d02c1db3SJuan Quintela    ldflags="-p $ldflags"
409225be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
4093d02c1db3SJuan Quintela  fi
4094d02c1db3SJuan Quintelafi
4095d02c1db3SJuan Quintela
40969195b2c2SStefan Weilif test "$ARCH" = "tci"; then
40979195b2c2SStefan Weil  linker_script=""
40989195b2c2SStefan Weilelse
40996ee7126fSJuan Quintela  linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
41009195b2c2SStefan Weilfi
41019195b2c2SStefan Weil
41029b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
4103fa282484SJuan Quintela  case "$ARCH" in
4104fa282484SJuan Quintela  sparc)
4105fa282484SJuan Quintela    # -static is used to avoid g1/g3 usage by the dynamic linker
4106322e5878SJuan Quintela    ldflags="$linker_script -static $ldflags"
4107fa282484SJuan Quintela    ;;
41084d58be06SRichard Henderson  alpha | s390x)
41094d58be06SRichard Henderson    # The default placement of the application is fine.
41104d58be06SRichard Henderson    ;;
4111fd76e73aSRichard Henderson  *)
4112322e5878SJuan Quintela    ldflags="$linker_script $ldflags"
4113fa282484SJuan Quintela    ;;
4114fa282484SJuan Quintela  esac
4115fa282484SJuan Quintelafi
4116fa282484SJuan Quintela
411725be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
411825be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
4119f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak
4120fa282484SJuan Quintela
412197a847bcSbellarddone # for target in $targets
41227d13299dSbellard
4123d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
4124927b241dSMichael WalleDIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32"
41252dee8d54SPaolo BonziniDIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas"
41262d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
41272dee8d54SPaolo BonziniDIRS="$DIRS qapi-generated"
412800c705fbSPaolo BonziniDIRS="$DIRS libcacard libcacard/libcacard libcacard/trace"
4129c09015ddSAnthony LiguoriFILES="Makefile tests/tcg/Makefile qdict-test-data.txt"
4130c09015ddSAnthony LiguoriFILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
413100c705fbSPaolo BonziniFILES="$FILES tests/tcg/lm32/Makefile libcacard/Makefile"
4132ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
4133446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
41342d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
4135753d11f2SRichard Hendersonfor bios_file in \
4136753d11f2SRichard Henderson    $source_path/pc-bios/*.bin \
4137753d11f2SRichard Henderson    $source_path/pc-bios/*.rom \
4138753d11f2SRichard Henderson    $source_path/pc-bios/*.dtb \
4139753d11f2SRichard Henderson    $source_path/pc-bios/openbios-* \
4140753d11f2SRichard Henderson    $source_path/pc-bios/palcode-*
4141753d11f2SRichard Hendersondo
41427ea78b74SJan Kiszka    FILES="$FILES pc-bios/`basename $bios_file`"
41437ea78b74SJan Kiszkadone
4144d1807a4fSPaolo Bonzinimkdir -p $DIRS
41457d13299dSbellardfor f in $FILES ; do
414672b8b5a1SStefan Weil    if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then
4147f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
4148f9245e10SPeter Maydell    fi
41497d13299dSbellarddone
41501ad2134fSPaul Brook
4151c34ebfdcSAnthony Liguori# temporary config to build submodules
41522d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
4153c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
415437116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
4155c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
4156c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
4157c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
4158c34ebfdcSAnthony Liguori    echo "CPP=${cross_prefix}cpp" >> $config_mak
4159c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
4160c34ebfdcSAnthony Liguori    echo "IASL=iasl" >> $config_mak
4161c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
4162c34ebfdcSAnthony Liguoridone
4163c34ebfdcSAnthony Liguori
41641ad2134fSPaul Brookfor hwlib in 32 64; do
41651ad2134fSPaul Brook  d=libhw$hwlib
416672b8b5a1SStefan Weil  symlink "$source_path/Makefile.hw" "$d/Makefile"
416737116c89SStefan Weil  echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
41681ad2134fSPaul Brookdone
4169add16157SBlue Swirl
4170add16157SBlue Swirld=libuser
417172b8b5a1SStefan Weilsymlink "$source_path/Makefile.user" "$d/Makefile"
4172b40292e7SJan Kiszka
4173b40292e7SJan Kiszkaif test "$docs" = "yes" ; then
4174b40292e7SJan Kiszka  mkdir -p QMP
4175b40292e7SJan Kiszkafi
4176