xref: /openbmc/qemu/configure (revision 59d21e537b6c3a964d4e346e9cf2a1e17267a27c)
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=""
116af2be207SJan Kiszkakvm=""
117377529c0SPaolo Bonzininptl=""
118377529c0SPaolo Bonzinisdl=""
119821601eaSJes Sorensenvnc="yes"
120377529c0SPaolo Bonzinisparse="no"
121377529c0SPaolo Bonziniuuid=""
122377529c0SPaolo Bonzinivde=""
123377529c0SPaolo Bonzinivnc_tls=""
124377529c0SPaolo Bonzinivnc_sasl=""
125377529c0SPaolo Bonzinivnc_jpeg=""
126377529c0SPaolo Bonzinivnc_png=""
127377529c0SPaolo Bonzinivnc_thread="no"
128377529c0SPaolo Bonzinixen=""
129d5b93ddfSAnthony PERARDxen_ctrl_version=""
130377529c0SPaolo Bonzinilinux_aio=""
131377529c0SPaolo Bonziniattr=""
132af2be207SJan Kiszkavhost_net=""
133377529c0SPaolo Bonzinixfs=""
134377529c0SPaolo Bonzini
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"
149377529c0SPaolo Bonzinisysconfdir="\${prefix}/etc"
150377529c0SPaolo Bonziniconfsuffix="/qemu"
151377529c0SPaolo Bonzinislirp="yes"
152377529c0SPaolo Bonzinifmod_lib=""
153377529c0SPaolo Bonzinifmod_inc=""
154377529c0SPaolo Bonzinioss_lib=""
155377529c0SPaolo Bonzinibsd="no"
156377529c0SPaolo Bonzinilinux="no"
157377529c0SPaolo Bonzinisolaris="no"
158377529c0SPaolo Bonziniprofiler="no"
159377529c0SPaolo Bonzinicocoa="no"
160377529c0SPaolo Bonzinisoftmmu="yes"
161377529c0SPaolo Bonzinilinux_user="no"
162377529c0SPaolo Bonzinidarwin_user="no"
163377529c0SPaolo Bonzinibsd_user="no"
164377529c0SPaolo Bonziniguest_base=""
165377529c0SPaolo Bonziniuname_release=""
166377529c0SPaolo Bonziniio_thread="no"
167377529c0SPaolo Bonzinimixemu="no"
168377529c0SPaolo Bonziniaix="no"
169377529c0SPaolo Bonziniblobs="yes"
170377529c0SPaolo Bonzinipkgversion=""
171377529c0SPaolo Bonzinicheck_utests="no"
172377529c0SPaolo Bonziniuser_pie="no"
173377529c0SPaolo Bonzinizero_malloc=""
174377529c0SPaolo Bonzinitrace_backend="nop"
175377529c0SPaolo Bonzinitrace_file="trace"
176377529c0SPaolo Bonzinispice=""
177377529c0SPaolo Bonzinirbd=""
17836707144SAlon Levysmartcard=""
179111a38b0SRobert Relyeasmartcard_nss=""
18069354a83SHans de Goedeusb_redir=""
181430a3c18SMichael Walleopengl=""
182377529c0SPaolo Bonzini
183ac0df51dSaliguori# parse CC options first
184ac0df51dSaliguorifor opt do
185ac0df51dSaliguori  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
186ac0df51dSaliguori  case "$opt" in
187ac0df51dSaliguori  --cross-prefix=*) cross_prefix="$optarg"
188ac0df51dSaliguori  ;;
1893d8df640SPaolo Bonzini  --cc=*) CC="$optarg"
190ac0df51dSaliguori  ;;
191ca4deeb1SPaolo Bonzini  --source-path=*) source_path="$optarg"
192ca4deeb1SPaolo Bonzini  ;;
1932ff6b91eSJuan Quintela  --cpu=*) cpu="$optarg"
1942ff6b91eSJuan Quintela  ;;
195a558ee17SJuan Quintela  --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
196e2a2ed06SJuan Quintela  ;;
197e2a2ed06SJuan Quintela  --extra-ldflags=*) LDFLAGS="$optarg $LDFLAGS"
198e2a2ed06SJuan Quintela  ;;
19950e7b1a0SJuan Quintela  --sparc_cpu=*)
20050e7b1a0SJuan Quintela    sparc_cpu="$optarg"
20150e7b1a0SJuan Quintela    case $sparc_cpu in
202ed968ff1SJuan Quintela    v7|v8|v8plus|v8plusa)
20350e7b1a0SJuan Quintela      cpu="sparc"
20450e7b1a0SJuan Quintela    ;;
20550e7b1a0SJuan Quintela    v9)
20650e7b1a0SJuan Quintela      cpu="sparc64"
20750e7b1a0SJuan Quintela    ;;
20850e7b1a0SJuan Quintela    *)
20950e7b1a0SJuan Quintela      echo "undefined SPARC architecture. Exiting";
21050e7b1a0SJuan Quintela      exit 1
21150e7b1a0SJuan Quintela    ;;
21250e7b1a0SJuan Quintela    esac
21350e7b1a0SJuan Quintela  ;;
214ac0df51dSaliguori  esac
215ac0df51dSaliguoridone
216ac0df51dSaliguori# OS specific
217ac0df51dSaliguori# Using uname is really, really broken.  Once we have the right set of checks
218ac0df51dSaliguori# we can eliminate it's usage altogether
219ac0df51dSaliguori
2203d8df640SPaolo Bonzinicc="${cross_prefix}${CC-gcc}"
2213d8df640SPaolo Bonziniar="${cross_prefix}${AR-ar}"
2223d8df640SPaolo Bonziniobjcopy="${cross_prefix}${OBJCOPY-objcopy}"
2233d8df640SPaolo Bonzinild="${cross_prefix}${LD-ld}"
2243d8df640SPaolo Bonzinistrip="${cross_prefix}${STRIP-strip}"
2253d8df640SPaolo Bonziniwindres="${cross_prefix}${WINDRES-windres}"
226a8bd70adSPaolo Bonzinipkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}"
2273ec87ffeSPaolo Bonzinisdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}"
228ac0df51dSaliguori
229be17dc90SMichael S. Tsirkin# default flags for all hosts
230be17dc90SMichael S. TsirkinQEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
231be17dc90SMichael S. TsirkinCFLAGS="-g $CFLAGS"
232f9188227SMike FrysingerQEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
233be17dc90SMichael S. TsirkinQEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
234be17dc90SMichael S. TsirkinQEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
23584958305SKirill A. ShutemovQEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
236f9728943SPaolo BonziniQEMU_INCLUDES="-I. -I\$(SRC_PATH)"
237be17dc90SMichael S. TsirkinLDFLAGS="-g $LDFLAGS"
238be17dc90SMichael S. Tsirkin
239ca4deeb1SPaolo Bonzini# make source path absolute
240ca4deeb1SPaolo Bonzinisource_path=`cd "$source_path"; pwd`
241ca4deeb1SPaolo Bonzini
242ac0df51dSaliguoricheck_define() {
243ac0df51dSaliguoricat > $TMPC <<EOF
244ac0df51dSaliguori#if !defined($1)
245ac0df51dSaliguori#error Not defined
246ac0df51dSaliguori#endif
247ac0df51dSaliguoriint main(void) { return 0; }
248ac0df51dSaliguoriEOF
24952166aa0SJuan Quintela  compile_object
250ac0df51dSaliguori}
251ac0df51dSaliguori
2522ff6b91eSJuan Quintelaif test ! -z "$cpu" ; then
2532ff6b91eSJuan Quintela  # command line argument
2542ff6b91eSJuan Quintela  :
2552ff6b91eSJuan Quintelaelif check_define __i386__ ; then
256ac0df51dSaliguori  cpu="i386"
257ac0df51dSaliguorielif check_define __x86_64__ ; then
258ac0df51dSaliguori  cpu="x86_64"
2593aa9bd6cSblueswir1elif check_define __sparc__ ; then
2603aa9bd6cSblueswir1  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
2613aa9bd6cSblueswir1  # They must be specified using --sparc_cpu
2623aa9bd6cSblueswir1  if check_define __arch64__ ; then
2633aa9bd6cSblueswir1    cpu="sparc64"
2643aa9bd6cSblueswir1  else
2653aa9bd6cSblueswir1    cpu="sparc"
2663aa9bd6cSblueswir1  fi
267fdf7ed96Smalcelif check_define _ARCH_PPC ; then
268fdf7ed96Smalc  if check_define _ARCH_PPC64 ; then
269fdf7ed96Smalc    cpu="ppc64"
270ac0df51dSaliguori  else
271fdf7ed96Smalc    cpu="ppc"
272fdf7ed96Smalc  fi
273afa05235SAurelien Jarnoelif check_define __mips__ ; then
274afa05235SAurelien Jarno  cpu="mips"
275477ba620SAurelien Jarnoelif check_define __ia64__ ; then
276477ba620SAurelien Jarno  cpu="ia64"
277d66ed0eaSAurelien Jarnoelif check_define __s390__ ; then
278d66ed0eaSAurelien Jarno  if check_define __s390x__ ; then
279d66ed0eaSAurelien Jarno    cpu="s390x"
280d66ed0eaSAurelien Jarno  else
281d66ed0eaSAurelien Jarno    cpu="s390"
282d66ed0eaSAurelien Jarno  fi
283fdf7ed96Smalcelse
284fdf7ed96Smalc  cpu=`uname -m`
285ac0df51dSaliguorifi
286ac0df51dSaliguori
2877d13299dSbellardcase "$cpu" in
288d2fbca94SGuan Xuetao  alpha|cris|ia64|lm32|m68k|microblaze|ppc|ppc64|sparc64|unicore32)
289ea8f20f8SJuan Quintela    cpu="$cpu"
290ea8f20f8SJuan Quintela  ;;
2917d13299dSbellard  i386|i486|i586|i686|i86pc|BePC)
29297a847bcSbellard    cpu="i386"
2937d13299dSbellard  ;;
294aaa5fa14Saurel32  x86_64|amd64)
295aaa5fa14Saurel32    cpu="x86_64"
296aaa5fa14Saurel32  ;;
297ba68055eSbellard  armv*b)
298808c4954Sbellard    cpu="armv4b"
299808c4954Sbellard  ;;
300ba68055eSbellard  armv*l)
3017d13299dSbellard    cpu="armv4l"
3027d13299dSbellard  ;;
303f54b3f92Saurel32  parisc|parisc64)
304f54b3f92Saurel32    cpu="hppa"
305f54b3f92Saurel32  ;;
306afa05235SAurelien Jarno  mips*)
307afa05235SAurelien Jarno    cpu="mips"
308afa05235SAurelien Jarno  ;;
30924e804ecSAlexander Graf  s390)
310fb3e5849Sbellard    cpu="s390"
311fb3e5849Sbellard  ;;
31224e804ecSAlexander Graf  s390x)
31324e804ecSAlexander Graf    cpu="s390x"
31424e804ecSAlexander Graf  ;;
3153142255cSblueswir1  sparc|sun4[cdmuv])
316ae228531Sbellard    cpu="sparc"
317ae228531Sbellard  ;;
3187d13299dSbellard  *)
319a447d4dcSPaolo Bonzini    echo "Unsupported CPU = $cpu"
320a447d4dcSPaolo Bonzini    exit 1
3217d13299dSbellard  ;;
3227d13299dSbellardesac
323e2d52ad3SJuan Quintela
3247d13299dSbellard# OS specific
325ac0df51dSaliguoriif check_define __linux__ ; then
326ac0df51dSaliguori  targetos="Linux"
327ac0df51dSaliguorielif check_define _WIN32 ; then
328ac0df51dSaliguori  targetos='MINGW32'
329169dc5d3Sblueswir1elif check_define __OpenBSD__ ; then
330169dc5d3Sblueswir1  targetos='OpenBSD'
331169dc5d3Sblueswir1elif check_define __sun__ ; then
332169dc5d3Sblueswir1  targetos='SunOS'
333179cf400SAndreas Färberelif check_define __HAIKU__ ; then
334179cf400SAndreas Färber  targetos='Haiku'
335ac0df51dSaliguorielse
3367d13299dSbellard  targetos=`uname -s`
337ac0df51dSaliguorifi
3380dbfc675SJuan Quintela
3397d13299dSbellardcase $targetos in
340c326e0afSbellardCYGWIN*)
341c326e0afSbellard  mingw32="yes"
342a558ee17SJuan Quintela  QEMU_CFLAGS="-mno-cygwin $QEMU_CFLAGS"
343d5631638Smalc  audio_possible_drivers="winwave sdl"
344d5631638Smalc  audio_drv_list="winwave"
345c326e0afSbellard;;
34667b915a5SbellardMINGW32*)
34767b915a5Sbellard  mingw32="yes"
348d5631638Smalc  audio_possible_drivers="winwave dsound sdl fmod"
349d5631638Smalc  audio_drv_list="winwave"
35067b915a5Sbellard;;
3515c40d2bdSthsGNU/kFreeBSD)
352a167ba50SAurelien Jarno  bsd="yes"
3530c58ac1cSmalc  audio_drv_list="oss"
354f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
3555c40d2bdSths;;
3567d3505c5SbellardFreeBSD)
3577d3505c5Sbellard  bsd="yes"
3580db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3590c58ac1cSmalc  audio_drv_list="oss"
360f34af52cSaurel32  audio_possible_drivers="oss sdl esd pa"
361f01576f1SJuergen Lock  # needed for kinfo_getvmmap(3) in libutil.h
362f01576f1SJuergen Lock  LIBS="-lutil $LIBS"
3637d3505c5Sbellard;;
364c5e97233Sblueswir1DragonFly)
365c5e97233Sblueswir1  bsd="yes"
3660db4a067SPaolo Bonzini  make="${MAKE-gmake}"
367c5e97233Sblueswir1  audio_drv_list="oss"
368c5e97233Sblueswir1  audio_possible_drivers="oss sdl esd pa"
369c5e97233Sblueswir1;;
3707d3505c5SbellardNetBSD)
3717d3505c5Sbellard  bsd="yes"
3720db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3730c58ac1cSmalc  audio_drv_list="oss"
374c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
3758ef92a88Sblueswir1  oss_lib="-lossaudio"
3767d3505c5Sbellard;;
3777d3505c5SbellardOpenBSD)
3787d3505c5Sbellard  bsd="yes"
3790db4a067SPaolo Bonzini  make="${MAKE-gmake}"
3800c58ac1cSmalc  audio_drv_list="oss"
381c2de5c91Smalc  audio_possible_drivers="oss sdl esd"
3822f6a1ab0Sblueswir1  oss_lib="-lossaudio"
3837d3505c5Sbellard;;
38483fb7adfSbellardDarwin)
38583fb7adfSbellard  bsd="yes"
38683fb7adfSbellard  darwin="yes"
3870dbfc675SJuan Quintela  # on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can
3880dbfc675SJuan Quintela  # run 64-bit userspace code
389aab8588aSmalc  if [ "$cpu" = "i386" ] ; then
3901b0f9cc2Saliguori    is_x86_64=`sysctl -n hw.optional.x86_64`
391aab8588aSmalc    [ "$is_x86_64" = "1" ] && cpu=x86_64
3921b0f9cc2Saliguori  fi
3931b0f9cc2Saliguori  if [ "$cpu" = "x86_64" ] ; then
394a558ee17SJuan Quintela    QEMU_CFLAGS="-arch x86_64 $QEMU_CFLAGS"
3950c439cbfSJuan Quintela    LDFLAGS="-arch x86_64 $LDFLAGS"
3961b0f9cc2Saliguori  else
397a558ee17SJuan Quintela    QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
3981b0f9cc2Saliguori  fi
399831b7825Sths  darwin_user="yes"
400fd677642Sths  cocoa="yes"
4010c58ac1cSmalc  audio_drv_list="coreaudio"
402c2de5c91Smalc  audio_possible_drivers="coreaudio sdl fmod"
4030c439cbfSJuan Quintela  LDFLAGS="-framework CoreFoundation -framework IOKit $LDFLAGS"
4047973f21cSJuan Quintela  libs_softmmu="-F/System/Library/Frameworks -framework Cocoa -framework IOKit $libs_softmmu"
40583fb7adfSbellard;;
406ec530c81SbellardSunOS)
407ec530c81Sbellard  solaris="yes"
4080db4a067SPaolo Bonzini  make="${MAKE-gmake}"
4090db4a067SPaolo Bonzini  install="${INSTALL-ginstall}"
410fa58948dSBlue Swirl  ld="gld"
4110475a5caSths  needs_libsunmath="no"
412c2b84fabSths  solarisrev=`uname -r | cut -f2 -d.`
413ef18c883Sths  # have to select again, because `uname -m` returns i86pc
414ef18c883Sths  # even on an x86_64 box.
415ef18c883Sths  solariscpu=`isainfo -k`
416ef18c883Sths  if test "${solariscpu}" = "amd64" ; then
417ef18c883Sths    cpu="x86_64"
418ef18c883Sths  fi
419c2b84fabSths  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
4200475a5caSths    if test "$solarisrev" -le 9 ; then
4210475a5caSths      if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
4220475a5caSths        needs_libsunmath="yes"
423f14bfdf9SJuan Quintela        QEMU_CFLAGS="-I/opt/SUNWspro/prod/include/cc $QEMU_CFLAGS"
424f14bfdf9SJuan Quintela        LDFLAGS="-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib $LDFLAGS"
425f14bfdf9SJuan Quintela        LIBS="-lsunmath $LIBS"
4260475a5caSths      else
4270475a5caSths        echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
4280475a5caSths        echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
4290475a5caSths        echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
4300475a5caSths        echo "Studio 11 can be downloaded from www.sun.com."
4310475a5caSths        exit 1
4320475a5caSths      fi
4330475a5caSths    fi
43486b2bd93Sths  fi
4356b4d2ba1Sths  if test -f /usr/include/sys/soundcard.h ; then
4360c58ac1cSmalc    audio_drv_list="oss"
4376b4d2ba1Sths  fi
438c2de5c91Smalc  audio_possible_drivers="oss sdl"
439d741429aSBlue Swirl# needed for CMSG_ macros in sys/socket.h
440d741429aSBlue Swirl  QEMU_CFLAGS="-D_XOPEN_SOURCE=600 $QEMU_CFLAGS"
441d741429aSBlue Swirl# needed for TIOCWIN* defines in termios.h
442d741429aSBlue Swirl  QEMU_CFLAGS="-D__EXTENSIONS__ $QEMU_CFLAGS"
443a558ee17SJuan Quintela  QEMU_CFLAGS="-std=gnu99 $QEMU_CFLAGS"
444e174c0bbSJuan Quintela  LIBS="-lsocket -lnsl -lresolv $LIBS"
445ec530c81Sbellard;;
446b29fe3edSmalcAIX)
447b29fe3edSmalc  aix="yes"
4480db4a067SPaolo Bonzini  make="${MAKE-gmake}"
449b29fe3edSmalc;;
450179cf400SAndreas FärberHaiku)
451179cf400SAndreas Färber  haiku="yes"
452179cf400SAndreas Färber  QEMU_CFLAGS="-DB_USE_POSITIVE_POSIX_ERRORS $QEMU_CFLAGS"
453179cf400SAndreas Färber  LIBS="-lposix_error_mapper -lnetwork $LIBS"
454179cf400SAndreas Färber;;
455fb065187Sbellard*)
4560c58ac1cSmalc  audio_drv_list="oss"
457b8e59f18Smalc  audio_possible_drivers="oss alsa sdl esd pa"
4585327cf48Sbellard  linux="yes"
459831b7825Sths  linux_user="yes"
46068063649Sblueswir1  usb="linux"
461af2be207SJan Kiszka  kvm="yes"
462af2be207SJan Kiszka  vhost_net="yes"
46307f4ddbfSbellard  if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
464c2de5c91Smalc    audio_possible_drivers="$audio_possible_drivers fmod"
465c9ec1fe4Sbellard  fi
466fb065187Sbellard;;
4677d13299dSbellardesac
4687d13299dSbellard
4697d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
470b1a550a0Spbrook  if [ "$darwin" != "yes" ] ; then
47168063649Sblueswir1    usb="bsd"
47283fb7adfSbellard  fi
47384778508Sblueswir1  bsd_user="yes"
4747d3505c5Sbellardfi
4757d3505c5Sbellard
4760db4a067SPaolo Bonzini: ${make=${MAKE-make}}
4770db4a067SPaolo Bonzini: ${install=${INSTALL-install}}
478c886edfbSBlue Swirl: ${python=${PYTHON-python}}
4790db4a067SPaolo Bonzini
4803457a3f8SJuan Quintelaif test "$mingw32" = "yes" ; then
4813457a3f8SJuan Quintela  EXESUF=".exe"
482a558ee17SJuan Quintela  QEMU_CFLAGS="-DWIN32_LEAN_AND_MEAN -DWINVER=0x501 $QEMU_CFLAGS"
483e94a7936SStefan Weil  # enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later)
484e94a7936SStefan Weil  QEMU_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 $QEMU_CFLAGS"
48508f3896aSStefan Weil  LIBS="-lwinmm -lws2_32 -liberty -liphlpapi $LIBS"
486683035deSPaolo Bonzini  prefix="c:/Program Files/Qemu"
487683035deSPaolo Bonzini  mandir="\${prefix}"
488683035deSPaolo Bonzini  datadir="\${prefix}"
489683035deSPaolo Bonzini  docdir="\${prefix}"
490683035deSPaolo Bonzini  bindir="\${prefix}"
491683035deSPaolo Bonzini  sysconfdir="\${prefix}"
492683035deSPaolo Bonzini  confsuffix=""
4933457a3f8SJuan Quintelafi
4943457a3f8SJuan Quintela
495487fefdbSAnthony Liguoriwerror=""
49685aa5189Sbellard
4977d13299dSbellardfor opt do
498a46e4035Spbrook  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
4997d13299dSbellard  case "$opt" in
5002efc3265Sbellard  --help|-h) show_help=yes
5012efc3265Sbellard  ;;
50299123e13SMike Frysinger  --version|-V) exec cat $source_path/VERSION
50399123e13SMike Frysinger  ;;
504b1a550a0Spbrook  --prefix=*) prefix="$optarg"
5057d13299dSbellard  ;;
506b1a550a0Spbrook  --interp-prefix=*) interp_prefix="$optarg"
50732ce6337Sbellard  ;;
508ca4deeb1SPaolo Bonzini  --source-path=*)
5097d13299dSbellard  ;;
510ac0df51dSaliguori  --cross-prefix=*)
5117d13299dSbellard  ;;
512ac0df51dSaliguori  --cc=*)
5137d13299dSbellard  ;;
514b1a550a0Spbrook  --host-cc=*) host_cc="$optarg"
51583469015Sbellard  ;;
516b1a550a0Spbrook  --make=*) make="$optarg"
5177d13299dSbellard  ;;
5186a882643Spbrook  --install=*) install="$optarg"
5196a882643Spbrook  ;;
520c886edfbSBlue Swirl  --python=*) python="$optarg"
521c886edfbSBlue Swirl  ;;
522e2a2ed06SJuan Quintela  --extra-cflags=*)
5237d13299dSbellard  ;;
524e2a2ed06SJuan Quintela  --extra-ldflags=*)
5257d13299dSbellard  ;;
5262ff6b91eSJuan Quintela  --cpu=*)
5277d13299dSbellard  ;;
528b1a550a0Spbrook  --target-list=*) target_list="$optarg"
529de83cd02Sbellard  ;;
53074242e0fSPaolo Bonzini  --enable-trace-backend=*) trace_backend="$optarg"
53194a420b1SStefan Hajnoczi  ;;
53274242e0fSPaolo Bonzini  --with-trace-file=*) trace_file="$optarg"
5339410b56cSPrerna Saxena  ;;
5347d13299dSbellard  --enable-gprof) gprof="yes"
5357d13299dSbellard  ;;
53679427693SLoïc Minier  --static)
53779427693SLoïc Minier    static="yes"
53879427693SLoïc Minier    LDFLAGS="-static $LDFLAGS"
53943ce4dfeSbellard  ;;
5400b24e75fSPaolo Bonzini  --mandir=*) mandir="$optarg"
5410b24e75fSPaolo Bonzini  ;;
5420b24e75fSPaolo Bonzini  --bindir=*) bindir="$optarg"
5430b24e75fSPaolo Bonzini  ;;
5443aa5d2beSAlon Levy  --libdir=*) libdir="$optarg"
5453aa5d2beSAlon Levy  ;;
5460b24e75fSPaolo Bonzini  --datadir=*) datadir="$optarg"
5470b24e75fSPaolo Bonzini  ;;
5480b24e75fSPaolo Bonzini  --docdir=*) docdir="$optarg"
5490b24e75fSPaolo Bonzini  ;;
550ca2fb938SAndre Przywara  --sysconfdir=*) sysconfdir="$optarg"
55107381cc1SAnthony Liguori  ;;
55297a847bcSbellard  --disable-sdl) sdl="no"
55397a847bcSbellard  ;;
554c4198157SJuan Quintela  --enable-sdl) sdl="yes"
555c4198157SJuan Quintela  ;;
556821601eaSJes Sorensen  --disable-vnc) vnc="no"
557821601eaSJes Sorensen  ;;
558821601eaSJes Sorensen  --enable-vnc) vnc="yes"
559821601eaSJes Sorensen  ;;
560b1a550a0Spbrook  --fmod-lib=*) fmod_lib="$optarg"
561102a52e4Sbellard  ;;
562c2de5c91Smalc  --fmod-inc=*) fmod_inc="$optarg"
563c2de5c91Smalc  ;;
5642f6a1ab0Sblueswir1  --oss-lib=*) oss_lib="$optarg"
5652f6a1ab0Sblueswir1  ;;
5662fa7d3bfSmalc  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
5670c58ac1cSmalc  ;;
5680c58ac1cSmalc  --audio-drv-list=*) audio_drv_list="$optarg"
5690c58ac1cSmalc  ;;
570eb852011SMarkus Armbruster  --block-drv-whitelist=*) block_drv_whitelist=`echo "$optarg" | sed -e 's/,/ /g'`
571eb852011SMarkus Armbruster  ;;
572f8393946Saurel32  --enable-debug-tcg) debug_tcg="yes"
573f8393946Saurel32  ;;
574f8393946Saurel32  --disable-debug-tcg) debug_tcg="no"
575f8393946Saurel32  ;;
576b4475aa2SLuiz Capitulino  --enable-debug-mon) debug_mon="yes"
577b4475aa2SLuiz Capitulino  ;;
578b4475aa2SLuiz Capitulino  --disable-debug-mon) debug_mon="no"
579b4475aa2SLuiz Capitulino  ;;
580f3d08ee6SPaul Brook  --enable-debug)
581f3d08ee6SPaul Brook      # Enable debugging options that aren't excessively noisy
582f3d08ee6SPaul Brook      debug_tcg="yes"
583b4475aa2SLuiz Capitulino      debug_mon="yes"
584f3d08ee6SPaul Brook      debug="yes"
585f3d08ee6SPaul Brook      strip_opt="no"
586f3d08ee6SPaul Brook  ;;
58703b4fe7dSaliguori  --enable-sparse) sparse="yes"
58803b4fe7dSaliguori  ;;
58903b4fe7dSaliguori  --disable-sparse) sparse="no"
59003b4fe7dSaliguori  ;;
5911625af87Saliguori  --disable-strip) strip_opt="no"
5921625af87Saliguori  ;;
5938d5d2d4cSths  --disable-vnc-tls) vnc_tls="no"
5948d5d2d4cSths  ;;
5951be10ad2SJuan Quintela  --enable-vnc-tls) vnc_tls="yes"
5961be10ad2SJuan Quintela  ;;
5972f9606b3Saliguori  --disable-vnc-sasl) vnc_sasl="no"
5982f9606b3Saliguori  ;;
599ea784e3bSJuan Quintela  --enable-vnc-sasl) vnc_sasl="yes"
600ea784e3bSJuan Quintela  ;;
6012f6f5c7aSCorentin Chary  --disable-vnc-jpeg) vnc_jpeg="no"
6022f6f5c7aSCorentin Chary  ;;
6032f6f5c7aSCorentin Chary  --enable-vnc-jpeg) vnc_jpeg="yes"
6042f6f5c7aSCorentin Chary  ;;
605efe556adSCorentin Chary  --disable-vnc-png) vnc_png="no"
606efe556adSCorentin Chary  ;;
607efe556adSCorentin Chary  --enable-vnc-png) vnc_png="yes"
608efe556adSCorentin Chary  ;;
609bd023f95SCorentin Chary  --disable-vnc-thread) vnc_thread="no"
610bd023f95SCorentin Chary  ;;
611bd023f95SCorentin Chary  --enable-vnc-thread) vnc_thread="yes"
612bd023f95SCorentin Chary  ;;
613443f1376Sbellard  --disable-slirp) slirp="no"
614c20709aaSbellard  ;;
615ee682d27SStefan Weil  --disable-uuid) uuid="no"
616ee682d27SStefan Weil  ;;
617ee682d27SStefan Weil  --enable-uuid) uuid="yes"
618ee682d27SStefan Weil  ;;
619e0e6c8c0Saliguori  --disable-vde) vde="no"
6208a16d273Sths  ;;
621dfb278bdSJuan Quintela  --enable-vde) vde="yes"
622dfb278bdSJuan Quintela  ;;
623e37630caSaliguori  --disable-xen) xen="no"
624e37630caSaliguori  ;;
625fc321b4bSJuan Quintela  --enable-xen) xen="yes"
626fc321b4bSJuan Quintela  ;;
6272e4d9fb1Saurel32  --disable-brlapi) brlapi="no"
6282e4d9fb1Saurel32  ;;
6294ffcedb6SJuan Quintela  --enable-brlapi) brlapi="yes"
6304ffcedb6SJuan Quintela  ;;
631fb599c9aSbalrog  --disable-bluez) bluez="no"
632fb599c9aSbalrog  ;;
633a20a6f46SJuan Quintela  --enable-bluez) bluez="yes"
634a20a6f46SJuan Quintela  ;;
6357ba1e619Saliguori  --disable-kvm) kvm="no"
6367ba1e619Saliguori  ;;
637b31a0277SJuan Quintela  --enable-kvm) kvm="yes"
638b31a0277SJuan Quintela  ;;
639cd4ec0b4SGerd Hoffmann  --disable-spice) spice="no"
640cd4ec0b4SGerd Hoffmann  ;;
641cd4ec0b4SGerd Hoffmann  --enable-spice) spice="yes"
642cd4ec0b4SGerd Hoffmann  ;;
64305c2a3e7Sbellard  --enable-profiler) profiler="yes"
64405c2a3e7Sbellard  ;;
645c2de5c91Smalc  --enable-cocoa)
646c2de5c91Smalc      cocoa="yes" ;
647c2de5c91Smalc      sdl="no" ;
648c2de5c91Smalc      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
6495b0753e0Sbellard  ;;
650cad25d69Spbrook  --disable-system) softmmu="no"
6510a8e90f4Spbrook  ;;
652cad25d69Spbrook  --enable-system) softmmu="yes"
6530a8e90f4Spbrook  ;;
6540953a80fSZachary Amsden  --disable-user)
6550953a80fSZachary Amsden      linux_user="no" ;
6560953a80fSZachary Amsden      bsd_user="no" ;
6570953a80fSZachary Amsden      darwin_user="no"
6580953a80fSZachary Amsden  ;;
6590953a80fSZachary Amsden  --enable-user) ;;
660831b7825Sths  --disable-linux-user) linux_user="no"
6610a8e90f4Spbrook  ;;
662831b7825Sths  --enable-linux-user) linux_user="yes"
663831b7825Sths  ;;
664831b7825Sths  --disable-darwin-user) darwin_user="no"
665831b7825Sths  ;;
666831b7825Sths  --enable-darwin-user) darwin_user="yes"
6670a8e90f4Spbrook  ;;
66884778508Sblueswir1  --disable-bsd-user) bsd_user="no"
66984778508Sblueswir1  ;;
67084778508Sblueswir1  --enable-bsd-user) bsd_user="yes"
67184778508Sblueswir1  ;;
672379f6698SPaul Brook  --enable-guest-base) guest_base="yes"
673379f6698SPaul Brook  ;;
674379f6698SPaul Brook  --disable-guest-base) guest_base="no"
675379f6698SPaul Brook  ;;
67634005a00SKirill A. Shutemov  --enable-user-pie) user_pie="yes"
67734005a00SKirill A. Shutemov  ;;
67834005a00SKirill A. Shutemov  --disable-user-pie) user_pie="no"
67934005a00SKirill A. Shutemov  ;;
680c5937220Spbrook  --enable-uname-release=*) uname_release="$optarg"
681c5937220Spbrook  ;;
6823142255cSblueswir1  --sparc_cpu=*)
6833142255cSblueswir1  ;;
68485aa5189Sbellard  --enable-werror) werror="yes"
68585aa5189Sbellard  ;;
68685aa5189Sbellard  --disable-werror) werror="no"
68785aa5189Sbellard  ;;
6884d3b6f6eSbalrog  --disable-curses) curses="no"
6894d3b6f6eSbalrog  ;;
690c584a6d0SJuan Quintela  --enable-curses) curses="yes"
691c584a6d0SJuan Quintela  ;;
692769ce76dSAlexander Graf  --disable-curl) curl="no"
693769ce76dSAlexander Graf  ;;
694788c8196SJuan Quintela  --enable-curl) curl="yes"
695788c8196SJuan Quintela  ;;
6962df87df7SJuan Quintela  --disable-fdt) fdt="no"
6972df87df7SJuan Quintela  ;;
6982df87df7SJuan Quintela  --enable-fdt) fdt="yes"
6992df87df7SJuan Quintela  ;;
7005495ed11SLuiz Capitulino  --disable-check-utests) check_utests="no"
7015495ed11SLuiz Capitulino  ;;
7025495ed11SLuiz Capitulino  --enable-check-utests) check_utests="yes"
7035495ed11SLuiz Capitulino  ;;
704bd0c5661Spbrook  --disable-nptl) nptl="no"
705bd0c5661Spbrook  ;;
706b0a47e79SJuan Quintela  --enable-nptl) nptl="yes"
707b0a47e79SJuan Quintela  ;;
7088ff9cbf7Smalc  --enable-mixemu) mixemu="yes"
7098ff9cbf7Smalc  ;;
7105c6c3a6cSChristoph Hellwig  --disable-linux-aio) linux_aio="no"
7115c6c3a6cSChristoph Hellwig  ;;
7125c6c3a6cSChristoph Hellwig  --enable-linux-aio) linux_aio="yes"
7135c6c3a6cSChristoph Hellwig  ;;
714758e8e38SVenkateswararao Jujjuri (JV)  --disable-attr) attr="no"
715758e8e38SVenkateswararao Jujjuri (JV)  ;;
716758e8e38SVenkateswararao Jujjuri (JV)  --enable-attr) attr="yes"
717758e8e38SVenkateswararao Jujjuri (JV)  ;;
718e5d355d1Saliguori  --enable-io-thread) io_thread="yes"
719e5d355d1Saliguori  ;;
72077755340Sths  --disable-blobs) blobs="no"
72177755340Sths  ;;
7224a19f1ecSpbrook  --with-pkgversion=*) pkgversion=" ($optarg)"
7234a19f1ecSpbrook  ;;
724a25dba17SJuan Quintela  --disable-docs) docs="no"
72570ec5dc0SAnthony Liguori  ;;
726a25dba17SJuan Quintela  --enable-docs) docs="yes"
72783a3ab8bSJuan Quintela  ;;
728d5970055SMichael S. Tsirkin  --disable-vhost-net) vhost_net="no"
729d5970055SMichael S. Tsirkin  ;;
730d5970055SMichael S. Tsirkin  --enable-vhost-net) vhost_net="yes"
731d5970055SMichael S. Tsirkin  ;;
73220ff075bSMichael Walle  --disable-opengl) opengl="no"
73320ff075bSMichael Walle  ;;
73420ff075bSMichael Walle  --enable-opengl) opengl="yes"
73520ff075bSMichael Walle  ;;
7366bde81cbSPaolo Bonzini  --*dir)
7376bde81cbSPaolo Bonzini  ;;
738f27aaf4bSChristian Brunner  --disable-rbd) rbd="no"
739f27aaf4bSChristian Brunner  ;;
740f27aaf4bSChristian Brunner  --enable-rbd) rbd="yes"
741f27aaf4bSChristian Brunner  ;;
74236707144SAlon Levy  --disable-smartcard) smartcard="no"
74336707144SAlon Levy  ;;
74436707144SAlon Levy  --enable-smartcard) smartcard="yes"
74536707144SAlon Levy  ;;
746111a38b0SRobert Relyea  --disable-smartcard-nss) smartcard_nss="no"
747111a38b0SRobert Relyea  ;;
748111a38b0SRobert Relyea  --enable-smartcard-nss) smartcard_nss="yes"
749111a38b0SRobert Relyea  ;;
75069354a83SHans de Goede  --disable-usb-redir) usb_redir="no"
75169354a83SHans de Goede  ;;
75269354a83SHans de Goede  --enable-usb-redir) usb_redir="yes"
75369354a83SHans de Goede  ;;
7547f1559c6Sbalrog  *) echo "ERROR: unknown option $opt"; show_help="yes"
7557f1559c6Sbalrog  ;;
7567d13299dSbellard  esac
7577d13299dSbellarddone
7587d13299dSbellard
7593142255cSblueswir1#
7603142255cSblueswir1# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
761a558ee17SJuan Quintela# QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
7623142255cSblueswir1#
763379f6698SPaul Brookhost_guest_base="no"
76440293e58Sbellardcase "$cpu" in
765ed968ff1SJuan Quintela    sparc) case $sparc_cpu in
766ed968ff1SJuan Quintela           v7|v8)
767a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
768ed968ff1SJuan Quintela           ;;
769ed968ff1SJuan Quintela           v8plus|v8plusa)
770a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_${sparc_cpu}__ $QEMU_CFLAGS"
771ed968ff1SJuan Quintela           ;;
772ed968ff1SJuan Quintela           *) # sparc_cpu not defined in the command line
773a558ee17SJuan Quintela             QEMU_CFLAGS="-mcpu=ultrasparc -D__sparc_v8plus__ $QEMU_CFLAGS"
774ed968ff1SJuan Quintela           esac
7750c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
776a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 -ffixed-g2 -ffixed-g3 $QEMU_CFLAGS"
777762e8230Sblueswir1           if test "$solaris" = "no" ; then
778a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 -ffixed-g6 $QEMU_CFLAGS"
779c81da56eSJuan Quintela             helper_cflags="-ffixed-i0"
780762e8230Sblueswir1           fi
7813142255cSblueswir1           ;;
782ed968ff1SJuan Quintela    sparc64)
783a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__ $QEMU_CFLAGS"
7840c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
785a558ee17SJuan Quintela           QEMU_CFLAGS="-ffixed-g5 -ffixed-g6 -ffixed-g7 $QEMU_CFLAGS"
786ed968ff1SJuan Quintela           if test "$solaris" != "no" ; then
787a558ee17SJuan Quintela             QEMU_CFLAGS="-ffixed-g1 $QEMU_CFLAGS"
788762e8230Sblueswir1           fi
7893142255cSblueswir1           ;;
79076d83bdeSths    s390)
79128d7cc49SRichard Henderson           QEMU_CFLAGS="-m31 -march=z990 $QEMU_CFLAGS"
79228d7cc49SRichard Henderson           LDFLAGS="-m31 $LDFLAGS"
79348bb3750SRichard Henderson           host_guest_base="yes"
79428d7cc49SRichard Henderson           ;;
79528d7cc49SRichard Henderson    s390x)
79628d7cc49SRichard Henderson           QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS"
79728d7cc49SRichard Henderson           LDFLAGS="-m64 $LDFLAGS"
79848bb3750SRichard Henderson           host_guest_base="yes"
79976d83bdeSths           ;;
80040293e58Sbellard    i386)
801a558ee17SJuan Quintela           QEMU_CFLAGS="-m32 $QEMU_CFLAGS"
8020c439cbfSJuan Quintela           LDFLAGS="-m32 $LDFLAGS"
8032b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
804c81da56eSJuan Quintela           helper_cflags="-fomit-frame-pointer"
805379f6698SPaul Brook           host_guest_base="yes"
80640293e58Sbellard           ;;
80740293e58Sbellard    x86_64)
808a558ee17SJuan Quintela           QEMU_CFLAGS="-m64 $QEMU_CFLAGS"
8090c439cbfSJuan Quintela           LDFLAGS="-m64 $LDFLAGS"
8102b2e59e6SPaolo Bonzini           cc_i386='$(CC) -m32'
811379f6698SPaul Brook           host_guest_base="yes"
812379f6698SPaul Brook           ;;
813379f6698SPaul Brook    arm*)
814379f6698SPaul Brook           host_guest_base="yes"
81540293e58Sbellard           ;;
816f6548c0aSmalc    ppc*)
817f6548c0aSmalc           host_guest_base="yes"
818f6548c0aSmalc           ;;
819cc01cc8eSAurelien Jarno    mips*)
820cc01cc8eSAurelien Jarno           host_guest_base="yes"
821cc01cc8eSAurelien Jarno           ;;
822477ba620SAurelien Jarno    ia64*)
823477ba620SAurelien Jarno           host_guest_base="yes"
824477ba620SAurelien Jarno           ;;
825fd76e73aSRichard Henderson    hppa*)
826fd76e73aSRichard Henderson           host_guest_base="yes"
827fd76e73aSRichard Henderson           ;;
828d2fbca94SGuan Xuetao    unicore32*)
829d2fbca94SGuan Xuetao           host_guest_base="yes"
830d2fbca94SGuan Xuetao           ;;
8313142255cSblueswir1esac
8323142255cSblueswir1
833379f6698SPaul Brook[ -z "$guest_base" ] && guest_base="$host_guest_base"
834379f6698SPaul Brook
83560e0df25SPeter Maydell
83660e0df25SPeter Maydelldefault_target_list=""
83760e0df25SPeter Maydell
83860e0df25SPeter Maydell# these targets are portable
83960e0df25SPeter Maydellif [ "$softmmu" = "yes" ] ; then
84060e0df25SPeter Maydell    default_target_list="\
84160e0df25SPeter Maydelli386-softmmu \
84260e0df25SPeter Maydellx86_64-softmmu \
843b758aca1SRichard Hendersonalpha-softmmu \
84460e0df25SPeter Maydellarm-softmmu \
84560e0df25SPeter Maydellcris-softmmu \
84660e0df25SPeter Maydelllm32-softmmu \
84760e0df25SPeter Maydellm68k-softmmu \
84860e0df25SPeter Maydellmicroblaze-softmmu \
84960e0df25SPeter Maydellmicroblazeel-softmmu \
85060e0df25SPeter Maydellmips-softmmu \
85160e0df25SPeter Maydellmipsel-softmmu \
85260e0df25SPeter Maydellmips64-softmmu \
85360e0df25SPeter Maydellmips64el-softmmu \
85460e0df25SPeter Maydellppc-softmmu \
85560e0df25SPeter Maydellppcemb-softmmu \
85660e0df25SPeter Maydellppc64-softmmu \
85760e0df25SPeter Maydellsh4-softmmu \
85860e0df25SPeter Maydellsh4eb-softmmu \
85960e0df25SPeter Maydellsparc-softmmu \
86060e0df25SPeter Maydellsparc64-softmmu \
8610f3301d4SAlexander Grafs390x-softmmu \
86260e0df25SPeter Maydell"
86360e0df25SPeter Maydellfi
86460e0df25SPeter Maydell# the following are Linux specific
86560e0df25SPeter Maydellif [ "$linux_user" = "yes" ] ; then
86660e0df25SPeter Maydell    default_target_list="${default_target_list}\
86760e0df25SPeter Maydelli386-linux-user \
86860e0df25SPeter Maydellx86_64-linux-user \
86960e0df25SPeter Maydellalpha-linux-user \
87060e0df25SPeter Maydellarm-linux-user \
87160e0df25SPeter Maydellarmeb-linux-user \
87260e0df25SPeter Maydellcris-linux-user \
87360e0df25SPeter Maydellm68k-linux-user \
87460e0df25SPeter Maydellmicroblaze-linux-user \
87560e0df25SPeter Maydellmicroblazeel-linux-user \
87660e0df25SPeter Maydellmips-linux-user \
87760e0df25SPeter Maydellmipsel-linux-user \
87860e0df25SPeter Maydellppc-linux-user \
87960e0df25SPeter Maydellppc64-linux-user \
88060e0df25SPeter Maydellppc64abi32-linux-user \
88160e0df25SPeter Maydellsh4-linux-user \
88260e0df25SPeter Maydellsh4eb-linux-user \
88360e0df25SPeter Maydellsparc-linux-user \
88460e0df25SPeter Maydellsparc64-linux-user \
88560e0df25SPeter Maydellsparc32plus-linux-user \
88660e0df25SPeter Maydellunicore32-linux-user \
8870f3301d4SAlexander Grafs390x-linux-user \
88860e0df25SPeter Maydell"
88960e0df25SPeter Maydellfi
89060e0df25SPeter Maydell# the following are Darwin specific
89160e0df25SPeter Maydellif [ "$darwin_user" = "yes" ] ; then
89260e0df25SPeter Maydell    default_target_list="$default_target_list i386-darwin-user ppc-darwin-user "
89360e0df25SPeter Maydellfi
89460e0df25SPeter Maydell# the following are BSD specific
89560e0df25SPeter Maydellif [ "$bsd_user" = "yes" ] ; then
89660e0df25SPeter Maydell    default_target_list="${default_target_list}\
89760e0df25SPeter Maydelli386-bsd-user \
89860e0df25SPeter Maydellx86_64-bsd-user \
89960e0df25SPeter Maydellsparc-bsd-user \
90060e0df25SPeter Maydellsparc64-bsd-user \
90160e0df25SPeter Maydell"
90260e0df25SPeter Maydellfi
90360e0df25SPeter Maydell
904af5db58eSpbrookif test x"$show_help" = x"yes" ; then
905af5db58eSpbrookcat << EOF
906af5db58eSpbrook
907af5db58eSpbrookUsage: configure [options]
908af5db58eSpbrookOptions: [defaults in brackets after descriptions]
909af5db58eSpbrook
910af5db58eSpbrookEOF
911af5db58eSpbrookecho "Standard options:"
912af5db58eSpbrookecho "  --help                   print this message"
913af5db58eSpbrookecho "  --prefix=PREFIX          install in PREFIX [$prefix]"
914af5db58eSpbrookecho "  --interp-prefix=PREFIX   where to find shared libraries, etc."
915af5db58eSpbrookecho "                           use %M for cpu name [$interp_prefix]"
91660e0df25SPeter Maydellecho "  --target-list=LIST       set target list (default: build everything)"
91760e0df25SPeter Maydellecho "Available targets: $default_target_list" | \
91860e0df25SPeter Maydell    fold -s -w 53 | sed -e 's/^/                           /'
919af5db58eSpbrookecho ""
920af5db58eSpbrookecho "Advanced options (experts only):"
921af5db58eSpbrookecho "  --source-path=PATH       path of source code [$source_path]"
922af5db58eSpbrookecho "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
923af5db58eSpbrookecho "  --cc=CC                  use C compiler CC [$cc]"
9240bfe8cc0SPaolo Bonziniecho "  --host-cc=CC             use C compiler CC [$host_cc] for code run at"
9250bfe8cc0SPaolo Bonziniecho "                           build time"
926a558ee17SJuan Quintelaecho "  --extra-cflags=CFLAGS    append extra C compiler flags QEMU_CFLAGS"
927e3fc14c3SJan Kiszkaecho "  --extra-ldflags=LDFLAGS  append extra linker flags LDFLAGS"
928af5db58eSpbrookecho "  --make=MAKE              use specified make [$make]"
9296a882643Spbrookecho "  --install=INSTALL        use specified install [$install]"
930c886edfbSBlue Swirlecho "  --python=PYTHON          use specified python [$python]"
931af5db58eSpbrookecho "  --static                 enable static build [$static]"
9320b24e75fSPaolo Bonziniecho "  --mandir=PATH            install man pages in PATH"
9330b24e75fSPaolo Bonziniecho "  --datadir=PATH           install firmware in PATH"
9340b24e75fSPaolo Bonziniecho "  --docdir=PATH            install documentation in PATH"
9350b24e75fSPaolo Bonziniecho "  --bindir=PATH            install binaries in PATH"
9360b24e75fSPaolo Bonziniecho "  --sysconfdir=PATH        install config in PATH/qemu"
937f8393946Saurel32echo "  --enable-debug-tcg       enable TCG debugging"
938f8393946Saurel32echo "  --disable-debug-tcg      disable TCG debugging (default)"
93909695a4aSStefan Weilecho "  --enable-debug           enable common debug build options"
940890b1658Saliguoriecho "  --enable-sparse          enable sparse checker"
941890b1658Saliguoriecho "  --disable-sparse         disable sparse checker (default)"
9421625af87Saliguoriecho "  --disable-strip          disable stripping binaries"
94385aa5189Sbellardecho "  --disable-werror         disable compilation abort on warning"
944fe8f78e4Sbalrogecho "  --disable-sdl            disable SDL"
945c4198157SJuan Quintelaecho "  --enable-sdl             enable SDL"
946821601eaSJes Sorensenecho "  --disable-vnc            disable VNC"
947821601eaSJes Sorensenecho "  --enable-vnc             enable VNC"
948af5db58eSpbrookecho "  --enable-cocoa           enable COCOA (Mac OS X only)"
949c2de5c91Smalcecho "  --audio-drv-list=LIST    set audio drivers list:"
950c2de5c91Smalcecho "                           Available drivers: $audio_possible_drivers"
9514c9b53e3Smalcecho "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
9524c9b53e3Smalcecho "                           Available cards: $audio_possible_cards"
953eb852011SMarkus Armbrusterecho "  --block-drv-whitelist=L  set block driver whitelist"
954eb852011SMarkus Armbrusterecho "                           (affects only QEMU, not qemu-img)"
9558ff9cbf7Smalcecho "  --enable-mixemu          enable mixer emulation"
956e37630caSaliguoriecho "  --disable-xen            disable xen backend driver support"
957fc321b4bSJuan Quintelaecho "  --enable-xen             enable xen backend driver support"
9582e4d9fb1Saurel32echo "  --disable-brlapi         disable BrlAPI"
9594ffcedb6SJuan Quintelaecho "  --enable-brlapi          enable BrlAPI"
9608d5d2d4cSthsecho "  --disable-vnc-tls        disable TLS encryption for VNC server"
9611be10ad2SJuan Quintelaecho "  --enable-vnc-tls         enable TLS encryption for VNC server"
9622f9606b3Saliguoriecho "  --disable-vnc-sasl       disable SASL encryption for VNC server"
963ea784e3bSJuan Quintelaecho "  --enable-vnc-sasl        enable SASL encryption for VNC server"
9642f6f5c7aSCorentin Charyecho "  --disable-vnc-jpeg       disable JPEG lossy compression for VNC server"
9652f6f5c7aSCorentin Charyecho "  --enable-vnc-jpeg        enable JPEG lossy compression for VNC server"
96696763cf9SCorentin Charyecho "  --disable-vnc-png        disable PNG compression for VNC server (default)"
967efe556adSCorentin Charyecho "  --enable-vnc-png         enable PNG compression for VNC server"
968bd023f95SCorentin Charyecho "  --disable-vnc-thread     disable threaded VNC server"
969bd023f95SCorentin Charyecho "  --enable-vnc-thread      enable threaded VNC server"
970af896aaaSpbrookecho "  --disable-curses         disable curses output"
971c584a6d0SJuan Quintelaecho "  --enable-curses          enable curses output"
972769ce76dSAlexander Grafecho "  --disable-curl           disable curl connectivity"
973788c8196SJuan Quintelaecho "  --enable-curl            enable curl connectivity"
9742df87df7SJuan Quintelaecho "  --disable-fdt            disable fdt device tree"
9752df87df7SJuan Quintelaecho "  --enable-fdt             enable fdt device tree"
9765495ed11SLuiz Capitulinoecho "  --disable-check-utests   disable check unit-tests"
9775495ed11SLuiz Capitulinoecho "  --enable-check-utests    enable check unit-tests"
978fb599c9aSbalrogecho "  --disable-bluez          disable bluez stack connectivity"
979a20a6f46SJuan Quintelaecho "  --enable-bluez           enable bluez stack connectivity"
9806093d3d4SPeter Maydellecho "  --disable-slirp          disable SLIRP userspace network connectivity"
9817ba1e619Saliguoriecho "  --disable-kvm            disable KVM acceleration support"
982b31a0277SJuan Quintelaecho "  --enable-kvm             enable KVM acceleration support"
983bd0c5661Spbrookecho "  --disable-nptl           disable usermode NPTL support"
984e5934d33SAndre Przywaraecho "  --enable-nptl            enable usermode NPTL support"
985af5db58eSpbrookecho "  --enable-system          enable all system emulation targets"
986af5db58eSpbrookecho "  --disable-system         disable all system emulation targets"
9870953a80fSZachary Amsdenecho "  --enable-user            enable supported user emulation targets"
9880953a80fSZachary Amsdenecho "  --disable-user           disable all user emulation targets"
989831b7825Sthsecho "  --enable-linux-user      enable all linux usermode emulation targets"
990831b7825Sthsecho "  --disable-linux-user     disable all linux usermode emulation targets"
991831b7825Sthsecho "  --enable-darwin-user     enable all darwin usermode emulation targets"
992831b7825Sthsecho "  --disable-darwin-user    disable all darwin usermode emulation targets"
99384778508Sblueswir1echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
99484778508Sblueswir1echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
995379f6698SPaul Brookecho "  --enable-guest-base      enable GUEST_BASE support for usermode"
996379f6698SPaul Brookecho "                           emulation targets"
997379f6698SPaul Brookecho "  --disable-guest-base     disable GUEST_BASE support"
99834005a00SKirill A. Shutemovecho "  --enable-user-pie        build usermode emulation targets as PIE"
99934005a00SKirill A. Shutemovecho "  --disable-user-pie       do not build usermode emulation targets as PIE"
1000af5db58eSpbrookecho "  --fmod-lib               path to FMOD library"
1001af5db58eSpbrookecho "  --fmod-inc               path to FMOD includes"
10022f6a1ab0Sblueswir1echo "  --oss-lib                path to OSS library"
1003c5937220Spbrookecho "  --enable-uname-release=R Return R for uname -r in usermode emulation"
10043142255cSblueswir1echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
1005ee682d27SStefan Weilecho "  --disable-uuid           disable uuid support"
1006ee682d27SStefan Weilecho "  --enable-uuid            enable uuid support"
1007e0e6c8c0Saliguoriecho "  --disable-vde            disable support for vde network"
1008dfb278bdSJuan Quintelaecho "  --enable-vde             enable support for vde network"
10095c6c3a6cSChristoph Hellwigecho "  --disable-linux-aio      disable Linux AIO support"
10105c6c3a6cSChristoph Hellwigecho "  --enable-linux-aio       enable Linux AIO support"
1011758e8e38SVenkateswararao Jujjuri (JV)echo "  --disable-attr           disables attr and xattr support"
1012758e8e38SVenkateswararao Jujjuri (JV)echo "  --enable-attr            enable attr and xattr support"
1013e5d355d1Saliguoriecho "  --enable-io-thread       enable IO thread"
101477755340Sthsecho "  --disable-blobs          disable installing provided firmware blobs"
1015d2807bc9SDirk Ullrichecho "  --enable-docs            enable documentation build"
1016d2807bc9SDirk Ullrichecho "  --disable-docs           disable documentation build"
1017d5970055SMichael S. Tsirkinecho "  --disable-vhost-net      disable vhost-net acceleration support"
1018d5970055SMichael S. Tsirkinecho "  --enable-vhost-net       enable vhost-net acceleration support"
1019320fba2aSFabien Chouteauecho "  --enable-trace-backend=B Set trace backend"
1020320fba2aSFabien Chouteauecho "                           Available backends:" $("$source_path"/scripts/tracetool --list-backends)
102174242e0fSPaolo Bonziniecho "  --with-trace-file=NAME   Full PATH,NAME of file to store traces"
10229410b56cSPrerna Saxenaecho "                           Default:trace-<pid>"
1023cd4ec0b4SGerd Hoffmannecho "  --disable-spice          disable spice"
1024cd4ec0b4SGerd Hoffmannecho "  --enable-spice           enable spice"
1025f27aaf4bSChristian Brunnerecho "  --enable-rbd             enable building the rados block device (rbd)"
102636707144SAlon Levyecho "  --disable-smartcard      disable smartcard support"
102736707144SAlon Levyecho "  --enable-smartcard       enable smartcard support"
1028111a38b0SRobert Relyeaecho "  --disable-smartcard-nss  disable smartcard nss support"
1029111a38b0SRobert Relyeaecho "  --enable-smartcard-nss   enable smartcard nss support"
103069354a83SHans de Goedeecho "  --disable-usb-redir      disable usb network redirection support"
103169354a83SHans de Goedeecho "  --enable-usb-redir       enable usb network redirection support"
1032af5db58eSpbrookecho ""
10335bf08934Sthsecho "NOTE: The object files are built at the place where configure is launched"
1034af5db58eSpbrookexit 1
1035af5db58eSpbrookfi
1036af5db58eSpbrook
10378d05095cSPaolo Bonzini# check that the C compiler works.
10388d05095cSPaolo Bonzinicat > $TMPC <<EOF
10398d05095cSPaolo Bonziniint main(void) {}
10408d05095cSPaolo BonziniEOF
10418d05095cSPaolo Bonzini
10428d05095cSPaolo Bonziniif compile_object ; then
10438d05095cSPaolo Bonzini  : C compiler works ok
10448d05095cSPaolo Bonzinielse
10458d05095cSPaolo Bonzini    echo "ERROR: \"$cc\" either does not exist or does not work"
10468d05095cSPaolo Bonzini    exit 1
10478d05095cSPaolo Bonzinifi
10488d05095cSPaolo Bonzini
10498d05095cSPaolo Bonzinigcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits"
10508d05095cSPaolo Bonzinigcc_flags="-Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers $gcc_flags"
10518d05095cSPaolo Bonzinigcc_flags="-Wmissing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
1052f9188227SMike Frysingergcc_flags="-fstack-protector-all -Wendif-labels $gcc_flags"
10538d05095cSPaolo Bonzinicat > $TMPC << EOF
10548d05095cSPaolo Bonziniint main(void) { return 0; }
10558d05095cSPaolo BonziniEOF
10568d05095cSPaolo Bonzinifor flag in $gcc_flags; do
10578d05095cSPaolo Bonzini    if compile_prog "-Werror $QEMU_CFLAGS" "-Werror $flag" ; then
10588d05095cSPaolo Bonzini	QEMU_CFLAGS="$QEMU_CFLAGS $flag"
10598d05095cSPaolo Bonzini    fi
10608d05095cSPaolo Bonzinidone
10618d05095cSPaolo Bonzini
1062ec530c81Sbellard#
1063ec530c81Sbellard# Solaris specific configure tool chain decisions
1064ec530c81Sbellard#
1065ec530c81Sbellardif test "$solaris" = "yes" ; then
10666792aa11SLoïc Minier  if has $install; then
10676792aa11SLoïc Minier    :
10686792aa11SLoïc Minier  else
1069ec530c81Sbellard    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
1070ec530c81Sbellard    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
1071ec530c81Sbellard    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
1072ec530c81Sbellard    exit 1
1073ec530c81Sbellard  fi
10746792aa11SLoïc Minier  if test "`path_of $install`" = "/usr/sbin/install" ; then
1075ec530c81Sbellard    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
1076ec530c81Sbellard    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
1077ec530c81Sbellard    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
1078ec530c81Sbellard    exit 1
1079ec530c81Sbellard  fi
10806792aa11SLoïc Minier  if has ar; then
10816792aa11SLoïc Minier    :
10826792aa11SLoïc Minier  else
1083ec530c81Sbellard    echo "Error: No path includes ar"
1084ec530c81Sbellard    if test -f /usr/ccs/bin/ar ; then
1085ec530c81Sbellard      echo "Add /usr/ccs/bin to your path and rerun configure"
1086ec530c81Sbellard    fi
1087ec530c81Sbellard    exit 1
1088ec530c81Sbellard  fi
1089ec530c81Sbellardfi
1090ec530c81Sbellard
1091c886edfbSBlue Swirlif has $python; then
1092c886edfbSBlue Swirl  :
1093c886edfbSBlue Swirlelse
1094c886edfbSBlue Swirl  echo "Python not found. Use --python=/path/to/python"
1095c886edfbSBlue Swirl  exit 1
1096c886edfbSBlue Swirlfi
1097c886edfbSBlue Swirl
10985327cf48Sbellardif test -z "$target_list" ; then
109960e0df25SPeter Maydell    target_list="$default_target_list"
11006e20a45fSbellardelse
1101b1a550a0Spbrook    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
11025327cf48Sbellardfi
11030a8e90f4Spbrookif test -z "$target_list" ; then
11040a8e90f4Spbrook    echo "No targets enabled"
11050a8e90f4Spbrook    exit 1
11060a8e90f4Spbrookfi
1107f55fe278SPaolo Bonzini# see if system emulation was really requested
1108f55fe278SPaolo Bonzinicase " $target_list " in
1109f55fe278SPaolo Bonzini  *"-softmmu "*) softmmu=yes
1110f55fe278SPaolo Bonzini  ;;
1111f55fe278SPaolo Bonzini  *) softmmu=no
1112f55fe278SPaolo Bonzini  ;;
1113f55fe278SPaolo Bonziniesac
11145327cf48Sbellard
1115249247c9SJuan Quintelafeature_not_found() {
1116249247c9SJuan Quintela  feature=$1
1117249247c9SJuan Quintela
1118249247c9SJuan Quintela  echo "ERROR"
1119249247c9SJuan Quintela  echo "ERROR: User requested feature $feature"
11209332f6a2SSebastian Herbszt  echo "ERROR: configure was not able to find it"
1121249247c9SJuan Quintela  echo "ERROR"
1122249247c9SJuan Quintela  exit 1;
1123249247c9SJuan Quintela}
1124249247c9SJuan Quintela
11257d13299dSbellardif test -z "$cross_prefix" ; then
11267d13299dSbellard
11277d13299dSbellard# ---
11287d13299dSbellard# big/little endian test
11297d13299dSbellardcat > $TMPC << EOF
11307d13299dSbellard#include <inttypes.h>
11317d13299dSbellardint main(int argc, char ** argv){
11327d13299dSbellard        volatile uint32_t i=0x01234567;
11337d13299dSbellard        return (*((uint8_t*)(&i))) == 0x67;
11347d13299dSbellard}
11357d13299dSbellardEOF
11367d13299dSbellard
113752166aa0SJuan Quintelaif compile_prog "" "" ; then
11387d13299dSbellard$TMPE && bigendian="yes"
11397d13299dSbellardelse
11407d13299dSbellardecho big/little test failed
11417d13299dSbellardfi
11427d13299dSbellard
11437d13299dSbellardelse
11447d13299dSbellard
11457d13299dSbellard# if cross compiling, cannot launch a program, so make a static guess
1146ea8f20f8SJuan Quintelacase "$cpu" in
114724e804ecSAlexander Graf  armv4b|hppa|m68k|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
1148ea8f20f8SJuan Quintela    bigendian=yes
1149ea8f20f8SJuan Quintela  ;;
1150ea8f20f8SJuan Quintelaesac
11517d13299dSbellard
11527d13299dSbellardfi
11537d13299dSbellard
115470be1a2eSPaolo Bonzini# host long bits test, actually a pointer size test
115570be1a2eSPaolo Bonzinicat > $TMPC << EOF
115670be1a2eSPaolo Bonziniint sizeof_pointer_is_8[sizeof(void *) == 8 ? 1 : -1];
115770be1a2eSPaolo BonziniEOF
115870be1a2eSPaolo Bonziniif compile_object; then
1159ea8f20f8SJuan Quintelahostlongbits=64
116070be1a2eSPaolo Bonzinielse
116170be1a2eSPaolo Bonzinihostlongbits=32
116270be1a2eSPaolo Bonzinifi
1163b6853697Sbellard
1164b0a47e79SJuan Quintela
1165b0a47e79SJuan Quintela##########################################
1166b0a47e79SJuan Quintela# NPTL probe
1167b0a47e79SJuan Quintela
1168b0a47e79SJuan Quintelaif test "$nptl" != "no" ; then
1169bd0c5661Spbrook  cat > $TMPC <<EOF
1170bd0c5661Spbrook#include <sched.h>
117130813ceaSpbrook#include <linux/futex.h>
1172bd0c5661Spbrookvoid foo()
1173bd0c5661Spbrook{
1174bd0c5661Spbrook#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
1175bd0c5661Spbrook#error bork
1176bd0c5661Spbrook#endif
1177bd0c5661Spbrook}
1178bd0c5661SpbrookEOF
1179bd0c5661Spbrook
118052166aa0SJuan Quintela  if compile_object ; then
1181b0a47e79SJuan Quintela    nptl=yes
1182bd0c5661Spbrook  else
1183b0a47e79SJuan Quintela    if test "$nptl" = "yes" ; then
1184b0a47e79SJuan Quintela      feature_not_found "nptl"
1185b0a47e79SJuan Quintela    fi
1186b0a47e79SJuan Quintela    nptl=no
1187b0a47e79SJuan Quintela  fi
1188bd0c5661Spbrookfi
1189bd0c5661Spbrook
119011d9f695Sbellard##########################################
1191ac62922eSbalrog# zlib check
1192ac62922eSbalrog
1193ac62922eSbalrogcat > $TMPC << EOF
1194ac62922eSbalrog#include <zlib.h>
1195ac62922eSbalrogint main(void) { zlibVersion(); return 0; }
1196ac62922eSbalrogEOF
119752166aa0SJuan Quintelaif compile_prog "" "-lz" ; then
1198ac62922eSbalrog    :
1199ac62922eSbalrogelse
1200ac62922eSbalrog    echo
1201ac62922eSbalrog    echo "Error: zlib check failed"
1202ac62922eSbalrog    echo "Make sure to have the zlib libs and headers installed."
1203ac62922eSbalrog    echo
1204ac62922eSbalrog    exit 1
1205ac62922eSbalrogfi
1206ac62922eSbalrog
1207ac62922eSbalrog##########################################
1208e37630caSaliguori# xen probe
1209e37630caSaliguori
1210fc321b4bSJuan Quintelaif test "$xen" != "no" ; then
1211b2266beeSJuan Quintela  xen_libs="-lxenstore -lxenctrl -lxenguest"
1212d5b93ddfSAnthony PERARD
1213d5b93ddfSAnthony PERARD  # Xen unstable
1214e37630caSaliguori  cat > $TMPC <<EOF
1215e37630caSaliguori#include <xenctrl.h>
1216e37630caSaliguori#include <xs.h>
1217d5b93ddfSAnthony PERARD#include <stdint.h>
1218d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1219d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1220d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1221d5b93ddfSAnthony PERARD#endif
1222d5b93ddfSAnthony PERARDint main(void) {
1223d5b93ddfSAnthony PERARD  xc_interface *xc;
1224d5b93ddfSAnthony PERARD  xs_daemon_open();
1225d5b93ddfSAnthony PERARD  xc = xc_interface_open(0, 0, 0);
1226d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1227d5b93ddfSAnthony PERARD  xc_gnttab_open(NULL, 0);
1228b87de24eSAnthony PERARD  xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0);
1229d5b93ddfSAnthony PERARD  return 0;
1230d5b93ddfSAnthony PERARD}
1231e37630caSaliguoriEOF
123252166aa0SJuan Quintela  if compile_prog "" "$xen_libs" ; then
1233d5b93ddfSAnthony PERARD    xen_ctrl_version=410
1234fc321b4bSJuan Quintela    xen=yes
1235d5b93ddfSAnthony PERARD
1236d5b93ddfSAnthony PERARD  # Xen 4.0.0
1237d5b93ddfSAnthony PERARD  elif (
1238d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1239d5b93ddfSAnthony PERARD#include <xenctrl.h>
1240d5b93ddfSAnthony PERARD#include <xs.h>
1241d5b93ddfSAnthony PERARD#include <stdint.h>
1242d5b93ddfSAnthony PERARD#include <xen/hvm/hvm_info_table.h>
1243d5b93ddfSAnthony PERARD#if !defined(HVM_MAX_VCPUS)
1244d5b93ddfSAnthony PERARD# error HVM_MAX_VCPUS not defined
1245d5b93ddfSAnthony PERARD#endif
1246d5b93ddfSAnthony PERARDint main(void) {
1247b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1248b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1249b87de24eSAnthony PERARD  };
1250d5b93ddfSAnthony PERARD  xs_daemon_open();
1251d5b93ddfSAnthony PERARD  xc_interface_open();
1252d5b93ddfSAnthony PERARD  xc_gnttab_open();
1253d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1254b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1255d5b93ddfSAnthony PERARD  return 0;
1256d5b93ddfSAnthony PERARD}
1257d5b93ddfSAnthony PERARDEOF
1258d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1259d5b93ddfSAnthony PERARD    ) ; then
1260d5b93ddfSAnthony PERARD    xen_ctrl_version=400
1261d5b93ddfSAnthony PERARD    xen=yes
1262d5b93ddfSAnthony PERARD
1263b87de24eSAnthony PERARD  # Xen 3.4.0
1264b87de24eSAnthony PERARD  elif (
1265b87de24eSAnthony PERARD      cat > $TMPC <<EOF
1266b87de24eSAnthony PERARD#include <xenctrl.h>
1267b87de24eSAnthony PERARD#include <xs.h>
1268b87de24eSAnthony PERARDint main(void) {
1269b87de24eSAnthony PERARD  struct xen_add_to_physmap xatp = {
1270b87de24eSAnthony PERARD    .domid = 0, .space = XENMAPSPACE_gmfn, .idx = 0, .gpfn = 0,
1271b87de24eSAnthony PERARD  };
1272b87de24eSAnthony PERARD  xs_daemon_open();
1273b87de24eSAnthony PERARD  xc_interface_open();
1274b87de24eSAnthony PERARD  xc_gnttab_open();
1275b87de24eSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1276b87de24eSAnthony PERARD  xc_memory_op(0, XENMEM_add_to_physmap, &xatp);
1277b87de24eSAnthony PERARD  return 0;
1278b87de24eSAnthony PERARD}
1279b87de24eSAnthony PERARDEOF
1280b87de24eSAnthony PERARD      compile_prog "" "$xen_libs"
1281b87de24eSAnthony PERARD    ) ; then
1282b87de24eSAnthony PERARD    xen_ctrl_version=340
1283b87de24eSAnthony PERARD    xen=yes
1284b87de24eSAnthony PERARD
1285b87de24eSAnthony PERARD  # Xen 3.3.0
1286d5b93ddfSAnthony PERARD  elif (
1287d5b93ddfSAnthony PERARD      cat > $TMPC <<EOF
1288d5b93ddfSAnthony PERARD#include <xenctrl.h>
1289d5b93ddfSAnthony PERARD#include <xs.h>
1290d5b93ddfSAnthony PERARDint main(void) {
1291d5b93ddfSAnthony PERARD  xs_daemon_open();
1292d5b93ddfSAnthony PERARD  xc_interface_open();
1293d5b93ddfSAnthony PERARD  xc_gnttab_open();
1294d5b93ddfSAnthony PERARD  xc_hvm_set_mem_type(0, 0, HVMMEM_ram_ro, 0, 0);
1295d5b93ddfSAnthony PERARD  return 0;
1296d5b93ddfSAnthony PERARD}
1297d5b93ddfSAnthony PERARDEOF
1298d5b93ddfSAnthony PERARD      compile_prog "" "$xen_libs"
1299d5b93ddfSAnthony PERARD    ) ; then
1300d5b93ddfSAnthony PERARD    xen_ctrl_version=330
1301d5b93ddfSAnthony PERARD    xen=yes
1302d5b93ddfSAnthony PERARD
1303d5b93ddfSAnthony PERARD  # Xen not found or unsupported
1304e37630caSaliguori  else
1305fc321b4bSJuan Quintela    if test "$xen" = "yes" ; then
1306fc321b4bSJuan Quintela      feature_not_found "xen"
1307fc321b4bSJuan Quintela    fi
1308fc321b4bSJuan Quintela    xen=no
1309e37630caSaliguori  fi
1310d5b93ddfSAnthony PERARD
1311d5b93ddfSAnthony PERARD  if test "$xen" = yes; then
1312d5b93ddfSAnthony PERARD    libs_softmmu="$xen_libs $libs_softmmu"
1313d5b93ddfSAnthony PERARD  fi
1314e37630caSaliguorifi
1315e37630caSaliguori
1316e37630caSaliguori##########################################
1317a8bd70adSPaolo Bonzini# pkg-config probe
1318f91672e5SPaolo Bonzini
1319a8bd70adSPaolo Bonziniif ! has $pkg_config; then
132008421541SPaolo Bonzini  echo warning: proceeding without "$pkg_config" >&2
132108421541SPaolo Bonzini  pkg_config=/bin/false
1322f91672e5SPaolo Bonzinifi
1323f91672e5SPaolo Bonzini
1324f91672e5SPaolo Bonzini##########################################
132544dc0ca3SAlon Levy# libtool probe
132644dc0ca3SAlon Levy
132744dc0ca3SAlon Levyif ! has libtool; then
132844dc0ca3SAlon Levy    libtool=
132944dc0ca3SAlon Levyelse
133044dc0ca3SAlon Levy    libtool=libtool
133144dc0ca3SAlon Levyfi
133244dc0ca3SAlon Levy
133344dc0ca3SAlon Levy##########################################
1334dfffc653SJuan Quintela# Sparse probe
1335dfffc653SJuan Quintelaif test "$sparse" != "no" ; then
13360dba6195SLoïc Minier  if has cgcc; then
1337dfffc653SJuan Quintela    sparse=yes
1338dfffc653SJuan Quintela  else
1339dfffc653SJuan Quintela    if test "$sparse" = "yes" ; then
1340dfffc653SJuan Quintela      feature_not_found "sparse"
1341dfffc653SJuan Quintela    fi
1342dfffc653SJuan Quintela    sparse=no
1343dfffc653SJuan Quintela  fi
1344dfffc653SJuan Quintelafi
1345dfffc653SJuan Quintela
1346dfffc653SJuan Quintela##########################################
134711d9f695Sbellard# SDL probe
134811d9f695Sbellard
13493ec87ffeSPaolo Bonzini# Look for sdl configuration program (pkg-config or sdl-config).  Try
13503ec87ffeSPaolo Bonzini# sdl-config even without cross prefix, and favour pkg-config over sdl-config.
13513ec87ffeSPaolo Bonziniif test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
13523ec87ffeSPaolo Bonzini  sdl_config=sdl-config
13533ec87ffeSPaolo Bonzinifi
13543ec87ffeSPaolo Bonzini
13553ec87ffeSPaolo Bonziniif $pkg_config sdl --modversion >/dev/null 2>&1; then
1356a8bd70adSPaolo Bonzini  sdlconfig="$pkg_config sdl"
1357fec0e3e8SStefan Weil  _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
13583ec87ffeSPaolo Bonzinielif has ${sdl_config}; then
13593ec87ffeSPaolo Bonzini  sdlconfig="$sdl_config"
13609316f803SPaolo Bonzini  _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
1361a0dfd8a4SLoïc Minierelse
1362a0dfd8a4SLoïc Minier  if test "$sdl" = "yes" ; then
1363a0dfd8a4SLoïc Minier    feature_not_found "sdl"
1364a0dfd8a4SLoïc Minier  fi
1365a0dfd8a4SLoïc Minier  sdl=no
13669316f803SPaolo Bonzinifi
136729e5badaSScott Woodif test -n "$cross_prefix" && test "$(basename "$sdlconfig")" = sdl-config; then
13683ec87ffeSPaolo Bonzini  echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
13693ec87ffeSPaolo Bonzinifi
137011d9f695Sbellard
13719316f803SPaolo Bonzinisdl_too_old=no
1372c4198157SJuan Quintelaif test "$sdl" != "no" ; then
137311d9f695Sbellard  cat > $TMPC << EOF
137411d9f695Sbellard#include <SDL.h>
137511d9f695Sbellard#undef main /* We don't want SDL to override our main() */
137611d9f695Sbellardint main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
137711d9f695SbellardEOF
13789316f803SPaolo Bonzini  sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
137974f42e18STeLeMan  if test "$static" = "yes" ; then
138074f42e18STeLeMan    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
138174f42e18STeLeMan  else
13829316f803SPaolo Bonzini    sdl_libs=`$sdlconfig --libs 2> /dev/null`
138374f42e18STeLeMan  fi
138452166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
138511d9f695Sbellard    if test "$_sdlversion" -lt 121 ; then
138611d9f695Sbellard      sdl_too_old=yes
138711d9f695Sbellard    else
1388fd677642Sths      if test "$cocoa" = "no" ; then
138911d9f695Sbellard        sdl=yes
139011d9f695Sbellard      fi
1391fd677642Sths    fi
13927c1f25b4Sbellard
139367c274d3SPaolo Bonzini    # static link with sdl ? (note: sdl.pc's --static --libs is broken)
13941ac88f28SJuan Quintela    if test "$sdl" = "yes" -a "$static" = "yes" ; then
139567c274d3SPaolo Bonzini      if test $? = 0 && echo $sdl_libs | grep -- -laa > /dev/null; then
1396f8aa6c7bSStefan Weil         sdl_libs="$sdl_libs `aalib-config --static-libs 2>/dev/null`"
1397f8aa6c7bSStefan Weil         sdl_cflags="$sdl_cflags `aalib-config --cflags 2>/dev/null`"
139811d9f695Sbellard      fi
139952166aa0SJuan Quintela      if compile_prog "$sdl_cflags" "$sdl_libs" ; then
14001ac88f28SJuan Quintela	:
14011ac88f28SJuan Quintela      else
14021ac88f28SJuan Quintela        sdl=no
14037c1f25b4Sbellard      fi
14047c1f25b4Sbellard    fi # static link
1405c4198157SJuan Quintela  else # sdl not found
1406c4198157SJuan Quintela    if test "$sdl" = "yes" ; then
1407c4198157SJuan Quintela      feature_not_found "sdl"
1408c4198157SJuan Quintela    fi
1409c4198157SJuan Quintela    sdl=no
14107c1f25b4Sbellard  fi # sdl compile test
1411fd677642Sthsfi
141211d9f695Sbellard
14135368a422Saliguoriif test "$sdl" = "yes" ; then
14145368a422Saliguori  cat > $TMPC <<EOF
14155368a422Saliguori#include <SDL.h>
14165368a422Saliguori#if defined(SDL_VIDEO_DRIVER_X11)
14175368a422Saliguori#include <X11/XKBlib.h>
14185368a422Saliguori#else
14195368a422Saliguori#error No x11 support
14205368a422Saliguori#endif
14215368a422Saliguoriint main(void) { return 0; }
14225368a422SaliguoriEOF
142352166aa0SJuan Quintela  if compile_prog "$sdl_cflags" "$sdl_libs" ; then
1424681306dfSJuan Quintela    sdl_libs="$sdl_libs -lX11"
14255368a422Saliguori  fi
142607d9ac44SJuan Quintela  if test "$mingw32" = "yes" ; then
142707d9ac44SJuan Quintela    sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole"
142807d9ac44SJuan Quintela  fi
14290705667eSJuan Quintela  libs_softmmu="$sdl_libs $libs_softmmu"
14305368a422Saliguorifi
14315368a422Saliguori
14328f28f3fbSths##########################################
14338d5d2d4cSths# VNC TLS detection
1434821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_tls" != "no" ; then
1435ae6b5e5aSaliguori  cat > $TMPC <<EOF
1436ae6b5e5aSaliguori#include <gnutls/gnutls.h>
1437ae6b5e5aSaliguoriint main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
1438ae6b5e5aSaliguoriEOF
1439a8bd70adSPaolo Bonzini  vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
1440a8bd70adSPaolo Bonzini  vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
144152166aa0SJuan Quintela  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
14421be10ad2SJuan Quintela    vnc_tls=yes
1443a5e32cc9SJuan Quintela    libs_softmmu="$vnc_tls_libs $libs_softmmu"
1444ae6b5e5aSaliguori  else
14451be10ad2SJuan Quintela    if test "$vnc_tls" = "yes" ; then
14461be10ad2SJuan Quintela      feature_not_found "vnc-tls"
14471be10ad2SJuan Quintela    fi
14481be10ad2SJuan Quintela    vnc_tls=no
14498d5d2d4cSths  fi
14508d5d2d4cSthsfi
14518d5d2d4cSths
14528d5d2d4cSths##########################################
14532f9606b3Saliguori# VNC SASL detection
1454821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_sasl" != "no" ; then
14552f9606b3Saliguori  cat > $TMPC <<EOF
14562f9606b3Saliguori#include <sasl/sasl.h>
14572f9606b3Saliguori#include <stdio.h>
14582f9606b3Saliguoriint main(void) { sasl_server_init(NULL, "qemu"); return 0; }
14592f9606b3SaliguoriEOF
14602f9606b3Saliguori  # Assuming Cyrus-SASL installed in /usr prefix
14612f9606b3Saliguori  vnc_sasl_cflags=""
14622f9606b3Saliguori  vnc_sasl_libs="-lsasl2"
146352166aa0SJuan Quintela  if compile_prog "$vnc_sasl_cflags" "$vnc_sasl_libs" ; then
1464ea784e3bSJuan Quintela    vnc_sasl=yes
1465fa838301SJuan Quintela    libs_softmmu="$vnc_sasl_libs $libs_softmmu"
14662f9606b3Saliguori  else
1467ea784e3bSJuan Quintela    if test "$vnc_sasl" = "yes" ; then
1468ea784e3bSJuan Quintela      feature_not_found "vnc-sasl"
1469ea784e3bSJuan Quintela    fi
1470ea784e3bSJuan Quintela    vnc_sasl=no
14712f9606b3Saliguori  fi
14722f9606b3Saliguorifi
14732f9606b3Saliguori
14742f9606b3Saliguori##########################################
14752f6f5c7aSCorentin Chary# VNC JPEG detection
1476821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_jpeg" != "no" ; then
14772f6f5c7aSCorentin Charycat > $TMPC <<EOF
14782f6f5c7aSCorentin Chary#include <stdio.h>
14792f6f5c7aSCorentin Chary#include <jpeglib.h>
14802f6f5c7aSCorentin Charyint main(void) { struct jpeg_compress_struct s; jpeg_create_compress(&s); return 0; }
14812f6f5c7aSCorentin CharyEOF
14822f6f5c7aSCorentin Chary    vnc_jpeg_cflags=""
14832f6f5c7aSCorentin Chary    vnc_jpeg_libs="-ljpeg"
14842f6f5c7aSCorentin Chary  if compile_prog "$vnc_jpeg_cflags" "$vnc_jpeg_libs" ; then
14852f6f5c7aSCorentin Chary    vnc_jpeg=yes
14862f6f5c7aSCorentin Chary    libs_softmmu="$vnc_jpeg_libs $libs_softmmu"
14872f6f5c7aSCorentin Chary  else
14882f6f5c7aSCorentin Chary    if test "$vnc_jpeg" = "yes" ; then
14892f6f5c7aSCorentin Chary      feature_not_found "vnc-jpeg"
14902f6f5c7aSCorentin Chary    fi
14912f6f5c7aSCorentin Chary    vnc_jpeg=no
14922f6f5c7aSCorentin Chary  fi
14932f6f5c7aSCorentin Charyfi
14942f6f5c7aSCorentin Chary
14952f6f5c7aSCorentin Chary##########################################
1496efe556adSCorentin Chary# VNC PNG detection
1497821601eaSJes Sorensenif test "$vnc" = "yes" -a "$vnc_png" != "no" ; then
1498efe556adSCorentin Charycat > $TMPC <<EOF
1499efe556adSCorentin Chary//#include <stdio.h>
1500efe556adSCorentin Chary#include <png.h>
1501832ce9c2SScott Wood#include <stddef.h>
1502efe556adSCorentin Charyint main(void) {
1503efe556adSCorentin Chary    png_structp png_ptr;
1504efe556adSCorentin Chary    png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
1505efe556adSCorentin Chary    return 0;
1506efe556adSCorentin Chary}
1507efe556adSCorentin CharyEOF
1508efe556adSCorentin Chary    vnc_png_cflags=""
1509efe556adSCorentin Chary    vnc_png_libs="-lpng"
1510efe556adSCorentin Chary  if compile_prog "$vnc_png_cflags" "$vnc_png_libs" ; then
1511efe556adSCorentin Chary    vnc_png=yes
1512efe556adSCorentin Chary    libs_softmmu="$vnc_png_libs $libs_softmmu"
1513efe556adSCorentin Chary  else
1514efe556adSCorentin Chary    if test "$vnc_png" = "yes" ; then
1515efe556adSCorentin Chary      feature_not_found "vnc-png"
1516efe556adSCorentin Chary    fi
1517efe556adSCorentin Chary    vnc_png=no
1518efe556adSCorentin Chary  fi
1519efe556adSCorentin Charyfi
1520efe556adSCorentin Chary
1521efe556adSCorentin Chary##########################################
152276655d6dSaliguori# fnmatch() probe, used for ACL routines
152376655d6dSaliguorifnmatch="no"
152476655d6dSaliguoricat > $TMPC << EOF
152576655d6dSaliguori#include <fnmatch.h>
152676655d6dSaliguoriint main(void)
152776655d6dSaliguori{
152876655d6dSaliguori    fnmatch("foo", "foo", 0);
152976655d6dSaliguori    return 0;
153076655d6dSaliguori}
153176655d6dSaliguoriEOF
153252166aa0SJuan Quintelaif compile_prog "" "" ; then
153376655d6dSaliguori   fnmatch="yes"
153476655d6dSaliguorifi
153576655d6dSaliguori
153676655d6dSaliguori##########################################
1537ee682d27SStefan Weil# uuid_generate() probe, used for vdi block driver
1538ee682d27SStefan Weilif test "$uuid" != "no" ; then
1539ee682d27SStefan Weil  uuid_libs="-luuid"
1540ee682d27SStefan Weil  cat > $TMPC << EOF
1541ee682d27SStefan Weil#include <uuid/uuid.h>
1542ee682d27SStefan Weilint main(void)
1543ee682d27SStefan Weil{
1544ee682d27SStefan Weil    uuid_t my_uuid;
1545ee682d27SStefan Weil    uuid_generate(my_uuid);
1546ee682d27SStefan Weil    return 0;
1547ee682d27SStefan Weil}
1548ee682d27SStefan WeilEOF
1549ee682d27SStefan Weil  if compile_prog "" "$uuid_libs" ; then
1550ee682d27SStefan Weil    uuid="yes"
1551ee682d27SStefan Weil    libs_softmmu="$uuid_libs $libs_softmmu"
1552ee682d27SStefan Weil    libs_tools="$uuid_libs $libs_tools"
1553ee682d27SStefan Weil  else
1554ee682d27SStefan Weil    if test "$uuid" = "yes" ; then
1555ee682d27SStefan Weil      feature_not_found "uuid"
1556ee682d27SStefan Weil    fi
1557ee682d27SStefan Weil    uuid=no
1558ee682d27SStefan Weil  fi
1559ee682d27SStefan Weilfi
1560ee682d27SStefan Weil
1561ee682d27SStefan Weil##########################################
1562dce512deSChristoph Hellwig# xfsctl() probe, used for raw-posix
1563dce512deSChristoph Hellwigif test "$xfs" != "no" ; then
1564dce512deSChristoph Hellwig  cat > $TMPC << EOF
1565dce512deSChristoph Hellwig#include <xfs/xfs.h>
1566dce512deSChristoph Hellwigint main(void)
1567dce512deSChristoph Hellwig{
1568dce512deSChristoph Hellwig    xfsctl(NULL, 0, 0, NULL);
1569dce512deSChristoph Hellwig    return 0;
1570dce512deSChristoph Hellwig}
1571dce512deSChristoph HellwigEOF
1572dce512deSChristoph Hellwig  if compile_prog "" "" ; then
1573dce512deSChristoph Hellwig    xfs="yes"
1574dce512deSChristoph Hellwig  else
1575dce512deSChristoph Hellwig    if test "$xfs" = "yes" ; then
1576dce512deSChristoph Hellwig      feature_not_found "xfs"
1577dce512deSChristoph Hellwig    fi
1578dce512deSChristoph Hellwig    xfs=no
1579dce512deSChristoph Hellwig  fi
1580dce512deSChristoph Hellwigfi
1581dce512deSChristoph Hellwig
1582dce512deSChristoph Hellwig##########################################
15838a16d273Sths# vde libraries probe
1584dfb278bdSJuan Quintelaif test "$vde" != "no" ; then
15854baae0acSJuan Quintela  vde_libs="-lvdeplug"
15868a16d273Sths  cat > $TMPC << EOF
15878a16d273Sths#include <libvdeplug.h>
15884a7f0e06Spbrookint main(void)
15894a7f0e06Spbrook{
15904a7f0e06Spbrook    struct vde_open_args a = {0, 0, 0};
15914a7f0e06Spbrook    vde_open("", "", &a);
15924a7f0e06Spbrook    return 0;
15934a7f0e06Spbrook}
15948a16d273SthsEOF
159552166aa0SJuan Quintela  if compile_prog "" "$vde_libs" ; then
15964baae0acSJuan Quintela    vde=yes
15978e02e54cSJuan Quintela    libs_softmmu="$vde_libs $libs_softmmu"
15988e02e54cSJuan Quintela    libs_tools="$vde_libs $libs_tools"
1599dfb278bdSJuan Quintela  else
1600dfb278bdSJuan Quintela    if test "$vde" = "yes" ; then
1601dfb278bdSJuan Quintela      feature_not_found "vde"
1602dfb278bdSJuan Quintela    fi
1603dfb278bdSJuan Quintela    vde=no
16048a16d273Sths  fi
16058a16d273Sthsfi
16068a16d273Sths
16078a16d273Sths##########################################
1608c2de5c91Smalc# Sound support libraries probe
16098f28f3fbSths
1610c2de5c91Smalcaudio_drv_probe()
1611c2de5c91Smalc{
1612c2de5c91Smalc    drv=$1
1613c2de5c91Smalc    hdr=$2
1614c2de5c91Smalc    lib=$3
1615c2de5c91Smalc    exp=$4
1616c2de5c91Smalc    cfl=$5
16178f28f3fbSths        cat > $TMPC << EOF
1618c2de5c91Smalc#include <$hdr>
1619c2de5c91Smalcint main(void) { $exp }
16208f28f3fbSthsEOF
162152166aa0SJuan Quintela    if compile_prog "$cfl" "$lib" ; then
16228f28f3fbSths        :
16238f28f3fbSths    else
16248f28f3fbSths        echo
1625c2de5c91Smalc        echo "Error: $drv check failed"
1626c2de5c91Smalc        echo "Make sure to have the $drv libs and headers installed."
16278f28f3fbSths        echo
16288f28f3fbSths        exit 1
16298f28f3fbSths    fi
1630c2de5c91Smalc}
1631c2de5c91Smalc
16322fa7d3bfSmalcaudio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
1633c2de5c91Smalcfor drv in $audio_drv_list; do
1634c2de5c91Smalc    case $drv in
1635c2de5c91Smalc    alsa)
1636c2de5c91Smalc    audio_drv_probe $drv alsa/asoundlib.h -lasound \
1637c2de5c91Smalc        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
1638a4bf6780SJuan Quintela    libs_softmmu="-lasound $libs_softmmu"
1639c2de5c91Smalc    ;;
1640c2de5c91Smalc
1641c2de5c91Smalc    fmod)
1642c2de5c91Smalc    if test -z $fmod_lib || test -z $fmod_inc; then
1643c2de5c91Smalc        echo
1644c2de5c91Smalc        echo "Error: You must specify path to FMOD library and headers"
1645c2de5c91Smalc        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
1646c2de5c91Smalc        echo
1647c2de5c91Smalc        exit 1
16488f28f3fbSths    fi
1649c2de5c91Smalc    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
1650a4bf6780SJuan Quintela    libs_softmmu="$fmod_lib $libs_softmmu"
1651c2de5c91Smalc    ;;
1652c2de5c91Smalc
1653c2de5c91Smalc    esd)
1654c2de5c91Smalc    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
1655a4bf6780SJuan Quintela    libs_softmmu="-lesd $libs_softmmu"
165667f86e8eSJuan Quintela    audio_pt_int="yes"
1657c2de5c91Smalc    ;;
1658b8e59f18Smalc
1659b8e59f18Smalc    pa)
1660493abda6SAurelien Jarno    audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
166120fa53ecSMarc-Antoine Perennou        "pa_simple *s = 0; pa_simple_free(s); return 0;"
1662493abda6SAurelien Jarno    libs_softmmu="-lpulse -lpulse-simple $libs_softmmu"
166367f86e8eSJuan Quintela    audio_pt_int="yes"
1664b8e59f18Smalc    ;;
1665b8e59f18Smalc
1666997e690aSJuan Quintela    coreaudio)
1667997e690aSJuan Quintela      libs_softmmu="-framework CoreAudio $libs_softmmu"
1668997e690aSJuan Quintela    ;;
1669997e690aSJuan Quintela
1670a4bf6780SJuan Quintela    dsound)
1671a4bf6780SJuan Quintela      libs_softmmu="-lole32 -ldxguid $libs_softmmu"
1672d5631638Smalc      audio_win_int="yes"
1673a4bf6780SJuan Quintela    ;;
1674a4bf6780SJuan Quintela
1675a4bf6780SJuan Quintela    oss)
1676a4bf6780SJuan Quintela      libs_softmmu="$oss_lib $libs_softmmu"
1677a4bf6780SJuan Quintela    ;;
1678a4bf6780SJuan Quintela
1679a4bf6780SJuan Quintela    sdl|wav)
16802f6a1ab0Sblueswir1    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
16812f6a1ab0Sblueswir1    ;;
16822f6a1ab0Sblueswir1
1683d5631638Smalc    winwave)
1684d5631638Smalc      libs_softmmu="-lwinmm $libs_softmmu"
1685d5631638Smalc      audio_win_int="yes"
1686d5631638Smalc    ;;
1687d5631638Smalc
1688e4c63a6aSmalc    *)
16891c9b2a52Smalc    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
1690e4c63a6aSmalc        echo
1691e4c63a6aSmalc        echo "Error: Unknown driver '$drv' selected"
1692e4c63a6aSmalc        echo "Possible drivers are: $audio_possible_drivers"
1693e4c63a6aSmalc        echo
1694e4c63a6aSmalc        exit 1
1695e4c63a6aSmalc    }
1696e4c63a6aSmalc    ;;
1697c2de5c91Smalc    esac
1698c2de5c91Smalcdone
16998f28f3fbSths
17004d3b6f6eSbalrog##########################################
17012e4d9fb1Saurel32# BrlAPI probe
17022e4d9fb1Saurel32
17034ffcedb6SJuan Quintelaif test "$brlapi" != "no" ; then
1704eb82284fSJuan Quintela  brlapi_libs="-lbrlapi"
17052e4d9fb1Saurel32  cat > $TMPC << EOF
17062e4d9fb1Saurel32#include <brlapi.h>
1707832ce9c2SScott Wood#include <stddef.h>
17082e4d9fb1Saurel32int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
17092e4d9fb1Saurel32EOF
171052166aa0SJuan Quintela  if compile_prog "" "$brlapi_libs" ; then
17112e4d9fb1Saurel32    brlapi=yes
1712264606b3SJuan Quintela    libs_softmmu="$brlapi_libs $libs_softmmu"
17134ffcedb6SJuan Quintela  else
17144ffcedb6SJuan Quintela    if test "$brlapi" = "yes" ; then
17154ffcedb6SJuan Quintela      feature_not_found "brlapi"
17164ffcedb6SJuan Quintela    fi
17174ffcedb6SJuan Quintela    brlapi=no
1718eb82284fSJuan Quintela  fi
1719eb82284fSJuan Quintelafi
17202e4d9fb1Saurel32
17212e4d9fb1Saurel32##########################################
17224d3b6f6eSbalrog# curses probe
1723e095e2f3SStefan Weilif test "$mingw32" = "yes" ; then
1724e095e2f3SStefan Weil    curses_list="-lpdcurses"
1725e095e2f3SStefan Weilelse
17264f78ef9aSJuan Quintela    curses_list="-lncurses -lcurses"
1727e095e2f3SStefan Weilfi
17284d3b6f6eSbalrog
1729c584a6d0SJuan Quintelaif test "$curses" != "no" ; then
1730c584a6d0SJuan Quintela  curses_found=no
17314d3b6f6eSbalrog  cat > $TMPC << EOF
17324d3b6f6eSbalrog#include <curses.h>
17335a8ff3aaSblueswir1#ifdef __OpenBSD__
17345a8ff3aaSblueswir1#define resize_term resizeterm
17355a8ff3aaSblueswir1#endif
17365a8ff3aaSblueswir1int main(void) { resize_term(0, 0); return curses_version(); }
17374d3b6f6eSbalrogEOF
17384f78ef9aSJuan Quintela  for curses_lib in $curses_list; do
17394f78ef9aSJuan Quintela    if compile_prog "" "$curses_lib" ; then
1740c584a6d0SJuan Quintela      curses_found=yes
17414f78ef9aSJuan Quintela      libs_softmmu="$curses_lib $libs_softmmu"
17424f78ef9aSJuan Quintela      break
17434d3b6f6eSbalrog    fi
17444f78ef9aSJuan Quintela  done
1745c584a6d0SJuan Quintela  if test "$curses_found" = "yes" ; then
1746c584a6d0SJuan Quintela    curses=yes
1747c584a6d0SJuan Quintela  else
1748c584a6d0SJuan Quintela    if test "$curses" = "yes" ; then
1749c584a6d0SJuan Quintela      feature_not_found "curses"
1750c584a6d0SJuan Quintela    fi
1751c584a6d0SJuan Quintela    curses=no
1752c584a6d0SJuan Quintela  fi
17534f78ef9aSJuan Quintelafi
17544d3b6f6eSbalrog
1755414f0dabSblueswir1##########################################
1756769ce76dSAlexander Graf# curl probe
1757769ce76dSAlexander Graf
1758a8bd70adSPaolo Bonziniif $pkg_config libcurl --modversion >/dev/null 2>&1; then
1759a8bd70adSPaolo Bonzini  curlconfig="$pkg_config libcurl"
17604e2b0658SPaolo Bonzinielse
17614e2b0658SPaolo Bonzini  curlconfig=curl-config
17624e2b0658SPaolo Bonzinifi
17634e2b0658SPaolo Bonzini
1764788c8196SJuan Quintelaif test "$curl" != "no" ; then
1765769ce76dSAlexander Graf  cat > $TMPC << EOF
1766769ce76dSAlexander Graf#include <curl/curl.h>
17670b862cedSPeter Maydellint main(void) { curl_easy_init(); curl_multi_setopt(0, 0, 0); return 0; }
1768769ce76dSAlexander GrafEOF
17694e2b0658SPaolo Bonzini  curl_cflags=`$curlconfig --cflags 2>/dev/null`
17704e2b0658SPaolo Bonzini  curl_libs=`$curlconfig --libs 2>/dev/null`
1771b1d5a277SJuan Quintela  if compile_prog "$curl_cflags" "$curl_libs" ; then
1772769ce76dSAlexander Graf    curl=yes
1773f0302935SJuan Quintela    libs_tools="$curl_libs $libs_tools"
1774f0302935SJuan Quintela    libs_softmmu="$curl_libs $libs_softmmu"
1775788c8196SJuan Quintela  else
1776788c8196SJuan Quintela    if test "$curl" = "yes" ; then
1777788c8196SJuan Quintela      feature_not_found "curl"
1778788c8196SJuan Quintela    fi
1779788c8196SJuan Quintela    curl=no
1780769ce76dSAlexander Graf  fi
1781769ce76dSAlexander Graffi # test "$curl"
1782769ce76dSAlexander Graf
1783769ce76dSAlexander Graf##########################################
17845495ed11SLuiz Capitulino# check framework probe
17855495ed11SLuiz Capitulino
17865495ed11SLuiz Capitulinoif test "$check_utests" != "no" ; then
17875495ed11SLuiz Capitulino  cat > $TMPC << EOF
17885495ed11SLuiz Capitulino#include <check.h>
17895495ed11SLuiz Capitulinoint main(void) { suite_create("qemu test"); return 0; }
17905495ed11SLuiz CapitulinoEOF
1791a8bd70adSPaolo Bonzini  check_libs=`$pkg_config --libs check`
17925495ed11SLuiz Capitulino  if compile_prog "" $check_libs ; then
17935495ed11SLuiz Capitulino    check_utests=yes
17945495ed11SLuiz Capitulino    libs_tools="$check_libs $libs_tools"
17955495ed11SLuiz Capitulino  else
17965495ed11SLuiz Capitulino    if test "$check_utests" = "yes" ; then
17975495ed11SLuiz Capitulino      feature_not_found "check"
17985495ed11SLuiz Capitulino    fi
17995495ed11SLuiz Capitulino    check_utests=no
18005495ed11SLuiz Capitulino  fi
18015495ed11SLuiz Capitulinofi # test "$check_utests"
18025495ed11SLuiz Capitulino
18035495ed11SLuiz Capitulino##########################################
1804fb599c9aSbalrog# bluez support probe
1805a20a6f46SJuan Quintelaif test "$bluez" != "no" ; then
1806e820e3f4Sbalrog  cat > $TMPC << EOF
1807e820e3f4Sbalrog#include <bluetooth/bluetooth.h>
1808e820e3f4Sbalrogint main(void) { return bt_error(0); }
1809e820e3f4SbalrogEOF
1810a8bd70adSPaolo Bonzini  bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
1811a8bd70adSPaolo Bonzini  bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
181252166aa0SJuan Quintela  if compile_prog "$bluez_cflags" "$bluez_libs" ; then
1813a20a6f46SJuan Quintela    bluez=yes
1814e482d56aSJuan Quintela    libs_softmmu="$bluez_libs $libs_softmmu"
1815e820e3f4Sbalrog  else
1816a20a6f46SJuan Quintela    if test "$bluez" = "yes" ; then
1817a20a6f46SJuan Quintela      feature_not_found "bluez"
1818a20a6f46SJuan Quintela    fi
1819e820e3f4Sbalrog    bluez="no"
1820e820e3f4Sbalrog  fi
1821fb599c9aSbalrogfi
1822fb599c9aSbalrog
1823fb599c9aSbalrog##########################################
1824e18df141SAnthony Liguori# glib support probe
18251fc7bd4aSAnthony Liguoriif $pkg_config --modversion glib-2.0 > /dev/null 2>&1 ; then
18261fc7bd4aSAnthony Liguori    glib_cflags=`$pkg_config --cflags glib-2.0 2>/dev/null`
18271fc7bd4aSAnthony Liguori    glib_libs=`$pkg_config --libs glib-2.0 2>/dev/null`
1828e18df141SAnthony Liguori    libs_softmmu="$glib_libs $libs_softmmu"
1829e18df141SAnthony Liguori    libs_tools="$glib_libs $libs_tools"
1830e18df141SAnthony Liguorielse
1831e18df141SAnthony Liguori    echo "glib-2.0 required to compile QEMU"
1832e18df141SAnthony Liguori    exit 1
1833e18df141SAnthony Liguorifi
1834e18df141SAnthony Liguori
1835e18df141SAnthony Liguori##########################################
1836e5d355d1Saliguori# pthread probe
1837de65fe0fSSebastian HerbsztPTHREADLIBS_LIST="-lpthread -lpthreadGC2"
18383c529d93Saliguori
1839e5d355d1Saliguoripthread=no
1840414f0dabSblueswir1cat > $TMPC << EOF
18413c529d93Saliguori#include <pthread.h>
1842de65fe0fSSebastian Herbsztint main(void) { pthread_create(0,0,0,0); return 0; }
1843414f0dabSblueswir1EOF
1844bd00d539SAndreas Färberif compile_prog "" "" ; then
1845bd00d539SAndreas Färber  pthread=yes
1846bd00d539SAndreas Färberelse
1847de65fe0fSSebastian Herbszt  for pthread_lib in $PTHREADLIBS_LIST; do
184852166aa0SJuan Quintela    if compile_prog "" "$pthread_lib" ; then
1849e5d355d1Saliguori      pthread=yes
18505572b539SJuan Quintela      LIBS="$pthread_lib $LIBS"
1851de65fe0fSSebastian Herbszt      break
1852414f0dabSblueswir1    fi
1853de65fe0fSSebastian Herbszt  done
1854bd00d539SAndreas Färberfi
1855414f0dabSblueswir1
18564617e593SAnthony Liguoriif test "$mingw32" != yes -a "$pthread" = no; then
18574dd75c70SChristoph Hellwig  echo
18584dd75c70SChristoph Hellwig  echo "Error: pthread check failed"
18594dd75c70SChristoph Hellwig  echo "Make sure to have the pthread libs and headers installed."
18604dd75c70SChristoph Hellwig  echo
18614dd75c70SChristoph Hellwig  exit 1
1862e5d355d1Saliguorifi
1863e5d355d1Saliguori
1864bf9298b9Saliguori##########################################
1865f27aaf4bSChristian Brunner# rbd probe
1866f27aaf4bSChristian Brunnerif test "$rbd" != "no" ; then
1867f27aaf4bSChristian Brunner  cat > $TMPC <<EOF
1868f27aaf4bSChristian Brunner#include <stdio.h>
1869ad32e9c0SJosh Durgin#include <rbd/librbd.h>
1870f27aaf4bSChristian Brunnerint main(void) {
1871ad32e9c0SJosh Durgin    rados_t cluster;
1872ad32e9c0SJosh Durgin    rados_create(&cluster, NULL);
1873f27aaf4bSChristian Brunner    return 0;
1874f27aaf4bSChristian Brunner}
1875f27aaf4bSChristian BrunnerEOF
1876ad32e9c0SJosh Durgin  rbd_libs="-lrbd -lrados"
1877f27aaf4bSChristian Brunner  if compile_prog "" "$rbd_libs" ; then
1878f27aaf4bSChristian Brunner    rbd=yes
1879f27aaf4bSChristian Brunner    libs_tools="$rbd_libs $libs_tools"
1880f27aaf4bSChristian Brunner    libs_softmmu="$rbd_libs $libs_softmmu"
1881f27aaf4bSChristian Brunner  else
1882f27aaf4bSChristian Brunner    if test "$rbd" = "yes" ; then
1883f27aaf4bSChristian Brunner      feature_not_found "rados block device"
1884f27aaf4bSChristian Brunner    fi
1885f27aaf4bSChristian Brunner    rbd=no
1886f27aaf4bSChristian Brunner  fi
1887f27aaf4bSChristian Brunnerfi
1888f27aaf4bSChristian Brunner
1889f27aaf4bSChristian Brunner##########################################
18905c6c3a6cSChristoph Hellwig# linux-aio probe
18915c6c3a6cSChristoph Hellwig
18925c6c3a6cSChristoph Hellwigif test "$linux_aio" != "no" ; then
18935c6c3a6cSChristoph Hellwig  cat > $TMPC <<EOF
18945c6c3a6cSChristoph Hellwig#include <libaio.h>
18955c6c3a6cSChristoph Hellwig#include <sys/eventfd.h>
1896832ce9c2SScott Wood#include <stddef.h>
18975c6c3a6cSChristoph Hellwigint main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); return 0; }
18985c6c3a6cSChristoph HellwigEOF
18995c6c3a6cSChristoph Hellwig  if compile_prog "" "-laio" ; then
19005c6c3a6cSChristoph Hellwig    linux_aio=yes
1901048d179fSPaul Brook    libs_softmmu="$libs_softmmu -laio"
1902048d179fSPaul Brook    libs_tools="$libs_tools -laio"
19035c6c3a6cSChristoph Hellwig  else
19045c6c3a6cSChristoph Hellwig    if test "$linux_aio" = "yes" ; then
19055c6c3a6cSChristoph Hellwig      feature_not_found "linux AIO"
19065c6c3a6cSChristoph Hellwig    fi
19073cfcae3cSLuiz Capitulino    linux_aio=no
19085c6c3a6cSChristoph Hellwig  fi
19095c6c3a6cSChristoph Hellwigfi
19105c6c3a6cSChristoph Hellwig
19115c6c3a6cSChristoph Hellwig##########################################
1912758e8e38SVenkateswararao Jujjuri (JV)# attr probe
1913758e8e38SVenkateswararao Jujjuri (JV)
1914758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" != "no" ; then
1915758e8e38SVenkateswararao Jujjuri (JV)  cat > $TMPC <<EOF
1916758e8e38SVenkateswararao Jujjuri (JV)#include <stdio.h>
1917758e8e38SVenkateswararao Jujjuri (JV)#include <sys/types.h>
1918758e8e38SVenkateswararao Jujjuri (JV)#include <attr/xattr.h>
1919758e8e38SVenkateswararao Jujjuri (JV)int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
1920758e8e38SVenkateswararao Jujjuri (JV)EOF
1921758e8e38SVenkateswararao Jujjuri (JV)  if compile_prog "" "-lattr" ; then
1922758e8e38SVenkateswararao Jujjuri (JV)    attr=yes
1923758e8e38SVenkateswararao Jujjuri (JV)    LIBS="-lattr $LIBS"
1924758e8e38SVenkateswararao Jujjuri (JV)  else
1925758e8e38SVenkateswararao Jujjuri (JV)    if test "$attr" = "yes" ; then
1926758e8e38SVenkateswararao Jujjuri (JV)      feature_not_found "ATTR"
1927758e8e38SVenkateswararao Jujjuri (JV)    fi
1928758e8e38SVenkateswararao Jujjuri (JV)    attr=no
1929758e8e38SVenkateswararao Jujjuri (JV)  fi
1930758e8e38SVenkateswararao Jujjuri (JV)fi
1931758e8e38SVenkateswararao Jujjuri (JV)
1932758e8e38SVenkateswararao Jujjuri (JV)##########################################
1933bf9298b9Saliguori# iovec probe
1934bf9298b9Saliguoricat > $TMPC <<EOF
1935db34f0b3Sblueswir1#include <sys/types.h>
1936bf9298b9Saliguori#include <sys/uio.h>
1937db34f0b3Sblueswir1#include <unistd.h>
1938bf9298b9Saliguoriint main(void) { struct iovec iov; return 0; }
1939bf9298b9SaliguoriEOF
1940bf9298b9Saliguoriiovec=no
194152166aa0SJuan Quintelaif compile_prog "" "" ; then
1942bf9298b9Saliguori  iovec=yes
1943bf9298b9Saliguorifi
1944bf9298b9Saliguori
1945f652e6afSaurel32##########################################
1946ceb42de8Saliguori# preadv probe
1947ceb42de8Saliguoricat > $TMPC <<EOF
1948ceb42de8Saliguori#include <sys/types.h>
1949ceb42de8Saliguori#include <sys/uio.h>
1950ceb42de8Saliguori#include <unistd.h>
1951ceb42de8Saliguoriint main(void) { preadv; }
1952ceb42de8SaliguoriEOF
1953ceb42de8Saliguoripreadv=no
195452166aa0SJuan Quintelaif compile_prog "" "" ; then
1955ceb42de8Saliguori  preadv=yes
1956ceb42de8Saliguorifi
1957ceb42de8Saliguori
1958ceb42de8Saliguori##########################################
1959f652e6afSaurel32# fdt probe
19602df87df7SJuan Quintelaif test "$fdt" != "no" ; then
1961b41af4baSJuan Quintela  fdt_libs="-lfdt"
1962f652e6afSaurel32  cat > $TMPC << EOF
1963f652e6afSaurel32int main(void) { return 0; }
1964f652e6afSaurel32EOF
196552166aa0SJuan Quintela  if compile_prog "" "$fdt_libs" ; then
1966f652e6afSaurel32    fdt=yes
19672df87df7SJuan Quintela  else
19682df87df7SJuan Quintela    if test "$fdt" = "yes" ; then
19692df87df7SJuan Quintela      feature_not_found "fdt"
19702df87df7SJuan Quintela    fi
1971de3a354aSMichael Walle    fdt_libs=
19722df87df7SJuan Quintela    fdt=no
1973f652e6afSaurel32  fi
1974f652e6afSaurel32fi
1975f652e6afSaurel32
197620ff075bSMichael Walle##########################################
197720ff075bSMichael Walle# opengl probe, used by milkymist-tmu2
197820ff075bSMichael Walleif test "$opengl" != "no" ; then
197920ff075bSMichael Walle  opengl_libs="-lGL"
198020ff075bSMichael Walle  cat > $TMPC << EOF
198120ff075bSMichael Walle#include <X11/Xlib.h>
198220ff075bSMichael Walle#include <GL/gl.h>
198320ff075bSMichael Walle#include <GL/glx.h>
198420ff075bSMichael Walleint main(void) { GL_VERSION; return 0; }
198520ff075bSMichael WalleEOF
198620ff075bSMichael Walle  if compile_prog "" "-lGL" ; then
198720ff075bSMichael Walle    opengl=yes
198820ff075bSMichael Walle  else
198920ff075bSMichael Walle    if test "$opengl" = "yes" ; then
199020ff075bSMichael Walle      feature_not_found "opengl"
199120ff075bSMichael Walle    fi
1992de3a354aSMichael Walle    opengl_libs=
199320ff075bSMichael Walle    opengl=no
199420ff075bSMichael Walle  fi
199520ff075bSMichael Wallefi
199620ff075bSMichael Walle
19973b3f24adSaurel32#
19983b3f24adSaurel32# Check for xxxat() functions when we are building linux-user
19993b3f24adSaurel32# emulator.  This is done because older glibc versions don't
20003b3f24adSaurel32# have syscall stubs for these implemented.
20013b3f24adSaurel32#
20023b3f24adSaurel32atfile=no
20033b3f24adSaurel32cat > $TMPC << EOF
20043b3f24adSaurel32#define _ATFILE_SOURCE
20053b3f24adSaurel32#include <sys/types.h>
20063b3f24adSaurel32#include <fcntl.h>
20073b3f24adSaurel32#include <unistd.h>
20083b3f24adSaurel32
20093b3f24adSaurel32int
20103b3f24adSaurel32main(void)
20113b3f24adSaurel32{
20123b3f24adSaurel32	/* try to unlink nonexisting file */
20133b3f24adSaurel32	return (unlinkat(AT_FDCWD, "nonexistent_file", 0));
20143b3f24adSaurel32}
20153b3f24adSaurel32EOF
201652166aa0SJuan Quintelaif compile_prog "" "" ; then
20173b3f24adSaurel32  atfile=yes
20183b3f24adSaurel32fi
20193b3f24adSaurel32
202039386ac7Saurel32# Check for inotify functions when we are building linux-user
20213b3f24adSaurel32# emulator.  This is done because older glibc versions don't
20223b3f24adSaurel32# have syscall stubs for these implemented.  In that case we
20233b3f24adSaurel32# don't provide them even if kernel supports them.
20243b3f24adSaurel32#
20253b3f24adSaurel32inotify=no
20263b3f24adSaurel32cat > $TMPC << EOF
20273b3f24adSaurel32#include <sys/inotify.h>
20283b3f24adSaurel32
20293b3f24adSaurel32int
20303b3f24adSaurel32main(void)
20313b3f24adSaurel32{
20323b3f24adSaurel32	/* try to start inotify */
20338690e420Saurel32	return inotify_init();
20343b3f24adSaurel32}
20353b3f24adSaurel32EOF
203652166aa0SJuan Quintelaif compile_prog "" "" ; then
20373b3f24adSaurel32  inotify=yes
20383b3f24adSaurel32fi
20393b3f24adSaurel32
2040c05c7a73SRiku Voipioinotify1=no
2041c05c7a73SRiku Voipiocat > $TMPC << EOF
2042c05c7a73SRiku Voipio#include <sys/inotify.h>
2043c05c7a73SRiku Voipio
2044c05c7a73SRiku Voipioint
2045c05c7a73SRiku Voipiomain(void)
2046c05c7a73SRiku Voipio{
2047c05c7a73SRiku Voipio    /* try to start inotify */
2048c05c7a73SRiku Voipio    return inotify_init1(0);
2049c05c7a73SRiku Voipio}
2050c05c7a73SRiku VoipioEOF
2051c05c7a73SRiku Voipioif compile_prog "" "" ; then
2052c05c7a73SRiku Voipio  inotify1=yes
2053c05c7a73SRiku Voipiofi
2054c05c7a73SRiku Voipio
2055ebc996f3SRiku Voipio# check if utimensat and futimens are supported
2056ebc996f3SRiku Voipioutimens=no
2057ebc996f3SRiku Voipiocat > $TMPC << EOF
2058ebc996f3SRiku Voipio#define _ATFILE_SOURCE
2059ebc996f3SRiku Voipio#include <stddef.h>
2060ebc996f3SRiku Voipio#include <fcntl.h>
2061ebc996f3SRiku Voipio
2062ebc996f3SRiku Voipioint main(void)
2063ebc996f3SRiku Voipio{
2064ebc996f3SRiku Voipio    utimensat(AT_FDCWD, "foo", NULL, 0);
2065ebc996f3SRiku Voipio    futimens(0, NULL);
2066ebc996f3SRiku Voipio    return 0;
2067ebc996f3SRiku Voipio}
2068ebc996f3SRiku VoipioEOF
206952166aa0SJuan Quintelaif compile_prog "" "" ; then
2070ebc996f3SRiku Voipio  utimens=yes
2071ebc996f3SRiku Voipiofi
2072ebc996f3SRiku Voipio
2073099d6b0fSRiku Voipio# check if pipe2 is there
2074099d6b0fSRiku Voipiopipe2=no
2075099d6b0fSRiku Voipiocat > $TMPC << EOF
2076099d6b0fSRiku Voipio#include <unistd.h>
2077099d6b0fSRiku Voipio#include <fcntl.h>
2078099d6b0fSRiku Voipio
2079099d6b0fSRiku Voipioint main(void)
2080099d6b0fSRiku Voipio{
2081099d6b0fSRiku Voipio    int pipefd[2];
2082099d6b0fSRiku Voipio    pipe2(pipefd, O_CLOEXEC);
2083099d6b0fSRiku Voipio    return 0;
2084099d6b0fSRiku Voipio}
2085099d6b0fSRiku VoipioEOF
208652166aa0SJuan Quintelaif compile_prog "" "" ; then
2087099d6b0fSRiku Voipio  pipe2=yes
2088099d6b0fSRiku Voipiofi
2089099d6b0fSRiku Voipio
209040ff6d7eSKevin Wolf# check if accept4 is there
209140ff6d7eSKevin Wolfaccept4=no
209240ff6d7eSKevin Wolfcat > $TMPC << EOF
209340ff6d7eSKevin Wolf#include <sys/socket.h>
209440ff6d7eSKevin Wolf#include <stddef.h>
209540ff6d7eSKevin Wolf
209640ff6d7eSKevin Wolfint main(void)
209740ff6d7eSKevin Wolf{
209840ff6d7eSKevin Wolf    accept4(0, NULL, NULL, SOCK_CLOEXEC);
209940ff6d7eSKevin Wolf    return 0;
210040ff6d7eSKevin Wolf}
210140ff6d7eSKevin WolfEOF
210240ff6d7eSKevin Wolfif compile_prog "" "" ; then
210340ff6d7eSKevin Wolf  accept4=yes
210440ff6d7eSKevin Wolffi
210540ff6d7eSKevin Wolf
21063ce34dfbSvibisreenivasan# check if tee/splice is there. vmsplice was added same time.
21073ce34dfbSvibisreenivasansplice=no
21083ce34dfbSvibisreenivasancat > $TMPC << EOF
21093ce34dfbSvibisreenivasan#include <unistd.h>
21103ce34dfbSvibisreenivasan#include <fcntl.h>
21113ce34dfbSvibisreenivasan#include <limits.h>
21123ce34dfbSvibisreenivasan
21133ce34dfbSvibisreenivasanint main(void)
21143ce34dfbSvibisreenivasan{
21153ce34dfbSvibisreenivasan    int len, fd;
21163ce34dfbSvibisreenivasan    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
21173ce34dfbSvibisreenivasan    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
21183ce34dfbSvibisreenivasan    return 0;
21193ce34dfbSvibisreenivasan}
21203ce34dfbSvibisreenivasanEOF
212152166aa0SJuan Quintelaif compile_prog "" "" ; then
21223ce34dfbSvibisreenivasan  splice=yes
21233ce34dfbSvibisreenivasanfi
21243ce34dfbSvibisreenivasan
2125dcc38d1cSMarcelo Tosatti##########################################
2126dcc38d1cSMarcelo Tosatti# signalfd probe
2127dcc38d1cSMarcelo Tosattisignalfd="no"
2128dcc38d1cSMarcelo Tosatticat > $TMPC << EOF
2129dcc38d1cSMarcelo Tosatti#define _GNU_SOURCE
2130dcc38d1cSMarcelo Tosatti#include <unistd.h>
2131dcc38d1cSMarcelo Tosatti#include <sys/syscall.h>
2132dcc38d1cSMarcelo Tosatti#include <signal.h>
2133dcc38d1cSMarcelo Tosattiint main(void) { return syscall(SYS_signalfd, -1, NULL, _NSIG / 8); }
2134dcc38d1cSMarcelo TosattiEOF
2135dcc38d1cSMarcelo Tosatti
2136dcc38d1cSMarcelo Tosattiif compile_prog "" "" ; then
2137dcc38d1cSMarcelo Tosatti  signalfd=yes
2138de758970SJan Kiszkaelif test "$kvm" = "yes" -a "$io_thread" != "yes"; then
2139de758970SJan Kiszka  echo
2140de758970SJan Kiszka  echo "ERROR: Host kernel lacks signalfd() support,"
2141de758970SJan Kiszka  echo "but KVM depends on it when the IO thread is disabled."
2142de758970SJan Kiszka  echo
2143de758970SJan Kiszka  exit 1
2144dcc38d1cSMarcelo Tosattifi
2145dcc38d1cSMarcelo Tosatti
2146c2882b96SRiku Voipio# check if eventfd is supported
2147c2882b96SRiku Voipioeventfd=no
2148c2882b96SRiku Voipiocat > $TMPC << EOF
2149c2882b96SRiku Voipio#include <sys/eventfd.h>
2150c2882b96SRiku Voipio
2151c2882b96SRiku Voipioint main(void)
2152c2882b96SRiku Voipio{
2153c2882b96SRiku Voipio    int efd = eventfd(0, 0);
2154c2882b96SRiku Voipio    return 0;
2155c2882b96SRiku Voipio}
2156c2882b96SRiku VoipioEOF
2157c2882b96SRiku Voipioif compile_prog "" "" ; then
2158c2882b96SRiku Voipio  eventfd=yes
2159c2882b96SRiku Voipiofi
2160c2882b96SRiku Voipio
2161d0927938SUlrich Hecht# check for fallocate
2162d0927938SUlrich Hechtfallocate=no
2163d0927938SUlrich Hechtcat > $TMPC << EOF
2164d0927938SUlrich Hecht#include <fcntl.h>
2165d0927938SUlrich Hecht
2166d0927938SUlrich Hechtint main(void)
2167d0927938SUlrich Hecht{
2168d0927938SUlrich Hecht    fallocate(0, 0, 0, 0);
2169d0927938SUlrich Hecht    return 0;
2170d0927938SUlrich Hecht}
2171d0927938SUlrich HechtEOF
2172be17dc90SMichael S. Tsirkinif compile_prog "$ARCH_CFLAGS" "" ; then
2173d0927938SUlrich Hecht  fallocate=yes
2174d0927938SUlrich Hechtfi
2175d0927938SUlrich Hecht
2176c727f47dSPeter Maydell# check for sync_file_range
2177c727f47dSPeter Maydellsync_file_range=no
2178c727f47dSPeter Maydellcat > $TMPC << EOF
2179c727f47dSPeter Maydell#include <fcntl.h>
2180c727f47dSPeter Maydell
2181c727f47dSPeter Maydellint main(void)
2182c727f47dSPeter Maydell{
2183c727f47dSPeter Maydell    sync_file_range(0, 0, 0, 0);
2184c727f47dSPeter Maydell    return 0;
2185c727f47dSPeter Maydell}
2186c727f47dSPeter MaydellEOF
2187c727f47dSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
2188c727f47dSPeter Maydell  sync_file_range=yes
2189c727f47dSPeter Maydellfi
2190c727f47dSPeter Maydell
2191dace20dcSPeter Maydell# check for linux/fiemap.h and FS_IOC_FIEMAP
2192dace20dcSPeter Maydellfiemap=no
2193dace20dcSPeter Maydellcat > $TMPC << EOF
2194dace20dcSPeter Maydell#include <sys/ioctl.h>
2195dace20dcSPeter Maydell#include <linux/fs.h>
2196dace20dcSPeter Maydell#include <linux/fiemap.h>
2197dace20dcSPeter Maydell
2198dace20dcSPeter Maydellint main(void)
2199dace20dcSPeter Maydell{
2200dace20dcSPeter Maydell    ioctl(0, FS_IOC_FIEMAP, 0);
2201dace20dcSPeter Maydell    return 0;
2202dace20dcSPeter Maydell}
2203dace20dcSPeter MaydellEOF
2204dace20dcSPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
2205dace20dcSPeter Maydell  fiemap=yes
2206dace20dcSPeter Maydellfi
2207dace20dcSPeter Maydell
2208d0927938SUlrich Hecht# check for dup3
2209d0927938SUlrich Hechtdup3=no
2210d0927938SUlrich Hechtcat > $TMPC << EOF
2211d0927938SUlrich Hecht#include <unistd.h>
2212d0927938SUlrich Hecht
2213d0927938SUlrich Hechtint main(void)
2214d0927938SUlrich Hecht{
2215d0927938SUlrich Hecht    dup3(0, 0, 0);
2216d0927938SUlrich Hecht    return 0;
2217d0927938SUlrich Hecht}
2218d0927938SUlrich HechtEOF
221978f5d726SJan Kiszkaif compile_prog "" "" ; then
2220d0927938SUlrich Hecht  dup3=yes
2221d0927938SUlrich Hechtfi
2222d0927938SUlrich Hecht
22233b6edd16SPeter Maydell# check for epoll support
22243b6edd16SPeter Maydellepoll=no
22253b6edd16SPeter Maydellcat > $TMPC << EOF
22263b6edd16SPeter Maydell#include <sys/epoll.h>
22273b6edd16SPeter Maydell
22283b6edd16SPeter Maydellint main(void)
22293b6edd16SPeter Maydell{
22303b6edd16SPeter Maydell    epoll_create(0);
22313b6edd16SPeter Maydell    return 0;
22323b6edd16SPeter Maydell}
22333b6edd16SPeter MaydellEOF
22343b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22353b6edd16SPeter Maydell  epoll=yes
22363b6edd16SPeter Maydellfi
22373b6edd16SPeter Maydell
22383b6edd16SPeter Maydell# epoll_create1 and epoll_pwait are later additions
22393b6edd16SPeter Maydell# so we must check separately for their presence
22403b6edd16SPeter Maydellepoll_create1=no
22413b6edd16SPeter Maydellcat > $TMPC << EOF
22423b6edd16SPeter Maydell#include <sys/epoll.h>
22433b6edd16SPeter Maydell
22443b6edd16SPeter Maydellint main(void)
22453b6edd16SPeter Maydell{
224619e83f6bSPeter Maydell    /* Note that we use epoll_create1 as a value, not as
224719e83f6bSPeter Maydell     * a function being called. This is necessary so that on
224819e83f6bSPeter Maydell     * old SPARC glibc versions where the function was present in
224919e83f6bSPeter Maydell     * the library but not declared in the header file we will
225019e83f6bSPeter Maydell     * fail the configure check. (Otherwise we will get a compiler
225119e83f6bSPeter Maydell     * warning but not an error, and will proceed to fail the
225219e83f6bSPeter Maydell     * qemu compile where we compile with -Werror.)
225319e83f6bSPeter Maydell     */
225419e83f6bSPeter Maydell    epoll_create1;
22553b6edd16SPeter Maydell    return 0;
22563b6edd16SPeter Maydell}
22573b6edd16SPeter MaydellEOF
22583b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22593b6edd16SPeter Maydell  epoll_create1=yes
22603b6edd16SPeter Maydellfi
22613b6edd16SPeter Maydell
22623b6edd16SPeter Maydellepoll_pwait=no
22633b6edd16SPeter Maydellcat > $TMPC << EOF
22643b6edd16SPeter Maydell#include <sys/epoll.h>
22653b6edd16SPeter Maydell
22663b6edd16SPeter Maydellint main(void)
22673b6edd16SPeter Maydell{
22683b6edd16SPeter Maydell    epoll_pwait(0, 0, 0, 0, 0);
22693b6edd16SPeter Maydell    return 0;
22703b6edd16SPeter Maydell}
22713b6edd16SPeter MaydellEOF
22723b6edd16SPeter Maydellif compile_prog "$ARCH_CFLAGS" "" ; then
22733b6edd16SPeter Maydell  epoll_pwait=yes
22743b6edd16SPeter Maydellfi
22753b6edd16SPeter Maydell
2276cc8ae6deSpbrook# Check if tools are available to build documentation.
2277a25dba17SJuan Quintelaif test "$docs" != "no" ; then
227801668d98SStefan Weil  if has makeinfo && has pod2man; then
2279a25dba17SJuan Quintela    docs=yes
228083a3ab8bSJuan Quintela  else
2281a25dba17SJuan Quintela    if test "$docs" = "yes" ; then
2282a25dba17SJuan Quintela      feature_not_found "docs"
228383a3ab8bSJuan Quintela    fi
2284a25dba17SJuan Quintela    docs=no
228583a3ab8bSJuan Quintela  fi
2286cc8ae6deSpbrookfi
2287cc8ae6deSpbrook
2288f514f41cSStefan Weil# Search for bswap_32 function
22896ae9a1f4SJuan Quintelabyteswap_h=no
22906ae9a1f4SJuan Quintelacat > $TMPC << EOF
22916ae9a1f4SJuan Quintela#include <byteswap.h>
22926ae9a1f4SJuan Quintelaint main(void) { return bswap_32(0); }
22936ae9a1f4SJuan QuintelaEOF
229452166aa0SJuan Quintelaif compile_prog "" "" ; then
22956ae9a1f4SJuan Quintela  byteswap_h=yes
22966ae9a1f4SJuan Quintelafi
22976ae9a1f4SJuan Quintela
2298f514f41cSStefan Weil# Search for bswap_32 function
22996ae9a1f4SJuan Quintelabswap_h=no
23006ae9a1f4SJuan Quintelacat > $TMPC << EOF
23016ae9a1f4SJuan Quintela#include <sys/endian.h>
23026ae9a1f4SJuan Quintela#include <sys/types.h>
23036ae9a1f4SJuan Quintela#include <machine/bswap.h>
23046ae9a1f4SJuan Quintelaint main(void) { return bswap32(0); }
23056ae9a1f4SJuan QuintelaEOF
230652166aa0SJuan Quintelaif compile_prog "" "" ; then
23076ae9a1f4SJuan Quintela  bswap_h=yes
23086ae9a1f4SJuan Quintelafi
23096ae9a1f4SJuan Quintela
2310da93a1fdSaliguori##########################################
2311da93a1fdSaliguori# Do we need librt
2312da93a1fdSaliguoricat > $TMPC <<EOF
2313da93a1fdSaliguori#include <signal.h>
2314da93a1fdSaliguori#include <time.h>
2315da93a1fdSaliguoriint main(void) { clockid_t id; return clock_gettime(id, NULL); }
2316da93a1fdSaliguoriEOF
2317da93a1fdSaliguori
231852166aa0SJuan Quintelaif compile_prog "" "" ; then
231907ffa4bdSJuan Quintela  :
232052166aa0SJuan Quintelaelif compile_prog "" "-lrt" ; then
232107ffa4bdSJuan Quintela  LIBS="-lrt $LIBS"
2322da93a1fdSaliguorifi
2323da93a1fdSaliguori
232431ff504dSBlue Swirlif test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
2325179cf400SAndreas Färber        "$aix" != "yes" -a "$haiku" != "yes" ; then
23266362a53fSJuan Quintela    libs_softmmu="-lutil $libs_softmmu"
23276362a53fSJuan Quintelafi
23286362a53fSJuan Quintela
2329de5071c5SBlue Swirl##########################################
2330de5071c5SBlue Swirl# check if the compiler defines offsetof
2331de5071c5SBlue Swirl
2332de5071c5SBlue Swirlneed_offsetof=yes
2333de5071c5SBlue Swirlcat > $TMPC << EOF
2334de5071c5SBlue Swirl#include <stddef.h>
2335de5071c5SBlue Swirlint main(void) { struct s { int f; }; return offsetof(struct s, f); }
2336de5071c5SBlue SwirlEOF
2337de5071c5SBlue Swirlif compile_prog "" "" ; then
2338de5071c5SBlue Swirl    need_offsetof=no
2339de5071c5SBlue Swirlfi
2340de5071c5SBlue Swirl
23415f6b9e8fSBlue Swirl##########################################
2342747bbdf7SBlue Swirl# check if the compiler understands attribute warn_unused_result
2343747bbdf7SBlue Swirl#
2344747bbdf7SBlue Swirl# This could be smarter, but gcc -Werror does not error out even when warning
2345747bbdf7SBlue Swirl# about attribute warn_unused_result
2346747bbdf7SBlue Swirl
2347747bbdf7SBlue Swirlgcc_attribute_warn_unused_result=no
2348747bbdf7SBlue Swirlcat > $TMPC << EOF
2349747bbdf7SBlue Swirl#if defined(__GNUC__) && (__GNUC__ < 4) && defined(__GNUC_MINOR__) && (__GNUC__ < 4)
2350747bbdf7SBlue Swirl#error gcc 3.3 or older
2351747bbdf7SBlue Swirl#endif
2352747bbdf7SBlue Swirlint main(void) { return 0;}
2353747bbdf7SBlue SwirlEOF
2354747bbdf7SBlue Swirlif compile_prog "" ""; then
2355747bbdf7SBlue Swirl    gcc_attribute_warn_unused_result=yes
2356747bbdf7SBlue Swirlfi
2357747bbdf7SBlue Swirl
2358cd4ec0b4SGerd Hoffmann# spice probe
2359cd4ec0b4SGerd Hoffmannif test "$spice" != "no" ; then
2360cd4ec0b4SGerd Hoffmann  cat > $TMPC << EOF
2361cd4ec0b4SGerd Hoffmann#include <spice.h>
2362cd4ec0b4SGerd Hoffmannint main(void) { spice_server_new(); return 0; }
2363cd4ec0b4SGerd HoffmannEOF
2364710fc4f5SJiri Denemark  spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
2365710fc4f5SJiri Denemark  spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
2366012b80d3SGerd Hoffmann  if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \
2367cd4ec0b4SGerd Hoffmann     compile_prog "$spice_cflags" "$spice_libs" ; then
2368cd4ec0b4SGerd Hoffmann    spice="yes"
2369cd4ec0b4SGerd Hoffmann    libs_softmmu="$libs_softmmu $spice_libs"
2370cd4ec0b4SGerd Hoffmann    QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags"
2371cd4ec0b4SGerd Hoffmann  else
2372cd4ec0b4SGerd Hoffmann    if test "$spice" = "yes" ; then
2373cd4ec0b4SGerd Hoffmann      feature_not_found "spice"
2374cd4ec0b4SGerd Hoffmann    fi
2375cd4ec0b4SGerd Hoffmann    spice="no"
2376cd4ec0b4SGerd Hoffmann  fi
2377cd4ec0b4SGerd Hoffmannfi
2378cd4ec0b4SGerd Hoffmann
2379111a38b0SRobert Relyea# check for libcacard for smartcard support
2380111a38b0SRobert Relyeaif test "$smartcard" != "no" ; then
2381111a38b0SRobert Relyea    smartcard="yes"
2382111a38b0SRobert Relyea    smartcard_cflags=""
2383111a38b0SRobert Relyea    # TODO - what's the minimal nss version we support?
2384111a38b0SRobert Relyea    if test "$smartcard_nss" != "no"; then
2385111a38b0SRobert Relyea        if $pkg_config --atleast-version=3.12.8 nss >/dev/null 2>&1 ; then
2386111a38b0SRobert Relyea            smartcard_nss="yes"
2387111a38b0SRobert Relyea            smartcard_cflags="-I\$(SRC_PATH)/libcacard"
2388111a38b0SRobert Relyea            libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
2389111a38b0SRobert Relyea            libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
2390111a38b0SRobert Relyea            QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
2391111a38b0SRobert Relyea            LIBS="$libcacard_libs $LIBS"
2392111a38b0SRobert Relyea        else
2393111a38b0SRobert Relyea            if test "$smartcard_nss" = "yes"; then
2394111a38b0SRobert Relyea                feature_not_found "nss"
2395111a38b0SRobert Relyea            fi
2396111a38b0SRobert Relyea            smartcard_nss="no"
2397111a38b0SRobert Relyea        fi
2398111a38b0SRobert Relyea    fi
2399111a38b0SRobert Relyeafi
2400111a38b0SRobert Relyeaif test "$smartcard" = "no" ; then
2401111a38b0SRobert Relyea    smartcard_nss="no"
2402111a38b0SRobert Relyeafi
2403111a38b0SRobert Relyea
240469354a83SHans de Goede# check for usbredirparser for usb network redirection support
240569354a83SHans de Goedeif test "$usb_redir" != "no" ; then
240669354a83SHans de Goede    if $pkg_config libusbredirparser >/dev/null 2>&1 ; then
240769354a83SHans de Goede        usb_redir="yes"
240869354a83SHans de Goede        usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null)
240969354a83SHans de Goede        usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null)
241069354a83SHans de Goede        QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags"
241169354a83SHans de Goede        LIBS="$LIBS $usb_redir_libs"
241269354a83SHans de Goede    else
241369354a83SHans de Goede        if test "$usb_redir" = "yes"; then
241469354a83SHans de Goede            feature_not_found "usb-redir"
241569354a83SHans de Goede        fi
241669354a83SHans de Goede        usb_redir="no"
241769354a83SHans de Goede    fi
241869354a83SHans de Goedefi
241969354a83SHans de Goede
2420cd4ec0b4SGerd Hoffmann##########################################
2421cd4ec0b4SGerd Hoffmann
2422747bbdf7SBlue Swirl##########################################
24235f6b9e8fSBlue Swirl# check if we have fdatasync
24245f6b9e8fSBlue Swirl
24255f6b9e8fSBlue Swirlfdatasync=no
24265f6b9e8fSBlue Swirlcat > $TMPC << EOF
24275f6b9e8fSBlue Swirl#include <unistd.h>
2428d1722a27SAlexandre Raymondint main(void) {
2429d1722a27SAlexandre Raymond#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2430d1722a27SAlexandre Raymondreturn fdatasync(0);
2431d1722a27SAlexandre Raymond#else
2432d1722a27SAlexandre Raymond#abort Not supported
2433d1722a27SAlexandre Raymond#endif
2434d1722a27SAlexandre Raymond}
24355f6b9e8fSBlue SwirlEOF
24365f6b9e8fSBlue Swirlif compile_prog "" "" ; then
24375f6b9e8fSBlue Swirl    fdatasync=yes
24385f6b9e8fSBlue Swirlfi
24395f6b9e8fSBlue Swirl
244094a420b1SStefan Hajnoczi##########################################
2441e78815a5SAndreas Färber# check if we have madvise
2442e78815a5SAndreas Färber
2443e78815a5SAndreas Färbermadvise=no
2444e78815a5SAndreas Färbercat > $TMPC << EOF
2445e78815a5SAndreas Färber#include <sys/types.h>
2446e78815a5SAndreas Färber#include <sys/mman.h>
2447832ce9c2SScott Wood#include <stddef.h>
2448e78815a5SAndreas Färberint main(void) { return madvise(NULL, 0, MADV_DONTNEED); }
2449e78815a5SAndreas FärberEOF
2450e78815a5SAndreas Färberif compile_prog "" "" ; then
2451e78815a5SAndreas Färber    madvise=yes
2452e78815a5SAndreas Färberfi
2453e78815a5SAndreas Färber
2454e78815a5SAndreas Färber##########################################
2455e78815a5SAndreas Färber# check if we have posix_madvise
2456e78815a5SAndreas Färber
2457e78815a5SAndreas Färberposix_madvise=no
2458e78815a5SAndreas Färbercat > $TMPC << EOF
2459e78815a5SAndreas Färber#include <sys/mman.h>
2460832ce9c2SScott Wood#include <stddef.h>
2461e78815a5SAndreas Färberint main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }
2462e78815a5SAndreas FärberEOF
2463e78815a5SAndreas Färberif compile_prog "" "" ; then
2464e78815a5SAndreas Färber    posix_madvise=yes
2465e78815a5SAndreas Färberfi
2466e78815a5SAndreas Färber
2467e78815a5SAndreas Färber##########################################
246894a420b1SStefan Hajnoczi# check if trace backend exists
246994a420b1SStefan Hajnoczi
24704c3b5a48SBlue Swirlsh "$source_path/scripts/tracetool" "--$trace_backend" --check-backend > /dev/null 2> /dev/null
247194a420b1SStefan Hajnocziif test "$?" -ne 0 ; then
247294a420b1SStefan Hajnoczi  echo
247394a420b1SStefan Hajnoczi  echo "Error: invalid trace backend"
247494a420b1SStefan Hajnoczi  echo "Please choose a supported trace backend."
247594a420b1SStefan Hajnoczi  echo
247694a420b1SStefan Hajnoczi  exit 1
247794a420b1SStefan Hajnoczifi
247894a420b1SStefan Hajnoczi
24797e24e92aSStefan Hajnoczi##########################################
24807e24e92aSStefan Hajnoczi# For 'ust' backend, test if ust headers are present
24817e24e92aSStefan Hajnocziif test "$trace_backend" = "ust"; then
24827e24e92aSStefan Hajnoczi  cat > $TMPC << EOF
24837e24e92aSStefan Hajnoczi#include <ust/tracepoint.h>
24847e24e92aSStefan Hajnoczi#include <ust/marker.h>
24857e24e92aSStefan Hajnocziint main(void) { return 0; }
24867e24e92aSStefan HajnocziEOF
24877e24e92aSStefan Hajnoczi  if compile_prog "" "" ; then
24887e24e92aSStefan Hajnoczi    LIBS="-lust $LIBS"
24897e24e92aSStefan Hajnoczi  else
24907e24e92aSStefan Hajnoczi    echo
24917e24e92aSStefan Hajnoczi    echo "Error: Trace backend 'ust' missing libust header files"
24927e24e92aSStefan Hajnoczi    echo
24937e24e92aSStefan Hajnoczi    exit 1
24947e24e92aSStefan Hajnoczi  fi
24957e24e92aSStefan Hajnoczifi
2496b3d08c02SDaniel P. Berrange
2497b3d08c02SDaniel P. Berrange##########################################
2498b3d08c02SDaniel P. Berrange# For 'dtrace' backend, test if 'dtrace' command is present
2499b3d08c02SDaniel P. Berrangeif test "$trace_backend" = "dtrace"; then
2500b3d08c02SDaniel P. Berrange  if ! has 'dtrace' ; then
2501b3d08c02SDaniel P. Berrange    echo
2502b3d08c02SDaniel P. Berrange    echo "Error: dtrace command is not found in PATH $PATH"
2503b3d08c02SDaniel P. Berrange    echo
2504b3d08c02SDaniel P. Berrange    exit 1
2505b3d08c02SDaniel P. Berrange  fi
2506c276b17dSDaniel P. Berrange  trace_backend_stap="no"
2507c276b17dSDaniel P. Berrange  if has 'stap' ; then
2508c276b17dSDaniel P. Berrange    trace_backend_stap="yes"
2509c276b17dSDaniel P. Berrange  fi
2510b3d08c02SDaniel P. Berrangefi
2511b3d08c02SDaniel P. Berrange
25127e24e92aSStefan Hajnoczi##########################################
2513e86ecd4bSJuan Quintela# End of CC checks
2514e86ecd4bSJuan Quintela# After here, no more $cc or $ld runs
2515e86ecd4bSJuan Quintela
2516e86ecd4bSJuan Quintelaif test "$debug" = "no" ; then
25171156c669SJuan Quintela  CFLAGS="-O2 $CFLAGS"
2518e86ecd4bSJuan Quintelafi
2519a316e378SJuan Quintela
2520e86ecd4bSJuan Quintela# Consult white-list to determine whether to enable werror
2521e86ecd4bSJuan Quintela# by default.  Only enable by default for git builds
2522e86ecd4bSJuan Quintelaz_version=`cut -f3 -d. $source_path/VERSION`
252320ff6c80SAnthony Liguori
252420ff6c80SAnthony Liguoriif test -z "$werror" ; then
2525e86ecd4bSJuan Quintela    if test "$z_version" = "50" -a \
2526e86ecd4bSJuan Quintela        "$linux" = "yes" ; then
2527e86ecd4bSJuan Quintela        werror="yes"
2528e86ecd4bSJuan Quintela    else
2529e86ecd4bSJuan Quintela        werror="no"
2530e86ecd4bSJuan Quintela    fi
2531e86ecd4bSJuan Quintelafi
2532e86ecd4bSJuan Quintela
253320ff6c80SAnthony Liguori# Disable zero malloc errors for official releases unless explicitly told to
253420ff6c80SAnthony Liguori# enable/disable
253520ff6c80SAnthony Liguoriif test -z "$zero_malloc" ; then
253620ff6c80SAnthony Liguori    if test "$z_version" = "50" ; then
253720ff6c80SAnthony Liguori	zero_malloc="no"
253820ff6c80SAnthony Liguori    else
253920ff6c80SAnthony Liguori	zero_malloc="yes"
254020ff6c80SAnthony Liguori    fi
254120ff6c80SAnthony Liguorifi
254220ff6c80SAnthony Liguori
2543e86ecd4bSJuan Quintelaif test "$werror" = "yes" ; then
2544a558ee17SJuan Quintela    QEMU_CFLAGS="-Werror $QEMU_CFLAGS"
2545e86ecd4bSJuan Quintelafi
2546e86ecd4bSJuan Quintela
2547e86ecd4bSJuan Quintelaif test "$solaris" = "no" ; then
2548e86ecd4bSJuan Quintela    if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
25491156c669SJuan Quintela        LDFLAGS="-Wl,--warn-common $LDFLAGS"
2550e86ecd4bSJuan Quintela    fi
2551e86ecd4bSJuan Quintelafi
2552e86ecd4bSJuan Quintela
2553952afb71SBlue Swirl# Use ASLR, no-SEH and DEP if available
2554952afb71SBlue Swirlif test "$mingw32" = "yes" ; then
2555952afb71SBlue Swirl    for flag in --dynamicbase --no-seh --nxcompat; do
2556952afb71SBlue Swirl        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
2557952afb71SBlue Swirl            LDFLAGS="-Wl,$flag $LDFLAGS"
2558952afb71SBlue Swirl        fi
2559952afb71SBlue Swirl    done
2560952afb71SBlue Swirlfi
2561952afb71SBlue Swirl
2562190e9c59SPaolo Bonziniconfdir=$sysconfdir$confsuffix
25635a67135aSbellard
2564ca35f780SPaolo Bonzinitools=
2565ca35f780SPaolo Bonziniif test "$softmmu" = yes ; then
2566ca35f780SPaolo Bonzini  tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools"
2567ca35f780SPaolo Bonzini  if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
2568ca35f780SPaolo Bonzini      tools="qemu-nbd\$(EXESUF) $tools"
256948ff7a62SMichael Roth      tools="qemu-ga\$(EXESUF) $tools"
2570ca35f780SPaolo Bonzini    if [ "$check_utests" = "yes" ]; then
2571ca35f780SPaolo Bonzini      tools="check-qint check-qstring check-qdict check-qlist $tools"
2572ca35f780SPaolo Bonzini      tools="check-qfloat check-qjson $tools"
2573ca35f780SPaolo Bonzini    fi
2574ca35f780SPaolo Bonzini  fi
2575ca35f780SPaolo Bonzinifi
2576ca35f780SPaolo Bonzini
2577ca35f780SPaolo Bonzini# Mac OS X ships with a broken assembler
2578ca35f780SPaolo Bonziniroms=
2579ca35f780SPaolo Bonziniif test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
2580ca35f780SPaolo Bonzini        "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \
2581ca35f780SPaolo Bonzini        "$softmmu" = yes ; then
2582ca35f780SPaolo Bonzini  roms="optionrom"
2583ca35f780SPaolo Bonzinifi
2584d0384d1dSAndreas Färberif test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
258539ac8455SDavid Gibson  roms="$roms spapr-rtas"
258639ac8455SDavid Gibsonfi
2587ca35f780SPaolo Bonzini
25887d13299dSbellardecho "Install prefix    $prefix"
2589f2b9e1e3SPaolo Bonziniecho "BIOS directory    `eval echo $datadir`"
2590f2b9e1e3SPaolo Bonziniecho "binary directory  `eval echo $bindir`"
25913aa5d2beSAlon Levyecho "library directory `eval echo $libdir`"
25921c0fd160SAurelien Jarnoecho "config directory  `eval echo $sysconfdir`"
259311d9f695Sbellardif test "$mingw32" = "no" ; then
2594f2b9e1e3SPaolo Bonziniecho "Manual directory  `eval echo $mandir`"
259543ce4dfeSbellardecho "ELF interp prefix $interp_prefix"
259611d9f695Sbellardfi
25975a67135aSbellardecho "Source path       $source_path"
25987d13299dSbellardecho "C compiler        $cc"
259983469015Sbellardecho "Host C compiler   $host_cc"
26000c439cbfSJuan Quintelaecho "CFLAGS            $CFLAGS"
2601a558ee17SJuan Quintelaecho "QEMU_CFLAGS       $QEMU_CFLAGS"
26020c439cbfSJuan Quintelaecho "LDFLAGS           $LDFLAGS"
26037d13299dSbellardecho "make              $make"
26046a882643Spbrookecho "install           $install"
2605c886edfbSBlue Swirlecho "python            $python"
2606a98fd896Sbellardecho "host CPU          $cpu"
2607de83cd02Sbellardecho "host big endian   $bigendian"
260897a847bcSbellardecho "target list       $target_list"
2609ade25b0dSaurel32echo "tcg debug enabled $debug_tcg"
2610b4475aa2SLuiz Capitulinoecho "Mon debug enabled $debug_mon"
26117d13299dSbellardecho "gprof enabled     $gprof"
261203b4fe7dSaliguoriecho "sparse enabled    $sparse"
26131625af87Saliguoriecho "strip binaries    $strip_opt"
261405c2a3e7Sbellardecho "profiler          $profiler"
261543ce4dfeSbellardecho "static build      $static"
261685aa5189Sbellardecho "-Werror enabled   $werror"
26175b0753e0Sbellardif test "$darwin" = "yes" ; then
26185b0753e0Sbellard    echo "Cocoa support     $cocoa"
26195b0753e0Sbellardfi
262097a847bcSbellardecho "SDL support       $sdl"
26214d3b6f6eSbalrogecho "curses support    $curses"
2622769ce76dSAlexander Grafecho "curl support      $curl"
26235495ed11SLuiz Capitulinoecho "check support     $check_utests"
262467b915a5Sbellardecho "mingw32 support   $mingw32"
26250c58ac1cSmalcecho "Audio drivers     $audio_drv_list"
26260c58ac1cSmalcecho "Extra audio cards $audio_card_list"
2627eb852011SMarkus Armbrusterecho "Block whitelist   $block_drv_whitelist"
26288ff9cbf7Smalcecho "Mixer emulation   $mixemu"
2629821601eaSJes Sorensenecho "VNC support       $vnc"
2630821601eaSJes Sorensenif test "$vnc" = "yes" ; then
26318d5d2d4cSths    echo "VNC TLS support   $vnc_tls"
26322f9606b3Saliguori    echo "VNC SASL support  $vnc_sasl"
26332f6f5c7aSCorentin Chary    echo "VNC JPEG support  $vnc_jpeg"
2634efe556adSCorentin Chary    echo "VNC PNG support   $vnc_png"
2635bd023f95SCorentin Chary    echo "VNC thread        $vnc_thread"
2636821601eaSJes Sorensenfi
26373142255cSblueswir1if test -n "$sparc_cpu"; then
26383142255cSblueswir1    echo "Target Sparc Arch $sparc_cpu"
26393142255cSblueswir1fi
2640e37630caSaliguoriecho "xen support       $xen"
26412e4d9fb1Saurel32echo "brlapi support    $brlapi"
2642a20a6f46SJuan Quintelaecho "bluez  support    $bluez"
2643a25dba17SJuan Quintelaecho "Documentation     $docs"
2644c5937220Spbrook[ ! -z "$uname_release" ] && \
2645c5937220Spbrookecho "uname -r          $uname_release"
2646bd0c5661Spbrookecho "NPTL support      $nptl"
2647379f6698SPaul Brookecho "GUEST_BASE        $guest_base"
264834005a00SKirill A. Shutemovecho "PIE user targets  $user_pie"
26498a16d273Sthsecho "vde support       $vde"
2650e5d355d1Saliguoriecho "IO thread         $io_thread"
26515c6c3a6cSChristoph Hellwigecho "Linux AIO support $linux_aio"
2652758e8e38SVenkateswararao Jujjuri (JV)echo "ATTR/XATTR support $attr"
265377755340Sthsecho "Install blobs     $blobs"
2654b31a0277SJuan Quintelaecho "KVM support       $kvm"
2655f652e6afSaurel32echo "fdt support       $fdt"
2656ceb42de8Saliguoriecho "preadv support    $preadv"
26575f6b9e8fSBlue Swirlecho "fdatasync         $fdatasync"
2658e78815a5SAndreas Färberecho "madvise           $madvise"
2659e78815a5SAndreas Färberecho "posix_madvise     $posix_madvise"
2660ee682d27SStefan Weilecho "uuid support      $uuid"
2661d5970055SMichael S. Tsirkinecho "vhost-net support $vhost_net"
266294a420b1SStefan Hajnocziecho "Trace backend     $trace_backend"
26639410b56cSPrerna Saxenaecho "Trace output file $trace_file-<pid>"
2664cd4ec0b4SGerd Hoffmannecho "spice support     $spice"
2665f27aaf4bSChristian Brunnerecho "rbd support       $rbd"
2666dce512deSChristoph Hellwigecho "xfsctl support    $xfs"
2667111a38b0SRobert Relyeaecho "nss used          $smartcard_nss"
266869354a83SHans de Goedeecho "usb net redir     $usb_redir"
266920ff075bSMichael Walleecho "OpenGL support    $opengl"
267067b915a5Sbellard
267197a847bcSbellardif test $sdl_too_old = "yes"; then
267224b55b96Sbellardecho "-> Your SDL version is too old - please upgrade to have SDL support"
2673e8cd23deSbellardfi
267497a847bcSbellard
267598ec69acSJuan Quintelaconfig_host_mak="config-host.mak"
26764bf6b55bSJuan Quintelaconfig_host_ld="config-host.ld"
267797a847bcSbellard
267898ec69acSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_host_mak
267998ec69acSJuan Quintelaprintf "# Configured with:" >> $config_host_mak
268098ec69acSJuan Quintelaprintf " '%s'" "$0" "$@" >> $config_host_mak
268198ec69acSJuan Quintelaecho >> $config_host_mak
268298ec69acSJuan Quintela
2683e6c3b0f7SPaolo Bonziniecho all: >> $config_host_mak
268499d7cc75SPaolo Bonziniecho "prefix=$prefix" >> $config_host_mak
268599d7cc75SPaolo Bonziniecho "bindir=$bindir" >> $config_host_mak
26863aa5d2beSAlon Levyecho "libdir=$libdir" >> $config_host_mak
268799d7cc75SPaolo Bonziniecho "mandir=$mandir" >> $config_host_mak
268899d7cc75SPaolo Bonziniecho "datadir=$datadir" >> $config_host_mak
268999d7cc75SPaolo Bonziniecho "sysconfdir=$sysconfdir" >> $config_host_mak
269099d7cc75SPaolo Bonziniecho "docdir=$docdir" >> $config_host_mak
26911dabe05cSPaolo Bonziniecho "confdir=$confdir" >> $config_host_mak
2692804edf29SJuan Quintela
26932408a527Saurel32case "$cpu" in
2694d2fbca94SGuan Xuetao  i386|x86_64|alpha|cris|hppa|ia64|lm32|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64|unicore32)
2695e0da9dd3SJuan Quintela    ARCH=$cpu
26962408a527Saurel32  ;;
2697a302c32dSLaurent Desnogues  armv4b|armv4l)
269816dbd14fSJuan Quintela    ARCH=arm
26992408a527Saurel32  ;;
27002408a527Saurel32esac
270198ec69acSJuan Quintelaecho "ARCH=$ARCH" >> $config_host_mak
2702f8393946Saurel32if test "$debug_tcg" = "yes" ; then
27032358a494SJuan Quintela  echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
2704f8393946Saurel32fi
2705b4475aa2SLuiz Capitulinoif test "$debug_mon" = "yes" ; then
2706b4475aa2SLuiz Capitulino  echo "CONFIG_DEBUG_MONITOR=y" >> $config_host_mak
2707b4475aa2SLuiz Capitulinofi
2708f3d08ee6SPaul Brookif test "$debug" = "yes" ; then
27092358a494SJuan Quintela  echo "CONFIG_DEBUG_EXEC=y" >> $config_host_mak
2710f3d08ee6SPaul Brookfi
27111625af87Saliguoriif test "$strip_opt" = "yes" ; then
271252ba784dSHollis Blanchard  echo "STRIP=${strip}" >> $config_host_mak
27131625af87Saliguorifi
27147d13299dSbellardif test "$bigendian" = "yes" ; then
2715e2542fe2SJuan Quintela  echo "HOST_WORDS_BIGENDIAN=y" >> $config_host_mak
271697a847bcSbellardfi
27172358a494SJuan Quintelaecho "HOST_LONG_BITS=$hostlongbits" >> $config_host_mak
271867b915a5Sbellardif test "$mingw32" = "yes" ; then
271998ec69acSJuan Quintela  echo "CONFIG_WIN32=y" >> $config_host_mak
27209fe6de94SBlue Swirl  rc_version=`cat $source_path/VERSION`
27219fe6de94SBlue Swirl  version_major=${rc_version%%.*}
27229fe6de94SBlue Swirl  rc_version=${rc_version#*.}
27239fe6de94SBlue Swirl  version_minor=${rc_version%%.*}
27249fe6de94SBlue Swirl  rc_version=${rc_version#*.}
27259fe6de94SBlue Swirl  version_subminor=${rc_version%%.*}
27269fe6de94SBlue Swirl  version_micro=0
27279fe6de94SBlue Swirl  echo "CONFIG_FILEVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
27289fe6de94SBlue Swirl  echo "CONFIG_PRODUCTVERSION=$version_major,$version_minor,$version_subminor,$version_micro" >> $config_host_mak
2729210fa556Spbrookelse
273035f4df27SJuan Quintela  echo "CONFIG_POSIX=y" >> $config_host_mak
2731210fa556Spbrookfi
2732128ab2ffSblueswir1
2733dffcb71cSMark McLoughlinif test "$linux" = "yes" ; then
2734dffcb71cSMark McLoughlin  echo "CONFIG_LINUX=y" >> $config_host_mak
2735dffcb71cSMark McLoughlinfi
2736dffcb71cSMark McLoughlin
273783fb7adfSbellardif test "$darwin" = "yes" ; then
273898ec69acSJuan Quintela  echo "CONFIG_DARWIN=y" >> $config_host_mak
273983fb7adfSbellardfi
2740b29fe3edSmalc
2741b29fe3edSmalcif test "$aix" = "yes" ; then
274298ec69acSJuan Quintela  echo "CONFIG_AIX=y" >> $config_host_mak
2743b29fe3edSmalcfi
2744b29fe3edSmalc
2745ec530c81Sbellardif test "$solaris" = "yes" ; then
274698ec69acSJuan Quintela  echo "CONFIG_SOLARIS=y" >> $config_host_mak
27472358a494SJuan Quintela  echo "CONFIG_SOLARIS_VERSION=$solarisrev" >> $config_host_mak
27480475a5caSths  if test "$needs_libsunmath" = "yes" ; then
274975b5a697SJuan Quintela    echo "CONFIG_NEEDS_LIBSUNMATH=y" >> $config_host_mak
27500475a5caSths  fi
2751ec530c81Sbellardfi
2752179cf400SAndreas Färberif test "$haiku" = "yes" ; then
2753179cf400SAndreas Färber  echo "CONFIG_HAIKU=y" >> $config_host_mak
2754179cf400SAndreas Färberfi
275597a847bcSbellardif test "$static" = "yes" ; then
275698ec69acSJuan Quintela  echo "CONFIG_STATIC=y" >> $config_host_mak
275797a847bcSbellardfi
275805c2a3e7Sbellardif test $profiler = "yes" ; then
27592358a494SJuan Quintela  echo "CONFIG_PROFILER=y" >> $config_host_mak
276005c2a3e7Sbellardfi
2761c20709aaSbellardif test "$slirp" = "yes" ; then
276298ec69acSJuan Quintela  echo "CONFIG_SLIRP=y" >> $config_host_mak
2763f9728943SPaolo Bonzini  QEMU_INCLUDES="-I\$(SRC_PATH)/slirp $QEMU_INCLUDES"
2764c20709aaSbellardfi
27658a16d273Sthsif test "$vde" = "yes" ; then
276698ec69acSJuan Quintela  echo "CONFIG_VDE=y" >> $config_host_mak
27678a16d273Sthsfi
27680c58ac1cSmalcfor card in $audio_card_list; do
2769f6e5889eSpbrook    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
277098ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
27710c58ac1cSmalcdone
27722358a494SJuan Quintelaecho "CONFIG_AUDIO_DRIVERS=$audio_drv_list" >> $config_host_mak
27730c58ac1cSmalcfor drv in $audio_drv_list; do
2774f6e5889eSpbrook    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
277598ec69acSJuan Quintela    echo "$def=y" >> $config_host_mak
2776923e4521Smalc    if test "$drv" = "fmod"; then
27777aac6cb1SJuan Quintela        echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
2778fb065187Sbellard    fi
27790c58ac1cSmalcdone
278067f86e8eSJuan Quintelaif test "$audio_pt_int" = "yes" ; then
278167f86e8eSJuan Quintela  echo "CONFIG_AUDIO_PT_INT=y" >> $config_host_mak
278267f86e8eSJuan Quintelafi
2783d5631638Smalcif test "$audio_win_int" = "yes" ; then
2784d5631638Smalc  echo "CONFIG_AUDIO_WIN_INT=y" >> $config_host_mak
2785d5631638Smalcfi
2786eb852011SMarkus Armbrusterecho "CONFIG_BDRV_WHITELIST=$block_drv_whitelist" >> $config_host_mak
27878ff9cbf7Smalcif test "$mixemu" = "yes" ; then
278898ec69acSJuan Quintela  echo "CONFIG_MIXEMU=y" >> $config_host_mak
27898ff9cbf7Smalcfi
2790821601eaSJes Sorensenif test "$vnc" = "yes" ; then
2791821601eaSJes Sorensen  echo "CONFIG_VNC=y" >> $config_host_mak
2792821601eaSJes Sorensenfi
27938d5d2d4cSthsif test "$vnc_tls" = "yes" ; then
279498ec69acSJuan Quintela  echo "CONFIG_VNC_TLS=y" >> $config_host_mak
2795525061bfSJuan Quintela  echo "VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_host_mak
27968d5d2d4cSthsfi
27972f9606b3Saliguoriif test "$vnc_sasl" = "yes" ; then
279898ec69acSJuan Quintela  echo "CONFIG_VNC_SASL=y" >> $config_host_mak
279960ddf533SJuan Quintela  echo "VNC_SASL_CFLAGS=$vnc_sasl_cflags" >> $config_host_mak
28002f9606b3Saliguorifi
2801821601eaSJes Sorensenif test "$vnc_jpeg" = "yes" ; then
28022f6f5c7aSCorentin Chary  echo "CONFIG_VNC_JPEG=y" >> $config_host_mak
28032f6f5c7aSCorentin Chary  echo "VNC_JPEG_CFLAGS=$vnc_jpeg_cflags" >> $config_host_mak
28042f6f5c7aSCorentin Charyfi
2805821601eaSJes Sorensenif test "$vnc_png" = "yes" ; then
2806efe556adSCorentin Chary  echo "CONFIG_VNC_PNG=y" >> $config_host_mak
2807efe556adSCorentin Chary  echo "VNC_PNG_CFLAGS=$vnc_png_cflags" >> $config_host_mak
2808efe556adSCorentin Charyfi
2809821601eaSJes Sorensenif test "$vnc_thread" = "yes" ; then
2810bd023f95SCorentin Chary  echo "CONFIG_VNC_THREAD=y" >> $config_host_mak
2811bd023f95SCorentin Charyfi
281276655d6dSaliguoriif test "$fnmatch" = "yes" ; then
28132358a494SJuan Quintela  echo "CONFIG_FNMATCH=y" >> $config_host_mak
281476655d6dSaliguorifi
2815ee682d27SStefan Weilif test "$uuid" = "yes" ; then
2816ee682d27SStefan Weil  echo "CONFIG_UUID=y" >> $config_host_mak
2817ee682d27SStefan Weilfi
2818dce512deSChristoph Hellwigif test "$xfs" = "yes" ; then
2819dce512deSChristoph Hellwig  echo "CONFIG_XFS=y" >> $config_host_mak
2820dce512deSChristoph Hellwigfi
2821b1a550a0Spbrookqemu_version=`head $source_path/VERSION`
282298ec69acSJuan Quintelaecho "VERSION=$qemu_version" >>$config_host_mak
28232358a494SJuan Quintelaecho "PKGVERSION=$pkgversion" >>$config_host_mak
282498ec69acSJuan Quintelaecho "SRC_PATH=$source_path" >> $config_host_mak
282598ec69acSJuan Quintelaecho "TARGET_DIRS=$target_list" >> $config_host_mak
2826a25dba17SJuan Quintelaif [ "$docs" = "yes" ] ; then
282798ec69acSJuan Quintela  echo "BUILD_DOCS=yes" >> $config_host_mak
2828cc8ae6deSpbrookfi
28291ac88f28SJuan Quintelaif test "$sdl" = "yes" ; then
283098ec69acSJuan Quintela  echo "CONFIG_SDL=y" >> $config_host_mak
28318ad3a7ddSJuan Quintela  echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak
283249ecc3faSbellardfi
283349ecc3faSbellardif test "$cocoa" = "yes" ; then
283498ec69acSJuan Quintela  echo "CONFIG_COCOA=y" >> $config_host_mak
283549ecc3faSbellardfi
28364d3b6f6eSbalrogif test "$curses" = "yes" ; then
283798ec69acSJuan Quintela  echo "CONFIG_CURSES=y" >> $config_host_mak
2838ab4e5602SJan Kiszkafi
28393b3f24adSaurel32if test "$atfile" = "yes" ; then
28402358a494SJuan Quintela  echo "CONFIG_ATFILE=y" >> $config_host_mak
28413b3f24adSaurel32fi
2842ebc996f3SRiku Voipioif test "$utimens" = "yes" ; then
28432358a494SJuan Quintela  echo "CONFIG_UTIMENSAT=y" >> $config_host_mak
2844ebc996f3SRiku Voipiofi
2845099d6b0fSRiku Voipioif test "$pipe2" = "yes" ; then
28462358a494SJuan Quintela  echo "CONFIG_PIPE2=y" >> $config_host_mak
2847099d6b0fSRiku Voipiofi
284840ff6d7eSKevin Wolfif test "$accept4" = "yes" ; then
284940ff6d7eSKevin Wolf  echo "CONFIG_ACCEPT4=y" >> $config_host_mak
285040ff6d7eSKevin Wolffi
28513ce34dfbSvibisreenivasanif test "$splice" = "yes" ; then
28522358a494SJuan Quintela  echo "CONFIG_SPLICE=y" >> $config_host_mak
28533ce34dfbSvibisreenivasanfi
2854c2882b96SRiku Voipioif test "$eventfd" = "yes" ; then
2855c2882b96SRiku Voipio  echo "CONFIG_EVENTFD=y" >> $config_host_mak
2856c2882b96SRiku Voipiofi
2857d0927938SUlrich Hechtif test "$fallocate" = "yes" ; then
2858d0927938SUlrich Hecht  echo "CONFIG_FALLOCATE=y" >> $config_host_mak
2859d0927938SUlrich Hechtfi
2860c727f47dSPeter Maydellif test "$sync_file_range" = "yes" ; then
2861c727f47dSPeter Maydell  echo "CONFIG_SYNC_FILE_RANGE=y" >> $config_host_mak
2862c727f47dSPeter Maydellfi
2863dace20dcSPeter Maydellif test "$fiemap" = "yes" ; then
2864dace20dcSPeter Maydell  echo "CONFIG_FIEMAP=y" >> $config_host_mak
2865dace20dcSPeter Maydellfi
2866d0927938SUlrich Hechtif test "$dup3" = "yes" ; then
2867d0927938SUlrich Hecht  echo "CONFIG_DUP3=y" >> $config_host_mak
2868d0927938SUlrich Hechtfi
28693b6edd16SPeter Maydellif test "$epoll" = "yes" ; then
28703b6edd16SPeter Maydell  echo "CONFIG_EPOLL=y" >> $config_host_mak
28713b6edd16SPeter Maydellfi
28723b6edd16SPeter Maydellif test "$epoll_create1" = "yes" ; then
28733b6edd16SPeter Maydell  echo "CONFIG_EPOLL_CREATE1=y" >> $config_host_mak
28743b6edd16SPeter Maydellfi
28753b6edd16SPeter Maydellif test "$epoll_pwait" = "yes" ; then
28763b6edd16SPeter Maydell  echo "CONFIG_EPOLL_PWAIT=y" >> $config_host_mak
28773b6edd16SPeter Maydellfi
28783b3f24adSaurel32if test "$inotify" = "yes" ; then
28792358a494SJuan Quintela  echo "CONFIG_INOTIFY=y" >> $config_host_mak
28803b3f24adSaurel32fi
2881c05c7a73SRiku Voipioif test "$inotify1" = "yes" ; then
2882c05c7a73SRiku Voipio  echo "CONFIG_INOTIFY1=y" >> $config_host_mak
2883c05c7a73SRiku Voipiofi
28846ae9a1f4SJuan Quintelaif test "$byteswap_h" = "yes" ; then
28856ae9a1f4SJuan Quintela  echo "CONFIG_BYTESWAP_H=y" >> $config_host_mak
28866ae9a1f4SJuan Quintelafi
28876ae9a1f4SJuan Quintelaif test "$bswap_h" = "yes" ; then
28886ae9a1f4SJuan Quintela  echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak
28896ae9a1f4SJuan Quintelafi
2890769ce76dSAlexander Grafif test "$curl" = "yes" ; then
289198ec69acSJuan Quintela  echo "CONFIG_CURL=y" >> $config_host_mak
2892b1d5a277SJuan Quintela  echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak
2893769ce76dSAlexander Graffi
28942e4d9fb1Saurel32if test "$brlapi" = "yes" ; then
289598ec69acSJuan Quintela  echo "CONFIG_BRLAPI=y" >> $config_host_mak
28962e4d9fb1Saurel32fi
2897fb599c9aSbalrogif test "$bluez" = "yes" ; then
289898ec69acSJuan Quintela  echo "CONFIG_BLUEZ=y" >> $config_host_mak
2899ef7635ecSJuan Quintela  echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak
2900fb599c9aSbalrogfi
2901e18df141SAnthony Liguoriecho "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak
2902e37630caSaliguoriif test "$xen" = "yes" ; then
29036dbd588aSJan Kiszka  echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak
2904d5b93ddfSAnthony PERARD  echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak
2905e37630caSaliguorifi
2906e5d355d1Saliguoriif test "$io_thread" = "yes" ; then
290798ec69acSJuan Quintela  echo "CONFIG_IOTHREAD=y" >> $config_host_mak
2908e5d355d1Saliguorifi
29095c6c3a6cSChristoph Hellwigif test "$linux_aio" = "yes" ; then
29105c6c3a6cSChristoph Hellwig  echo "CONFIG_LINUX_AIO=y" >> $config_host_mak
29115c6c3a6cSChristoph Hellwigfi
2912758e8e38SVenkateswararao Jujjuri (JV)if test "$attr" = "yes" ; then
2913758e8e38SVenkateswararao Jujjuri (JV)  echo "CONFIG_ATTR=y" >> $config_host_mak
2914758e8e38SVenkateswararao Jujjuri (JV)fi
2915758e8e38SVenkateswararao Jujjuri (JV)if test "$linux" = "yes" ; then
2916758e8e38SVenkateswararao Jujjuri (JV)  if test "$attr" = "yes" ; then
2917758e8e38SVenkateswararao Jujjuri (JV)    echo "CONFIG_VIRTFS=y" >> $config_host_mak
2918758e8e38SVenkateswararao Jujjuri (JV)  fi
2919758e8e38SVenkateswararao Jujjuri (JV)fi
292077755340Sthsif test "$blobs" = "yes" ; then
292198ec69acSJuan Quintela  echo "INSTALL_BLOBS=yes" >> $config_host_mak
292277755340Sthsfi
2923bf9298b9Saliguoriif test "$iovec" = "yes" ; then
29242358a494SJuan Quintela  echo "CONFIG_IOVEC=y" >> $config_host_mak
2925bf9298b9Saliguorifi
2926ceb42de8Saliguoriif test "$preadv" = "yes" ; then
29272358a494SJuan Quintela  echo "CONFIG_PREADV=y" >> $config_host_mak
2928ceb42de8Saliguorifi
2929f652e6afSaurel32if test "$fdt" = "yes" ; then
29303f0855b1SJuan Quintela  echo "CONFIG_FDT=y" >> $config_host_mak
2931f652e6afSaurel32fi
2932dcc38d1cSMarcelo Tosattiif test "$signalfd" = "yes" ; then
2933dcc38d1cSMarcelo Tosatti  echo "CONFIG_SIGNALFD=y" >> $config_host_mak
2934dcc38d1cSMarcelo Tosattifi
2935de5071c5SBlue Swirlif test "$need_offsetof" = "yes" ; then
2936de5071c5SBlue Swirl  echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
2937de5071c5SBlue Swirlfi
2938747bbdf7SBlue Swirlif test "$gcc_attribute_warn_unused_result" = "yes" ; then
2939747bbdf7SBlue Swirl  echo "CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT=y" >> $config_host_mak
2940747bbdf7SBlue Swirlfi
29415f6b9e8fSBlue Swirlif test "$fdatasync" = "yes" ; then
29425f6b9e8fSBlue Swirl  echo "CONFIG_FDATASYNC=y" >> $config_host_mak
29435f6b9e8fSBlue Swirlfi
2944e78815a5SAndreas Färberif test "$madvise" = "yes" ; then
2945e78815a5SAndreas Färber  echo "CONFIG_MADVISE=y" >> $config_host_mak
2946e78815a5SAndreas Färberfi
2947e78815a5SAndreas Färberif test "$posix_madvise" = "yes" ; then
2948e78815a5SAndreas Färber  echo "CONFIG_POSIX_MADVISE=y" >> $config_host_mak
2949e78815a5SAndreas Färberfi
295097a847bcSbellard
2951cd4ec0b4SGerd Hoffmannif test "$spice" = "yes" ; then
2952cd4ec0b4SGerd Hoffmann  echo "CONFIG_SPICE=y" >> $config_host_mak
2953cd4ec0b4SGerd Hoffmannfi
2954cd4ec0b4SGerd Hoffmann
295536707144SAlon Levyif test "$smartcard" = "yes" ; then
295636707144SAlon Levy  echo "CONFIG_SMARTCARD=y" >> $config_host_mak
295736707144SAlon Levyfi
295836707144SAlon Levy
2959111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
2960111a38b0SRobert Relyea  echo "CONFIG_SMARTCARD_NSS=y" >> $config_host_mak
2961111a38b0SRobert Relyeafi
2962111a38b0SRobert Relyea
296369354a83SHans de Goedeif test "$usb_redir" = "yes" ; then
296469354a83SHans de Goede  echo "CONFIG_USB_REDIR=y" >> $config_host_mak
296569354a83SHans de Goedefi
296669354a83SHans de Goede
296720ff075bSMichael Walleif test "$opengl" = "yes" ; then
296820ff075bSMichael Walle  echo "CONFIG_OPENGL=y" >> $config_host_mak
296920ff075bSMichael Wallefi
297020ff075bSMichael Walle
297183fb7adfSbellard# XXX: suppress that
29727d3505c5Sbellardif [ "$bsd" = "yes" ] ; then
29732358a494SJuan Quintela  echo "CONFIG_BSD=y" >> $config_host_mak
29747d3505c5Sbellardfi
29757d3505c5Sbellard
29762358a494SJuan Quintelaecho "CONFIG_UNAME_RELEASE=\"$uname_release\"" >> $config_host_mak
2977c5937220Spbrook
297820ff6c80SAnthony Liguoriif test "$zero_malloc" = "yes" ; then
297920ff6c80SAnthony Liguori  echo "CONFIG_ZERO_MALLOC=y" >> $config_host_mak
298020ff6c80SAnthony Liguorifi
2981f27aaf4bSChristian Brunnerif test "$rbd" = "yes" ; then
2982f27aaf4bSChristian Brunner  echo "CONFIG_RBD=y" >> $config_host_mak
2983f27aaf4bSChristian Brunnerfi
298420ff6c80SAnthony Liguori
298568063649Sblueswir1# USB host support
298668063649Sblueswir1case "$usb" in
298768063649Sblueswir1linux)
298898ec69acSJuan Quintela  echo "HOST_USB=linux" >> $config_host_mak
298968063649Sblueswir1;;
299068063649Sblueswir1bsd)
299198ec69acSJuan Quintela  echo "HOST_USB=bsd" >> $config_host_mak
299268063649Sblueswir1;;
299368063649Sblueswir1*)
299498ec69acSJuan Quintela  echo "HOST_USB=stub" >> $config_host_mak
299568063649Sblueswir1;;
299668063649Sblueswir1esac
299768063649Sblueswir1
299894a420b1SStefan Hajnocziecho "TRACE_BACKEND=$trace_backend" >> $config_host_mak
299922890ab5SPrerna Saxenaif test "$trace_backend" = "simple"; then
300022890ab5SPrerna Saxena  echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
300122890ab5SPrerna Saxenafi
30029410b56cSPrerna Saxena# Set the appropriate trace file.
30039410b56cSPrerna Saxenaif test "$trace_backend" = "simple"; then
3004953ffe0fSAndreas Färber  trace_file="\"$trace_file-\" FMT_pid"
30059410b56cSPrerna Saxenafi
3006c276b17dSDaniel P. Berrangeif test "$trace_backend" = "dtrace" -a "$trace_backend_stap" = "yes" ; then
3007c276b17dSDaniel P. Berrange  echo "CONFIG_SYSTEMTAP_TRACE=y" >> $config_host_mak
3008c276b17dSDaniel P. Berrangefi
30099410b56cSPrerna Saxenaecho "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak
30109410b56cSPrerna Saxena
301198ec69acSJuan Quintelaecho "TOOLS=$tools" >> $config_host_mak
301298ec69acSJuan Quintelaecho "ROMS=$roms" >> $config_host_mak
3013804edf29SJuan Quintelaecho "MAKE=$make" >> $config_host_mak
3014804edf29SJuan Quintelaecho "INSTALL=$install" >> $config_host_mak
3015804edf29SJuan Quintelaecho "INSTALL_DIR=$install -d -m0755 -p" >> $config_host_mak
3016804edf29SJuan Quintelaecho "INSTALL_DATA=$install -m0644 -p" >> $config_host_mak
3017804edf29SJuan Quintelaecho "INSTALL_PROG=$install -m0755 -p" >> $config_host_mak
3018c886edfbSBlue Swirlecho "PYTHON=$python" >> $config_host_mak
3019804edf29SJuan Quintelaecho "CC=$cc" >> $config_host_mak
30202b2e59e6SPaolo Bonziniecho "CC_I386=$cc_i386" >> $config_host_mak
3021804edf29SJuan Quintelaecho "HOST_CC=$host_cc" >> $config_host_mak
3022804edf29SJuan Quintelaecho "AR=$ar" >> $config_host_mak
3023804edf29SJuan Quintelaecho "OBJCOPY=$objcopy" >> $config_host_mak
3024804edf29SJuan Quintelaecho "LD=$ld" >> $config_host_mak
30259fe6de94SBlue Swirlecho "WINDRES=$windres" >> $config_host_mak
302644dc0ca3SAlon Levyecho "LIBTOOL=$libtool" >> $config_host_mak
3027e2a2ed06SJuan Quintelaecho "CFLAGS=$CFLAGS" >> $config_host_mak
3028a558ee17SJuan Quintelaecho "QEMU_CFLAGS=$QEMU_CFLAGS" >> $config_host_mak
3029f9728943SPaolo Bonziniecho "QEMU_INCLUDES=$QEMU_INCLUDES" >> $config_host_mak
3030e39f0062SPaolo Bonziniif test "$sparse" = "yes" ; then
3031e39f0062SPaolo Bonzini  echo "CC           := REAL_CC=\"\$(CC)\" cgcc"       >> $config_host_mak
3032e39f0062SPaolo Bonzini  echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
3033e39f0062SPaolo Bonzini  echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
3034e39f0062SPaolo Bonzinifi
3035c81da56eSJuan Quintelaecho "HELPER_CFLAGS=$helper_cflags" >> $config_host_mak
3036e2a2ed06SJuan Quintelaecho "LDFLAGS=$LDFLAGS" >> $config_host_mak
3037a36abbbbSJuan Quintelaecho "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak
3038a36abbbbSJuan Quintelaecho "ARLIBS_END=$arlibs_end" >> $config_host_mak
303973da375eSJuan Quintelaecho "LIBS+=$LIBS" >> $config_host_mak
30403e2e0e6bSJuan Quintelaecho "LIBS_TOOLS+=$libs_tools" >> $config_host_mak
3041804edf29SJuan Quintelaecho "EXESUF=$EXESUF" >> $config_host_mak
3042804edf29SJuan Quintela
30434bf6b55bSJuan Quintela# generate list of library paths for linker script
30444bf6b55bSJuan Quintela
30454bf6b55bSJuan Quintela$ld --verbose -v 2> /dev/null | grep SEARCH_DIR > ${config_host_ld}
30464bf6b55bSJuan Quintela
30474bf6b55bSJuan Quintelaif test -f ${config_host_ld}~ ; then
30484bf6b55bSJuan Quintela  if cmp -s $config_host_ld ${config_host_ld}~ ; then
30494bf6b55bSJuan Quintela    mv ${config_host_ld}~ $config_host_ld
30504bf6b55bSJuan Quintela  else
30514bf6b55bSJuan Quintela    rm ${config_host_ld}~
30524bf6b55bSJuan Quintela  fi
30534bf6b55bSJuan Quintelafi
30544bf6b55bSJuan Quintela
30554d904533SBlue Swirlfor d in libdis libdis-user; do
30564d904533SBlue Swirl    mkdir -p $d
305711568d6dSPaolo Bonzini    symlink $source_path/Makefile.dis $d/Makefile
30584d904533SBlue Swirl    echo > $d/config.mak
30594d904533SBlue Swirldone
3060d44cff22SRichard Hendersonif test "$static" = "no" -a "$user_pie" = "yes" ; then
3061d44cff22SRichard Henderson  echo "QEMU_CFLAGS+=-fpie" > libdis-user/config.mak
3062d44cff22SRichard Hendersonfi
30634d904533SBlue Swirl
306497a847bcSbellardfor target in $target_list; do
306597a847bcSbellardtarget_dir="$target"
306625be210fSJuan Quintelaconfig_target_mak=$target_dir/config-target.mak
3067600309b6SBlue Swirltarget_arch2=`echo $target | cut -d '-' -f 1`
306897a847bcSbellardtarget_bigendian="no"
30691f3d3c8fSJuan Quintela
3070ea2d6a39SJuan Quintelacase "$target_arch2" in
3071613a22c9SMichael Walle  armeb|lm32|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
3072ea2d6a39SJuan Quintela  target_bigendian=yes
3073ea2d6a39SJuan Quintela  ;;
3074ea2d6a39SJuan Quintelaesac
307597a847bcSbellardtarget_softmmu="no"
3076997344f3Sbellardtarget_user_only="no"
3077831b7825Sthstarget_linux_user="no"
3078831b7825Sthstarget_darwin_user="no"
307984778508Sblueswir1target_bsd_user="no"
30809e407a85Spbrookcase "$target" in
3081600309b6SBlue Swirl  ${target_arch2}-softmmu)
30829e407a85Spbrook    target_softmmu="yes"
30839e407a85Spbrook    ;;
3084600309b6SBlue Swirl  ${target_arch2}-linux-user)
30859c7a4202SBlue Swirl    if test "$linux" != "yes" ; then
30869c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Linux host"
30879c7a4202SBlue Swirl      exit 1
30889c7a4202SBlue Swirl    fi
30899e407a85Spbrook    target_user_only="yes"
30909e407a85Spbrook    target_linux_user="yes"
30919e407a85Spbrook    ;;
3092600309b6SBlue Swirl  ${target_arch2}-darwin-user)
30939c7a4202SBlue Swirl    if test "$darwin" != "yes" ; then
30949c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a Darwin host"
30959c7a4202SBlue Swirl      exit 1
30969c7a4202SBlue Swirl    fi
30979e407a85Spbrook    target_user_only="yes"
3098831b7825Sths    target_darwin_user="yes"
30999e407a85Spbrook    ;;
3100600309b6SBlue Swirl  ${target_arch2}-bsd-user)
31019cf55765SBlue Swirl    if test "$bsd" != "yes" ; then
31029c7a4202SBlue Swirl      echo "ERROR: Target '$target' is only available on a BSD host"
31039c7a4202SBlue Swirl      exit 1
31049c7a4202SBlue Swirl    fi
310584778508Sblueswir1    target_user_only="yes"
310684778508Sblueswir1    target_bsd_user="yes"
310784778508Sblueswir1    ;;
31089e407a85Spbrook  *)
31099e407a85Spbrook    echo "ERROR: Target '$target' not recognised"
31109e407a85Spbrook    exit 1
31119e407a85Spbrook    ;;
31129e407a85Spbrookesac
3113831b7825Sths
311497a847bcSbellardmkdir -p $target_dir
3115158142c2Sbellardmkdir -p $target_dir/fpu
311657fec1feSbellardmkdir -p $target_dir/tcg
311759f2a787SGerd Hoffmannmkdir -p $target_dir/ide
3118353ac78dSAneesh Kumar K.Vmkdir -p $target_dir/9pfs
311984778508Sblueswir1if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
312069de927cSbellard  mkdir -p $target_dir/nwfpe
312169de927cSbellardfi
312211568d6dSPaolo Bonzinisymlink $source_path/Makefile.target $target_dir/Makefile
3123ec530c81Sbellard
312497a847bcSbellard
312525be210fSJuan Quintelaecho "# Automatically generated by configure - do not modify" > $config_target_mak
312697a847bcSbellard
3127e5fe0c52Spbrookbflt="no"
3128bd0c5661Spbrooktarget_nptl="no"
3129600309b6SBlue Swirlinterp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_arch2/g"`
31307ee2822cSPaolo Bonziniecho "CONFIG_QEMU_INTERP_PREFIX=\"$interp_prefix1\"" >> $config_target_mak
313156aebc89Spbrookgdb_xml_files=""
3132c2e3dee6SLaurent Viviertarget_short_alignment=2
3133c2e3dee6SLaurent Viviertarget_int_alignment=4
3134c2e3dee6SLaurent Viviertarget_long_alignment=4
3135c2e3dee6SLaurent Viviertarget_llong_alignment=8
3136de3a354aSMichael Walletarget_libs_softmmu=
31377ba1e619Saliguori
3138938b1eddSJuan QuintelaTARGET_ARCH="$target_arch2"
31396acff7daSJuan QuintelaTARGET_BASE_ARCH=""
3140e6e91b9cSJuan QuintelaTARGET_ABI_DIR=""
3141e73aae67SJuan Quintela
3142600309b6SBlue Swirlcase "$target_arch2" in
31432408a527Saurel32  i386)
314471deff27SAurelien Jarno    target_phys_bits=64
31452408a527Saurel32  ;;
31462408a527Saurel32  x86_64)
31476acff7daSJuan Quintela    TARGET_BASE_ARCH=i386
31481ad2134fSPaul Brook    target_phys_bits=64
3149c2e3dee6SLaurent Vivier    target_long_alignment=8
31502408a527Saurel32  ;;
31512408a527Saurel32  alpha)
31521ad2134fSPaul Brook    target_phys_bits=64
3153c2e3dee6SLaurent Vivier    target_long_alignment=8
3154a4b388ffSRichard Henderson    target_nptl="yes"
31552408a527Saurel32  ;;
31562408a527Saurel32  arm|armeb)
3157b498c8a0SJuan Quintela    TARGET_ARCH=arm
3158e5fe0c52Spbrook    bflt="yes"
3159bd0c5661Spbrook    target_nptl="yes"
316056aebc89Spbrook    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
31611ad2134fSPaul Brook    target_phys_bits=32
3162c2e3dee6SLaurent Vivier    target_llong_alignment=4
31632408a527Saurel32  ;;
31642408a527Saurel32  cris)
3165253bd7f8Sedgar_igl    target_nptl="yes"
31661ad2134fSPaul Brook    target_phys_bits=32
31672408a527Saurel32  ;;
3168613a22c9SMichael Walle  lm32)
3169613a22c9SMichael Walle    target_phys_bits=32
3170de3a354aSMichael Walle    target_libs_softmmu="$opengl_libs"
3171613a22c9SMichael Walle  ;;
31722408a527Saurel32  m68k)
31730938cda5Saurel32    bflt="yes"
317456aebc89Spbrook    gdb_xml_files="cf-core.xml cf-fp.xml"
31751ad2134fSPaul Brook    target_phys_bits=32
3176c2e3dee6SLaurent Vivier    target_int_alignment=2
3177c2e3dee6SLaurent Vivier    target_long_alignment=2
3178c2e3dee6SLaurent Vivier    target_llong_alignment=2
31792408a527Saurel32  ;;
3180877fdc12SEdgar E. Iglesias  microblaze|microblazeel)
3181877fdc12SEdgar E. Iglesias    TARGET_ARCH=microblaze
318272b675caSEdgar E. Iglesias    bflt="yes"
318372b675caSEdgar E. Iglesias    target_nptl="yes"
318472b675caSEdgar E. Iglesias    target_phys_bits=32
3185de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
318672b675caSEdgar E. Iglesias  ;;
31872408a527Saurel32  mips|mipsel)
3188b498c8a0SJuan Quintela    TARGET_ARCH=mips
318925be210fSJuan Quintela    echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
3190f04dc72fSPaul Brook    target_nptl="yes"
31911ad2134fSPaul Brook    target_phys_bits=64
31922408a527Saurel32  ;;
31932408a527Saurel32  mipsn32|mipsn32el)
3194b498c8a0SJuan Quintela    TARGET_ARCH=mipsn32
31956acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
319625be210fSJuan Quintela    echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
31971ad2134fSPaul Brook    target_phys_bits=64
31982408a527Saurel32  ;;
31992408a527Saurel32  mips64|mips64el)
3200b498c8a0SJuan Quintela    TARGET_ARCH=mips64
32016acff7daSJuan Quintela    TARGET_BASE_ARCH=mips
320225be210fSJuan Quintela    echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
32031ad2134fSPaul Brook    target_phys_bits=64
3204c2e3dee6SLaurent Vivier    target_long_alignment=8
32052408a527Saurel32  ;;
32062408a527Saurel32  ppc)
3207c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32081ad2134fSPaul Brook    target_phys_bits=32
3209d6630708SNathan Froyd    target_nptl="yes"
3210de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32112408a527Saurel32  ;;
32122408a527Saurel32  ppcemb)
32136acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3214e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3215c8b3532dSaurel32    gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32161ad2134fSPaul Brook    target_phys_bits=64
3217d6630708SNathan Froyd    target_nptl="yes"
3218de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32192408a527Saurel32  ;;
32202408a527Saurel32  ppc64)
32216acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3222e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
3223c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32241ad2134fSPaul Brook    target_phys_bits=64
3225c2e3dee6SLaurent Vivier    target_long_alignment=8
3226de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32272408a527Saurel32  ;;
32282408a527Saurel32  ppc64abi32)
3229b498c8a0SJuan Quintela    TARGET_ARCH=ppc64
32306acff7daSJuan Quintela    TARGET_BASE_ARCH=ppc
3231e6e91b9cSJuan Quintela    TARGET_ABI_DIR=ppc
323225be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
3233c8b3532dSaurel32    gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
32341ad2134fSPaul Brook    target_phys_bits=64
3235de3a354aSMichael Walle    target_libs_softmmu="$fdt_libs"
32362408a527Saurel32  ;;
32372408a527Saurel32  sh4|sh4eb)
3238b498c8a0SJuan Quintela    TARGET_ARCH=sh4
32394dbed897Spbrook    bflt="yes"
32400b6d3ae0Saurel32    target_nptl="yes"
32411ad2134fSPaul Brook    target_phys_bits=32
32422408a527Saurel32  ;;
32432408a527Saurel32  sparc)
32441ad2134fSPaul Brook    target_phys_bits=64
32452408a527Saurel32  ;;
32462408a527Saurel32  sparc64)
32476acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
32481ad2134fSPaul Brook    target_phys_bits=64
3249c2e3dee6SLaurent Vivier    target_long_alignment=8
32502408a527Saurel32  ;;
32512408a527Saurel32  sparc32plus)
3252b498c8a0SJuan Quintela    TARGET_ARCH=sparc64
32536acff7daSJuan Quintela    TARGET_BASE_ARCH=sparc
3254e6e91b9cSJuan Quintela    TARGET_ABI_DIR=sparc
325525be210fSJuan Quintela    echo "TARGET_ABI32=y" >> $config_target_mak
32561ad2134fSPaul Brook    target_phys_bits=64
32572408a527Saurel32  ;;
325824e804ecSAlexander Graf  s390x)
3259bc434676SUlrich Hecht    target_nptl="yes"
326024e804ecSAlexander Graf    target_phys_bits=64
32617b3da903SAlexander Graf    target_long_alignment=8
326224e804ecSAlexander Graf  ;;
3263d2fbca94SGuan Xuetao  unicore32)
3264d2fbca94SGuan Xuetao    target_phys_bits=32
3265d2fbca94SGuan Xuetao  ;;
32662408a527Saurel32  *)
3267de83cd02Sbellard    echo "Unsupported target CPU"
3268de83cd02Sbellard    exit 1
32692408a527Saurel32  ;;
32702408a527Saurel32esac
3271c2e3dee6SLaurent Vivierecho "TARGET_SHORT_ALIGNMENT=$target_short_alignment" >> $config_target_mak
3272c2e3dee6SLaurent Vivierecho "TARGET_INT_ALIGNMENT=$target_int_alignment" >> $config_target_mak
3273c2e3dee6SLaurent Vivierecho "TARGET_LONG_ALIGNMENT=$target_long_alignment" >> $config_target_mak
3274c2e3dee6SLaurent Vivierecho "TARGET_LLONG_ALIGNMENT=$target_llong_alignment" >> $config_target_mak
327525be210fSJuan Quintelaecho "TARGET_ARCH=$TARGET_ARCH" >> $config_target_mak
3276053dd92eSJuan Quintelatarget_arch_name="`echo $TARGET_ARCH | tr '[:lower:]' '[:upper:]'`"
327725be210fSJuan Quintelaecho "TARGET_$target_arch_name=y" >> $config_target_mak
327825be210fSJuan Quintelaecho "TARGET_ARCH2=$target_arch2" >> $config_target_mak
327942bc608bSJuan Quintela# TARGET_BASE_ARCH needs to be defined after TARGET_ARCH
32806acff7daSJuan Quintelaif [ "$TARGET_BASE_ARCH" = "" ]; then
32816acff7daSJuan Quintela  TARGET_BASE_ARCH=$TARGET_ARCH
32826acff7daSJuan Quintelafi
328325be210fSJuan Quintelaecho "TARGET_BASE_ARCH=$TARGET_BASE_ARCH" >> $config_target_mak
3284e6e91b9cSJuan Quintelaif [ "$TARGET_ABI_DIR" = "" ]; then
3285e6e91b9cSJuan Quintela  TARGET_ABI_DIR=$TARGET_ARCH
3286e6e91b9cSJuan Quintelafi
328725be210fSJuan Quintelaecho "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak
32881b0c87fcSJuan Quintelacase "$target_arch2" in
32891b0c87fcSJuan Quintela  i386|x86_64)
32901b0c87fcSJuan Quintela    if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then
329164b3cfdbSAnthony PERARD      target_phys_bits=64
329225be210fSJuan Quintela      echo "CONFIG_XEN=y" >> $config_target_mak
3293*59d21e53SAlexander Graf    else
3294*59d21e53SAlexander Graf      echo "CONFIG_NO_XEN=y" >> $config_target_mak
32951b0c87fcSJuan Quintela    fi
3296*59d21e53SAlexander Graf    ;;
3297*59d21e53SAlexander Graf  *)
3298*59d21e53SAlexander Graf    echo "CONFIG_NO_XEN=y" >> $config_target_mak
32991b0c87fcSJuan Quintelaesac
3300c59249f9SJuan Quintelacase "$target_arch2" in
33010e60a699SAlexander Graf  i386|x86_64|ppcemb|ppc|ppc64|s390x)
3302c59249f9SJuan Quintela    # Make sure the target and host cpus are compatible
3303c59249f9SJuan Quintela    if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \
3304c59249f9SJuan Quintela      \( "$target_arch2" = "$cpu" -o \
3305c59249f9SJuan Quintela      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \
33065f114bc6SAlexander Graf      \( "$target_arch2" = "ppc64"  -a "$cpu" = "ppc" \) -o \
3307adf82011SRené Rebe      \( "$target_arch2" = "ppc"    -a "$cpu" = "ppc64" \) -o \
3308adf82011SRené Rebe      \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc64" \) -o \
3309c59249f9SJuan Quintela      \( "$target_arch2" = "x86_64" -a "$cpu" = "i386"   \) -o \
3310c59249f9SJuan Quintela      \( "$target_arch2" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
331125be210fSJuan Quintela      echo "CONFIG_KVM=y" >> $config_target_mak
3312d5970055SMichael S. Tsirkin      if test $vhost_net = "yes" ; then
3313d5970055SMichael S. Tsirkin        echo "CONFIG_VHOST_NET=y" >> $config_target_mak
3314d5970055SMichael S. Tsirkin      fi
3315c59249f9SJuan Quintela    fi
3316c59249f9SJuan Quintelaesac
3317de83cd02Sbellardif test "$target_bigendian" = "yes" ; then
331825be210fSJuan Quintela  echo "TARGET_WORDS_BIGENDIAN=y" >> $config_target_mak
331997a847bcSbellardfi
332097a847bcSbellardif test "$target_softmmu" = "yes" ; then
3321b1aa27c4SPaul Brook  echo "TARGET_PHYS_ADDR_BITS=$target_phys_bits" >> $config_target_mak
332225be210fSJuan Quintela  echo "CONFIG_SOFTMMU=y" >> $config_target_mak
3323de3a354aSMichael Walle  echo "LIBS+=$libs_softmmu $target_libs_softmmu" >> $config_target_mak
33240e8c9214SAndreas Färber  echo "HWDIR=../libhw$target_phys_bits" >> $config_target_mak
33255791f45bSKirill A. Shutemov  echo "subdir-$target: subdir-libhw$target_phys_bits" >> $config_host_mak
3326de83cd02Sbellardfi
3327997344f3Sbellardif test "$target_user_only" = "yes" ; then
332825be210fSJuan Quintela  echo "CONFIG_USER_ONLY=y" >> $config_target_mak
3329997344f3Sbellardfi
3330831b7825Sthsif test "$target_linux_user" = "yes" ; then
333125be210fSJuan Quintela  echo "CONFIG_LINUX_USER=y" >> $config_target_mak
3332831b7825Sthsfi
3333831b7825Sthsif test "$target_darwin_user" = "yes" ; then
333425be210fSJuan Quintela  echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
3335831b7825Sthsfi
3336111a38b0SRobert Relyeaif test "$smartcard_nss" = "yes" ; then
3337111a38b0SRobert Relyea  echo "subdir-$target: subdir-libcacard" >> $config_host_mak
3338111a38b0SRobert Relyea  echo "libcacard_libs=$libcacard_libs" >> $config_host_mak
3339111a38b0SRobert Relyea  echo "libcacard_cflags=$libcacard_cflags" >> $config_host_mak
3340111a38b0SRobert Relyeafi
334156aebc89Spbrooklist=""
334256aebc89Spbrookif test ! -z "$gdb_xml_files" ; then
334356aebc89Spbrook  for x in $gdb_xml_files; do
334456aebc89Spbrook    list="$list $source_path/gdb-xml/$x"
334556aebc89Spbrook  done
334625be210fSJuan Quintela  echo "TARGET_XML_FILES=$list" >> $config_target_mak
33473d0f1517SJuan Quintelafi
3348de83cd02Sbellard
3349e5fe0c52Spbrookif test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
335025be210fSJuan Quintela  echo "TARGET_HAS_BFLT=y" >> $config_target_mak
3351e5fe0c52Spbrookfi
3352bd0c5661Spbrookif test "$target_user_only" = "yes" \
3353bd0c5661Spbrook        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
335425be210fSJuan Quintela  echo "CONFIG_USE_NPTL=y" >> $config_target_mak
3355bd0c5661Spbrookfi
3356379f6698SPaul Brookif test "$target_user_only" = "yes" -a "$guest_base" = "yes"; then
335725be210fSJuan Quintela  echo "CONFIG_USE_GUEST_BASE=y" >> $config_target_mak
3358379f6698SPaul Brookfi
335984778508Sblueswir1if test "$target_bsd_user" = "yes" ; then
336025be210fSJuan Quintela  echo "CONFIG_BSD_USER=y" >> $config_target_mak
336184778508Sblueswir1fi
33625b0753e0Sbellard
33634afddb55SJuan Quintela# generate QEMU_CFLAGS/LDFLAGS for targets
3364fa282484SJuan Quintela
33654afddb55SJuan Quintelacflags=""
3366f9728943SPaolo Bonziniincludes=""
3367fa282484SJuan Quintelaldflags=""
33689b8e111fSJuan Quintela
336957ddfbf7SJuan Quintelaif test "$ARCH" = "sparc64" ; then
3370f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/sparc $includes"
337124e804ecSAlexander Grafelif test "$ARCH" = "s390x" ; then
3372f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/s390 $includes"
33735d8a4f8fSRichard Hendersonelif test "$ARCH" = "x86_64" ; then
3374f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/i386 $includes"
337557ddfbf7SJuan Quintelaelse
3376f9728943SPaolo Bonzini  includes="-I\$(SRC_PATH)/tcg/\$(ARCH) $includes"
337757ddfbf7SJuan Quintelafi
3378f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/tcg $includes"
3379f9728943SPaolo Bonziniincludes="-I\$(SRC_PATH)/fpu $includes"
338057ddfbf7SJuan Quintela
33814d904533SBlue Swirlif test "$target_user_only" = "yes" ; then
33824d904533SBlue Swirl    libdis_config_mak=libdis-user/config.mak
33834d904533SBlue Swirlelse
33844d904533SBlue Swirl    libdis_config_mak=libdis/config.mak
33854d904533SBlue Swirlfi
33864d904533SBlue Swirl
338764656024SJuan Quintelafor i in $ARCH $TARGET_BASE_ARCH ; do
338864656024SJuan Quintela  case "$i" in
338964656024SJuan Quintela  alpha)
339025be210fSJuan Quintela    echo "CONFIG_ALPHA_DIS=y"  >> $config_target_mak
33914d904533SBlue Swirl    echo "CONFIG_ALPHA_DIS=y"  >> $libdis_config_mak
339264656024SJuan Quintela  ;;
339364656024SJuan Quintela  arm)
339425be210fSJuan Quintela    echo "CONFIG_ARM_DIS=y"  >> $config_target_mak
33954d904533SBlue Swirl    echo "CONFIG_ARM_DIS=y"  >> $libdis_config_mak
339664656024SJuan Quintela  ;;
339764656024SJuan Quintela  cris)
339825be210fSJuan Quintela    echo "CONFIG_CRIS_DIS=y"  >> $config_target_mak
33994d904533SBlue Swirl    echo "CONFIG_CRIS_DIS=y"  >> $libdis_config_mak
340064656024SJuan Quintela  ;;
340164656024SJuan Quintela  hppa)
340225be210fSJuan Quintela    echo "CONFIG_HPPA_DIS=y"  >> $config_target_mak
34034d904533SBlue Swirl    echo "CONFIG_HPPA_DIS=y"  >> $libdis_config_mak
340464656024SJuan Quintela  ;;
340564656024SJuan Quintela  i386|x86_64)
340625be210fSJuan Quintela    echo "CONFIG_I386_DIS=y"  >> $config_target_mak
34074d904533SBlue Swirl    echo "CONFIG_I386_DIS=y"  >> $libdis_config_mak
340864656024SJuan Quintela  ;;
3409903ec55cSAurelien Jarno  ia64*)
3410903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $config_target_mak
3411903ec55cSAurelien Jarno    echo "CONFIG_IA64_DIS=y"  >> $libdis_config_mak
3412903ec55cSAurelien Jarno  ;;
341364656024SJuan Quintela  m68k)
341425be210fSJuan Quintela    echo "CONFIG_M68K_DIS=y"  >> $config_target_mak
34154d904533SBlue Swirl    echo "CONFIG_M68K_DIS=y"  >> $libdis_config_mak
341664656024SJuan Quintela  ;;
3417877fdc12SEdgar E. Iglesias  microblaze*)
341825be210fSJuan Quintela    echo "CONFIG_MICROBLAZE_DIS=y"  >> $config_target_mak
34194d904533SBlue Swirl    echo "CONFIG_MICROBLAZE_DIS=y"  >> $libdis_config_mak
342064656024SJuan Quintela  ;;
342164656024SJuan Quintela  mips*)
342225be210fSJuan Quintela    echo "CONFIG_MIPS_DIS=y"  >> $config_target_mak
34234d904533SBlue Swirl    echo "CONFIG_MIPS_DIS=y"  >> $libdis_config_mak
342464656024SJuan Quintela  ;;
342564656024SJuan Quintela  ppc*)
342625be210fSJuan Quintela    echo "CONFIG_PPC_DIS=y"  >> $config_target_mak
34274d904533SBlue Swirl    echo "CONFIG_PPC_DIS=y"  >> $libdis_config_mak
342864656024SJuan Quintela  ;;
342924e804ecSAlexander Graf  s390*)
343025be210fSJuan Quintela    echo "CONFIG_S390_DIS=y"  >> $config_target_mak
34314d904533SBlue Swirl    echo "CONFIG_S390_DIS=y"  >> $libdis_config_mak
343264656024SJuan Quintela  ;;
343364656024SJuan Quintela  sh4)
343425be210fSJuan Quintela    echo "CONFIG_SH4_DIS=y"  >> $config_target_mak
34354d904533SBlue Swirl    echo "CONFIG_SH4_DIS=y"  >> $libdis_config_mak
343664656024SJuan Quintela  ;;
343764656024SJuan Quintela  sparc*)
343825be210fSJuan Quintela    echo "CONFIG_SPARC_DIS=y"  >> $config_target_mak
34394d904533SBlue Swirl    echo "CONFIG_SPARC_DIS=y"  >> $libdis_config_mak
344064656024SJuan Quintela  ;;
344164656024SJuan Quintela  esac
344264656024SJuan Quinteladone
344364656024SJuan Quintela
34446ee7126fSJuan Quintelacase "$ARCH" in
34456ee7126fSJuan Quintelaalpha)
34466ee7126fSJuan Quintela  # Ensure there's only a single GP
34476ee7126fSJuan Quintela  cflags="-msmall-data $cflags"
34486ee7126fSJuan Quintela;;
34496ee7126fSJuan Quintelaesac
34506ee7126fSJuan Quintela
345155d9c04bSJuan Quintelaif test "$target_softmmu" = "yes" ; then
345255d9c04bSJuan Quintela  case "$TARGET_BASE_ARCH" in
345355d9c04bSJuan Quintela  arm)
345455d9c04bSJuan Quintela    cflags="-DHAS_AUDIO $cflags"
345555d9c04bSJuan Quintela  ;;
345625a8bb96SMichael Walle  lm32)
345725a8bb96SMichael Walle    cflags="-DHAS_AUDIO $cflags"
345825a8bb96SMichael Walle  ;;
345955d9c04bSJuan Quintela  i386|mips|ppc)
346055d9c04bSJuan Quintela    cflags="-DHAS_AUDIO -DHAS_AUDIO_CHOICE $cflags"
346155d9c04bSJuan Quintela  ;;
346255d9c04bSJuan Quintela  esac
346355d9c04bSJuan Quintelafi
346455d9c04bSJuan Quintela
346534005a00SKirill A. Shutemovif test "$target_user_only" = "yes" -a "$static" = "no" -a \
346634005a00SKirill A. Shutemov	"$user_pie" = "yes" ; then
346734005a00SKirill A. Shutemov  cflags="-fpie $cflags"
346834005a00SKirill A. Shutemov  ldflags="-pie $ldflags"
346934005a00SKirill A. Shutemovfi
347034005a00SKirill A. Shutemov
3471471857ddSJuan Quintelaif test "$target_softmmu" = "yes" -a \( \
3472471857ddSJuan Quintela        "$TARGET_ARCH" = "microblaze" -o \
3473471857ddSJuan Quintela        "$TARGET_ARCH" = "cris" \) ; then
347425be210fSJuan Quintela  echo "CONFIG_NEED_MMU=y" >> $config_target_mak
3475471857ddSJuan Quintelafi
3476471857ddSJuan Quintela
3477d02c1db3SJuan Quintelaif test "$gprof" = "yes" ; then
347825be210fSJuan Quintela  echo "TARGET_GPROF=yes" >> $config_target_mak
3479d02c1db3SJuan Quintela  if test "$target_linux_user" = "yes" ; then
3480d02c1db3SJuan Quintela    cflags="-p $cflags"
3481d02c1db3SJuan Quintela    ldflags="-p $ldflags"
3482d02c1db3SJuan Quintela  fi
3483d02c1db3SJuan Quintela  if test "$target_softmmu" = "yes" ; then
3484d02c1db3SJuan Quintela    ldflags="-p $ldflags"
348525be210fSJuan Quintela    echo "GPROF_CFLAGS=-p" >> $config_target_mak
3486d02c1db3SJuan Quintela  fi
3487d02c1db3SJuan Quintelafi
3488d02c1db3SJuan Quintela
34896ee7126fSJuan Quintelalinker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
34909b8e111fSJuan Quintelaif test "$target_linux_user" = "yes" -o "$target_bsd_user" = "yes" ; then
3491fa282484SJuan Quintela  case "$ARCH" in
3492fa282484SJuan Quintela  sparc)
3493fa282484SJuan Quintela    # -static is used to avoid g1/g3 usage by the dynamic linker
3494322e5878SJuan Quintela    ldflags="$linker_script -static $ldflags"
3495fa282484SJuan Quintela    ;;
34964d58be06SRichard Henderson  alpha | s390x)
34974d58be06SRichard Henderson    # The default placement of the application is fine.
34984d58be06SRichard Henderson    ;;
3499fd76e73aSRichard Henderson  *)
3500322e5878SJuan Quintela    ldflags="$linker_script $ldflags"
3501fa282484SJuan Quintela    ;;
3502fa282484SJuan Quintela  esac
3503fa282484SJuan Quintelafi
3504fa282484SJuan Quintela
3505e205c790SJan Kiszka# use included Linux headers
3506af2be207SJan Kiszkaif test "$linux" = "yes" ; then
3507e205c790SJan Kiszka  includes="-I\$(SRC_PATH)/linux-headers $includes"
3508e205c790SJan Kiszka  mkdir -p linux-headers
3509e205c790SJan Kiszka  case "$cpu" in
3510e205c790SJan Kiszka  i386|x86_64)
3511e205c790SJan Kiszka    symlink $source_path/linux-headers/asm-x86 linux-headers/asm
3512e205c790SJan Kiszka    ;;
3513e205c790SJan Kiszka  ppcemb|ppc|ppc64)
3514af2be207SJan Kiszka    symlink $source_path/linux-headers/asm-powerpc linux-headers/asm
3515e205c790SJan Kiszka    ;;
3516e205c790SJan Kiszka  s390x)
3517e205c790SJan Kiszka    symlink $source_path/linux-headers/asm-s390 linux-headers/asm
3518e205c790SJan Kiszka    ;;
3519e205c790SJan Kiszka  esac
3520af2be207SJan Kiszkafi
3521e205c790SJan Kiszka
352225be210fSJuan Quintelaecho "LDFLAGS+=$ldflags" >> $config_target_mak
352325be210fSJuan Quintelaecho "QEMU_CFLAGS+=$cflags" >> $config_target_mak
3524f9728943SPaolo Bonziniecho "QEMU_INCLUDES+=$includes" >> $config_target_mak
3525fa282484SJuan Quintela
352697a847bcSbellarddone # for target in $targets
35277d13299dSbellard
3528d1807a4fSPaolo Bonzini# build tree in object directory in case the source is not in the current directory
3529e1144d00SMark McLoughlinDIRS="tests tests/cris slirp audio block net pc-bios/optionrom"
3530446b9165SAndreas FärberDIRS="$DIRS pc-bios/spapr-rtas"
35312d9f27d2SAnthony LiguoriDIRS="$DIRS roms/seabios roms/vgabios"
35323e230dd2SCorentin CharyDIRS="$DIRS fsdev ui"
35332345c77cSMichael RothDIRS="$DIRS qapi"
353413a286d5SMichael RothDIRS="$DIRS qga"
35357d13299dSbellardFILES="Makefile tests/Makefile"
3536e7daa605SthsFILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
3537ae0bfb79SBlue SwirlFILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps"
3538446b9165SAndreas FärberFILES="$FILES pc-bios/spapr-rtas/Makefile"
35392d9f27d2SAnthony LiguoriFILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile"
35405ee8ad71SAlex 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
35417ea78b74SJan Kiszka    FILES="$FILES pc-bios/`basename $bios_file`"
35427ea78b74SJan Kiszkadone
3543d1807a4fSPaolo Bonzinimkdir -p $DIRS
35447d13299dSbellardfor f in $FILES ; do
3545f9245e10SPeter Maydell    if [ -e "$source_path/$f" ] && ! [ -e "$f" ]; then
3546f9245e10SPeter Maydell        symlink "$source_path/$f" "$f"
3547f9245e10SPeter Maydell    fi
35487d13299dSbellarddone
35491ad2134fSPaul Brook
3550c34ebfdcSAnthony Liguori# temporary config to build submodules
35512d9f27d2SAnthony Liguorifor rom in seabios vgabios ; do
3552c34ebfdcSAnthony Liguori    config_mak=roms/$rom/config.mak
355337116c89SStefan Weil    echo "# Automatically generated by configure - do not modify" > $config_mak
3554c34ebfdcSAnthony Liguori    echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak
3555c34ebfdcSAnthony Liguori    echo "CC=$cc" >> $config_mak
3556c34ebfdcSAnthony Liguori    echo "BCC=bcc" >> $config_mak
3557c34ebfdcSAnthony Liguori    echo "CPP=${cross_prefix}cpp" >> $config_mak
3558c34ebfdcSAnthony Liguori    echo "OBJCOPY=objcopy" >> $config_mak
3559c34ebfdcSAnthony Liguori    echo "IASL=iasl" >> $config_mak
3560c34ebfdcSAnthony Liguori    echo "LD=$ld" >> $config_mak
3561c34ebfdcSAnthony Liguoridone
3562c34ebfdcSAnthony Liguori
35631ad2134fSPaul Brookfor hwlib in 32 64; do
35641ad2134fSPaul Brook  d=libhw$hwlib
35651ad2134fSPaul Brook  mkdir -p $d
35669953b2fcSBlue Swirl  mkdir -p $d/ide
356711568d6dSPaolo Bonzini  symlink $source_path/Makefile.hw $d/Makefile
3568353ac78dSAneesh Kumar K.V  mkdir -p $d/9pfs
356937116c89SStefan Weil  echo "QEMU_CFLAGS+=-DTARGET_PHYS_ADDR_BITS=$hwlib" > $d/config.mak
35701ad2134fSPaul Brookdone
3571add16157SBlue Swirl
3572111a38b0SRobert Relyeaif [ "$source_path" != `pwd` ]; then
3573111a38b0SRobert Relyea    # out of tree build
3574111a38b0SRobert Relyea    mkdir -p libcacard
3575111a38b0SRobert Relyea    rm -f libcacard/Makefile
357644dc0ca3SAlon Levy    symlink "$source_path/libcacard/Makefile" libcacard/Makefile
3577111a38b0SRobert Relyeafi
3578111a38b0SRobert Relyea
3579add16157SBlue Swirld=libuser
3580add16157SBlue Swirlmkdir -p $d
358111568d6dSPaolo Bonzinisymlink $source_path/Makefile.user $d/Makefile
3582299060a0SKirill A. Shutemovif test "$static" = "no" -a "$user_pie" = "yes" ; then
3583299060a0SKirill A. Shutemov  echo "QEMU_CFLAGS+=-fpie" > $d/config.mak
3584299060a0SKirill A. Shutemovfi
3585b40292e7SJan Kiszka
3586b40292e7SJan Kiszkaif test "$docs" = "yes" ; then
3587b40292e7SJan Kiszka  mkdir -p QMP
3588b40292e7SJan Kiszkafi
3589