xref: /openbmc/qemu/configure (revision d41a75a20f2e8f9ccc64c27b61f730e4cb4ee2c5)
17d13299dSbellard#!/bin/sh
27d13299dSbellard#
33ef693a0Sbellard# qemu configure script (c) 2003 Fabrice Bellard
47d13299dSbellard#
57d13299dSbellard# set temporary file name
67d13299dSbellardif test ! -z "$TMPDIR" ; then
77d13299dSbellard    TMPDIR1="${TMPDIR}"
87d13299dSbellardelif test ! -z "$TEMPDIR" ; then
97d13299dSbellard    TMPDIR1="${TEMPDIR}"
107d13299dSbellardelse
117d13299dSbellard    TMPDIR1="/tmp"
127d13299dSbellardfi
137d13299dSbellard
143ef693a0SbellardTMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
153ef693a0SbellardTMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16a91b857cSmalcTMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.exe"
177d13299dSbellard
180ba8681eSLoïc Minier# NB: do not call "exit" in the trap handler; this is buggy with some shells;
190ba8681eSLoïc Minier# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
200ba8681eSLoïc Miniertrap "rm -f $TMPC $TMPO $TMPE" EXIT INT QUIT TERM
21da1d85e3SGerd Hoffmannrm -f config.log
229ac81bbbSmalc
2352166aa0SJuan Quintelacompile_object() {
24da1d85e3SGerd Hoffmann  echo $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log
25da1d85e3SGerd Hoffmann  $cc $QEMU_CFLAGS -c -o $TMPO $TMPC >> config.log 2>&1
2652166aa0SJuan Quintela}
2752166aa0SJuan Quintela
2852166aa0SJuan Quintelacompile_prog() {
2952166aa0SJuan Quintela  local_cflags="$1"
3052166aa0SJuan Quintela  local_ldflags="$2"
31da1d85e3SGerd Hoffmann  echo $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log
32da1d85e3SGerd Hoffmann  $cc $QEMU_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags >> config.log 2>&1
3352166aa0SJuan Quintela}
3452166aa0SJuan Quintela
3511568d6dSPaolo Bonzini# symbolically link $1 to $2.  Portable version of "ln -sf".
3611568d6dSPaolo Bonzinisymlink() {
3711568d6dSPaolo Bonzini  rm -f $2
3811568d6dSPaolo Bonzini  ln -s $1 $2
3911568d6dSPaolo Bonzini}
4011568d6dSPaolo Bonzini
410dba6195SLoïc Minier# check whether a command is available to this shell (may be either an
420dba6195SLoïc Minier# executable or a builtin)
430dba6195SLoïc Minierhas() {
440dba6195SLoïc Minier    type "$1" >/dev/null 2>&1
450dba6195SLoïc Minier}
460dba6195SLoïc Minier
470dba6195SLoïc Minier# search for an executable in PATH
480dba6195SLoïc Minierpath_of() {
490dba6195SLoïc Minier    local_command="$1"
500dba6195SLoïc Minier    local_ifs="$IFS"
510dba6195SLoïc Minier    local_dir=""
520dba6195SLoïc Minier
530dba6195SLoïc Minier    # pathname has a dir component?
540dba6195SLoïc Minier    if [ "${local_command#*/}" != "$local_command" ]; then
550dba6195SLoïc Minier        if [ -x "$local_command" ] && [ ! -d "$local_command" ]; then
560dba6195SLoïc Minier            echo "$local_command"
570dba6195SLoïc Minier            return 0
580dba6195SLoïc Minier        fi
590dba6195SLoïc Minier    fi
600dba6195SLoïc Minier    if [ -z "$local_command" ]; then
610dba6195SLoïc Minier        return 1
620dba6195SLoïc Minier    fi
630dba6195SLoïc Minier
640dba6195SLoïc Minier    IFS=:
650dba6195SLoïc Minier    for local_dir in $PATH; do
660dba6195SLoïc Minier        if [ -x "$local_dir/$local_command" ] && [ ! -d "$local_dir/$local_command" ]; then
670dba6195SLoïc Minier            echo "$local_dir/$local_command"
680dba6195SLoïc Minier            IFS="${local_ifs:-$(printf ' \t\n')}"
690dba6195SLoïc Minier            return 0
700dba6195SLoïc Minier        fi
710dba6195SLoïc Minier    done
720dba6195SLoïc Minier    # not found
730dba6195SLoïc Minier    IFS="${local_ifs:-$(printf ' \t\n')}"
740dba6195SLoïc Minier    return 1
750dba6195SLoïc Minier}
760dba6195SLoïc Minier
777d13299dSbellard# default parameters
78ca4deeb1SPaolo Bonzinisource_path=`dirname "$0"`
792ff6b91eSJuan Quintelacpu=""
801e43adfcSbellardinterp_prefix="/usr/gnemul/qemu-%M"
8143ce4dfeSbellardstatic="no"
82ed968ff1SJuan Quintelasparc_cpu=""
837d13299dSbellardcross_prefix=""
840c58ac1cSmalcaudio_drv_list=""
85d61a4ce8SGerd Hoffmannaudio_card_list="ac97 es1370 sb16 hda"
86d61a4ce8SGerd Hoffmannaudio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus hda"
87eb852011SMarkus Armbrusterblock_drv_whitelist=""
887d13299dSbellardhost_cc="gcc"
89c81da56eSJuan Quintelahelper_cflags=""
9073da375eSJuan Quintelalibs_softmmu=""
913e2e0e6bSJuan Quintelalibs_tools=""
9267f86e8eSJuan Quintelaaudio_pt_int=""
93d5631638Smalcaudio_win_int=""
942b2e59e6SPaolo Bonzinicc_i386=i386-pc-linux-gnu-gcc
95ac0df51dSaliguori
96377529c0SPaolo Bonzinitarget_list=""
97377529c0SPaolo Bonzini
98377529c0SPaolo Bonzini# Default value for a variable defining feature "foo".
99377529c0SPaolo Bonzini#  * foo="no"  feature will only be used if --enable-foo arg is given
100377529c0SPaolo Bonzini#  * foo=""    feature will be searched for, and if found, will be used
101377529c0SPaolo Bonzini#              unless --disable-foo is given
102377529c0SPaolo Bonzini#  * foo="yes" this value will only be set by --enable-foo flag.
103377529c0SPaolo Bonzini#              feature will searched for,
104377529c0SPaolo Bonzini#              if not found, configure exits with error
105377529c0SPaolo Bonzini#
106377529c0SPaolo Bonzini# Always add --enable-foo and --disable-foo command line args.
107377529c0SPaolo Bonzini# Distributions want to ensure that several features are compiled in, and it
108377529c0SPaolo Bonzini# is impossible without a --enable-foo that exits if a feature is not found.
109377529c0SPaolo Bonzini
110377529c0SPaolo Bonzinibluez=""
111377529c0SPaolo Bonzinibrlapi=""
112377529c0SPaolo Bonzinicurl=""
113377529c0SPaolo Bonzinicurses=""
114377529c0SPaolo Bonzinidocs=""
115377529c0SPaolo Bonzinifdt=""
116377529c0SPaolo Bonzininptl=""
117377529c0SPaolo Bonzinisdl=""
118821601eaSJes Sorensenvnc="yes"
119377529c0SPaolo Bonzinisparse="no"
120377529c0SPaolo Bonziniuuid=""
121377529c0SPaolo Bonzinivde=""
122377529c0SPaolo Bonzinivnc_tls=""
123377529c0SPaolo Bonzinivnc_sasl=""
124377529c0SPaolo Bonzinivnc_jpeg=""
125377529c0SPaolo Bonzinivnc_png=""
126377529c0SPaolo Bonzinivnc_thread="no"
127377529c0SPaolo Bonzinixen=""
128d5b93ddfSAnthony PERARDxen_ctrl_version=""
129377529c0SPaolo Bonzinilinux_aio=""
130377529c0SPaolo Bonziniattr=""
131377529c0SPaolo Bonzinixfs=""
132377529c0SPaolo Bonzini
133*d41a75a2SBradvhost_net="no"
134*d41a75a2SBradkvm="no"
135377529c0SPaolo Bonzinigprof="no"
136377529c0SPaolo Bonzinidebug_tcg="no"
137377529c0SPaolo Bonzinidebug_mon="no"
138377529c0SPaolo Bonzinidebug="no"
139377529c0SPaolo Bonzinistrip_opt="yes"
140377529c0SPaolo Bonzinibigendian="no"
141377529c0SPaolo Bonzinimingw32="no"
142377529c0SPaolo BonziniEXESUF=""
143377529c0SPaolo Bonziniprefix="/usr/local"
144377529c0SPaolo Bonzinimandir="\${prefix}/share/man"
145377529c0SPaolo Bonzinidatadir="\${prefix}/share/qemu"
146377529c0SPaolo Bonzinidocdir="\${prefix}/share/doc/qemu"
147377529c0SPaolo Bonzinibindir="\${prefix}/bin"
1483aa5d2beSAlon Levylibdir="\${prefix}/lib"
1490f94d6daSAlon Levyincludedir="\${prefix}/include"
150377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
151377529c0SPaolo Bonziniconfsuffix="/qemu"
152377529c0SPaolo Bonzinislirp="yes"
153377529c0SPaolo Bonzinifmod_lib=""
154377529c0SPaolo Bonzinifmod_inc=""
155377529c0SPaolo Bonzinioss_lib=""
156377529c0SPaolo Bonzinibsd="no"
157377529c0SPaolo Bonzinilinux="no"
158377529c0SPaolo Bonzinisolaris="no"
159377529c0SPaolo Bonziniprofiler="no"
160377529c0SPaolo Bonzinicocoa="no"
161377529c0SPaolo Bonzinisoftmmu="yes"
162377529c0SPaolo Bonzinilinux_user="no"
163377529c0SPaolo Bonzinidarwin_user="no"
164377529c0SPaolo Bonzinibsd_user="no"
165377529c0SPaolo Bonziniguest_base=""
166377529c0SPaolo Bonziniuname_release=""
167377529c0SPaolo Bonziniio_thread="no"
168377529c0SPaolo Bonzinimixemu="no"
169377529c0SPaolo Bonziniaix="no"
170377529c0SPaolo Bonziniblobs="yes"
171377529c0SPaolo Bonzinipkgversion=""
172377529c0SPaolo Bonzinicheck_utests="no"
173377529c0SPaolo Bonziniuser_pie="no"
174377529c0SPaolo Bonzinizero_malloc=""
175377529c0SPaolo Bonzinitrace_backend="nop"
176377529c0SPaolo Bonzinitrace_file="trace"
177377529c0SPaolo Bonzinispice=""
178377529c0SPaolo Bonzinirbd=""
17936707144SAlon Levysmartcard=""
180111a38b0SRobert Relyeasmartcard_nss=""
18169354a83SHans de Goedeusb_redir=""
182430a3c18SMichael Walleopengl=""
1831ece9905SAlon Levyzlib="yes"
184377529c0SPaolo Bonzini
185ac0df51dSaliguori# parse CC options first
186ac0df51dSaliguorifor opt do
187ac0df51dSaliguori  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
188ac0df51dSaliguori  case "$opt" in
189ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
190ac0df51dSaliguori  ;;
1913d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
192ac0df51dSaliguori  ;;
193ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
194ca4deeb1SPaolo Bonzini  ;;
1952ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
1962ff6b91eSJuan Quintela  ;;
197a558ee17SJuan Quintela  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
198e2a2ed06SJuan Quintela  ;;
199e2a2ed06SJuan Quintela  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
200e2a2ed06SJuan Quintela  ;;
20150e7b1a0SJuan Quintela  --sparc_cpu=*)
20250e7b1a0SJuan Quintela    sparc_cpu="$optarg"
20350e7b1a0SJuan Quintela    case $sparc_cpu in
204ed968ff1SJuan Quintela    v7|v8|v8plus|v8plusa)
20550e7b1a0SJuan Quintela      cpu="sparc"
20650e7b1a0SJuan Quintela    ;;
20750e7b1a0SJuan Quintela    v9)
20850e7b1a0SJuan Quintela      cpu="sparc64"
20950e7b1a0SJuan Quintela    ;;
21050e7b1a0SJuan Quintela    *)
21150e7b1a0SJuan Quintela      echo "undefined SPARC architecture. Exiting";
21250e7b1a0SJuan Quintela      exit 1
21350e7b1a0SJuan Quintela    ;;
21450e7b1a0SJuan Quintela    esac
21550e7b1a0SJuan Quintela  ;;
216ac0df51dSaliguori  esac
217ac0df51dSaliguoridone
218ac0df51dSaliguori# OS specific
219ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
220ac0df51dSaliguori# we can eliminate it's usage altogether
221ac0df51dSaliguori
2223d8df640SPaolo Bonzinicc="${cross_prefix}${CC-gcc}"
2233d8df640SPaolo Bonziniar="${cross_prefix}${AR-ar}"
2243d8df640SPaolo Bonziniobjcopy="${cross_prefix}${OBJCOPY-objcopy}"
2253d8df640SPaolo Bonzinild="${cross_prefix}${LD-ld}"
2263d8df640SPaolo Bonzinistrip="${cross_prefix}${STRIP-strip}"
2273d8df640SPaolo Bonziniwindres="${cross_prefix}${WINDRES-windres}"
228a8bd70adSPaolo Bonzinipkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}"
2293ec87ffeSPaolo Bonzinisdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}"
230ac0df51dSaliguori
231be17dc90SMichael S. Tsirkin# default flags for all hosts
232be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
233be17dc90SMichael S. TsirkinCFLAGS="-g $CFLAGS"
234f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
235be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
236be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
23784958305SKirill A. ShutemovQEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
238cbbab922SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu"
239be17dc90SMichael S. TsirkinLDFLAGS="-g $LDFLAGS"
240be17dc90SMichael S. Tsirkin
241ca4deeb1SPaolo Bonzini# make source path absolute
242ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd`
243ca4deeb1SPaolo Bonzini
244ac0df51dSaliguoricheck_define() {
245ac0df51dSaliguoricat > $TMPC <<EOF
246ac0df51dSaliguori#if !defined($1)
247ac0df51dSaliguori#error Not defined
248ac0df51dSaliguori#endif
249ac0df51dSaliguoriint main(void) { return 0; }
250ac0df51dSaliguoriEOF
25152166aa0SJuan Quintela  compile_object
252ac0df51dSaliguori}
253ac0df51dSaliguori
2542ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
2552ff6b91eSJuan Quintela  # command line argument
2562ff6b91eSJuan Quintela  :
2572ff6b91eSJuan Quintelaelif check_define __i386__ ; then
258ac0df51dSaliguori  cpu="i386"
259ac0df51dSaliguorielif check_define __x86_64__ ; then
260ac0df51dSaliguori  cpu="x86_64"
2613aa9bd6cSblueswir1elif check_define __sparc__ ; then
2623aa9bd6cSblueswir1  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
2633aa9bd6cSblueswir1  # They must be specified using --sparc_cpu
2643aa9bd6cSblueswir1  if check_define __arch64__ ; then
2653aa9bd6cSblueswir1    cpu="sparc64"
2663aa9bd6cSblueswir1  else
2673aa9bd6cSblueswir1    cpu="sparc"
2683aa9bd6cSblueswir1  fi
269fdf7ed96Smalcelif check_define _ARCH_PPC ; then
270fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
271fdf7ed96Smalc    cpu="ppc64"
272ac0df51dSaliguori  else
273fdf7ed96Smalc    cpu="ppc"
274fdf7ed96Smalc  fi
275afa05235SAurelien Jarnoelif check_define __mips__ ; then
276afa05235SAurelien Jarno  cpu="mips"
277477ba620SAurelien Jarnoelif check_define __ia64__ ; then
278477ba620SAurelien Jarno  cpu="ia64"
279d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
280d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
281d66ed0eaSAurelien Jarno    cpu="s390x"
282d66ed0eaSAurelien Jarno  else
283d66ed0eaSAurelien Jarno    cpu="s390"
284d66ed0eaSAurelien Jarno  fi
285fdf7ed96Smalcelse
286fdf7ed96Smalc  cpu=`uname -m`
287ac0df51dSaliguorifi
288ac0df51dSaliguori
2897d13299dSbellardcase "$cpu" in
290d2fbca94SGuan Xuetao  alpha|cris|ia64|lm32|m68k|microblaze|ppc|ppc64|sparc64|unicore32)
291ea8f20f8SJuan Quintela    cpu="$cpu"
292ea8f20f8SJuan Quintela  ;;
2937d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
29497a847bcSbellard    cpu="i386"
2957d13299dSbellard  ;;
296aaa5fa14Saurel32  x86_64|amd64)
297aaa5fa14Saurel32    cpu="x86_64"
298aaa5fa14Saurel32  ;;
299ba68055eSbellard  armv*b)
300808c4954Sbellard    cpu="armv4b"
301808c4954Sbellard  ;;
302ba68055eSbellard  armv*l)
3037d13299dSbellard    cpu="armv4l"
3047d13299dSbellard  ;;
305f54b3f92Saurel32  parisc|parisc64)
306f54b3f92Saurel32    cpu="hppa"
307f54b3f92Saurel32  ;;
308afa05235SAurelien Jarno  mips*)
309afa05235SAurelien Jarno    cpu="mips"
310afa05235SAurelien Jarno  ;;
31124e804ecSAlexander Graf  s390)
312fb3e5849Sbellard    cpu="s390"
313fb3e5849Sbellard  ;;
31424e804ecSAlexander Graf  s390x)
31524e804ecSAlexander Graf    cpu="s390x"
31624e804ecSAlexander Graf  ;;
3173142255cSblueswir1  sparc|sun4[cdmuv])
318ae228531Sbellard    cpu="sparc"
319ae228531Sbellard  ;;
3207d13299dSbellard  *)
321a447d4dcSPaolo Bonzini    echo "Unsupported CPU = $cpu"
322a447d4dcSPaolo Bonzini    exit 1
3237d13299dSbellard  ;;
3247d13299dSbellardesac
325e2d52ad3SJuan Quintela
3267d13299dSbellard# OS specific
327ac0df51dSaliguoriif check_define __linux__ ; then
328ac0df51dSaliguori  targetos="Linux"
329ac0df51dSaliguorielif check_define _WIN32 ; then
330ac0df51dSaliguori  targetos='MINGW32'
331169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then
332169dc5d3Sblueswir1  targetos='OpenBSD'
333169dc5d3Sblueswir1elif check_define __sun__ ; then
334169dc5d3Sblueswir1  targetos='SunOS'
335179cf400SAndreas Färberelif check_define __HAIKU__ ; then
336179cf400SAndreas Färber  targetos='Haiku'
337ac0df51dSaliguorielse
3387d13299dSbellard  targetos=`uname -s`
339ac0df51dSaliguorifi
3400dbfc675SJuan Quintela
3417d13299dSbellardcase $targetos in
342c326e0afSbellardCYGWIN*)
343c326e0afSbellard  mingw32="yes"
344a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
345d5631638Smalc  audio_possible_drivers="winwave sdl"
346d5631638Smalc  audio_drv_list="winwave"
347c326e0afSbellard;;
34867b915a5SbellardMINGW32*)
34967b915a5Sbellard  mingw32="yes"
350d5631638Smalc  audio_possible_drivers="winwave dsound sdl fmod"
351d5631638Smalc  audio_drv_list="winwave"
35267b915a5Sbellard;;
3535c40d2bdSthsGNU/kFreeBSD)
354a167ba50SAurelien Jarno  bsd="yes"
3550c58ac1cSmalc  audio_drv_list="oss"
356f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
3575c40d2bdSths;;
3587d3505c5SbellardFreeBSD)
3597d3505c5Sbellard  bsd="yes"
3600db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3610c58ac1cSmalc  audio_drv_list="oss"
362f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
363f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
364f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
3657d3505c5Sbellard;;
366c5e97233Sblueswir1DragonFly)
367c5e97233Sblueswir1  bsd="yes"
3680db4a067SPaolo Bonzini  make="${MAKE-gmake}"
369c5e97233Sblueswir1  audio_drv_list="oss"
370c5e97233Sblueswir1  audio_possible_drivers="oss sdl esd pa"
371c5e97233Sblueswir1;;
3727d3505c5SbellardNetBSD)
3737d3505c5Sbellard  bsd="yes"
3740db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3750c58ac1cSmalc  audio_drv_list="oss"
376c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
3778ef92a88Sblueswir1  oss_lib="-lossaudio"
3787d3505c5Sbellard;;
3797d3505c5SbellardOpenBSD)
3807d3505c5Sbellard  bsd="yes"
3810db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3820c58ac1cSmalc  audio_drv_list="oss"
383c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
3842f6a1ab0Sblueswir1  oss_lib="-lossaudio"
3857d3505c5Sbellard;;
38683fb7adfSbellardDarwin)
38783fb7adfSbellard  bsd="yes"
38883fb7adfSbellard  darwin="yes"
3890dbfc675SJuan Quintela  # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
3900dbfc675SJuan Quintela  # run 64-bit userspace code
391aab8588aSmalc  if [ "$cpu" = "i386" ] ; then
3921b0f9cc2Saliguori    is_x86_64=`sysctl -n hw.optional.x86_64`
393aab8588aSmalc    [ "$is_x86_64" = "1" ] && cpu=x86_64
3941b0f9cc2Saliguori  fi
3951b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
396a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
3970c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
3981b0f9cc2Saliguori  else
399a558ee17SJuan Quintela    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
4001b0f9cc2Saliguori  fi
401831b7825Sths  darwin_user="yes"
402fd677642Sths  cocoa="yes"
4030c58ac1cSmalc  audio_drv_list="coreaudio"
404c2de5c91Smalc  audio_possible_drivers="coreaudio sdl fmod"
4050c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
4067973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
40783fb7adfSbellard;;
408ec530c81SbellardSunOS)
409ec530c81Sbellard  solaris="yes"
4100db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4110db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
412fa58948dSBlue Swirl  ld="gld"
4130475a5caSths  needs_libsunmath="no"
414c2b84fabSths  solarisrev=`uname -r | cut -f2 -d.`
415ef18c883Sths  # have to select again, because `uname -m` returns i86pc
416ef18c883Sths  # even on an x86_64 box.
417ef18c883Sths  solariscpu=`isainfo -k`
418ef18c883Sths  if test "${solariscpu}" = "amd64" ; then
419ef18c883Sths    cpu="x86_64"
420ef18c883Sths  fi
421c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
4220475a5caSths    if test "$solarisrev" -le 9 ; then
4230475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
4240475a5caSths        needs_libsunmath="yes"
425f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
426f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
427f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
4280475a5caSths      else
4290475a5caSths        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
4300475a5caSths        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
4310475a5caSths        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
4320475a5caSths        echo "Studio 11 can be downloaded from www.sun.com."
4330475a5caSths        exit 1
4340475a5caSths      fi
4350475a5caSths    fi
43686b2bd93Sths  fi
4376b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
4380c58ac1cSmalc    audio_drv_list="oss"
4396b4d2ba1Sths  fi
440c2de5c91Smalc  audio_possible_drivers="oss sdl"
441d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
442d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
443d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
444d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
445a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
446e174c0bbSJuan Quintela  LIBS="-lsocket -lnsl -lresolv $LIBS"
447ec530c81Sbellard;;
448b29fe3edSmalcAIX)
449b29fe3edSmalc  aix="yes"
4500db4a067SPaolo Bonzini  make="${MAKE-gmake}"
451b29fe3edSmalc;;
452179cf400SAndreas FärberHaiku)
453179cf400SAndreas Färber  haiku="yes"
454179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
455179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
456179cf400SAndreas Färber;;
457fb065187Sbellard*)
4580c58ac1cSmalc  audio_drv_list="oss"
459b8e59f18Smalc  audio_possible_drivers="oss alsa sdl esd pa"
4605327cf48Sbellard  linux="yes"
461831b7825Sths  linux_user="yes"
46268063649Sblueswir1  usb="linux"
463af2be207SJan Kiszka  kvm="yes"
464af2be207SJan Kiszka  vhost_net="yes"
46507f4ddbfSbellard  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
466c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
467c9ec1fe4Sbellard  fi
468fb065187Sbellard;;
4697d13299dSbellardesac
4707d13299dSbellard
4717d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
472b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
47368063649Sblueswir1    usb="bsd"
47483fb7adfSbellard  fi
47584778508Sblueswir1  bsd_user="yes"
4767d3505c5Sbellardfi
4777d3505c5Sbellard
4780db4a067SPaolo Bonzini: ${make=${MAKE-make}}
4790db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
480c886edfbSBlue Swirl: ${python=${PYTHON-python}}
4810db4a067SPaolo Bonzini
4823457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
4833457a3f8SJuan Quintela  EXESUF=".exe"
484a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
485e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
486e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
48708f3896aSStefan Weil  LIBS="-lwinmm -lws2_32 -liberty -liphlpapi $LIBS"
488683035deSPaolo Bonzini  prefix="c:/Program Files/Qemu"
489683035deSPaolo Bonzini  mandir="\${prefix}"
490683035deSPaolo Bonzini  datadir="\${prefix}"
491683035deSPaolo Bonzini  docdir="\${prefix}"
492683035deSPaolo Bonzini  bindir="\${prefix}"
493683035deSPaolo Bonzini  sysconfdir="\${prefix}"
494683035deSPaolo Bonzini  confsuffix=""
4953457a3f8SJuan Quintelafi
4963457a3f8SJuan Quintela
497487fefdbSAnthony Liguoriwerror=""
49885aa5189Sbellard
4997d13299dSbellardfor opt do
500a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
5017d13299dSbellard  case "$opt" in
5022efc3265Sbellard  --help|-h) show_help=yes
5032efc3265Sbellard  ;;
50499123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
50599123e13SMike Frysinger  ;;
506b1a550a0Spbrook  --prefix=*) prefix="$optarg"
5077d13299dSbellard  ;;
508b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
50932ce6337Sbellard  ;;
510ca4deeb1SPaolo Bonzini  --source-path=*)
5117d13299dSbellard  ;;
512ac0df51dSaliguori  --cross-prefix=*)
5137d13299dSbellard  ;;
514ac0df51dSaliguori  --cc=*)
5157d13299dSbellard  ;;
516b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
51783469015Sbellard  ;;
518b1a550a0Spbrook  --make=*) make="$optarg"
5197d13299dSbellard  ;;
5206a882643Spbrook  --install=*) install="$optarg"
5216a882643Spbrook  ;;
522c886edfbSBlue Swirl  --python=*) python="$optarg"
523c886edfbSBlue Swirl  ;;
524e2a2ed06SJuan Quintela  --extra-cflags=*)
5257d13299dSbellard  ;;
526e2a2ed06SJuan Quintela  --extra-ldflags=*)
5277d13299dSbellard  ;;
5282ff6b91eSJuan Quintela  --cpu=*)
5297d13299dSbellard  ;;
530b1a550a0Spbrook  --target-list=*) target_list="$optarg"
531de83cd02Sbellard  ;;
53274242e0fSPaolo Bonzini  --enable-trace-backend=*) trace_backend="$optarg"
53394a420b1SStefan Hajnoczi  ;;
53474242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
5359410b56cSPrerna Saxena  ;;
5367d13299dSbellard  --enable-gprof) gprof="yes"
5377d13299dSbellard  ;;
53879427693SLoïc Minier  --static)
53979427693SLoïc Minier    static="yes"
54079427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
54143ce4dfeSbellard  ;;
5420b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
5430b24e75fSPaolo Bonzini  ;;
5440b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
5450b24e75fSPaolo Bonzini  ;;
5463aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
5473aa5d2beSAlon Levy  ;;
5480f94d6daSAlon Levy  --includedir=*) includedir="$optarg"
5490f94d6daSAlon Levy  ;;
5500b24e75fSPaolo Bonzini  --datadir=*) datadir="$optarg"
5510b24e75fSPaolo Bonzini  ;;
5520b24e75fSPaolo Bonzini  --docdir=*) docdir="$optarg"
5530b24e75fSPaolo Bonzini  ;;
554ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
55507381cc1SAnthony Liguori  ;;
55697a847bcSbellard  --disable-sdl) sdl="no"
55797a847bcSbellard  ;;
558c4198157SJuan Quintela  --enable-sdl) sdl="yes"
559c4198157SJuan Quintela  ;;
560821601eaSJes Sorensen  --disable-vnc) vnc="no"
561821601eaSJes Sorensen  ;;
562821601eaSJes Sorensen  --enable-vnc) vnc="yes"
563821601eaSJes Sorensen  ;;
564b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
565102a52e4Sbellard  ;;
566c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
567c2de5c91Smalc  ;;
5682f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
5692f6a1ab0Sblueswir1  ;;
5702fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
5710c58ac1cSmalc  ;;
5720c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
5730c58ac1cSmalc  ;;
574eb852011SMarkus Armbruster  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
575eb852011SMarkus Armbruster  ;;
576f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
577f8393946Saurel32  ;;
578f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
579f8393946Saurel32  ;;
580b4475aa2SLuiz Capitulino  --enable-debug-mon) debug_mon="yes"
581b4475aa2SLuiz Capitulino  ;;
582b4475aa2SLuiz Capitulino  --disable-debug-mon) debug_mon="no"
583b4475aa2SLuiz Capitulino  ;;
584f3d08ee6SPaul Brook  --enable-debug)
585f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
586f3d08ee6SPaul Brook      debug_tcg="yes"
587b4475aa2SLuiz Capitulino      debug_mon="yes"
588f3d08ee6SPaul Brook      debug="yes"
589f3d08ee6SPaul Brook      strip_opt="no"
590f3d08ee6SPaul Brook  ;;
59103b4fe7dSaliguori  --enable-sparse) sparse="yes"
59203b4fe7dSaliguori  ;;
59303b4fe7dSaliguori  --disable-sparse) sparse="no"
59403b4fe7dSaliguori  ;;
5951625af87Saliguori  --disable-strip) strip_opt="no"
5961625af87Saliguori  ;;
5978d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
5988d5d2d4cSths  ;;
5991be10ad2SJuan Quintela  --enable-vnc-tls) vnc_tls="yes"
6001be10ad2SJuan Quintela  ;;
6012f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
6022f9606b3Saliguori  ;;
603ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
604ea784e3bSJuan Quintela  ;;
6052f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
6062f6f5c7aSCorentin Chary  ;;
6072f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
6082f6f5c7aSCorentin Chary  ;;
609efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
610efe556adSCorentin Chary  ;;
611efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
612efe556adSCorentin Chary  ;;
613bd023f95SCorentin Chary  --disable-vnc-thread) vnc_thread="no"
614bd023f95SCorentin Chary  ;;
615bd023f95SCorentin Chary  --enable-vnc-thread) vnc_thread="yes"
616bd023f95SCorentin Chary  ;;
617443f1376Sbellard  --disable-slirp) slirp="no"
618c20709aaSbellard  ;;
619ee682d27SStefan Weil  --disable-uuid) uuid="no"
620ee682d27SStefan Weil  ;;
621ee682d27SStefan Weil  --enable-uuid) uuid="yes"
622ee682d27SStefan Weil  ;;
623e0e6c8c0Saliguori  --disable-vde) vde="no"
6248a16d273Sths  ;;
625dfb278bdSJuan Quintela  --enable-vde) vde="yes"
626dfb278bdSJuan Quintela  ;;
627e37630caSaliguori  --disable-xen) xen="no"
628e37630caSaliguori  ;;
629fc321b4bSJuan Quintela  --enable-xen) xen="yes"
630fc321b4bSJuan Quintela  ;;
6312e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
6322e4d9fb1Saurel32  ;;
6334ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
6344ffcedb6SJuan Quintela  ;;
635fb599c9aSbalrog  --disable-bluez) bluez="no"
636fb599c9aSbalrog  ;;
637a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
638a20a6f46SJuan Quintela  ;;
6397ba1e619Saliguori  --disable-kvm) kvm="no"
6407ba1e619Saliguori  ;;
641b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
642b31a0277SJuan Quintela  ;;
643cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
644cd4ec0b4SGerd Hoffmann  ;;
645cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
646cd4ec0b4SGerd Hoffmann  ;;
64705c2a3e7Sbellard  --enable-profiler) profiler="yes"
64805c2a3e7Sbellard  ;;
649c2de5c91Smalc  --enable-cocoa)
650c2de5c91Smalc      cocoa="yes" ;
651c2de5c91Smalc      sdl="no" ;
652c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
6535b0753e0Sbellard  ;;
654cad25d69Spbrook  --disable-system) softmmu="no"
6550a8e90f4Spbrook  ;;
656cad25d69Spbrook  --enable-system) softmmu="yes"
6570a8e90f4Spbrook  ;;
6580953a80fSZachary Amsden  --disable-user)
6590953a80fSZachary Amsden      linux_user="no" ;
6600953a80fSZachary Amsden      bsd_user="no" ;
6610953a80fSZachary Amsden      darwin_user="no"
6620953a80fSZachary Amsden  ;;
6630953a80fSZachary Amsden  --enable-user) ;;
664831b7825Sths  --disable-linux-user) linux_user="no"
6650a8e90f4Spbrook  ;;
666831b7825Sths  --enable-linux-user) linux_user="yes"
667831b7825Sths  ;;
668831b7825Sths  --disable-darwin-user) darwin_user="no"
669831b7825Sths  ;;
670831b7825Sths  --enable-darwin-user) darwin_user="yes"
6710a8e90f4Spbrook  ;;
67284778508Sblueswir1  --disable-bsd-user) bsd_user="no"
67384778508Sblueswir1  ;;
67484778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
67584778508Sblueswir1  ;;
676379f6698SPaul Brook  --enable-guest-base) guest_base="yes"
677379f6698SPaul Brook  ;;
678379f6698SPaul Brook  --disable-guest-base) guest_base="no"
679379f6698SPaul Brook  ;;
68034005a00SKirill A. Shutemov  --enable-user-pie) user_pie="yes"
68134005a00SKirill A. Shutemov  ;;
68234005a00SKirill A. Shutemov  --disable-user-pie) user_pie="no"
68334005a00SKirill A. Shutemov  ;;
684c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
685c5937220Spbrook  ;;
6863142255cSblueswir1  --sparc_cpu=*)
6873142255cSblueswir1  ;;
68885aa5189Sbellard  --enable-werror) werror="yes"
68985aa5189Sbellard  ;;
69085aa5189Sbellard  --disable-werror) werror="no"
69185aa5189Sbellard  ;;
6924d3b6f6eSbalrog  --disable-curses) curses="no"
6934d3b6f6eSbalrog  ;;
694c584a6d0SJuan Quintela  --enable-curses) curses="yes"
695c584a6d0SJuan Quintela  ;;
696769ce76dSAlexander Graf  --disable-curl) curl="no"
697769ce76dSAlexander Graf  ;;
698788c8196SJuan Quintela  --enable-curl) curl="yes"
699788c8196SJuan Quintela  ;;
7002df87df7SJuan Quintela  --disable-fdt) fdt="no"
7012df87df7SJuan Quintela  ;;
7022df87df7SJuan Quintela  --enable-fdt) fdt="yes"
7032df87df7SJuan Quintela  ;;
7045495ed11SLuiz Capitulino  --disable-check-utests) check_utests="no"
7055495ed11SLuiz Capitulino  ;;
7065495ed11SLuiz Capitulino  --enable-check-utests) check_utests="yes"
7075495ed11SLuiz Capitulino  ;;
708bd0c5661Spbrook  --disable-nptl) nptl="no"
709bd0c5661Spbrook  ;;
710b0a47e79SJuan Quintela  --enable-nptl) nptl="yes"
711b0a47e79SJuan Quintela  ;;
7128ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
7138ff9cbf7Smalc  ;;
7145c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
7155c6c3a6cSChristoph Hellwig  ;;
7165c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
7175c6c3a6cSChristoph Hellwig  ;;
718758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
719758e8e38SVenkateswararao Jujjuri (JV)  ;;
720758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
721758e8e38SVenkateswararao Jujjuri (JV)  ;;
722e5d355d1Saliguori  --enable-io-thread) io_thread="yes"
723e5d355d1Saliguori  ;;
72477755340Sths  --disable-blobs) blobs="no"
72577755340Sths  ;;
7264a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
7274a19f1ecSpbrook  ;;
728a25dba17SJuan Quintela  --disable-docs) docs="no"
72970ec5dc0SAnthony Liguori  ;;
730a25dba17SJuan Quintela  --enable-docs) docs="yes"
73183a3ab8bSJuan Quintela  ;;
732d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
733d5970055SMichael S. Tsirkin  ;;
734d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
735d5970055SMichael S. Tsirkin  ;;
73620ff075bSMichael Walle  --disable-opengl) opengl="no"
73720ff075bSMichael Walle  ;;
73820ff075bSMichael Walle  --enable-opengl) opengl="yes"
73920ff075bSMichael Walle  ;;
7406bde81cbSPaolo Bonzini  --*dir)
7416bde81cbSPaolo Bonzini  ;;
742f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
743f27aaf4bSChristian Brunner  ;;
744f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
745f27aaf4bSChristian Brunner  ;;
74636707144SAlon Levy  --disable-smartcard) smartcard="no"
74736707144SAlon Levy  ;;
74836707144SAlon Levy  --enable-smartcard) smartcard="yes"
74936707144SAlon Levy  ;;
750111a38b0SRobert Relyea  --disable-smartcard-nss) smartcard_nss="no"
751111a38b0SRobert Relyea  ;;
752111a38b0SRobert Relyea  --enable-smartcard-nss) smartcard_nss="yes"
753111a38b0SRobert Relyea  ;;
75469354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
75569354a83SHans de Goede  ;;
75669354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
75769354a83SHans de Goede  ;;
7581ece9905SAlon Levy  --disable-zlib-test) zlib="no"
7591ece9905SAlon Levy  ;;
7607f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
7617f1559c6Sbalrog  ;;
7627d13299dSbellard  esac
7637d13299dSbellarddone
7647d13299dSbellard
7653142255cSblueswir1#
7663142255cSblueswir1# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
767a558ee17SJuan Quintela# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
7683142255cSblueswir1#
769379f6698SPaul Brookhost_guest_base="no"
77040293e58Sbellardcase "$cpu" in
771ed968ff1SJuan Quintela    sparc) case $sparc_cpu in
772ed968ff1SJuan Quintela           v7|v8)
773a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
774ed968ff1SJuan Quintela           ;;
775ed968ff1SJuan Quintela           v8plus|v8plusa)
776a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
777ed968ff1SJuan Quintela           ;;
778ed968ff1SJuan Quintela           *) # sparc_cpu not defined in the command line
779a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
780ed968ff1SJuan Quintela           esac
7810c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
782a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
783762e8230Sblueswir1           if test "$solaris" = "no" ; then
784a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
785c81da56eSJuan Quintela             helper_cflags="-ffixed-i0"
786762e8230Sblueswir1           fi
7873142255cSblueswir1           ;;
788ed968ff1SJuan Quintela    sparc64)
789a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
7900c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
791a558ee17SJuan Quintela           QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
792ed968ff1SJuan Quintela           if test "$solaris" != "no" ; then
793a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
794762e8230Sblueswir1           fi
7953142255cSblueswir1           ;;
79676d83bdeSths    s390)
79728d7cc49SRichard Henderson           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
79828d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
79948bb3750SRichard Henderson           host_guest_base="yes"
80028d7cc49SRichard Henderson           ;;
80128d7cc49SRichard Henderson    s390x)
80228d7cc49SRichard Henderson           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
80328d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
80448bb3750SRichard Henderson           host_guest_base="yes"
80576d83bdeSths           ;;
80640293e58Sbellard    i386)
807a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
8080c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8092b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
810c81da56eSJuan Quintela           helper_cflags="-fomit-frame-pointer"
811379f6698SPaul Brook           host_guest_base="yes"
81240293e58Sbellard           ;;
81340293e58Sbellard    x86_64)
814a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
8150c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
8162b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
817379f6698SPaul Brook           host_guest_base="yes"
818379f6698SPaul Brook           ;;
819379f6698SPaul Brook    arm*)
820379f6698SPaul Brook           host_guest_base="yes"
82140293e58Sbellard           ;;
822f6548c0aSmalc    ppc*)
823f6548c0aSmalc           host_guest_base="yes"
824f6548c0aSmalc           ;;
825cc01cc8eSAurelien Jarno    mips*)
826cc01cc8eSAurelien Jarno           host_guest_base="yes"
827cc01cc8eSAurelien Jarno           ;;
828477ba620SAurelien Jarno    ia64*)
829477ba620SAurelien Jarno           host_guest_base="yes"
830477ba620SAurelien Jarno           ;;
831fd76e73aSRichard Henderson    hppa*)
832fd76e73aSRichard Henderson           host_guest_base="yes"
833fd76e73aSRichard Henderson           ;;
834d2fbca94SGuan Xuetao    unicore32*)
835d2fbca94SGuan Xuetao           host_guest_base="yes"
836d2fbca94SGuan Xuetao           ;;
8373142255cSblueswir1esac
8383142255cSblueswir1
839379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base"
840379f6698SPaul Brook
84160e0df25SPeter Maydell
84260e0df25SPeter Maydelldefault_target_list=""
84360e0df25SPeter Maydell
84460e0df25SPeter Maydell# these targets are portable
84560e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then
84660e0df25SPeter Maydell    default_target_list="\
84760e0df25SPeter Maydelli386-softmmu \
84860e0df25SPeter Maydellx86_64-softmmu \
849b758aca1SRichard Hendersonalpha-softmmu \
85060e0df25SPeter Maydellarm-softmmu \
85160e0df25SPeter Maydellcris-softmmu \
85260e0df25SPeter Maydelllm32-softmmu \
85360e0df25SPeter Maydellm68k-softmmu \
85460e0df25SPeter Maydellmicroblaze-softmmu \
85560e0df25SPeter Maydellmicroblazeel-softmmu \
85660e0df25SPeter Maydellmips-softmmu \
85760e0df25SPeter Maydellmipsel-softmmu \
85860e0df25SPeter Maydellmips64-softmmu \
85960e0df25SPeter Maydellmips64el-softmmu \
86060e0df25SPeter Maydellppc-softmmu \
86160e0df25SPeter Maydellppcemb-softmmu \
86260e0df25SPeter Maydellppc64-softmmu \
86360e0df25SPeter Maydellsh4-softmmu \
86460e0df25SPeter Maydellsh4eb-softmmu \
86560e0df25SPeter Maydellsparc-softmmu \
86660e0df25SPeter Maydellsparc64-softmmu \
8670f3301d4SAlexander Grafs390x-softmmu \
86860e0df25SPeter Maydell"
86960e0df25SPeter Maydellfi
87060e0df25SPeter Maydell# the following are Linux specific
87160e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then
87260e0df25SPeter Maydell    default_target_list="${default_target_list}\
87360e0df25SPeter Maydelli386-linux-user \
87460e0df25SPeter Maydellx86_64-linux-user \
87560e0df25SPeter Maydellalpha-linux-user \
87660e0df25SPeter Maydellarm-linux-user \
87760e0df25SPeter Maydellarmeb-linux-user \
87860e0df25SPeter Maydellcris-linux-user \
87960e0df25SPeter Maydellm68k-linux-user \
88060e0df25SPeter Maydellmicroblaze-linux-user \
88160e0df25SPeter Maydellmicroblazeel-linux-user \
88260e0df25SPeter Maydellmips-linux-user \
88360e0df25SPeter Maydellmipsel-linux-user \
88460e0df25SPeter Maydellppc-linux-user \
88560e0df25SPeter Maydellppc64-linux-user \
88660e0df25SPeter Maydellppc64abi32-linux-user \
88760e0df25SPeter Maydellsh4-linux-user \
88860e0df25SPeter Maydellsh4eb-linux-user \
88960e0df25SPeter Maydellsparc-linux-user \
89060e0df25SPeter Maydellsparc64-linux-user \
89160e0df25SPeter Maydellsparc32plus-linux-user \
89260e0df25SPeter Maydellunicore32-linux-user \
8930f3301d4SAlexander Grafs390x-linux-user \
89460e0df25SPeter Maydell"
89560e0df25SPeter Maydellfi
89660e0df25SPeter Maydell# the following are Darwin specific
89760e0df25SPeter Maydellif [ "$darwin_user" = "yes" ] ; then
89860e0df25SPeter Maydell    default_target_list="$default_target_list i386-darwin-user ppc-darwin-user "
89960e0df25SPeter Maydellfi
90060e0df25SPeter Maydell# the following are BSD specific
90160e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then
90260e0df25SPeter Maydell    default_target_list="${default_target_list}\
90360e0df25SPeter Maydelli386-bsd-user \
90460e0df25SPeter Maydellx86_64-bsd-user \
90560e0df25SPeter Maydellsparc-bsd-user \
90660e0df25SPeter Maydellsparc64-bsd-user \
90760e0df25SPeter Maydell"
90860e0df25SPeter Maydellfi
90960e0df25SPeter Maydell
910af5db58eSpbrookif test x"$show_help" = x"yes" ; then
911af5db58eSpbrookcat << EOF
912af5db58eSpbrook
913af5db58eSpbrookUsage: configure [options]
914af5db58eSpbrookOptions: [defaults in brackets after descriptions]
915af5db58eSpbrook
916af5db58eSpbrookEOF
917af5db58eSpbrookecho "Standard options:"
918af5db58eSpbrookecho "  --help                   print this message"
919af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
920af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
921af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
92260e0df25SPeter Maydellecho "  --target-list=LIST       set target list (default: build everything)"
92360e0df25SPeter Maydellecho "Available targets: $default_target_list" | \
92460e0df25SPeter Maydell    fold -s -w 53 | sed -e 's/^/                           /'
925af5db58eSpbrookecho ""
926af5db58eSpbrookecho "Advanced options (experts only):"
927af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
928af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
929af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
9300bfe8cc0SPaolo Bonziniecho "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
9310bfe8cc0SPaolo Bonziniecho "                           build time"
932a558ee17SJuan Quintelaecho "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
933e3fc14c3SJan Kiszkaecho "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
934af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
9356a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
936c886edfbSBlue Swirlecho "  --python=PYTHON          use specified python [$python]"
937af5db58eSpbrookecho "  --static                 enable static build [$static]"
9380b24e75fSPaolo Bonziniecho "  --mandir=PATH            install man pages in PATH"
9390b24e75fSPaolo Bonziniecho "  --datadir=PATH           install firmware in PATH"
9400b24e75fSPaolo Bonziniecho "  --docdir=PATH            install documentation in PATH"
9410b24e75fSPaolo Bonziniecho "  --bindir=PATH            install binaries in PATH"
9420b24e75fSPaolo Bonziniecho "  --sysconfdir=PATH        install config in PATH/qemu"
943f8393946Saurel32echo "  --enable-debug-tcg       enable TCG debugging"
944f8393946Saurel32echo "  --disable-debug-tcg      disable TCG debugging (default)"
94509695a4aSStefan Weilecho "  --enable-debug           enable common debug build options"
946890b1658Saliguoriecho "  --enable-sparse          enable sparse checker"
947890b1658Saliguoriecho "  --disable-sparse         disable sparse checker (default)"
9481625af87Saliguoriecho "  --disable-strip          disable stripping binaries"
94985aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
950fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
951c4198157SJuan Quintelaecho "  --enable-sdl             enable SDL"
952821601eaSJes Sorensenecho "  --disable-vnc            disable VNC"
953821601eaSJes Sorensenecho "  --enable-vnc             enable VNC"
954af5db58eSpbrookecho "  --enable-cocoa           enable COCOA (Mac OS X only)"
955c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
956c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
9574c9b53e3Smalcecho "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
9584c9b53e3Smalcecho "                           Available cards: $audio_possible_cards"
959eb852011SMarkus Armbrusterecho "  --block-drv-whitelist=L  set block driver whitelist"
960eb852011SMarkus Armbrusterecho "                           (affects only QEMU, not qemu-img)"
9618ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
962e37630caSaliguoriecho "  --disable-xen            disable xen backend driver support"
963fc321b4bSJuan Quintelaecho "  --enable-xen             enable xen backend driver support"
9642e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
9654ffcedb6SJuan Quintelaecho "  --enable-brlapi          enable BrlAPI"
9668d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
9671be10ad2SJuan Quintelaecho "  --enable-vnc-tls         enable TLS encryption for VNC server"
9682f9606b3Saliguoriecho "  --disable-vnc-sasl       disable SASL encryption for VNC server"
969ea784e3bSJuan Quintelaecho "  --enable-vnc-sasl        enable SASL encryption for VNC server"
9702f6f5c7aSCorentin Charyecho "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
9712f6f5c7aSCorentin Charyecho "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
97296763cf9SCorentin Charyecho "  --disable-vnc-png        disable PNG compression for VNC server (default)"
973efe556adSCorentin Charyecho "  --enable-vnc-png         enable PNG compression for VNC server"
974bd023f95SCorentin Charyecho "  --disable-vnc-thread     disable threaded VNC server"
975bd023f95SCorentin Charyecho "  --enable-vnc-thread      enable threaded VNC server"
976af896aaaSpbrookecho "  --disable-curses         disable curses output"
977c584a6d0SJuan Quintelaecho "  --enable-curses          enable curses output"
978769ce76dSAlexander Grafecho "  --disable-curl           disable curl connectivity"
979788c8196SJuan Quintelaecho "  --enable-curl            enable curl connectivity"
9802df87df7SJuan Quintelaecho "  --disable-fdt            disable fdt device tree"
9812df87df7SJuan Quintelaecho "  --enable-fdt             enable fdt device tree"
9825495ed11SLuiz Capitulinoecho "  --disable-check-utests   disable check unit-tests"
9835495ed11SLuiz Capitulinoecho "  --enable-check-utests    enable check unit-tests"
984fb599c9aSbalrogecho "  --disable-bluez          disable bluez stack connectivity"
985a20a6f46SJuan Quintelaecho "  --enable-bluez           enable bluez stack connectivity"
9866093d3d4SPeter Maydellecho "  --disable-slirp          disable SLIRP userspace network connectivity"
9877ba1e619Saliguoriecho "  --disable-kvm            disable KVM acceleration support"
988b31a0277SJuan Quintelaecho "  --enable-kvm             enable KVM acceleration support"
989bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
990e5934d33SAndre Przywaraecho "  --enable-nptl            enable usermode NPTL support"
991af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
992af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
9930953a80fSZachary Amsdenecho "  --enable-user            enable supported user emulation targets"
9940953a80fSZachary Amsdenecho "  --disable-user           disable all user emulation targets"
995831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
996831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
997831b7825Sthsecho "  --enable-darwin-user     enable all darwin usermode emulation targets"
998831b7825Sthsecho "  --disable-darwin-user    disable all darwin usermode emulation targets"
99984778508Sblueswir1echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
100084778508Sblueswir1echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
1001379f6698SPaul Brookecho "  --enable-guest-base      enable GUEST_BASE support for usermode"
1002379f6698SPaul Brookecho "                           emulation targets"
1003379f6698SPaul Brookecho "  --disable-guest-base     disable GUEST_BASE support"
100434005a00SKirill A. Shutemovecho "  --enable-user-pie        build usermode emulation targets as PIE"
100534005a00SKirill A. Shutemovecho "  --disable-user-pie       do not build usermode emulation targets as PIE"
1006af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
1007af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
10082f6a1ab0Sblueswir1echo "  --oss-lib                path to OSS library"
1009c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
10103142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
1011ee682d27SStefan Weilecho "  --disable-uuid           disable uuid support"
1012ee682d27SStefan Weilecho "  --enable-uuid            enable uuid support"
1013e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
1014dfb278bdSJuan Quintelaecho "  --enable-vde             enable support for vde network"
10155c6c3a6cSChristoph Hellwigecho "  --disable-linux-aio      disable Linux AIO support"
10165c6c3a6cSChristoph Hellwigecho "  --enable-linux-aio       enable Linux AIO support"
1017758e8e38SVenkateswararao Jujjuri (JV)echo "  --disable-attr           disables attr and xattr support"
1018758e8e38SVenkateswararao Jujjuri (JV)echo "  --enable-attr            enable attr and xattr support"
1019e5d355d1Saliguoriecho "  --enable-io-thread       enable IO thread"
102077755340Sthsecho "  --disable-blobs          disable installing provided firmware blobs"
1021d2807bc9SDirk Ullrichecho "  --enable-docs            enable documentation build"
1022d2807bc9SDirk Ullrichecho "  --disable-docs           disable documentation build"
1023d5970055SMichael S. Tsirkinecho "  --disable-vhost-net      disable vhost-net acceleration support"
1024d5970055SMichael S. Tsirkinecho "  --enable-vhost-net       enable vhost-net acceleration support"
1025320fba2aSFabien Chouteauecho "  --enable-trace-backend=B Set trace backend"
1026320fba2aSFabien Chouteauecho "                           Available backends:" $("$source_path"/scripts/tracetool --list-backends)
102774242e0fSPaolo Bonziniecho "  --with-trace-file=NAME   Full PATH,NAME of file to store traces"
10289410b56cSPrerna Saxenaecho "                           Default:trace-<pid>"
1029cd4ec0b4SGerd Hoffmannecho "  --disable-spice          disable spice"
1030cd4ec0b4SGerd Hoffmannecho "  --enable-spice           enable spice"
1031f27aaf4bSChristian Brunnerecho "  --enable-rbd             enable building the rados block device (rbd)"
103236707144SAlon Levyecho "  --disable-smartcard      disable smartcard support"
103336707144SAlon Levyecho "  --enable-smartcard       enable smartcard support"
1034111a38b0SRobert Relyeaecho "  --disable-smartcard-nss  disable smartcard nss support"
1035111a38b0SRobert Relyeaecho "  --enable-smartcard-nss   enable smartcard nss support"
103669354a83SHans de Goedeecho "  --disable-usb-redir      disable usb network redirection support"
103769354a83SHans de Goedeecho "  --enable-usb-redir       enable usb network redirection support"
1038af5db58eSpbrookecho ""
10395bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
1040af5db58eSpbrookexit 1
1041af5db58eSpbrookfi
1042af5db58eSpbrook
10438d05095cSPaolo Bonzini# check that the C compiler works.
10448d05095cSPaolo Bonzinicat > $TMPC <<EOF
10458d05095cSPaolo Bonziniint main(void) {}
10468d05095cSPaolo BonziniEOF
10478d05095cSPaolo Bonzini
10488d05095cSPaolo Bonziniif compile_object ; then
10498d05095cSPaolo Bonzini  : C compiler works ok
10508d05095cSPaolo Bonzinielse
10518d05095cSPaolo Bonzini    echo "ERROR: \"$cc\" either does not exist or does not work"
10528d05095cSPaolo Bonzini    exit 1
10538d05095cSPaolo Bonzinifi
10548d05095cSPaolo Bonzini
10558d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
10568d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
10578d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1058f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags"
10598d05095cSPaolo Bonzinicat > $TMPC << EOF
10608d05095cSPaolo Bonziniint main(void) { return 0; }
10618d05095cSPaolo BonziniEOF
10628d05095cSPaolo Bonzinifor flag in $gcc_flags; do
10638d05095cSPaolo Bonzini    if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
10648d05095cSPaolo Bonzini	QEMU_CFLAGS="$QEMU_CFLAGS $flag"
10658d05095cSPaolo Bonzini    fi
10668d05095cSPaolo Bonzinidone
10678d05095cSPaolo Bonzini
1068ec530c81Sbellard#
1069ec530c81Sbellard# Solaris specific configure tool chain decisions
1070ec530c81Sbellard#
1071ec530c81Sbellardif test "$solaris" = "yes" ; then
10726792aa11SLoïc Minier  if has $install; then
10736792aa11SLoïc Minier    :
10746792aa11SLoïc Minier  else
1075ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
1076ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
1077ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1078ec530c81Sbellard    exit 1
1079ec530c81Sbellard  fi
10806792aa11SLoïc Minier  if test "`path_of $install`" = "/usr/sbin/install" ; then
1081ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
1082ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
1083ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1084ec530c81Sbellard    exit 1
1085ec530c81Sbellard  fi
10866792aa11SLoïc Minier  if has ar; then
10876792aa11SLoïc Minier    :
10886792aa11SLoïc Minier  else
1089ec530c81Sbellard    echo "Error: No path includes ar"
1090ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
1091ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
1092ec530c81Sbellard    fi
1093ec530c81Sbellard    exit 1
1094ec530c81Sbellard  fi
1095ec530c81Sbellardfi
1096ec530c81Sbellard
1097c886edfbSBlue Swirlif has $python; then
1098c886edfbSBlue Swirl  :
1099c886edfbSBlue Swirlelse
1100c886edfbSBlue Swirl  echo "Python not found. Use --python=/path/to/python"
1101c886edfbSBlue Swirl  exit 1
1102c886edfbSBlue Swirlfi
1103c886edfbSBlue Swirl
11045327cf48Sbellardif test -z "$target_list" ; then
110560e0df25SPeter Maydell    target_list="$default_target_list"
11066e20a45fSbellardelse
1107b1a550a0Spbrook    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
11085327cf48Sbellardfi
11090a8e90f4Spbrookif test -z "$target_list" ; then
11100a8e90f4Spbrook    echo "No targets enabled"
11110a8e90f4Spbrook    exit 1
11120a8e90f4Spbrookfi
1113f55fe278SPaolo Bonzini# see if system emulation was really requested
1114f55fe278SPaolo Bonzinicase " $target_list " in
1115f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1116f55fe278SPaolo Bonzini  ;;
1117f55fe278SPaolo Bonzini  *) softmmu=no
1118f55fe278SPaolo Bonzini  ;;
1119f55fe278SPaolo Bonziniesac
11205327cf48Sbellard
1121249247c9SJuan Quintelafeature_not_found() {
1122249247c9SJuan Quintela  feature=$1
1123249247c9SJuan Quintela
1124249247c9SJuan Quintela  echo "ERROR"
1125249247c9SJuan Quintela  echo "ERROR: User requested feature $feature"
11269332f6a2SSebastian Herbszt  echo "ERROR: configure was not able to find it"
1127249247c9SJuan Quintela  echo "ERROR"
1128249247c9SJuan Quintela  exit 1;
1129249247c9SJuan Quintela}
1130249247c9SJuan Quintela
11317d13299dSbellardif test -z "$cross_prefix" ; then
11327d13299dSbellard
11337d13299dSbellard# ---
11347d13299dSbellard# big/little endian test
11357d13299dSbellardcat > $TMPC << EOF
11367d13299dSbellard#include <inttypes.h>
11377d13299dSbellardint main(int argc, char ** argv){
11387d13299dSbellard        volatile uint32_t i=0x01234567;
11397d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
11407d13299dSbellard}
11417d13299dSbellardEOF
11427d13299dSbellard
114352166aa0SJuan Quintelaif compile_prog "" "" ; then
11447d13299dSbellard$TMPE && bigendian="yes"
11457d13299dSbellardelse
11467d13299dSbellardecho big/little test failed
11477d13299dSbellardfi
11487d13299dSbellard
11497d13299dSbellardelse
11507d13299dSbellard
11517d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
1152ea8f20f8SJuan Quintelacase "$cpu" in
115324e804ecSAlexander Graf  armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1154ea8f20f8SJuan Quintela    bigendian=yes
1155ea8f20f8SJuan Quintela  ;;
1156ea8f20f8SJuan Quintelaesac
11577d13299dSbellard
11587d13299dSbellardfi
11597d13299dSbellard
116070be1a2eSPaolo Bonzini# host long bits test, actually a pointer size test
116170be1a2eSPaolo Bonzinicat > $TMPC << EOF
116270be1a2eSPaolo Bonziniint sizeof_pointer_is_8[sizeof(void *) == 8 ? 1 : -1];
116370be1a2eSPaolo BonziniEOF
116470be1a2eSPaolo Bonziniif compile_object; then
1165ea8f20f8SJuan Quintelahostlongbits=64
116670be1a2eSPaolo Bonzinielse
116770be1a2eSPaolo Bonzinihostlongbits=32
116870be1a2eSPaolo Bonzinifi
1169b6853697Sbellard
1170b0a47e79SJuan Quintela
1171b0a47e79SJuan Quintela##########################################
1172b0a47e79SJuan Quintela# NPTL probe
1173b0a47e79SJuan Quintela
1174b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then
1175bd0c5661Spbrook  cat > $TMPC <<EOF
1176bd0c5661Spbrook#include <sched.h>
117730813ceaSpbrook#include <linux/futex.h>
1178bd0c5661Spbrookvoid foo()
1179bd0c5661Spbrook{
1180bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1181bd0c5661Spbrook#error bork
1182bd0c5661Spbrook#endif
1183bd0c5661Spbrook}
1184bd0c5661SpbrookEOF
1185bd0c5661Spbrook
118652166aa0SJuan Quintela  if compile_object ; then
1187b0a47e79SJuan Quintela    nptl=yes
1188bd0c5661Spbrook  else
1189b0a47e79SJuan Quintela    if test "$nptl" = "yes" ; then
1190b0a47e79SJuan Quintela      feature_not_found "nptl"
1191b0a47e79SJuan Quintela    fi
1192b0a47e79SJuan Quintela    nptl=no
1193b0a47e79SJuan Quintela  fi
1194bd0c5661Spbrookfi
1195bd0c5661Spbrook
119611d9f695Sbellard##########################################
1197ac62922eSbalrog# zlib check
1198ac62922eSbalrog
11991ece9905SAlon Levyif test "$zlib" != "no" ; then
1200ac62922eSbalrog    cat > $TMPC << EOF
1201ac62922eSbalrog#include <zlib.h>
1202ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1203ac62922eSbalrogEOF
120452166aa0SJuan Quintela    if compile_prog "" "-lz" ; then
1205ac62922eSbalrog        :
1206ac62922eSbalrog    else
1207ac62922eSbalrog        echo
1208ac62922eSbalrog        echo "Error: zlib check failed"
1209ac62922eSbalrog        echo "Make sure to have the zlib libs and headers installed."
1210ac62922eSbalrog        echo
1211ac62922eSbalrog        exit 1
1212ac62922eSbalrog    fi
12131ece9905SAlon Levyfi
1214ac62922eSbalrog
1215ac62922eSbalrog##########################################
1216e37630caSaliguori# xen probe
1217e37630caSaliguori
1218fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1219b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
1220d5b93ddfSAnthony PERARD
1221d5b93ddfSAnthony PERARD  # Xen unstable
1222e37630caSaliguori  cat > $TMPC <<EOF
1223e37630caSaliguori#include <xenctrl.h>
1224e37630caSaliguori#include <xs.h>
1225d5b93ddfSAnthony PERARD#include <stdint.h>
1226d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1227d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1228d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1229d5b93ddfSAnthony PERARD#endif
1230d5b93ddfSAnthony PERARDint main(void) {
1231d5b93ddfSAnthony PERARD  xc_interface *xc;
1232d5b93ddfSAnthony PERARD  xs_daemon_open();
1233d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
1234d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1235d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
1236b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1237d5b93ddfSAnthony PERARD  return 0;
1238d5b93ddfSAnthony PERARD}
1239e37630caSaliguoriEOF
124052166aa0SJuan Quintela  if compile_prog "" "$xen_libs" ; then
1241d5b93ddfSAnthony PERARD    xen_ctrl_version=410
1242fc321b4bSJuan Quintela    xen=yes
1243d5b93ddfSAnthony PERARD
1244d5b93ddfSAnthony PERARD  # Xen 4.0.0
1245d5b93ddfSAnthony PERARD  elif (
1246d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1247d5b93ddfSAnthony PERARD#include <xenctrl.h>
1248d5b93ddfSAnthony PERARD#include <xs.h>
1249d5b93ddfSAnthony PERARD#include <stdint.h>
1250d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1251d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1252d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1253d5b93ddfSAnthony PERARD#endif
1254d5b93ddfSAnthony PERARDint main(void) {
1255b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1256b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1257b87de24eSAnthony PERARD  };
1258d5b93ddfSAnthony PERARD  xs_daemon_open();
1259d5b93ddfSAnthony PERARD  xc_interface_open();
1260d5b93ddfSAnthony PERARD  xc_gnttab_open();
1261d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1262b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1263d5b93ddfSAnthony PERARD  return 0;
1264d5b93ddfSAnthony PERARD}
1265d5b93ddfSAnthony PERARDEOF
1266d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1267d5b93ddfSAnthony PERARD    ) ; then
1268d5b93ddfSAnthony PERARD    xen_ctrl_version=400
1269d5b93ddfSAnthony PERARD    xen=yes
1270d5b93ddfSAnthony PERARD
1271b87de24eSAnthony PERARD  # Xen 3.4.0
1272b87de24eSAnthony PERARD  elif (
1273b87de24eSAnthony PERARD      cat > $TMPC <<EOF
1274b87de24eSAnthony PERARD#include <xenctrl.h>
1275b87de24eSAnthony PERARD#include <xs.h>
1276b87de24eSAnthony PERARDint main(void) {
1277b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1278b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1279b87de24eSAnthony PERARD  };
1280b87de24eSAnthony PERARD  xs_daemon_open();
1281b87de24eSAnthony PERARD  xc_interface_open();
1282b87de24eSAnthony PERARD  xc_gnttab_open();
1283b87de24eSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1284b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1285b87de24eSAnthony PERARD  return 0;
1286b87de24eSAnthony PERARD}
1287b87de24eSAnthony PERARDEOF
1288b87de24eSAnthony PERARD      compile_prog "" "$xen_libs"
1289b87de24eSAnthony PERARD    ) ; then
1290b87de24eSAnthony PERARD    xen_ctrl_version=340
1291b87de24eSAnthony PERARD    xen=yes
1292b87de24eSAnthony PERARD
1293b87de24eSAnthony PERARD  # Xen 3.3.0
1294d5b93ddfSAnthony PERARD  elif (
1295d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1296d5b93ddfSAnthony PERARD#include <xenctrl.h>
1297d5b93ddfSAnthony PERARD#include <xs.h>
1298d5b93ddfSAnthony PERARDint main(void) {
1299d5b93ddfSAnthony PERARD  xs_daemon_open();
1300d5b93ddfSAnthony PERARD  xc_interface_open();
1301d5b93ddfSAnthony PERARD  xc_gnttab_open();
1302d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1303d5b93ddfSAnthony PERARD  return 0;
1304d5b93ddfSAnthony PERARD}
1305d5b93ddfSAnthony PERARDEOF
1306d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1307d5b93ddfSAnthony PERARD    ) ; then
1308d5b93ddfSAnthony PERARD    xen_ctrl_version=330
1309d5b93ddfSAnthony PERARD    xen=yes
1310d5b93ddfSAnthony PERARD
1311d5b93ddfSAnthony PERARD  # Xen not found or unsupported
1312e37630caSaliguori  else
1313fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
1314fc321b4bSJuan Quintela      feature_not_found "xen"
1315fc321b4bSJuan Quintela    fi
1316fc321b4bSJuan Quintela    xen=no
1317e37630caSaliguori  fi
1318d5b93ddfSAnthony PERARD
1319d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
1320d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
1321d5b93ddfSAnthony PERARD  fi
1322e37630caSaliguorifi
1323e37630caSaliguori
1324e37630caSaliguori##########################################
1325a8bd70adSPaolo Bonzini# pkg-config probe
1326f91672e5SPaolo Bonzini
1327a8bd70adSPaolo Bonziniif ! has $pkg_config; then
132808421541SPaolo Bonzini  echo warning: proceeding without "$pkg_config" >&2
132908421541SPaolo Bonzini  pkg_config=/bin/false
1330f91672e5SPaolo Bonzinifi
1331f91672e5SPaolo Bonzini
1332f91672e5SPaolo Bonzini##########################################
133344dc0ca3SAlon Levy# libtool probe
133444dc0ca3SAlon Levy
133544dc0ca3SAlon Levyif ! has libtool; then
133644dc0ca3SAlon Levy    libtool=
133744dc0ca3SAlon Levyelse
133844dc0ca3SAlon Levy    libtool=libtool
133944dc0ca3SAlon Levyfi
134044dc0ca3SAlon Levy
134144dc0ca3SAlon Levy##########################################
1342dfffc653SJuan Quintela# Sparse probe
1343dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
13440dba6195SLoïc Minier  if has cgcc; then
1345dfffc653SJuan Quintela    sparse=yes
1346dfffc653SJuan Quintela  else
1347dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
1348dfffc653SJuan Quintela      feature_not_found "sparse"
1349dfffc653SJuan Quintela    fi
1350dfffc653SJuan Quintela    sparse=no
1351dfffc653SJuan Quintela  fi
1352dfffc653SJuan Quintelafi
1353dfffc653SJuan Quintela
1354dfffc653SJuan Quintela##########################################
135511d9f695Sbellard# SDL probe
135611d9f695Sbellard
13573ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
13583ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
13593ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
13603ec87ffeSPaolo Bonzini  sdl_config=sdl-config
13613ec87ffeSPaolo Bonzinifi
13623ec87ffeSPaolo Bonzini
13633ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then
1364a8bd70adSPaolo Bonzini  sdlconfig="$pkg_config sdl"
1365fec0e3e8SStefan Weil  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
13663ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
13673ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
13689316f803SPaolo Bonzini  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1369a0dfd8a4SLoïc Minierelse
1370a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
1371a0dfd8a4SLoïc Minier    feature_not_found "sdl"
1372a0dfd8a4SLoïc Minier  fi
1373a0dfd8a4SLoïc Minier  sdl=no
13749316f803SPaolo Bonzinifi
137529e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
13763ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
13773ec87ffeSPaolo Bonzinifi
137811d9f695Sbellard
13799316f803SPaolo Bonzinisdl_too_old=no
1380c4198157SJuan Quintelaif test "$sdl" != "no" ; then
138111d9f695Sbellard  cat > $TMPC << EOF
138211d9f695Sbellard#include <SDL.h>
138311d9f695Sbellard#undef main /* We don't want SDL to override our main() */
138411d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
138511d9f695SbellardEOF
13869316f803SPaolo Bonzini  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
138774f42e18STeLeMan  if test "$static" = "yes" ; then
138874f42e18STeLeMan    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
138974f42e18STeLeMan  else
13909316f803SPaolo Bonzini    sdl_libs=`$sdlconfig --libs 2> /dev/null`
139174f42e18STeLeMan  fi
139252166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
139311d9f695Sbellard    if test "$_sdlversion" -lt 121 ; then
139411d9f695Sbellard      sdl_too_old=yes
139511d9f695Sbellard    else
1396fd677642Sths      if test "$cocoa" = "no" ; then
139711d9f695Sbellard        sdl=yes
139811d9f695Sbellard      fi
1399fd677642Sths    fi
14007c1f25b4Sbellard
140167c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
14021ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
140367c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1404f8aa6c7bSStefan Weil         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1405f8aa6c7bSStefan Weil         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
140611d9f695Sbellard      fi
140752166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
14081ac88f28SJuan Quintela	:
14091ac88f28SJuan Quintela      else
14101ac88f28SJuan Quintela        sdl=no
14117c1f25b4Sbellard      fi
14127c1f25b4Sbellard    fi # static link
1413c4198157SJuan Quintela  else # sdl not found
1414c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
1415c4198157SJuan Quintela      feature_not_found "sdl"
1416c4198157SJuan Quintela    fi
1417c4198157SJuan Quintela    sdl=no
14187c1f25b4Sbellard  fi # sdl compile test
1419fd677642Sthsfi
142011d9f695Sbellard
14215368a422Saliguoriif test "$sdl" = "yes" ; then
14225368a422Saliguori  cat > $TMPC <<EOF
14235368a422Saliguori#include <SDL.h>
14245368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
14255368a422Saliguori#include <X11/XKBlib.h>
14265368a422Saliguori#else
14275368a422Saliguori#error No x11 support
14285368a422Saliguori#endif
14295368a422Saliguoriint main(void) { return 0; }
14305368a422SaliguoriEOF
143152166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1432681306dfSJuan Quintela    sdl_libs="$sdl_libs -lX11"
14335368a422Saliguori  fi
143407d9ac44SJuan Quintela  if test "$mingw32" = "yes" ; then
143507d9ac44SJuan Quintela    sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
143607d9ac44SJuan Quintela  fi
14370705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
14385368a422Saliguorifi
14395368a422Saliguori
14408f28f3fbSths##########################################
14418d5d2d4cSths# VNC TLS detection
1442821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1443ae6b5e5aSaliguori  cat > $TMPC <<EOF
1444ae6b5e5aSaliguori#include <gnutls/gnutls.h>
1445ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1446ae6b5e5aSaliguoriEOF
1447a8bd70adSPaolo Bonzini  vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1448a8bd70adSPaolo Bonzini  vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
144952166aa0SJuan Quintela  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
14501be10ad2SJuan Quintela    vnc_tls=yes
1451a5e32cc9SJuan Quintela    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1452ae6b5e5aSaliguori  else
14531be10ad2SJuan Quintela    if test "$vnc_tls" = "yes" ; then
14541be10ad2SJuan Quintela      feature_not_found "vnc-tls"
14551be10ad2SJuan Quintela    fi
14561be10ad2SJuan Quintela    vnc_tls=no
14578d5d2d4cSths  fi
14588d5d2d4cSthsfi
14598d5d2d4cSths
14608d5d2d4cSths##########################################
14612f9606b3Saliguori# VNC SASL detection
1462821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
14632f9606b3Saliguori  cat > $TMPC <<EOF
14642f9606b3Saliguori#include <sasl/sasl.h>
14652f9606b3Saliguori#include <stdio.h>
14662f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
14672f9606b3SaliguoriEOF
14682f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
14692f9606b3Saliguori  vnc_sasl_cflags=""
14702f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
147152166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1472ea784e3bSJuan Quintela    vnc_sasl=yes
1473fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
14742f9606b3Saliguori  else
1475ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
1476ea784e3bSJuan Quintela      feature_not_found "vnc-sasl"
1477ea784e3bSJuan Quintela    fi
1478ea784e3bSJuan Quintela    vnc_sasl=no
14792f9606b3Saliguori  fi
14802f9606b3Saliguorifi
14812f9606b3Saliguori
14822f9606b3Saliguori##########################################
14832f6f5c7aSCorentin Chary# VNC JPEG detection
1484821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
14852f6f5c7aSCorentin Charycat > $TMPC <<EOF
14862f6f5c7aSCorentin Chary#include <stdio.h>
14872f6f5c7aSCorentin Chary#include <jpeglib.h>
14882f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
14892f6f5c7aSCorentin CharyEOF
14902f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
14912f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
14922f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
14932f6f5c7aSCorentin Chary    vnc_jpeg=yes
14942f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
14952f6f5c7aSCorentin Chary  else
14962f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
14972f6f5c7aSCorentin Chary      feature_not_found "vnc-jpeg"
14982f6f5c7aSCorentin Chary    fi
14992f6f5c7aSCorentin Chary    vnc_jpeg=no
15002f6f5c7aSCorentin Chary  fi
15012f6f5c7aSCorentin Charyfi
15022f6f5c7aSCorentin Chary
15032f6f5c7aSCorentin Chary##########################################
1504efe556adSCorentin Chary# VNC PNG detection
1505821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
1506efe556adSCorentin Charycat > $TMPC <<EOF
1507efe556adSCorentin Chary//#include <stdio.h>
1508efe556adSCorentin Chary#include <png.h>
1509832ce9c2SScott Wood#include <stddef.h>
1510efe556adSCorentin Charyint main(void) {
1511efe556adSCorentin Chary    png_structp png_ptr;
1512efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1513efe556adSCorentin Chary    return 0;
1514efe556adSCorentin Chary}
1515efe556adSCorentin CharyEOF
1516efe556adSCorentin Chary    vnc_png_cflags=""
1517efe556adSCorentin Chary    vnc_png_libs="-lpng"
1518efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1519efe556adSCorentin Chary    vnc_png=yes
1520efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
1521efe556adSCorentin Chary  else
1522efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
1523efe556adSCorentin Chary      feature_not_found "vnc-png"
1524efe556adSCorentin Chary    fi
1525efe556adSCorentin Chary    vnc_png=no
1526efe556adSCorentin Chary  fi
1527efe556adSCorentin Charyfi
1528efe556adSCorentin Chary
1529efe556adSCorentin Chary##########################################
153076655d6dSaliguori# fnmatch() probe, used for ACL routines
153176655d6dSaliguorifnmatch="no"
153276655d6dSaliguoricat > $TMPC << EOF
153376655d6dSaliguori#include <fnmatch.h>
153476655d6dSaliguoriint main(void)
153576655d6dSaliguori{
153676655d6dSaliguori    fnmatch("foo", "foo", 0);
153776655d6dSaliguori    return 0;
153876655d6dSaliguori}
153976655d6dSaliguoriEOF
154052166aa0SJuan Quintelaif compile_prog "" "" ; then
154176655d6dSaliguori   fnmatch="yes"
154276655d6dSaliguorifi
154376655d6dSaliguori
154476655d6dSaliguori##########################################
1545ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
1546ee682d27SStefan Weilif test "$uuid" != "no" ; then
1547ee682d27SStefan Weil  uuid_libs="-luuid"
1548ee682d27SStefan Weil  cat > $TMPC << EOF
1549ee682d27SStefan Weil#include <uuid/uuid.h>
1550ee682d27SStefan Weilint main(void)
1551ee682d27SStefan Weil{
1552ee682d27SStefan Weil    uuid_t my_uuid;
1553ee682d27SStefan Weil    uuid_generate(my_uuid);
1554ee682d27SStefan Weil    return 0;
1555ee682d27SStefan Weil}
1556ee682d27SStefan WeilEOF
1557ee682d27SStefan Weil  if compile_prog "" "$uuid_libs" ; then
1558ee682d27SStefan Weil    uuid="yes"
1559ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
1560ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
1561ee682d27SStefan Weil  else
1562ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
1563ee682d27SStefan Weil      feature_not_found "uuid"
1564ee682d27SStefan Weil    fi
1565ee682d27SStefan Weil    uuid=no
1566ee682d27SStefan Weil  fi
1567ee682d27SStefan Weilfi
1568ee682d27SStefan Weil
1569ee682d27SStefan Weil##########################################
1570dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
1571dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
1572dce512deSChristoph Hellwig  cat > $TMPC << EOF
1573dce512deSChristoph Hellwig#include <xfs/xfs.h>
1574dce512deSChristoph Hellwigint main(void)
1575dce512deSChristoph Hellwig{
1576dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
1577dce512deSChristoph Hellwig    return 0;
1578dce512deSChristoph Hellwig}
1579dce512deSChristoph HellwigEOF
1580dce512deSChristoph Hellwig  if compile_prog "" "" ; then
1581dce512deSChristoph Hellwig    xfs="yes"
1582dce512deSChristoph Hellwig  else
1583dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
1584dce512deSChristoph Hellwig      feature_not_found "xfs"
1585dce512deSChristoph Hellwig    fi
1586dce512deSChristoph Hellwig    xfs=no
1587dce512deSChristoph Hellwig  fi
1588dce512deSChristoph Hellwigfi
1589dce512deSChristoph Hellwig
1590dce512deSChristoph Hellwig##########################################
15918a16d273Sths# vde libraries probe
1592dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
15934baae0acSJuan Quintela  vde_libs="-lvdeplug"
15948a16d273Sths  cat > $TMPC << EOF
15958a16d273Sths#include <libvdeplug.h>
15964a7f0e06Spbrookint main(void)
15974a7f0e06Spbrook{
15984a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
15994a7f0e06Spbrook    vde_open("", "", &a);
16004a7f0e06Spbrook    return 0;
16014a7f0e06Spbrook}
16028a16d273SthsEOF
160352166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
16044baae0acSJuan Quintela    vde=yes
16058e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
16068e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
1607dfb278bdSJuan Quintela  else
1608dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
1609dfb278bdSJuan Quintela      feature_not_found "vde"
1610dfb278bdSJuan Quintela    fi
1611dfb278bdSJuan Quintela    vde=no
16128a16d273Sths  fi
16138a16d273Sthsfi
16148a16d273Sths
16158a16d273Sths##########################################
1616c2de5c91Smalc# Sound support libraries probe
16178f28f3fbSths
1618c2de5c91Smalcaudio_drv_probe()
1619c2de5c91Smalc{
1620c2de5c91Smalc    drv=$1
1621c2de5c91Smalc    hdr=$2
1622c2de5c91Smalc    lib=$3
1623c2de5c91Smalc    exp=$4
1624c2de5c91Smalc    cfl=$5
16258f28f3fbSths        cat > $TMPC << EOF
1626c2de5c91Smalc#include <$hdr>
1627c2de5c91Smalcint main(void) { $exp }
16288f28f3fbSthsEOF
162952166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
16308f28f3fbSths        :
16318f28f3fbSths    else
16328f28f3fbSths        echo
1633c2de5c91Smalc        echo "Error: $drv check failed"
1634c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
16358f28f3fbSths        echo
16368f28f3fbSths        exit 1
16378f28f3fbSths    fi
1638c2de5c91Smalc}
1639c2de5c91Smalc
16402fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1641c2de5c91Smalcfor drv in $audio_drv_list; do
1642c2de5c91Smalc    case $drv in
1643c2de5c91Smalc    alsa)
1644c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1645c2de5c91Smalc        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1646a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
1647c2de5c91Smalc    ;;
1648c2de5c91Smalc
1649c2de5c91Smalc    fmod)
1650c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
1651c2de5c91Smalc        echo
1652c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
1653c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1654c2de5c91Smalc        echo
1655c2de5c91Smalc        exit 1
16568f28f3fbSths    fi
1657c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1658a4bf6780SJuan Quintela    libs_softmmu="$fmod_lib $libs_softmmu"
1659c2de5c91Smalc    ;;
1660c2de5c91Smalc
1661c2de5c91Smalc    esd)
1662c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1663a4bf6780SJuan Quintela    libs_softmmu="-lesd $libs_softmmu"
166467f86e8eSJuan Quintela    audio_pt_int="yes"
1665c2de5c91Smalc    ;;
1666b8e59f18Smalc
1667b8e59f18Smalc    pa)
1668493abda6SAurelien Jarno    audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
166920fa53ecSMarc-Antoine Perennou        "pa_simple *s = 0; pa_simple_free(s); return 0;"
1670493abda6SAurelien Jarno    libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
167167f86e8eSJuan Quintela    audio_pt_int="yes"
1672b8e59f18Smalc    ;;
1673b8e59f18Smalc
1674997e690aSJuan Quintela    coreaudio)
1675997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
1676997e690aSJuan Quintela    ;;
1677997e690aSJuan Quintela
1678a4bf6780SJuan Quintela    dsound)
1679a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1680d5631638Smalc      audio_win_int="yes"
1681a4bf6780SJuan Quintela    ;;
1682a4bf6780SJuan Quintela
1683a4bf6780SJuan Quintela    oss)
1684a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
1685a4bf6780SJuan Quintela    ;;
1686a4bf6780SJuan Quintela
1687a4bf6780SJuan Quintela    sdl|wav)
16882f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
16892f6a1ab0Sblueswir1    ;;
16902f6a1ab0Sblueswir1
1691d5631638Smalc    winwave)
1692d5631638Smalc      libs_softmmu="-lwinmm $libs_softmmu"
1693d5631638Smalc      audio_win_int="yes"
1694d5631638Smalc    ;;
1695d5631638Smalc
1696e4c63a6aSmalc    *)
16971c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1698e4c63a6aSmalc        echo
1699e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
1700e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
1701e4c63a6aSmalc        echo
1702e4c63a6aSmalc        exit 1
1703e4c63a6aSmalc    }
1704e4c63a6aSmalc    ;;
1705c2de5c91Smalc    esac
1706c2de5c91Smalcdone
17078f28f3fbSths
17084d3b6f6eSbalrog##########################################
17092e4d9fb1Saurel32# BrlAPI probe
17102e4d9fb1Saurel32
17114ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
1712eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
17132e4d9fb1Saurel32  cat > $TMPC << EOF
17142e4d9fb1Saurel32#include <brlapi.h>
1715832ce9c2SScott Wood#include <stddef.h>
17162e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
17172e4d9fb1Saurel32EOF
171852166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
17192e4d9fb1Saurel32    brlapi=yes
1720264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
17214ffcedb6SJuan Quintela  else
17224ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
17234ffcedb6SJuan Quintela      feature_not_found "brlapi"
17244ffcedb6SJuan Quintela    fi
17254ffcedb6SJuan Quintela    brlapi=no
1726eb82284fSJuan Quintela  fi
1727eb82284fSJuan Quintelafi
17282e4d9fb1Saurel32
17292e4d9fb1Saurel32##########################################
17304d3b6f6eSbalrog# curses probe
1731e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then
1732e095e2f3SStefan Weil    curses_list="-lpdcurses"
1733e095e2f3SStefan Weilelse
17344f78ef9aSJuan Quintela    curses_list="-lncurses -lcurses"
1735e095e2f3SStefan Weilfi
17364d3b6f6eSbalrog
1737c584a6d0SJuan Quintelaif test "$curses" != "no" ; then
1738c584a6d0SJuan Quintela  curses_found=no
17394d3b6f6eSbalrog  cat > $TMPC << EOF
17404d3b6f6eSbalrog#include <curses.h>
17415a8ff3aaSblueswir1#ifdef __OpenBSD__
17425a8ff3aaSblueswir1#define resize_term resizeterm
17435a8ff3aaSblueswir1#endif
17445a8ff3aaSblueswir1int main(void) { resize_term(0, 0); return curses_version(); }
17454d3b6f6eSbalrogEOF
17464f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
17474f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
1748c584a6d0SJuan Quintela      curses_found=yes
17494f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
17504f78ef9aSJuan Quintela      break
17514d3b6f6eSbalrog    fi
17524f78ef9aSJuan Quintela  done
1753c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
1754c584a6d0SJuan Quintela    curses=yes
1755c584a6d0SJuan Quintela  else
1756c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
1757c584a6d0SJuan Quintela      feature_not_found "curses"
1758c584a6d0SJuan Quintela    fi
1759c584a6d0SJuan Quintela    curses=no
1760c584a6d0SJuan Quintela  fi
17614f78ef9aSJuan Quintelafi
17624d3b6f6eSbalrog
1763414f0dabSblueswir1##########################################
1764769ce76dSAlexander Graf# curl probe
1765769ce76dSAlexander Graf
1766a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then
1767a8bd70adSPaolo Bonzini  curlconfig="$pkg_config libcurl"
17684e2b0658SPaolo Bonzinielse
17694e2b0658SPaolo Bonzini  curlconfig=curl-config
17704e2b0658SPaolo Bonzinifi
17714e2b0658SPaolo Bonzini
1772788c8196SJuan Quintelaif test "$curl" != "no" ; then
1773769ce76dSAlexander Graf  cat > $TMPC << EOF
1774769ce76dSAlexander Graf#include <curl/curl.h>
17750b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
1776769ce76dSAlexander GrafEOF
17774e2b0658SPaolo Bonzini  curl_cflags=`$curlconfig --cflags 2>/dev/null`
17784e2b0658SPaolo Bonzini  curl_libs=`$curlconfig --libs 2>/dev/null`
1779b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
1780769ce76dSAlexander Graf    curl=yes
1781f0302935SJuan Quintela    libs_tools="$curl_libs $libs_tools"
1782f0302935SJuan Quintela    libs_softmmu="$curl_libs $libs_softmmu"
1783788c8196SJuan Quintela  else
1784788c8196SJuan Quintela    if test "$curl" = "yes" ; then
1785788c8196SJuan Quintela      feature_not_found "curl"
1786788c8196SJuan Quintela    fi
1787788c8196SJuan Quintela    curl=no
1788769ce76dSAlexander Graf  fi
1789769ce76dSAlexander Graffi # test "$curl"
1790769ce76dSAlexander Graf
1791769ce76dSAlexander Graf##########################################
17925495ed11SLuiz Capitulino# check framework probe
17935495ed11SLuiz Capitulino
17945495ed11SLuiz Capitulinoif test "$check_utests" != "no" ; then
17955495ed11SLuiz Capitulino  cat > $TMPC << EOF
17965495ed11SLuiz Capitulino#include <check.h>
17975495ed11SLuiz Capitulinoint main(void) { suite_create("qemu test"); return 0; }
17985495ed11SLuiz CapitulinoEOF
1799a8bd70adSPaolo Bonzini  check_libs=`$pkg_config --libs check`
18005495ed11SLuiz Capitulino  if compile_prog "" $check_libs ; then
18015495ed11SLuiz Capitulino    check_utests=yes
18025495ed11SLuiz Capitulino    libs_tools="$check_libs $libs_tools"
18035495ed11SLuiz Capitulino  else
18045495ed11SLuiz Capitulino    if test "$check_utests" = "yes" ; then
18055495ed11SLuiz Capitulino      feature_not_found "check"
18065495ed11SLuiz Capitulino    fi
18075495ed11SLuiz Capitulino    check_utests=no
18085495ed11SLuiz Capitulino  fi
18095495ed11SLuiz Capitulinofi # test "$check_utests"
18105495ed11SLuiz Capitulino
18115495ed11SLuiz Capitulino##########################################
1812fb599c9aSbalrog# bluez support probe
1813a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
1814e820e3f4Sbalrog  cat > $TMPC << EOF
1815e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
1816e820e3f4Sbalrogint main(void) { return bt_error(0); }
1817e820e3f4SbalrogEOF
1818a8bd70adSPaolo Bonzini  bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
1819a8bd70adSPaolo Bonzini  bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
182052166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
1821a20a6f46SJuan Quintela    bluez=yes
1822e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
1823e820e3f4Sbalrog  else
1824a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
1825a20a6f46SJuan Quintela      feature_not_found "bluez"
1826a20a6f46SJuan Quintela    fi
1827e820e3f4Sbalrog    bluez="no"
1828e820e3f4Sbalrog  fi
1829fb599c9aSbalrogfi
1830fb599c9aSbalrog
1831fb599c9aSbalrog##########################################
1832e18df141SAnthony Liguori# glib support probe
18331fc7bd4aSAnthony Liguoriif $pkg_config --modversion glib-2.0 > /dev/null 2>&1 ; then
18341fc7bd4aSAnthony Liguori    glib_cflags=`$pkg_config --cflags glib-2.0 2>/dev/null`
18351fc7bd4aSAnthony Liguori    glib_libs=`$pkg_config --libs glib-2.0 2>/dev/null`
1836e18df141SAnthony Liguori    libs_softmmu="$glib_libs $libs_softmmu"
1837e18df141SAnthony Liguori    libs_tools="$glib_libs $libs_tools"
1838e18df141SAnthony Liguorielse
1839e18df141SAnthony Liguori    echo "glib-2.0 required to compile QEMU"
1840e18df141SAnthony Liguori    exit 1
1841e18df141SAnthony Liguorifi
1842e18df141SAnthony Liguori
1843e18df141SAnthony Liguori##########################################
1844e5d355d1Saliguori# pthread probe
1845de65fe0fSSebastian HerbsztPTHREADLIBS_LIST="-lpthread -lpthreadGC2"
18463c529d93Saliguori
1847e5d355d1Saliguoripthread=no
1848414f0dabSblueswir1cat > $TMPC << EOF
18493c529d93Saliguori#include <pthread.h>
1850de65fe0fSSebastian Herbsztint main(void) { pthread_create(0,0,0,0); return 0; }
1851414f0dabSblueswir1EOF
1852bd00d539SAndreas Färberif compile_prog "" "" ; then
1853bd00d539SAndreas Färber  pthread=yes
1854bd00d539SAndreas Färberelse
1855de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
185652166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
1857e5d355d1Saliguori      pthread=yes
18585572b539SJuan Quintela      LIBS="$pthread_lib $LIBS"
1859de65fe0fSSebastian Herbszt      break
1860414f0dabSblueswir1    fi
1861de65fe0fSSebastian Herbszt  done
1862bd00d539SAndreas Färberfi
1863414f0dabSblueswir1
18644617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
18654dd75c70SChristoph Hellwig  echo
18664dd75c70SChristoph Hellwig  echo "Error: pthread check failed"
18674dd75c70SChristoph Hellwig  echo "Make sure to have the pthread libs and headers installed."
18684dd75c70SChristoph Hellwig  echo
18694dd75c70SChristoph Hellwig  exit 1
1870e5d355d1Saliguorifi
1871e5d355d1Saliguori
1872bf9298b9Saliguori##########################################
1873f27aaf4bSChristian Brunner# rbd probe
1874f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
1875f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
1876f27aaf4bSChristian Brunner#include <stdio.h>
1877ad32e9c0SJosh Durgin#include <rbd/librbd.h>
1878f27aaf4bSChristian Brunnerint main(void) {
1879ad32e9c0SJosh Durgin    rados_t cluster;
1880ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
1881f27aaf4bSChristian Brunner    return 0;
1882f27aaf4bSChristian Brunner}
1883f27aaf4bSChristian BrunnerEOF
1884ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
1885f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
1886f27aaf4bSChristian Brunner    rbd=yes
1887f27aaf4bSChristian Brunner    libs_tools="$rbd_libs $libs_tools"
1888f27aaf4bSChristian Brunner    libs_softmmu="$rbd_libs $libs_softmmu"
1889f27aaf4bSChristian Brunner  else
1890f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
1891f27aaf4bSChristian Brunner      feature_not_found "rados block device"
1892f27aaf4bSChristian Brunner    fi
1893f27aaf4bSChristian Brunner    rbd=no
1894f27aaf4bSChristian Brunner  fi
1895f27aaf4bSChristian Brunnerfi
1896f27aaf4bSChristian Brunner
1897f27aaf4bSChristian Brunner##########################################
18985c6c3a6cSChristoph Hellwig# linux-aio probe
18995c6c3a6cSChristoph Hellwig
19005c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
19015c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
19025c6c3a6cSChristoph Hellwig#include <libaio.h>
19035c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
1904832ce9c2SScott Wood#include <stddef.h>
19055c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
19065c6c3a6cSChristoph HellwigEOF
19075c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
19085c6c3a6cSChristoph Hellwig    linux_aio=yes
1909048d179fSPaul Brook    libs_softmmu="$libs_softmmu -laio"
1910048d179fSPaul Brook    libs_tools="$libs_tools -laio"
19115c6c3a6cSChristoph Hellwig  else
19125c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
19135c6c3a6cSChristoph Hellwig      feature_not_found "linux AIO"
19145c6c3a6cSChristoph Hellwig    fi
19153cfcae3cSLuiz Capitulino    linux_aio=no
19165c6c3a6cSChristoph Hellwig  fi
19175c6c3a6cSChristoph Hellwigfi
19185c6c3a6cSChristoph Hellwig
19195c6c3a6cSChristoph Hellwig##########################################
1920758e8e38SVenkateswararao Jujjuri (JV)# attr probe
1921758e8e38SVenkateswararao Jujjuri (JV)
1922758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
1923758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
1924758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
1925758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
1926758e8e38SVenkateswararao Jujjuri (JV)#include <attr/xattr.h>
1927758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1928758e8e38SVenkateswararao Jujjuri (JV)EOF
1929758e8e38SVenkateswararao Jujjuri (JV)  if compile_prog "" "-lattr" ; then
1930758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
1931758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
1932758e8e38SVenkateswararao Jujjuri (JV)  else
1933758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
1934758e8e38SVenkateswararao Jujjuri (JV)      feature_not_found "ATTR"
1935758e8e38SVenkateswararao Jujjuri (JV)    fi
1936758e8e38SVenkateswararao Jujjuri (JV)    attr=no
1937758e8e38SVenkateswararao Jujjuri (JV)  fi
1938758e8e38SVenkateswararao Jujjuri (JV)fi
1939758e8e38SVenkateswararao Jujjuri (JV)
1940758e8e38SVenkateswararao Jujjuri (JV)##########################################
1941bf9298b9Saliguori# iovec probe
1942bf9298b9Saliguoricat > $TMPC <<EOF
1943db34f0b3Sblueswir1#include <sys/types.h>
1944bf9298b9Saliguori#include <sys/uio.h>
1945db34f0b3Sblueswir1#include <unistd.h>
1946bf9298b9Saliguoriint main(void) { struct iovec iov; return 0; }
1947bf9298b9SaliguoriEOF
1948bf9298b9Saliguoriiovec=no
194952166aa0SJuan Quintelaif compile_prog "" "" ; then
1950bf9298b9Saliguori  iovec=yes
1951bf9298b9Saliguorifi
1952bf9298b9Saliguori
1953f652e6afSaurel32##########################################
1954ceb42de8Saliguori# preadv probe
1955ceb42de8Saliguoricat > $TMPC <<EOF
1956ceb42de8Saliguori#include <sys/types.h>
1957ceb42de8Saliguori#include <sys/uio.h>
1958ceb42de8Saliguori#include <unistd.h>
1959ceb42de8Saliguoriint main(void) { preadv; }
1960ceb42de8SaliguoriEOF
1961ceb42de8Saliguoripreadv=no
196252166aa0SJuan Quintelaif compile_prog "" "" ; then
1963ceb42de8Saliguori  preadv=yes
1964ceb42de8Saliguorifi
1965ceb42de8Saliguori
1966ceb42de8Saliguori##########################################
1967f652e6afSaurel32# fdt probe
19682df87df7SJuan Quintelaif test "$fdt" != "no" ; then
1969b41af4baSJuan Quintela  fdt_libs="-lfdt"
1970f652e6afSaurel32  cat > $TMPC << EOF
1971f652e6afSaurel32int main(void) { return 0; }
1972f652e6afSaurel32EOF
197352166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
1974f652e6afSaurel32    fdt=yes
19752df87df7SJuan Quintela  else
19762df87df7SJuan Quintela    if test "$fdt" = "yes" ; then
19772df87df7SJuan Quintela      feature_not_found "fdt"
19782df87df7SJuan Quintela    fi
1979de3a354aSMichael Walle    fdt_libs=
19802df87df7SJuan Quintela    fdt=no
1981f652e6afSaurel32  fi
1982f652e6afSaurel32fi
1983f652e6afSaurel32
198420ff075bSMichael Walle##########################################
198520ff075bSMichael Walle# opengl probe, used by milkymist-tmu2
198620ff075bSMichael Walleif test "$opengl" != "no" ; then
198720ff075bSMichael Walle  opengl_libs="-lGL"
198820ff075bSMichael Walle  cat > $TMPC << EOF
198920ff075bSMichael Walle#include <X11/Xlib.h>
199020ff075bSMichael Walle#include <GL/gl.h>
199120ff075bSMichael Walle#include <GL/glx.h>
199220ff075bSMichael Walleint main(void) { GL_VERSION; return 0; }
199320ff075bSMichael WalleEOF
199420ff075bSMichael Walle  if compile_prog "" "-lGL" ; then
199520ff075bSMichael Walle    opengl=yes
199620ff075bSMichael Walle  else
199720ff075bSMichael Walle    if test "$opengl" = "yes" ; then
199820ff075bSMichael Walle      feature_not_found "opengl"
199920ff075bSMichael Walle    fi
2000de3a354aSMichael Walle    opengl_libs=
200120ff075bSMichael Walle    opengl=no
200220ff075bSMichael Walle  fi
200320ff075bSMichael Wallefi
200420ff075bSMichael Walle
20053b3f24adSaurel32#
20063b3f24adSaurel32# Check for xxxat() functions when we are building linux-user
20073b3f24adSaurel32# emulator.  This is done because older glibc versions don't
20083b3f24adSaurel32# have syscall stubs for these implemented.
20093b3f24adSaurel32#
20103b3f24adSaurel32atfile=no
20113b3f24adSaurel32cat > $TMPC << EOF
20123b3f24adSaurel32#define _ATFILE_SOURCE
20133b3f24adSaurel32#include <sys/types.h>
20143b3f24adSaurel32#include <fcntl.h>
20153b3f24adSaurel32#include <unistd.h>
20163b3f24adSaurel32
20173b3f24adSaurel32int
20183b3f24adSaurel32main(void)
20193b3f24adSaurel32{
20203b3f24adSaurel32	/* try to unlink nonexisting file */
20213b3f24adSaurel32	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
20223b3f24adSaurel32}
20233b3f24adSaurel32EOF
202452166aa0SJuan Quintelaif compile_prog "" "" ; then
20253b3f24adSaurel32  atfile=yes
20263b3f24adSaurel32fi
20273b3f24adSaurel32
202839386ac7Saurel32# Check for inotify functions when we are building linux-user
20293b3f24adSaurel32# emulator.  This is done because older glibc versions don't
20303b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
20313b3f24adSaurel32# don't provide them even if kernel supports them.
20323b3f24adSaurel32#
20333b3f24adSaurel32inotify=no
20343b3f24adSaurel32cat > $TMPC << EOF
20353b3f24adSaurel32#include <sys/inotify.h>
20363b3f24adSaurel32
20373b3f24adSaurel32int
20383b3f24adSaurel32main(void)
20393b3f24adSaurel32{
20403b3f24adSaurel32	/* try to start inotify */
20418690e420Saurel32	return inotify_init();
20423b3f24adSaurel32}
20433b3f24adSaurel32EOF
204452166aa0SJuan Quintelaif compile_prog "" "" ; then
20453b3f24adSaurel32  inotify=yes
20463b3f24adSaurel32fi
20473b3f24adSaurel32
2048c05c7a73SRiku Voipioinotify1=no
2049c05c7a73SRiku Voipiocat > $TMPC << EOF
2050c05c7a73SRiku Voipio#include <sys/inotify.h>
2051c05c7a73SRiku Voipio
2052c05c7a73SRiku Voipioint
2053c05c7a73SRiku Voipiomain(void)
2054c05c7a73SRiku Voipio{
2055c05c7a73SRiku Voipio    /* try to start inotify */
2056c05c7a73SRiku Voipio    return inotify_init1(0);
2057c05c7a73SRiku Voipio}
2058c05c7a73SRiku VoipioEOF
2059c05c7a73SRiku Voipioif compile_prog "" "" ; then
2060c05c7a73SRiku Voipio  inotify1=yes
2061c05c7a73SRiku Voipiofi
2062c05c7a73SRiku Voipio
2063ebc996f3SRiku Voipio# check if utimensat and futimens are supported
2064ebc996f3SRiku Voipioutimens=no
2065ebc996f3SRiku Voipiocat > $TMPC << EOF
2066ebc996f3SRiku Voipio#define _ATFILE_SOURCE
2067ebc996f3SRiku Voipio#include <stddef.h>
2068ebc996f3SRiku Voipio#include <fcntl.h>
2069ebc996f3SRiku Voipio
2070ebc996f3SRiku Voipioint main(void)
2071ebc996f3SRiku Voipio{
2072ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
2073ebc996f3SRiku Voipio    futimens(0, NULL);
2074ebc996f3SRiku Voipio    return 0;
2075ebc996f3SRiku Voipio}
2076ebc996f3SRiku VoipioEOF
207752166aa0SJuan Quintelaif compile_prog "" "" ; then
2078ebc996f3SRiku Voipio  utimens=yes
2079ebc996f3SRiku Voipiofi
2080ebc996f3SRiku Voipio
2081099d6b0fSRiku Voipio# check if pipe2 is there
2082099d6b0fSRiku Voipiopipe2=no
2083099d6b0fSRiku Voipiocat > $TMPC << EOF
2084099d6b0fSRiku Voipio#include <unistd.h>
2085099d6b0fSRiku Voipio#include <fcntl.h>
2086099d6b0fSRiku Voipio
2087099d6b0fSRiku Voipioint main(void)
2088099d6b0fSRiku Voipio{
2089099d6b0fSRiku Voipio    int pipefd[2];
2090099d6b0fSRiku Voipio    pipe2(pipefd, O_CLOEXEC);
2091099d6b0fSRiku Voipio    return 0;
2092099d6b0fSRiku Voipio}
2093099d6b0fSRiku VoipioEOF
209452166aa0SJuan Quintelaif compile_prog "" "" ; then
2095099d6b0fSRiku Voipio  pipe2=yes
2096099d6b0fSRiku Voipiofi
2097099d6b0fSRiku Voipio
209840ff6d7eSKevin Wolf# check if accept4 is there
209940ff6d7eSKevin Wolfaccept4=no
210040ff6d7eSKevin Wolfcat > $TMPC << EOF
210140ff6d7eSKevin Wolf#include <sys/socket.h>
210240ff6d7eSKevin Wolf#include <stddef.h>
210340ff6d7eSKevin Wolf
210440ff6d7eSKevin Wolfint main(void)
210540ff6d7eSKevin Wolf{
210640ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
210740ff6d7eSKevin Wolf    return 0;
210840ff6d7eSKevin Wolf}
210940ff6d7eSKevin WolfEOF
211040ff6d7eSKevin Wolfif compile_prog "" "" ; then
211140ff6d7eSKevin Wolf  accept4=yes
211240ff6d7eSKevin Wolffi
211340ff6d7eSKevin Wolf
21143ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
21153ce34dfbSvibisreenivasansplice=no
21163ce34dfbSvibisreenivasancat > $TMPC << EOF
21173ce34dfbSvibisreenivasan#include <unistd.h>
21183ce34dfbSvibisreenivasan#include <fcntl.h>
21193ce34dfbSvibisreenivasan#include <limits.h>
21203ce34dfbSvibisreenivasan
21213ce34dfbSvibisreenivasanint main(void)
21223ce34dfbSvibisreenivasan{
21233ce34dfbSvibisreenivasan    int len, fd;
21243ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
21253ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
21263ce34dfbSvibisreenivasan    return 0;
21273ce34dfbSvibisreenivasan}
21283ce34dfbSvibisreenivasanEOF
212952166aa0SJuan Quintelaif compile_prog "" "" ; then
21303ce34dfbSvibisreenivasan  splice=yes
21313ce34dfbSvibisreenivasanfi
21323ce34dfbSvibisreenivasan
2133dcc38d1cSMarcelo Tosatti##########################################
2134dcc38d1cSMarcelo Tosatti# signalfd probe
2135dcc38d1cSMarcelo Tosattisignalfd="no"
2136dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
2137dcc38d1cSMarcelo Tosatti#define _GNU_SOURCE
2138dcc38d1cSMarcelo Tosatti#include <unistd.h>
2139dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
2140dcc38d1cSMarcelo Tosatti#include <signal.h>
2141dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2142dcc38d1cSMarcelo TosattiEOF
2143dcc38d1cSMarcelo Tosatti
2144dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
2145dcc38d1cSMarcelo Tosatti  signalfd=yes
2146de758970SJan Kiszkaelif test "$kvm" = "yes" -a "$io_thread" != "yes"; then
2147de758970SJan Kiszka  echo
2148de758970SJan Kiszka  echo "ERROR: Host kernel lacks signalfd() support,"
2149de758970SJan Kiszka  echo "but KVM depends on it when the IO thread is disabled."
2150de758970SJan Kiszka  echo
2151de758970SJan Kiszka  exit 1
2152dcc38d1cSMarcelo Tosattifi
2153dcc38d1cSMarcelo Tosatti
2154c2882b96SRiku Voipio# check if eventfd is supported
2155c2882b96SRiku Voipioeventfd=no
2156c2882b96SRiku Voipiocat > $TMPC << EOF
2157c2882b96SRiku Voipio#include <sys/eventfd.h>
2158c2882b96SRiku Voipio
2159c2882b96SRiku Voipioint main(void)
2160c2882b96SRiku Voipio{
2161c2882b96SRiku Voipio    int efd = eventfd(0, 0);
2162c2882b96SRiku Voipio    return 0;
2163c2882b96SRiku Voipio}
2164c2882b96SRiku VoipioEOF
2165c2882b96SRiku Voipioif compile_prog "" "" ; then
2166c2882b96SRiku Voipio  eventfd=yes
2167c2882b96SRiku Voipiofi
2168c2882b96SRiku Voipio
2169d0927938SUlrich Hecht# check for fallocate
2170d0927938SUlrich Hechtfallocate=no
2171d0927938SUlrich Hechtcat > $TMPC << EOF
2172d0927938SUlrich Hecht#include <fcntl.h>
2173d0927938SUlrich Hecht
2174d0927938SUlrich Hechtint main(void)
2175d0927938SUlrich Hecht{
2176d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
2177d0927938SUlrich Hecht    return 0;
2178d0927938SUlrich Hecht}
2179d0927938SUlrich HechtEOF
2180be17dc90SMichael S. Tsirkinif compile_prog "$ARCH_CFLAGS" "" ; then
2181d0927938SUlrich Hecht  fallocate=yes
2182d0927938SUlrich Hechtfi
2183d0927938SUlrich Hecht
2184c727f47dSPeter Maydell# check for sync_file_range
2185c727f47dSPeter Maydellsync_file_range=no
2186c727f47dSPeter Maydellcat > $TMPC << EOF
2187c727f47dSPeter Maydell#include <fcntl.h>
2188c727f47dSPeter Maydell
2189c727f47dSPeter Maydellint main(void)
2190c727f47dSPeter Maydell{
2191c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
2192c727f47dSPeter Maydell    return 0;
2193c727f47dSPeter Maydell}
2194c727f47dSPeter MaydellEOF
2195c727f47dSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
2196c727f47dSPeter Maydell  sync_file_range=yes
2197c727f47dSPeter Maydellfi
2198c727f47dSPeter Maydell
2199dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
2200dace20dcSPeter Maydellfiemap=no
2201dace20dcSPeter Maydellcat > $TMPC << EOF
2202dace20dcSPeter Maydell#include <sys/ioctl.h>
2203dace20dcSPeter Maydell#include <linux/fs.h>
2204dace20dcSPeter Maydell#include <linux/fiemap.h>
2205dace20dcSPeter Maydell
2206dace20dcSPeter Maydellint main(void)
2207dace20dcSPeter Maydell{
2208dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
2209dace20dcSPeter Maydell    return 0;
2210dace20dcSPeter Maydell}
2211dace20dcSPeter MaydellEOF
2212dace20dcSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
2213dace20dcSPeter Maydell  fiemap=yes
2214dace20dcSPeter Maydellfi
2215dace20dcSPeter Maydell
2216d0927938SUlrich Hecht# check for dup3
2217d0927938SUlrich Hechtdup3=no
2218d0927938SUlrich Hechtcat > $TMPC << EOF
2219d0927938SUlrich Hecht#include <unistd.h>
2220d0927938SUlrich Hecht
2221d0927938SUlrich Hechtint main(void)
2222d0927938SUlrich Hecht{
2223d0927938SUlrich Hecht    dup3(0, 0, 0);
2224d0927938SUlrich Hecht    return 0;
2225d0927938SUlrich Hecht}
2226d0927938SUlrich HechtEOF
222778f5d726SJan Kiszkaif compile_prog "" "" ; then
2228d0927938SUlrich Hecht  dup3=yes
2229d0927938SUlrich Hechtfi
2230d0927938SUlrich Hecht
22313b6edd16SPeter Maydell# check for epoll support
22323b6edd16SPeter Maydellepoll=no
22333b6edd16SPeter Maydellcat > $TMPC << EOF
22343b6edd16SPeter Maydell#include <sys/epoll.h>
22353b6edd16SPeter Maydell
22363b6edd16SPeter Maydellint main(void)
22373b6edd16SPeter Maydell{
22383b6edd16SPeter Maydell    epoll_create(0);
22393b6edd16SPeter Maydell    return 0;
22403b6edd16SPeter Maydell}
22413b6edd16SPeter MaydellEOF
22423b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22433b6edd16SPeter Maydell  epoll=yes
22443b6edd16SPeter Maydellfi
22453b6edd16SPeter Maydell
22463b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions
22473b6edd16SPeter Maydell# so we must check separately for their presence
22483b6edd16SPeter Maydellepoll_create1=no
22493b6edd16SPeter Maydellcat > $TMPC << EOF
22503b6edd16SPeter Maydell#include <sys/epoll.h>
22513b6edd16SPeter Maydell
22523b6edd16SPeter Maydellint main(void)
22533b6edd16SPeter Maydell{
225419e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
225519e83f6bSPeter Maydell     * a function being called. This is necessary so that on
225619e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
225719e83f6bSPeter Maydell     * the library but not declared in the header file we will
225819e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
225919e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
226019e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
226119e83f6bSPeter Maydell     */
226219e83f6bSPeter Maydell    epoll_create1;
22633b6edd16SPeter Maydell    return 0;
22643b6edd16SPeter Maydell}
22653b6edd16SPeter MaydellEOF
22663b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22673b6edd16SPeter Maydell  epoll_create1=yes
22683b6edd16SPeter Maydellfi
22693b6edd16SPeter Maydell
22703b6edd16SPeter Maydellepoll_pwait=no
22713b6edd16SPeter Maydellcat > $TMPC << EOF
22723b6edd16SPeter Maydell#include <sys/epoll.h>
22733b6edd16SPeter Maydell
22743b6edd16SPeter Maydellint main(void)
22753b6edd16SPeter Maydell{
22763b6edd16SPeter Maydell    epoll_pwait(0, 0, 0, 0, 0);
22773b6edd16SPeter Maydell    return 0;
22783b6edd16SPeter Maydell}
22793b6edd16SPeter MaydellEOF
22803b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22813b6edd16SPeter Maydell  epoll_pwait=yes
22823b6edd16SPeter Maydellfi
22833b6edd16SPeter Maydell
2284cc8ae6deSpbrook# Check if tools are available to build documentation.
2285a25dba17SJuan Quintelaif test "$docs" != "no" ; then
228601668d98SStefan Weil  if has makeinfo && has pod2man; then
2287a25dba17SJuan Quintela    docs=yes
228883a3ab8bSJuan Quintela  else
2289a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
2290a25dba17SJuan Quintela      feature_not_found "docs"
229183a3ab8bSJuan Quintela    fi
2292a25dba17SJuan Quintela    docs=no
229383a3ab8bSJuan Quintela  fi
2294cc8ae6deSpbrookfi
2295cc8ae6deSpbrook
2296f514f41cSStefan Weil# Search for bswap_32 function
22976ae9a1f4SJuan Quintelabyteswap_h=no
22986ae9a1f4SJuan Quintelacat > $TMPC << EOF
22996ae9a1f4SJuan Quintela#include <byteswap.h>
23006ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
23016ae9a1f4SJuan QuintelaEOF
230252166aa0SJuan Quintelaif compile_prog "" "" ; then
23036ae9a1f4SJuan Quintela  byteswap_h=yes
23046ae9a1f4SJuan Quintelafi
23056ae9a1f4SJuan Quintela
2306f514f41cSStefan Weil# Search for bswap_32 function
23076ae9a1f4SJuan Quintelabswap_h=no
23086ae9a1f4SJuan Quintelacat > $TMPC << EOF
23096ae9a1f4SJuan Quintela#include <sys/endian.h>
23106ae9a1f4SJuan Quintela#include <sys/types.h>
23116ae9a1f4SJuan Quintela#include <machine/bswap.h>
23126ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
23136ae9a1f4SJuan QuintelaEOF
231452166aa0SJuan Quintelaif compile_prog "" "" ; then
23156ae9a1f4SJuan Quintela  bswap_h=yes
23166ae9a1f4SJuan Quintelafi
23176ae9a1f4SJuan Quintela
2318da93a1fdSaliguori##########################################
2319da93a1fdSaliguori# Do we need librt
2320da93a1fdSaliguoricat > $TMPC <<EOF
2321da93a1fdSaliguori#include <signal.h>
2322da93a1fdSaliguori#include <time.h>
2323da93a1fdSaliguoriint main(void) { clockid_t id; return clock_gettime(id, NULL); }
2324da93a1fdSaliguoriEOF
2325da93a1fdSaliguori
232652166aa0SJuan Quintelaif compile_prog "" "" ; then
232707ffa4bdSJuan Quintela  :
232852166aa0SJuan Quintelaelif compile_prog "" "-lrt" ; then
232907ffa4bdSJuan Quintela  LIBS="-lrt $LIBS"
2330da93a1fdSaliguorifi
2331da93a1fdSaliguori
233231ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2333179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
23346362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
23356362a53fSJuan Quintelafi
23366362a53fSJuan Quintela
2337de5071c5SBlue Swirl##########################################
2338de5071c5SBlue Swirl# check if the compiler defines offsetof
2339de5071c5SBlue Swirl
2340de5071c5SBlue Swirlneed_offsetof=yes
2341de5071c5SBlue Swirlcat > $TMPC << EOF
2342de5071c5SBlue Swirl#include <stddef.h>
2343de5071c5SBlue Swirlint main(void) { struct s { int f; }; return offsetof(struct s, f); }
2344de5071c5SBlue SwirlEOF
2345de5071c5SBlue Swirlif compile_prog "" "" ; then
2346de5071c5SBlue Swirl    need_offsetof=no
2347de5071c5SBlue Swirlfi
2348de5071c5SBlue Swirl
23495f6b9e8fSBlue Swirl##########################################
2350747bbdf7SBlue Swirl# check if the compiler understands attribute warn_unused_result
2351747bbdf7SBlue Swirl#
2352747bbdf7SBlue Swirl# This could be smarter, but gcc -Werror does not error out even when warning
2353747bbdf7SBlue Swirl# about attribute warn_unused_result
2354747bbdf7SBlue Swirl
2355747bbdf7SBlue Swirlgcc_attribute_warn_unused_result=no
2356747bbdf7SBlue Swirlcat > $TMPC << EOF
2357747bbdf7SBlue Swirl#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2358747bbdf7SBlue Swirl#error gcc 3.3 or older
2359747bbdf7SBlue Swirl#endif
2360747bbdf7SBlue Swirlint main(void) { return 0;}
2361747bbdf7SBlue SwirlEOF
2362747bbdf7SBlue Swirlif compile_prog "" ""; then
2363747bbdf7SBlue Swirl    gcc_attribute_warn_unused_result=yes
2364747bbdf7SBlue Swirlfi
2365747bbdf7SBlue Swirl
2366cd4ec0b4SGerd Hoffmann# spice probe
2367cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
2368cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
2369cd4ec0b4SGerd Hoffmann#include <spice.h>
2370cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
2371cd4ec0b4SGerd HoffmannEOF
2372710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2373710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
2374012b80d3SGerd Hoffmann  if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \
2375cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
2376cd4ec0b4SGerd Hoffmann    spice="yes"
2377cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
2378cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2379cd4ec0b4SGerd Hoffmann  else
2380cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
2381cd4ec0b4SGerd Hoffmann      feature_not_found "spice"
2382cd4ec0b4SGerd Hoffmann    fi
2383cd4ec0b4SGerd Hoffmann    spice="no"
2384cd4ec0b4SGerd Hoffmann  fi
2385cd4ec0b4SGerd Hoffmannfi
2386cd4ec0b4SGerd Hoffmann
2387111a38b0SRobert Relyea# check for libcacard for smartcard support
2388111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then
2389111a38b0SRobert Relyea    smartcard="yes"
2390111a38b0SRobert Relyea    smartcard_cflags=""
2391111a38b0SRobert Relyea    # TODO - what's the minimal nss version we support?
2392111a38b0SRobert Relyea    if test "$smartcard_nss" != "no"; then
2393111a38b0SRobert Relyea        if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 ; then
2394111a38b0SRobert Relyea            smartcard_nss="yes"
2395111a38b0SRobert Relyea            smartcard_cflags="-I\$(SRC_PATH)/libcacard"
2396111a38b0SRobert Relyea            libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
2397111a38b0SRobert Relyea            libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
2398111a38b0SRobert Relyea            QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
2399111a38b0SRobert Relyea            LIBS="$libcacard_libs $LIBS"
2400111a38b0SRobert Relyea        else
2401111a38b0SRobert Relyea            if test "$smartcard_nss" = "yes"; then
2402111a38b0SRobert Relyea                feature_not_found "nss"
2403111a38b0SRobert Relyea            fi
2404111a38b0SRobert Relyea            smartcard_nss="no"
2405111a38b0SRobert Relyea        fi
2406111a38b0SRobert Relyea    fi
2407111a38b0SRobert Relyeafi
2408111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then
2409111a38b0SRobert Relyea    smartcard_nss="no"
2410111a38b0SRobert Relyeafi
2411111a38b0SRobert Relyea
241269354a83SHans de Goede# check for usbredirparser for usb network redirection support
241369354a83SHans de Goedeif test "$usb_redir" != "no" ; then
241469354a83SHans de Goede    if $pkg_config libusbredirparser >/dev/null 2>&1 ; then
241569354a83SHans de Goede        usb_redir="yes"
241669354a83SHans de Goede        usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null)
241769354a83SHans de Goede        usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null)
241869354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
241969354a83SHans de Goede        LIBS="$LIBS $usb_redir_libs"
242069354a83SHans de Goede    else
242169354a83SHans de Goede        if test "$usb_redir" = "yes"; then
242269354a83SHans de Goede            feature_not_found "usb-redir"
242369354a83SHans de Goede        fi
242469354a83SHans de Goede        usb_redir="no"
242569354a83SHans de Goede    fi
242669354a83SHans de Goedefi
242769354a83SHans de Goede
2428cd4ec0b4SGerd Hoffmann##########################################
2429cd4ec0b4SGerd Hoffmann
2430747bbdf7SBlue Swirl##########################################
24315f6b9e8fSBlue Swirl# check if we have fdatasync
24325f6b9e8fSBlue Swirl
24335f6b9e8fSBlue Swirlfdatasync=no
24345f6b9e8fSBlue Swirlcat > $TMPC << EOF
24355f6b9e8fSBlue Swirl#include <unistd.h>
2436d1722a27SAlexandre Raymondint main(void) {
2437d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2438d1722a27SAlexandre Raymondreturn fdatasync(0);
2439d1722a27SAlexandre Raymond#else
2440d1722a27SAlexandre Raymond#abort Not supported
2441d1722a27SAlexandre Raymond#endif
2442d1722a27SAlexandre Raymond}
24435f6b9e8fSBlue SwirlEOF
24445f6b9e8fSBlue Swirlif compile_prog "" "" ; then
24455f6b9e8fSBlue Swirl    fdatasync=yes
24465f6b9e8fSBlue Swirlfi
24475f6b9e8fSBlue Swirl
244894a420b1SStefan Hajnoczi##########################################
2449e78815a5SAndreas Färber# check if we have madvise
2450e78815a5SAndreas Färber
2451e78815a5SAndreas Färbermadvise=no
2452e78815a5SAndreas Färbercat > $TMPC << EOF
2453e78815a5SAndreas Färber#include <sys/types.h>
2454e78815a5SAndreas Färber#include <sys/mman.h>
2455832ce9c2SScott Wood#include <stddef.h>
2456e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2457e78815a5SAndreas FärberEOF
2458e78815a5SAndreas Färberif compile_prog "" "" ; then
2459e78815a5SAndreas Färber    madvise=yes
2460e78815a5SAndreas Färberfi
2461e78815a5SAndreas Färber
2462e78815a5SAndreas Färber##########################################
2463e78815a5SAndreas Färber# check if we have posix_madvise
2464e78815a5SAndreas Färber
2465e78815a5SAndreas Färberposix_madvise=no
2466e78815a5SAndreas Färbercat > $TMPC << EOF
2467e78815a5SAndreas Färber#include <sys/mman.h>
2468832ce9c2SScott Wood#include <stddef.h>
2469e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2470e78815a5SAndreas FärberEOF
2471e78815a5SAndreas Färberif compile_prog "" "" ; then
2472e78815a5SAndreas Färber    posix_madvise=yes
2473e78815a5SAndreas Färberfi
2474e78815a5SAndreas Färber
2475e78815a5SAndreas Färber##########################################
247694a420b1SStefan Hajnoczi# check if trace backend exists
247794a420b1SStefan Hajnoczi
24784c3b5a48SBlue Swirlsh "$source_path/scripts/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
247994a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
248094a420b1SStefan Hajnoczi  echo
248194a420b1SStefan Hajnoczi  echo "Error: invalid trace backend"
248294a420b1SStefan Hajnoczi  echo "Please choose a supported trace backend."
248394a420b1SStefan Hajnoczi  echo
248494a420b1SStefan Hajnoczi  exit 1
248594a420b1SStefan Hajnoczifi
248694a420b1SStefan Hajnoczi
24877e24e92aSStefan Hajnoczi##########################################
24887e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
24897e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then
24907e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
24917e24e92aSStefan Hajnoczi#include <ust/tracepoint.h>
24927e24e92aSStefan Hajnoczi#include <ust/marker.h>
24937e24e92aSStefan Hajnocziint main(void) { return 0; }
24947e24e92aSStefan HajnocziEOF
24957e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
24967e24e92aSStefan Hajnoczi    LIBS="-lust $LIBS"
24977e24e92aSStefan Hajnoczi  else
24987e24e92aSStefan Hajnoczi    echo
24997e24e92aSStefan Hajnoczi    echo "Error: Trace backend 'ust' missing libust header files"
25007e24e92aSStefan Hajnoczi    echo
25017e24e92aSStefan Hajnoczi    exit 1
25027e24e92aSStefan Hajnoczi  fi
25037e24e92aSStefan Hajnoczifi
2504b3d08c02SDaniel P. Berrange
2505b3d08c02SDaniel P. Berrange##########################################
2506b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
2507b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then
2508b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
2509b3d08c02SDaniel P. Berrange    echo
2510b3d08c02SDaniel P. Berrange    echo "Error: dtrace command is not found in PATH $PATH"
2511b3d08c02SDaniel P. Berrange    echo
2512b3d08c02SDaniel P. Berrange    exit 1
2513b3d08c02SDaniel P. Berrange  fi
2514c276b17dSDaniel P. Berrange  trace_backend_stap="no"
2515c276b17dSDaniel P. Berrange  if has 'stap' ; then
2516c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
2517c276b17dSDaniel P. Berrange  fi
2518b3d08c02SDaniel P. Berrangefi
2519b3d08c02SDaniel P. Berrange
25207e24e92aSStefan Hajnoczi##########################################
2521023367e6SWolfgang Mauerer# __sync_fetch_and_and requires at least -march=i486. Many toolchains
2522023367e6SWolfgang Mauerer# use i686 as default anyway, but for those that don't, an explicit
2523023367e6SWolfgang Mauerer# specification is necessary
2524023367e6SWolfgang Mauererif test $vhost_net = "yes" && test $cpu = "i386"; then
2525023367e6SWolfgang Mauerer  cat > $TMPC << EOF
2526023367e6SWolfgang Mauererint sfaa(unsigned *ptr)
2527023367e6SWolfgang Mauerer{
2528023367e6SWolfgang Mauerer  return __sync_fetch_and_and(ptr, 0);
2529023367e6SWolfgang Mauerer}
2530023367e6SWolfgang Mauerer
2531023367e6SWolfgang Mauererint main(int argc, char **argv)
2532023367e6SWolfgang Mauerer{
2533023367e6SWolfgang Mauerer  int val = 42;
2534023367e6SWolfgang Mauerer  sfaa(&val);
2535023367e6SWolfgang Mauerer  return val;
2536023367e6SWolfgang Mauerer}
2537023367e6SWolfgang MauererEOF
2538023367e6SWolfgang Mauerer  if ! compile_prog "" "" ; then
2539023367e6SWolfgang Mauerer    CFLAGS+="-march=i486"
2540023367e6SWolfgang Mauerer  fi
2541023367e6SWolfgang Mauererfi
2542023367e6SWolfgang Mauerer
2543023367e6SWolfgang Mauerer##########################################
2544e86ecd4bSJuan Quintela# End of CC checks
2545e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
2546e86ecd4bSJuan Quintela
2547e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then
25481156c669SJuan Quintela  CFLAGS="-O2 $CFLAGS"
2549e86ecd4bSJuan Quintelafi
2550a316e378SJuan Quintela
2551e86ecd4bSJuan Quintela# Consult white-list to determine whether to enable werror
2552e86ecd4bSJuan Quintela# by default.  Only enable by default for git builds
2553e86ecd4bSJuan Quintelaz_version=`cut -f3 -d. $source_path/VERSION`
255420ff6c80SAnthony Liguori
255520ff6c80SAnthony Liguoriif test -z "$werror" ; then
2556e86ecd4bSJuan Quintela    if test "$z_version" = "50" -a \
2557e86ecd4bSJuan Quintela        "$linux" = "yes" ; then
2558e86ecd4bSJuan Quintela        werror="yes"
2559e86ecd4bSJuan Quintela    else
2560e86ecd4bSJuan Quintela        werror="no"
2561e86ecd4bSJuan Quintela    fi
2562e86ecd4bSJuan Quintelafi
2563e86ecd4bSJuan Quintela
256420ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to
256520ff6c80SAnthony Liguori# enable/disable
256620ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then
256720ff6c80SAnthony Liguori    if test "$z_version" = "50" ; then
256820ff6c80SAnthony Liguori	zero_malloc="no"
256920ff6c80SAnthony Liguori    else
257020ff6c80SAnthony Liguori	zero_malloc="yes"
257120ff6c80SAnthony Liguori    fi
257220ff6c80SAnthony Liguorifi
257320ff6c80SAnthony Liguori
2574e86ecd4bSJuan Quintelaif test "$werror" = "yes" ; then
2575a558ee17SJuan Quintela    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
2576e86ecd4bSJuan Quintelafi
2577e86ecd4bSJuan Quintela
2578e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
2579e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
25801156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
2581e86ecd4bSJuan Quintela    fi
2582e86ecd4bSJuan Quintelafi
2583e86ecd4bSJuan Quintela
2584952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
2585952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
2586952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
2587952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2588952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
2589952afb71SBlue Swirl        fi
2590952afb71SBlue Swirl    done
2591952afb71SBlue Swirlfi
2592952afb71SBlue Swirl
2593190e9c59SPaolo Bonziniconfdir=$sysconfdir$confsuffix
25945a67135aSbellard
2595ca35f780SPaolo Bonzinitools=
2596ca35f780SPaolo Bonziniif test "$softmmu" = yes ; then
2597ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2598ca35f780SPaolo Bonzini  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2599ca35f780SPaolo Bonzini      tools="qemu-nbd\$(EXESUF) $tools"
260048ff7a62SMichael Roth      tools="qemu-ga\$(EXESUF) $tools"
2601ca35f780SPaolo Bonzini    if [ "$check_utests" = "yes" ]; then
2602ca35f780SPaolo Bonzini      tools="check-qint check-qstring check-qdict check-qlist $tools"
2603ca35f780SPaolo Bonzini      tools="check-qfloat check-qjson $tools"
2604ca35f780SPaolo Bonzini    fi
2605ca35f780SPaolo Bonzini  fi
2606ca35f780SPaolo Bonzinifi
2607ca35f780SPaolo Bonzini
2608ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
2609ca35f780SPaolo Bonziniroms=
2610ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2611ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2612ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
2613ca35f780SPaolo Bonzini  roms="optionrom"
2614ca35f780SPaolo Bonzinifi
2615d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
261639ac8455SDavid Gibson  roms="$roms spapr-rtas"
261739ac8455SDavid Gibsonfi
2618ca35f780SPaolo Bonzini
26197d13299dSbellardecho "Install prefix    $prefix"
2620f2b9e1e3SPaolo Bonziniecho "BIOS directory    `eval echo $datadir`"
2621f2b9e1e3SPaolo Bonziniecho "binary directory  `eval echo $bindir`"
26223aa5d2beSAlon Levyecho "library directory `eval echo $libdir`"
26230f94d6daSAlon Levyecho "include directory `eval echo $includedir`"
26241c0fd160SAurelien Jarnoecho "config directory  `eval echo $sysconfdir`"
262511d9f695Sbellardif test "$mingw32" = "no" ; then
2626f2b9e1e3SPaolo Bonziniecho "Manual directory  `eval echo $mandir`"
262743ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
262811d9f695Sbellardfi
26295a67135aSbellardecho "Source path       $source_path"
26307d13299dSbellardecho "C compiler        $cc"
263183469015Sbellardecho "Host C compiler   $host_cc"
26320c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
2633a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
26340c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
26357d13299dSbellardecho "make              $make"
26366a882643Spbrookecho "install           $install"
2637c886edfbSBlue Swirlecho "python            $python"
2638a98fd896Sbellardecho "host CPU          $cpu"
2639de83cd02Sbellardecho "host big endian   $bigendian"
264097a847bcSbellardecho "target list       $target_list"
2641ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
2642b4475aa2SLuiz Capitulinoecho "Mon debug enabled $debug_mon"
26437d13299dSbellardecho "gprof enabled     $gprof"
264403b4fe7dSaliguoriecho "sparse enabled    $sparse"
26451625af87Saliguoriecho "strip binaries    $strip_opt"
264605c2a3e7Sbellardecho "profiler          $profiler"
264743ce4dfeSbellardecho "static build      $static"
264885aa5189Sbellardecho "-Werror enabled   $werror"
26495b0753e0Sbellardif test "$darwin" = "yes" ; then
26505b0753e0Sbellard    echo "Cocoa support     $cocoa"
26515b0753e0Sbellardfi
265297a847bcSbellardecho "SDL support       $sdl"
26534d3b6f6eSbalrogecho "curses support    $curses"
2654769ce76dSAlexander Grafecho "curl support      $curl"
26555495ed11SLuiz Capitulinoecho "check support     $check_utests"
265667b915a5Sbellardecho "mingw32 support   $mingw32"
26570c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
26580c58ac1cSmalcecho "Extra audio cards $audio_card_list"
2659eb852011SMarkus Armbrusterecho "Block whitelist   $block_drv_whitelist"
26608ff9cbf7Smalcecho "Mixer emulation   $mixemu"
2661821601eaSJes Sorensenecho "VNC support       $vnc"
2662821601eaSJes Sorensenif test "$vnc" = "yes" ; then
26638d5d2d4cSths    echo "VNC TLS support   $vnc_tls"
26642f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
26652f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
2666efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
2667bd023f95SCorentin Chary    echo "VNC thread        $vnc_thread"
2668821601eaSJes Sorensenfi
26693142255cSblueswir1if test -n "$sparc_cpu"; then
26703142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
26713142255cSblueswir1fi
2672e37630caSaliguoriecho "xen support       $xen"
26732e4d9fb1Saurel32echo "brlapi support    $brlapi"
2674a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
2675a25dba17SJuan Quintelaecho "Documentation     $docs"
2676c5937220Spbrook[ ! -z "$uname_release" ] && \
2677c5937220Spbrookecho "uname -r          $uname_release"
2678bd0c5661Spbrookecho "NPTL support      $nptl"
2679379f6698SPaul Brookecho "GUEST_BASE        $guest_base"
268034005a00SKirill A. Shutemovecho "PIE user targets  $user_pie"
26818a16d273Sthsecho "vde support       $vde"
2682e5d355d1Saliguoriecho "IO thread         $io_thread"
26835c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
2684758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
268577755340Sthsecho "Install blobs     $blobs"
2686b31a0277SJuan Quintelaecho "KVM support       $kvm"
2687f652e6afSaurel32echo "fdt support       $fdt"
2688ceb42de8Saliguoriecho "preadv support    $preadv"
26895f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
2690e78815a5SAndreas Färberecho "madvise           $madvise"
2691e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
2692ee682d27SStefan Weilecho "uuid support      $uuid"
2693d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
269494a420b1SStefan Hajnocziecho "Trace backend     $trace_backend"
26959410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
2696cd4ec0b4SGerd Hoffmannecho "spice support     $spice"
2697f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
2698dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
2699111a38b0SRobert Relyeaecho "nss used          $smartcard_nss"
270069354a83SHans de Goedeecho "usb net redir     $usb_redir"
270120ff075bSMichael Walleecho "OpenGL support    $opengl"
270267b915a5Sbellard
270397a847bcSbellardif test $sdl_too_old = "yes"; then
270424b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
2705e8cd23deSbellardfi
270697a847bcSbellard
270798ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
27084bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld"
270997a847bcSbellard
271098ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
271198ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak
271298ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak
271398ec69acSJuan Quintelaecho >> $config_host_mak
271498ec69acSJuan Quintela
2715e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
271699d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
271799d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
27183aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
27190f94d6daSAlon Levyecho "includedir=$includedir" >> $config_host_mak
272099d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
272199d7cc75SPaolo Bonziniecho "datadir=$datadir" >> $config_host_mak
272299d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
272399d7cc75SPaolo Bonziniecho "docdir=$docdir" >> $config_host_mak
27241dabe05cSPaolo Bonziniecho "confdir=$confdir" >> $config_host_mak
2725804edf29SJuan Quintela
27262408a527Saurel32case "$cpu" in
2727d2fbca94SGuan Xuetao  i386|x86_64|alpha|cris|hppa|ia64|lm32|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64|unicore32)
2728e0da9dd3SJuan Quintela    ARCH=$cpu
27292408a527Saurel32  ;;
2730a302c32dSLaurent Desnogues  armv4b|armv4l)
273116dbd14fSJuan Quintela    ARCH=arm
27322408a527Saurel32  ;;
27332408a527Saurel32esac
273498ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
2735f8393946Saurel32if test "$debug_tcg" = "yes" ; then
27362358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
2737f8393946Saurel32fi
2738b4475aa2SLuiz Capitulinoif test "$debug_mon" = "yes" ; then
2739b4475aa2SLuiz Capitulino  echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2740b4475aa2SLuiz Capitulinofi
2741f3d08ee6SPaul Brookif test "$debug" = "yes" ; then
27422358a494SJuan Quintela  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
2743f3d08ee6SPaul Brookfi
27441625af87Saliguoriif test "$strip_opt" = "yes" ; then
274552ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
27461625af87Saliguorifi
27477d13299dSbellardif test "$bigendian" = "yes" ; then
2748e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
274997a847bcSbellardfi
27502358a494SJuan Quintelaecho "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
275167b915a5Sbellardif test "$mingw32" = "yes" ; then
275298ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
27539fe6de94SBlue Swirl  rc_version=`cat $source_path/VERSION`
27549fe6de94SBlue Swirl  version_major=${rc_version%%.*}
27559fe6de94SBlue Swirl  rc_version=${rc_version#*.}
27569fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
27579fe6de94SBlue Swirl  rc_version=${rc_version#*.}
27589fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
27599fe6de94SBlue Swirl  version_micro=0
27609fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
27619fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
2762210fa556Spbrookelse
276335f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
2764210fa556Spbrookfi
2765128ab2ffSblueswir1
2766dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
2767dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
2768dffcb71cSMark McLoughlinfi
2769dffcb71cSMark McLoughlin
277083fb7adfSbellardif test "$darwin" = "yes" ; then
277198ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
277283fb7adfSbellardfi
2773b29fe3edSmalc
2774b29fe3edSmalcif test "$aix" = "yes" ; then
277598ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
2776b29fe3edSmalcfi
2777b29fe3edSmalc
2778ec530c81Sbellardif test "$solaris" = "yes" ; then
277998ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
27802358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
27810475a5caSths  if test "$needs_libsunmath" = "yes" ; then
278275b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
27830475a5caSths  fi
2784ec530c81Sbellardfi
2785179cf400SAndreas Färberif test "$haiku" = "yes" ; then
2786179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
2787179cf400SAndreas Färberfi
278897a847bcSbellardif test "$static" = "yes" ; then
278998ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
279097a847bcSbellardfi
279105c2a3e7Sbellardif test $profiler = "yes" ; then
27922358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
279305c2a3e7Sbellardfi
2794c20709aaSbellardif test "$slirp" = "yes" ; then
279598ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
2796f9728943SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
2797c20709aaSbellardfi
27988a16d273Sthsif test "$vde" = "yes" ; then
279998ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
28008a16d273Sthsfi
28010c58ac1cSmalcfor card in $audio_card_list; do
2802f6e5889eSpbrook    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
280398ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
28040c58ac1cSmalcdone
28052358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
28060c58ac1cSmalcfor drv in $audio_drv_list; do
2807f6e5889eSpbrook    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
280898ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
2809923e4521Smalc    if test "$drv" = "fmod"; then
28107aac6cb1SJuan Quintela        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
2811fb065187Sbellard    fi
28120c58ac1cSmalcdone
281367f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
281467f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
281567f86e8eSJuan Quintelafi
2816d5631638Smalcif test "$audio_win_int" = "yes" ; then
2817d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2818d5631638Smalcfi
2819eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
28208ff9cbf7Smalcif test "$mixemu" = "yes" ; then
282198ec69acSJuan Quintela  echo "CONFIG_MIXEMU=y" >> $config_host_mak
28228ff9cbf7Smalcfi
2823821601eaSJes Sorensenif test "$vnc" = "yes" ; then
2824821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
2825821601eaSJes Sorensenfi
28268d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
282798ec69acSJuan Quintela  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
2828525061bfSJuan Quintela  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
28298d5d2d4cSthsfi
28302f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
283198ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
283260ddf533SJuan Quintela  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
28332f9606b3Saliguorifi
2834821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
28352f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
28362f6f5c7aSCorentin Chary  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
28372f6f5c7aSCorentin Charyfi
2838821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
2839efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2840efe556adSCorentin Chary  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2841efe556adSCorentin Charyfi
2842821601eaSJes Sorensenif test "$vnc_thread" = "yes" ; then
2843bd023f95SCorentin Chary  echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2844bd023f95SCorentin Charyfi
284576655d6dSaliguoriif test "$fnmatch" = "yes" ; then
28462358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
284776655d6dSaliguorifi
2848ee682d27SStefan Weilif test "$uuid" = "yes" ; then
2849ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
2850ee682d27SStefan Weilfi
2851dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
2852dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
2853dce512deSChristoph Hellwigfi
2854b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
285598ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
28562358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
285798ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
285898ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
2859a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
286098ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
2861cc8ae6deSpbrookfi
28621ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
286398ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
28648ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
286549ecc3faSbellardfi
286649ecc3faSbellardif test "$cocoa" = "yes" ; then
286798ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
286849ecc3faSbellardfi
28694d3b6f6eSbalrogif test "$curses" = "yes" ; then
287098ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
2871ab4e5602SJan Kiszkafi
28723b3f24adSaurel32if test "$atfile" = "yes" ; then
28732358a494SJuan Quintela  echo "CONFIG_ATFILE=y" >> $config_host_mak
28743b3f24adSaurel32fi
2875ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
28762358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
2877ebc996f3SRiku Voipiofi
2878099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
28792358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
2880099d6b0fSRiku Voipiofi
288140ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
288240ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
288340ff6d7eSKevin Wolffi
28843ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
28852358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
28863ce34dfbSvibisreenivasanfi
2887c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
2888c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
2889c2882b96SRiku Voipiofi
2890d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
2891d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2892d0927938SUlrich Hechtfi
2893c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
2894c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
2895c727f47dSPeter Maydellfi
2896dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
2897dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
2898dace20dcSPeter Maydellfi
2899d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
2900d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
2901d0927938SUlrich Hechtfi
29023b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
29033b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
29043b6edd16SPeter Maydellfi
29053b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
29063b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
29073b6edd16SPeter Maydellfi
29083b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then
29093b6edd16SPeter Maydell  echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
29103b6edd16SPeter Maydellfi
29113b3f24adSaurel32if test "$inotify" = "yes" ; then
29122358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
29133b3f24adSaurel32fi
2914c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
2915c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2916c05c7a73SRiku Voipiofi
29176ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
29186ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
29196ae9a1f4SJuan Quintelafi
29206ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
29216ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
29226ae9a1f4SJuan Quintelafi
2923769ce76dSAlexander Grafif test "$curl" = "yes" ; then
292498ec69acSJuan Quintela  echo "CONFIG_CURL=y" >> $config_host_mak
2925b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
2926769ce76dSAlexander Graffi
29272e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
292898ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
29292e4d9fb1Saurel32fi
2930fb599c9aSbalrogif test "$bluez" = "yes" ; then
293198ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
2932ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
2933fb599c9aSbalrogfi
2934e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
2935e37630caSaliguoriif test "$xen" = "yes" ; then
29366dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
2937d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
2938e37630caSaliguorifi
2939e5d355d1Saliguoriif test "$io_thread" = "yes" ; then
294098ec69acSJuan Quintela  echo "CONFIG_IOTHREAD=y" >> $config_host_mak
2941e5d355d1Saliguorifi
29425c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
29435c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
29445c6c3a6cSChristoph Hellwigfi
2945758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
2946758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
2947758e8e38SVenkateswararao Jujjuri (JV)fi
2948758e8e38SVenkateswararao Jujjuri (JV)if test "$linux" = "yes" ; then
2949758e8e38SVenkateswararao Jujjuri (JV)  if test "$attr" = "yes" ; then
2950758e8e38SVenkateswararao Jujjuri (JV)    echo "CONFIG_VIRTFS=y" >> $config_host_mak
2951758e8e38SVenkateswararao Jujjuri (JV)  fi
2952758e8e38SVenkateswararao Jujjuri (JV)fi
295377755340Sthsif test "$blobs" = "yes" ; then
295498ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
295577755340Sthsfi
2956bf9298b9Saliguoriif test "$iovec" = "yes" ; then
29572358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
2958bf9298b9Saliguorifi
2959ceb42de8Saliguoriif test "$preadv" = "yes" ; then
29602358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
2961ceb42de8Saliguorifi
2962f652e6afSaurel32if test "$fdt" = "yes" ; then
29633f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
2964f652e6afSaurel32fi
2965dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
2966dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
2967dcc38d1cSMarcelo Tosattifi
2968de5071c5SBlue Swirlif test "$need_offsetof" = "yes" ; then
2969de5071c5SBlue Swirl  echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2970de5071c5SBlue Swirlfi
2971747bbdf7SBlue Swirlif test "$gcc_attribute_warn_unused_result" = "yes" ; then
2972747bbdf7SBlue Swirl  echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2973747bbdf7SBlue Swirlfi
29745f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
29755f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
29765f6b9e8fSBlue Swirlfi
2977e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
2978e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
2979e78815a5SAndreas Färberfi
2980e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
2981e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2982e78815a5SAndreas Färberfi
298397a847bcSbellard
2984cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
2985cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
2986cd4ec0b4SGerd Hoffmannfi
2987cd4ec0b4SGerd Hoffmann
298836707144SAlon Levyif test "$smartcard" = "yes" ; then
298936707144SAlon Levy  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
299036707144SAlon Levyfi
299136707144SAlon Levy
2992111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
2993111a38b0SRobert Relyea  echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
2994111a38b0SRobert Relyeafi
2995111a38b0SRobert Relyea
299669354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
299769354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
299869354a83SHans de Goedefi
299969354a83SHans de Goede
300020ff075bSMichael Walleif test "$opengl" = "yes" ; then
300120ff075bSMichael Walle  echo "CONFIG_OPENGL=y" >> $config_host_mak
300220ff075bSMichael Wallefi
300320ff075bSMichael Walle
300483fb7adfSbellard# XXX: suppress that
30057d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
30062358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
30077d3505c5Sbellardfi
30087d3505c5Sbellard
30092358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
3010c5937220Spbrook
301120ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then
301220ff6c80SAnthony Liguori  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
301320ff6c80SAnthony Liguorifi
3014f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
3015f27aaf4bSChristian Brunner  echo "CONFIG_RBD=y" >> $config_host_mak
3016f27aaf4bSChristian Brunnerfi
301720ff6c80SAnthony Liguori
301868063649Sblueswir1# USB host support
301968063649Sblueswir1case "$usb" in
302068063649Sblueswir1linux)
302198ec69acSJuan Quintela  echo "HOST_USB=linux" >> $config_host_mak
302268063649Sblueswir1;;
302368063649Sblueswir1bsd)
302498ec69acSJuan Quintela  echo "HOST_USB=bsd" >> $config_host_mak
302568063649Sblueswir1;;
302668063649Sblueswir1*)
302798ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
302868063649Sblueswir1;;
302968063649Sblueswir1esac
303068063649Sblueswir1
303194a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak
303222890ab5SPrerna Saxenaif test "$trace_backend" = "simple"; then
303322890ab5SPrerna Saxena  echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
303422890ab5SPrerna Saxenafi
30359410b56cSPrerna Saxena# Set the appropriate trace file.
30369410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then
3037953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
30389410b56cSPrerna Saxenafi
3039c276b17dSDaniel P. Berrangeif test "$trace_backend" = "dtrace" -a "$trace_backend_stap" = "yes" ; then
3040c276b17dSDaniel P. Berrange  echo "CONFIG_SYSTEMTAP_TRACE=y" >> $config_host_mak
3041c276b17dSDaniel P. Berrangefi
30429410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
30439410b56cSPrerna Saxena
304498ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
304598ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
3046804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
3047804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
3048804edf29SJuan Quintelaecho "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
3049804edf29SJuan Quintelaecho "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
3050804edf29SJuan Quintelaecho "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
3051c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
3052804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
30532b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
3054804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
3055804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
3056804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
3057804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
30589fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
305944dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak
3060e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
3061a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
3062f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
3063e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
3064e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
3065e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
3066e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
3067e39f0062SPaolo Bonzinifi
3068c81da56eSJuan Quintelaecho "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
3069e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
3070a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
3071a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak
307273da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
30733e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
3074804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
3075804edf29SJuan Quintela
30764bf6b55bSJuan Quintela# generate list of library paths for linker script
30774bf6b55bSJuan Quintela
30784bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
30794bf6b55bSJuan Quintela
30804bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then
30814bf6b55bSJuan Quintela  if cmp -s $config_host_ld ${config_host_ld}~ ; then
30824bf6b55bSJuan Quintela    mv ${config_host_ld}~ $config_host_ld
30834bf6b55bSJuan Quintela  else
30844bf6b55bSJuan Quintela    rm ${config_host_ld}~
30854bf6b55bSJuan Quintela  fi
30864bf6b55bSJuan Quintelafi
30874bf6b55bSJuan Quintela
30884d904533SBlue Swirlfor d in libdis libdis-user; do
30894d904533SBlue Swirl    mkdir -p $d
309011568d6dSPaolo Bonzini    symlink $source_path/Makefile.dis $d/Makefile
30914d904533SBlue Swirl    echo > $d/config.mak
30924d904533SBlue Swirldone
3093d44cff22SRichard Hendersonif test "$static" = "no" -a "$user_pie" = "yes" ; then
3094d44cff22SRichard Henderson  echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
3095d44cff22SRichard Hendersonfi
30964d904533SBlue Swirl
309797a847bcSbellardfor target in $target_list; do
309897a847bcSbellardtarget_dir="$target"
309925be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
3100600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1`
310197a847bcSbellardtarget_bigendian="no"
31021f3d3c8fSJuan Quintela
3103ea2d6a39SJuan Quintelacase "$target_arch2" in
3104613a22c9SMichael Walle  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
3105ea2d6a39SJuan Quintela  target_bigendian=yes
3106ea2d6a39SJuan Quintela  ;;
3107ea2d6a39SJuan Quintelaesac
310897a847bcSbellardtarget_softmmu="no"
3109997344f3Sbellardtarget_user_only="no"
3110831b7825Sthstarget_linux_user="no"
3111831b7825Sthstarget_darwin_user="no"
311284778508Sblueswir1target_bsd_user="no"
31139e407a85Spbrookcase "$target" in
3114600309b6SBlue Swirl  ${target_arch2}-softmmu)
31159e407a85Spbrook    target_softmmu="yes"
31169e407a85Spbrook    ;;
3117600309b6SBlue Swirl  ${target_arch2}-linux-user)
31189c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
31199c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Linux host"
31209c7a4202SBlue Swirl      exit 1
31219c7a4202SBlue Swirl    fi
31229e407a85Spbrook    target_user_only="yes"
31239e407a85Spbrook    target_linux_user="yes"
31249e407a85Spbrook    ;;
3125600309b6SBlue Swirl  ${target_arch2}-darwin-user)
31269c7a4202SBlue Swirl    if test "$darwin" != "yes" ; then
31279c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Darwin host"
31289c7a4202SBlue Swirl      exit 1
31299c7a4202SBlue Swirl    fi
31309e407a85Spbrook    target_user_only="yes"
3131831b7825Sths    target_darwin_user="yes"
31329e407a85Spbrook    ;;
3133600309b6SBlue Swirl  ${target_arch2}-bsd-user)
31349cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
31359c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a BSD host"
31369c7a4202SBlue Swirl      exit 1
31379c7a4202SBlue Swirl    fi
313884778508Sblueswir1    target_user_only="yes"
313984778508Sblueswir1    target_bsd_user="yes"
314084778508Sblueswir1    ;;
31419e407a85Spbrook  *)
31429e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
31439e407a85Spbrook    exit 1
31449e407a85Spbrook    ;;
31459e407a85Spbrookesac
3146831b7825Sths
314797a847bcSbellardmkdir -p $target_dir
3148158142c2Sbellardmkdir -p $target_dir/fpu
314957fec1feSbellardmkdir -p $target_dir/tcg
315059f2a787SGerd Hoffmannmkdir -p $target_dir/ide
3151353ac78dSAneesh Kumar K.Vmkdir -p $target_dir/9pfs
315284778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
315369de927cSbellard  mkdir -p $target_dir/nwfpe
315469de927cSbellardfi
315511568d6dSPaolo Bonzinisymlink $source_path/Makefile.target $target_dir/Makefile
3156ec530c81Sbellard
315797a847bcSbellard
315825be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
315997a847bcSbellard
3160e5fe0c52Spbrookbflt="no"
3161bd0c5661Spbrooktarget_nptl="no"
3162600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
31637ee2822cSPaolo Bonziniecho "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
316456aebc89Spbrookgdb_xml_files=""
3165c2e3dee6SLaurent Viviertarget_short_alignment=2
3166c2e3dee6SLaurent Viviertarget_int_alignment=4
3167c2e3dee6SLaurent Viviertarget_long_alignment=4
3168c2e3dee6SLaurent Viviertarget_llong_alignment=8
3169de3a354aSMichael Walletarget_libs_softmmu=
31707ba1e619Saliguori
3171938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2"
31726acff7daSJuan QuintelaTARGET_BASE_ARCH=""
3173e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
3174e73aae67SJuan Quintela
3175600309b6SBlue Swirlcase "$target_arch2" in
31762408a527Saurel32  i386)
317771deff27SAurelien Jarno    target_phys_bits=64
31782408a527Saurel32  ;;
31792408a527Saurel32  x86_64)
31806acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
31811ad2134fSPaul Brook    target_phys_bits=64
3182c2e3dee6SLaurent Vivier    target_long_alignment=8
31832408a527Saurel32  ;;
31842408a527Saurel32  alpha)
31851ad2134fSPaul Brook    target_phys_bits=64
3186c2e3dee6SLaurent Vivier    target_long_alignment=8
3187a4b388ffSRichard Henderson    target_nptl="yes"
31882408a527Saurel32  ;;
31892408a527Saurel32  arm|armeb)
3190b498c8a0SJuan Quintela    TARGET_ARCH=arm
3191e5fe0c52Spbrook    bflt="yes"
3192bd0c5661Spbrook    target_nptl="yes"
319356aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
31941ad2134fSPaul Brook    target_phys_bits=32
3195c2e3dee6SLaurent Vivier    target_llong_alignment=4
31962408a527Saurel32  ;;
31972408a527Saurel32  cris)
3198253bd7f8Sedgar_igl    target_nptl="yes"
31991ad2134fSPaul Brook    target_phys_bits=32
32002408a527Saurel32  ;;
3201613a22c9SMichael Walle  lm32)
3202613a22c9SMichael Walle    target_phys_bits=32
3203de3a354aSMichael Walle    target_libs_softmmu="$opengl_libs"
3204613a22c9SMichael Walle  ;;
32052408a527Saurel32  m68k)
32060938cda5Saurel32    bflt="yes"
320756aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
32081ad2134fSPaul Brook    target_phys_bits=32
3209c2e3dee6SLaurent Vivier    target_int_alignment=2
3210c2e3dee6SLaurent Vivier    target_long_alignment=2
3211c2e3dee6SLaurent Vivier    target_llong_alignment=2
32122408a527Saurel32  ;;
3213877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
3214877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
321572b675caSEdgar E. Iglesias    bflt="yes"
321672b675caSEdgar E. Iglesias    target_nptl="yes"
321772b675caSEdgar E. Iglesias    target_phys_bits=32
3218de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
321972b675caSEdgar E. Iglesias  ;;
32202408a527Saurel32  mips|mipsel)
3221b498c8a0SJuan Quintela    TARGET_ARCH=mips
322225be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
3223f04dc72fSPaul Brook    target_nptl="yes"
32241ad2134fSPaul Brook    target_phys_bits=64
32252408a527Saurel32  ;;
32262408a527Saurel32  mipsn32|mipsn32el)
3227b498c8a0SJuan Quintela    TARGET_ARCH=mipsn32
32286acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
322925be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
32301ad2134fSPaul Brook    target_phys_bits=64
32312408a527Saurel32  ;;
32322408a527Saurel32  mips64|mips64el)
3233b498c8a0SJuan Quintela    TARGET_ARCH=mips64
32346acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
323525be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
32361ad2134fSPaul Brook    target_phys_bits=64
3237c2e3dee6SLaurent Vivier    target_long_alignment=8
32382408a527Saurel32  ;;
32392408a527Saurel32  ppc)
3240c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32411ad2134fSPaul Brook    target_phys_bits=32
3242d6630708SNathan Froyd    target_nptl="yes"
3243de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32442408a527Saurel32  ;;
32452408a527Saurel32  ppcemb)
32466acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3247e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3248c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32491ad2134fSPaul Brook    target_phys_bits=64
3250d6630708SNathan Froyd    target_nptl="yes"
3251de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32522408a527Saurel32  ;;
32532408a527Saurel32  ppc64)
32546acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3255e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3256c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32571ad2134fSPaul Brook    target_phys_bits=64
3258c2e3dee6SLaurent Vivier    target_long_alignment=8
3259de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32602408a527Saurel32  ;;
32612408a527Saurel32  ppc64abi32)
3262b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
32636acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3264e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
326525be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
3266c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32671ad2134fSPaul Brook    target_phys_bits=64
3268de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32692408a527Saurel32  ;;
32702408a527Saurel32  sh4|sh4eb)
3271b498c8a0SJuan Quintela    TARGET_ARCH=sh4
32724dbed897Spbrook    bflt="yes"
32730b6d3ae0Saurel32    target_nptl="yes"
32741ad2134fSPaul Brook    target_phys_bits=32
32752408a527Saurel32  ;;
32762408a527Saurel32  sparc)
32771ad2134fSPaul Brook    target_phys_bits=64
32782408a527Saurel32  ;;
32792408a527Saurel32  sparc64)
32806acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
32811ad2134fSPaul Brook    target_phys_bits=64
3282c2e3dee6SLaurent Vivier    target_long_alignment=8
32832408a527Saurel32  ;;
32842408a527Saurel32  sparc32plus)
3285b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
32866acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3287e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
328825be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
32891ad2134fSPaul Brook    target_phys_bits=64
32902408a527Saurel32  ;;
329124e804ecSAlexander Graf  s390x)
3292bc434676SUlrich Hecht    target_nptl="yes"
329324e804ecSAlexander Graf    target_phys_bits=64
32947b3da903SAlexander Graf    target_long_alignment=8
329524e804ecSAlexander Graf  ;;
3296d2fbca94SGuan Xuetao  unicore32)
3297d2fbca94SGuan Xuetao    target_phys_bits=32
3298d2fbca94SGuan Xuetao  ;;
32992408a527Saurel32  *)
3300de83cd02Sbellard    echo "Unsupported target CPU"
3301de83cd02Sbellard    exit 1
33022408a527Saurel32  ;;
33032408a527Saurel32esac
3304c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3305c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3306c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3307c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
330825be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
3309053dd92eSJuan Quintelatarget_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
331025be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
331125be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak
331242bc608bSJuan Quintela# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
33136acff7daSJuan Quintelaif [ "$TARGET_BASE_ARCH" = "" ]; then
33146acff7daSJuan Quintela  TARGET_BASE_ARCH=$TARGET_ARCH
33156acff7daSJuan Quintelafi
331625be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
3317e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
3318e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
3319e6e91b9cSJuan Quintelafi
332025be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
33211b0c87fcSJuan Quintelacase "$target_arch2" in
33221b0c87fcSJuan Quintela  i386|x86_64)
33231b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
332464b3cfdbSAnthony PERARD      target_phys_bits=64
332525be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
332659d21e53SAlexander Graf    else
332759d21e53SAlexander Graf      echo "CONFIG_NO_XEN=y" >> $config_target_mak
3328432d268cSJun Nakajima    fi
332959d21e53SAlexander Graf    ;;
333059d21e53SAlexander Graf  *)
333159d21e53SAlexander Graf    echo "CONFIG_NO_XEN=y" >> $config_target_mak
33321b0c87fcSJuan Quintelaesac
3333c59249f9SJuan Quintelacase "$target_arch2" in
33340e60a699SAlexander Graf  i386|x86_64|ppcemb|ppc|ppc64|s390x)
3335c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
3336c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3337c59249f9SJuan Quintela      \( "$target_arch2" = "$cpu" -o \
3338c59249f9SJuan Quintela      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
33395f114bc6SAlexander Graf      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
3340adf82011SRené Rebe      \( "$target_arch2" = "ppc"    -a "$cpu" = "ppc64" \) -o \
3341adf82011SRené Rebe      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
3342c59249f9SJuan Quintela      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
3343c59249f9SJuan Quintela      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
334425be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
3345d5970055SMichael S. Tsirkin      if test $vhost_net = "yes" ; then
3346d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3347d5970055SMichael S. Tsirkin      fi
3348c59249f9SJuan Quintela    fi
3349c59249f9SJuan Quintelaesac
3350de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
335125be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
335297a847bcSbellardfi
335397a847bcSbellardif test "$target_softmmu" = "yes" ; then
3354b1aa27c4SPaul Brook  echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
335525be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3356de3a354aSMichael Walle  echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
33570e8c9214SAndreas Färber  echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
33585791f45bSKirill A. Shutemov  echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
3359de83cd02Sbellardfi
3360997344f3Sbellardif test "$target_user_only" = "yes" ; then
336125be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
3362997344f3Sbellardfi
3363831b7825Sthsif test "$target_linux_user" = "yes" ; then
336425be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
3365831b7825Sthsfi
3366831b7825Sthsif test "$target_darwin_user" = "yes" ; then
336725be210fSJuan Quintela  echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
3368831b7825Sthsfi
3369111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
3370111a38b0SRobert Relyea  echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3371111a38b0SRobert Relyea  echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3372111a38b0SRobert Relyea  echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3373111a38b0SRobert Relyeafi
337456aebc89Spbrooklist=""
337556aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
337656aebc89Spbrook  for x in $gdb_xml_files; do
337756aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
337856aebc89Spbrook  done
337925be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
33803d0f1517SJuan Quintelafi
3381de83cd02Sbellard
3382e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
338325be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
3384e5fe0c52Spbrookfi
3385bd0c5661Spbrookif test "$target_user_only" = "yes" \
3386bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
338725be210fSJuan Quintela  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
3388bd0c5661Spbrookfi
3389379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
339025be210fSJuan Quintela  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
3391379f6698SPaul Brookfi
339284778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
339325be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
339484778508Sblueswir1fi
33955b0753e0Sbellard
33964afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
3397fa282484SJuan Quintela
33984afddb55SJuan Quintelacflags=""
3399f9728943SPaolo Bonziniincludes=""
3400fa282484SJuan Quintelaldflags=""
34019b8e111fSJuan Quintela
340257ddfbf7SJuan Quintelaif test "$ARCH" = "sparc64" ; then
3403f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/sparc $includes"
340424e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then
3405f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/s390 $includes"
34065d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then
3407f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/i386 $includes"
340857ddfbf7SJuan Quintelaelse
3409f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
341057ddfbf7SJuan Quintelafi
3411f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes"
341257ddfbf7SJuan Quintela
34134d904533SBlue Swirlif test "$target_user_only" = "yes" ; then
34144d904533SBlue Swirl    libdis_config_mak=libdis-user/config.mak
34154d904533SBlue Swirlelse
34164d904533SBlue Swirl    libdis_config_mak=libdis/config.mak
34174d904533SBlue Swirlfi
34184d904533SBlue Swirl
341964656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
342064656024SJuan Quintela  case "$i" in
342164656024SJuan Quintela  alpha)
342225be210fSJuan Quintela    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
34234d904533SBlue Swirl    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
342464656024SJuan Quintela  ;;
342564656024SJuan Quintela  arm)
342625be210fSJuan Quintela    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
34274d904533SBlue Swirl    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
342864656024SJuan Quintela  ;;
342964656024SJuan Quintela  cris)
343025be210fSJuan Quintela    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
34314d904533SBlue Swirl    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
343264656024SJuan Quintela  ;;
343364656024SJuan Quintela  hppa)
343425be210fSJuan Quintela    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
34354d904533SBlue Swirl    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
343664656024SJuan Quintela  ;;
343764656024SJuan Quintela  i386|x86_64)
343825be210fSJuan Quintela    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
34394d904533SBlue Swirl    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
344064656024SJuan Quintela  ;;
3441903ec55cSAurelien Jarno  ia64*)
3442903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
3443903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
3444903ec55cSAurelien Jarno  ;;
344564656024SJuan Quintela  m68k)
344625be210fSJuan Quintela    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
34474d904533SBlue Swirl    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
344864656024SJuan Quintela  ;;
3449877fdc12SEdgar E. Iglesias  microblaze*)
345025be210fSJuan Quintela    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
34514d904533SBlue Swirl    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
345264656024SJuan Quintela  ;;
345364656024SJuan Quintela  mips*)
345425be210fSJuan Quintela    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
34554d904533SBlue Swirl    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
345664656024SJuan Quintela  ;;
345764656024SJuan Quintela  ppc*)
345825be210fSJuan Quintela    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
34594d904533SBlue Swirl    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
346064656024SJuan Quintela  ;;
346124e804ecSAlexander Graf  s390*)
346225be210fSJuan Quintela    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
34634d904533SBlue Swirl    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
346464656024SJuan Quintela  ;;
346564656024SJuan Quintela  sh4)
346625be210fSJuan Quintela    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
34674d904533SBlue Swirl    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
346864656024SJuan Quintela  ;;
346964656024SJuan Quintela  sparc*)
347025be210fSJuan Quintela    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
34714d904533SBlue Swirl    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
347264656024SJuan Quintela  ;;
347364656024SJuan Quintela  esac
347464656024SJuan Quinteladone
347564656024SJuan Quintela
34766ee7126fSJuan Quintelacase "$ARCH" in
34776ee7126fSJuan Quintelaalpha)
34786ee7126fSJuan Quintela  # Ensure there's only a single GP
34796ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
34806ee7126fSJuan Quintela;;
34816ee7126fSJuan Quintelaesac
34826ee7126fSJuan Quintela
348355d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then
348455d9c04bSJuan Quintela  case "$TARGET_BASE_ARCH" in
348555d9c04bSJuan Quintela  arm)
348655d9c04bSJuan Quintela    cflags="-DHAS_AUDIO $cflags"
348755d9c04bSJuan Quintela  ;;
348825a8bb96SMichael Walle  lm32)
348925a8bb96SMichael Walle    cflags="-DHAS_AUDIO $cflags"
349025a8bb96SMichael Walle  ;;
349155d9c04bSJuan Quintela  i386|mips|ppc)
349255d9c04bSJuan Quintela    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
349355d9c04bSJuan Quintela  ;;
349455d9c04bSJuan Quintela  esac
349555d9c04bSJuan Quintelafi
349655d9c04bSJuan Quintela
349734005a00SKirill A. Shutemovif test "$target_user_only" = "yes" -a "$static" = "no" -a \
349834005a00SKirill A. Shutemov	"$user_pie" = "yes" ; then
349934005a00SKirill A. Shutemov  cflags="-fpie $cflags"
350034005a00SKirill A. Shutemov  ldflags="-pie $ldflags"
350134005a00SKirill A. Shutemovfi
350234005a00SKirill A. Shutemov
3503471857ddSJuan Quintelaif test "$target_softmmu" = "yes" -a \( \
3504471857ddSJuan Quintela        "$TARGET_ARCH" = "microblaze" -o \
3505471857ddSJuan Quintela        "$TARGET_ARCH" = "cris" \) ; then
350625be210fSJuan Quintela  echo "CONFIG_NEED_MMU=y" >> $config_target_mak
3507471857ddSJuan Quintelafi
3508471857ddSJuan Quintela
3509d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
351025be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
3511d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
3512d02c1db3SJuan Quintela    cflags="-p $cflags"
3513d02c1db3SJuan Quintela    ldflags="-p $ldflags"
3514d02c1db3SJuan Quintela  fi
3515d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
3516d02c1db3SJuan Quintela    ldflags="-p $ldflags"
351725be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
3518d02c1db3SJuan Quintela  fi
3519d02c1db3SJuan Quintelafi
3520d02c1db3SJuan Quintela
35216ee7126fSJuan Quintelalinker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
35229b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
3523fa282484SJuan Quintela  case "$ARCH" in
3524fa282484SJuan Quintela  sparc)
3525fa282484SJuan Quintela    # -static is used to avoid g1/g3 usage by the dynamic linker
3526322e5878SJuan Quintela    ldflags="$linker_script -static $ldflags"
3527fa282484SJuan Quintela    ;;
35284d58be06SRichard Henderson  alpha | s390x)
35294d58be06SRichard Henderson    # The default placement of the application is fine.
35304d58be06SRichard Henderson    ;;
3531fd76e73aSRichard Henderson  *)
3532322e5878SJuan Quintela    ldflags="$linker_script $ldflags"
3533fa282484SJuan Quintela    ;;
3534fa282484SJuan Quintela  esac
3535fa282484SJuan Quintelafi
3536fa282484SJuan Quintela
3537e205c790SJan Kiszka# use included Linux headers
3538af2be207SJan Kiszkaif test "$linux" = "yes" ; then
3539e205c790SJan Kiszka  includes="-I\$(SRC_PATH)/linux-headers $includes"
3540e205c790SJan Kiszka  mkdir -p linux-headers
3541e205c790SJan Kiszka  case "$cpu" in
3542e205c790SJan Kiszka  i386|x86_64)
3543e205c790SJan Kiszka    symlink $source_path/linux-headers/asm-x86 linux-headers/asm
3544e205c790SJan Kiszka    ;;
3545e205c790SJan Kiszka  ppcemb|ppc|ppc64)
3546af2be207SJan Kiszka    symlink $source_path/linux-headers/asm-powerpc linux-headers/asm
3547e205c790SJan Kiszka    ;;
3548e205c790SJan Kiszka  s390x)
3549e205c790SJan Kiszka    symlink $source_path/linux-headers/asm-s390 linux-headers/asm
3550e205c790SJan Kiszka    ;;
3551e205c790SJan Kiszka  esac
3552af2be207SJan Kiszkafi
3553e205c790SJan Kiszka
355425be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
355525be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
3556f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak
3557fa282484SJuan Quintela
355897a847bcSbellarddone # for target in $targets
35597d13299dSbellard
3560d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
3561e1144d00SMark McLoughlinDIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
3562446b9165SAndreas FärberDIRS="$DIRS pc-bios/spapr-rtas"
35632d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
35643e230dd2SCorentin CharyDIRS="$DIRS fsdev ui"
35652345c77cSMichael RothDIRS="$DIRS qapi"
356613a286d5SMichael RothDIRS="$DIRS qga"
35677d13299dSbellardFILES="Makefile tests/Makefile"
3568e7daa605SthsFILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
3569ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
3570446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
35712d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
35725ee8ad71SAlex Williamsonfor bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.rom $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
35737ea78b74SJan Kiszka    FILES="$FILES pc-bios/`basename $bios_file`"
35747ea78b74SJan Kiszkadone
3575d1807a4fSPaolo Bonzinimkdir -p $DIRS
35767d13299dSbellardfor f in $FILES ; do
3577f9245e10SPeter Maydell    if [ -e "$source_path/$f" ] && ! [ -e "$f" ]; then
3578f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
3579f9245e10SPeter Maydell    fi
35807d13299dSbellarddone
35811ad2134fSPaul Brook
3582c34ebfdcSAnthony Liguori# temporary config to build submodules
35832d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
3584c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
358537116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
3586c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3587c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
3588c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
3589c34ebfdcSAnthony Liguori    echo "CPP=${cross_prefix}cpp" >> $config_mak
3590c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
3591c34ebfdcSAnthony Liguori    echo "IASL=iasl" >> $config_mak
3592c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
3593c34ebfdcSAnthony Liguoridone
3594c34ebfdcSAnthony Liguori
35951ad2134fSPaul Brookfor hwlib in 32 64; do
35961ad2134fSPaul Brook  d=libhw$hwlib
35971ad2134fSPaul Brook  mkdir -p $d
35989953b2fcSBlue Swirl  mkdir -p $d/ide
359911568d6dSPaolo Bonzini  symlink $source_path/Makefile.hw $d/Makefile
3600353ac78dSAneesh Kumar K.V  mkdir -p $d/9pfs
360137116c89SStefan Weil  echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
36021ad2134fSPaul Brookdone
3603add16157SBlue Swirl
3604111a38b0SRobert Relyeaif [ "$source_path" != `pwd` ]; then
3605111a38b0SRobert Relyea    # out of tree build
3606111a38b0SRobert Relyea    mkdir -p libcacard
3607111a38b0SRobert Relyea    rm -f libcacard/Makefile
360844dc0ca3SAlon Levy    symlink "$source_path/libcacard/Makefile" libcacard/Makefile
3609111a38b0SRobert Relyeafi
3610111a38b0SRobert Relyea
3611add16157SBlue Swirld=libuser
3612add16157SBlue Swirlmkdir -p $d
361311568d6dSPaolo Bonzinisymlink $source_path/Makefile.user $d/Makefile
3614299060a0SKirill A. Shutemovif test "$static" = "no" -a "$user_pie" = "yes" ; then
3615299060a0SKirill A. Shutemov  echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3616299060a0SKirill A. Shutemovfi
3617b40292e7SJan Kiszka
3618b40292e7SJan Kiszkaif test "$docs" = "yes" ; then
3619b40292e7SJan Kiszka  mkdir -p QMP
3620b40292e7SJan Kiszkafi
3621