]> git.proxmox.com Git - mirror_qemu.git/blame - configure
SDL full screen patch for Windows (malc)
[mirror_qemu.git] / configure
CommitLineData
7d13299d
FB
1#!/bin/sh
2#
3ef693a0 3# qemu configure script (c) 2003 Fabrice Bellard
7d13299d
FB
4#
5# set temporary file name
6if test ! -z "$TMPDIR" ; then
7 TMPDIR1="${TMPDIR}"
8elif test ! -z "$TEMPDIR" ; then
9 TMPDIR1="${TEMPDIR}"
10else
11 TMPDIR1="/tmp"
12fi
13
3ef693a0
FB
14TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
7d13299d
FB
18
19# default parameters
11d9f695 20prefix=""
1e43adfc 21interp_prefix="/usr/gnemul/qemu-%M"
43ce4dfe 22static="no"
7d13299d
FB
23cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
5327cf48 30target_list=""
7d13299d
FB
31case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
97a847bc 33 cpu="i386"
7d13299d 34 ;;
ba68055e 35 armv*b)
808c4954
FB
36 cpu="armv4b"
37 ;;
ba68055e 38 armv*l)
7d13299d
FB
39 cpu="armv4l"
40 ;;
41 alpha)
42 cpu="alpha"
43 ;;
295defa5 44 "Power Macintosh"|ppc|ppc64)
7d13299d
FB
45 cpu="powerpc"
46 ;;
47 mips)
48 cpu="mips"
49 ;;
fb3e5849
FB
50 s390)
51 cpu="s390"
52 ;;
ae228531
FB
53 sparc)
54 cpu="sparc"
55 ;;
56 sparc64)
57 cpu="sparc64"
58 ;;
a8baa8c5
FB
59 ia64)
60 cpu="ia64"
61 ;;
38e584a0
FB
62 m68k)
63 cpu="m68k"
64 ;;
bc51c5c9 65 x86_64|amd64)
0b0babc6 66 cpu="x86_64"
bc51c5c9 67 ;;
7d13299d
FB
68 *)
69 cpu="unknown"
70 ;;
71esac
72gprof="no"
73bigendian="no"
67b915a5
FB
74mingw32="no"
75EXESUF=""
76gdbstub="yes"
443f1376 77slirp="yes"
fb065187
FB
78adlib="no"
79oss="no"
1d14ffa9
FB
80dsound="no"
81coreaudio="no"
82alsa="no"
102a52e4
FB
83fmod="no"
84fmod_lib=""
85fmod_inc=""
5327cf48 86linux="no"
c9ec1fe4
FB
87kqemu="no"
88kernel_path=""
5b0753e0 89cocoa="no"
97ccc689 90check_gfx="yes"
7d13299d
FB
91
92# OS specific
93targetos=`uname -s`
94case $targetos in
c326e0af
FB
95CYGWIN*)
96mingw32="yes"
97CFLAGS="-O2 -mno-cygwin"
98;;
67b915a5
FB
99MINGW32*)
100mingw32="yes"
101;;
7d3505c5
FB
102FreeBSD)
103bsd="yes"
fb065187 104oss="yes"
e99f9060 105if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
07f4ddbf
FB
106 kqemu="yes"
107fi
7d3505c5
FB
108;;
109NetBSD)
110bsd="yes"
fb065187 111oss="yes"
7d3505c5
FB
112;;
113OpenBSD)
114bsd="yes"
fb065187 115oss="yes"
7d3505c5 116;;
83fb7adf
FB
117Darwin)
118bsd="yes"
119darwin="yes"
120;;
1d14ffa9 121*)
fb065187 122oss="yes"
5327cf48 123linux="yes"
07f4ddbf 124if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
c9ec1fe4
FB
125 kqemu="yes"
126fi
fb065187 127;;
7d13299d
FB
128esac
129
7d3505c5 130if [ "$bsd" = "yes" ] ; then
83fb7adf
FB
131 if [ ! "$darwin" = "yes" ] ; then
132 make="gmake"
133 fi
7d3505c5
FB
134fi
135
7d13299d 136# find source path
1d14ffa9 137# XXX: we assume an absolute path is given when launching configure,
7d13299d
FB
138# except in './configure' case.
139source_path=${0%configure}
140source_path=${source_path%/}
141source_path_used="yes"
142if test -z "$source_path" -o "$source_path" = "." ; then
143 source_path=`pwd`
144 source_path_used="no"
145fi
146
147for opt do
148 case "$opt" in
149 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
150 ;;
32ce6337
FB
151 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
152 ;;
7d13299d
FB
153 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
154 ;;
155 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
156 ;;
157 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
158 ;;
83469015
FB
159 --host-cc=*) host_cc=`echo $opt | cut -d '=' -f 2`
160 ;;
7d13299d
FB
161 --make=*) make=`echo $opt | cut -d '=' -f 2`
162 ;;
163 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
164 ;;
165 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
166 ;;
7d13299d
FB
167 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
168 ;;
97a847bc 169 --target-list=*) target_list=${opt#--target-list=}
de83cd02 170 ;;
7d13299d
FB
171 --enable-gprof) gprof="yes"
172 ;;
43ce4dfe
FB
173 --static) static="yes"
174 ;;
97a847bc
FB
175 --disable-sdl) sdl="no"
176 ;;
1d14ffa9
FB
177 --enable-coreaudio) coreaudio="yes"
178 ;;
179 --enable-alsa) alsa="yes"
180 ;;
181 --enable-dsound) dsound="yes"
182 ;;
102a52e4
FB
183 --enable-fmod) fmod="yes"
184 ;;
185 --fmod-lib=*) fmod_lib=${opt#--fmod-lib=}
186 ;;
187 --fmod-inc=*) fmod_inc=${opt#--fmod-inc=}
188 ;;
67b915a5 189 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
1d14ffa9 190 ;;
443f1376 191 --disable-slirp) slirp="no"
1d14ffa9 192 ;;
fb065187 193 --enable-adlib) adlib="yes"
1d14ffa9 194 ;;
c9ec1fe4 195 --disable-kqemu) kqemu="no"
1d14ffa9 196 ;;
c9ec1fe4 197 --kernel-path=*) kernel_path=${opt#--kernel-path=}
1d14ffa9
FB
198 ;;
199 --enable-cocoa) cocoa="yes" ; coreaudio="yes" ; sdl="no"
200 ;;
97ccc689
FB
201 --disable-gfx-check) check_gfx="no"
202 ;;
7d13299d
FB
203 esac
204done
205
206# Checking for CFLAGS
207if test -z "$CFLAGS"; then
208 CFLAGS="-O2"
209fi
210
211cc="${cross_prefix}${cc}"
212ar="${cross_prefix}${ar}"
213strip="${cross_prefix}${strip}"
214
67b915a5 215if test "$mingw32" = "yes" ; then
5327cf48 216 linux="no"
67b915a5
FB
217 EXESUF=".exe"
218 gdbstub="no"
9f059eca 219 oss="no"
07f4ddbf
FB
220 if [ "$cpu" = "i386" ] ; then
221 kqemu="yes"
222 fi
67b915a5
FB
223fi
224
5327cf48
FB
225if test -z "$target_list" ; then
226# these targets are portable
d3258560 227 target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu"
5327cf48
FB
228# the following are Linux specific
229 if [ "$linux" = "yes" ] ; then
a20b5524 230 target_list="i386-user arm-user armeb-user sparc-user ppc-user $target_list"
5327cf48 231 fi
6e20a45f
FB
232else
233 target_list=$(echo "$target_list" | sed -e 's/,/ /g')
5327cf48
FB
234fi
235
7d13299d
FB
236if test -z "$cross_prefix" ; then
237
238# ---
239# big/little endian test
240cat > $TMPC << EOF
241#include <inttypes.h>
242int main(int argc, char ** argv){
1d14ffa9
FB
243 volatile uint32_t i=0x01234567;
244 return (*((uint8_t*)(&i))) == 0x67;
7d13299d
FB
245}
246EOF
247
248if $cc -o $TMPE $TMPC 2>/dev/null ; then
249$TMPE && bigendian="yes"
250else
251echo big/little test failed
252fi
253
254else
255
256# if cross compiling, cannot launch a program, so make a static guess
808c4954 257if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then
7d13299d
FB
258 bigendian="yes"
259fi
260
261fi
262
b6853697
FB
263# host long bits test
264hostlongbits="32"
265if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then
266 hostlongbits="64"
267fi
268
e8cd23de 269# check gcc options support
04369ff2
FB
270cat > $TMPC <<EOF
271int main(void) {
04369ff2
FB
272}
273EOF
274
e8cd23de
FB
275have_gcc3_options="no"
276if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
277 have_gcc3_options="yes"
04369ff2 278fi
ca735206 279
11d9f695
FB
280##########################################
281# SDL probe
282
283sdl_too_old=no
284
285if test -z "$sdl" ; then
286
a6e022ad
FB
287sdl_config="sdl-config"
288sdl=no
7c1f25b4 289sdl_static=no
a6e022ad
FB
290
291if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
292# win32 cross compilation case
293 sdl_config="i386-mingw32msvc-sdl-config"
294 sdl=yes
295else
296# normal SDL probe
11d9f695
FB
297cat > $TMPC << EOF
298#include <SDL.h>
299#undef main /* We don't want SDL to override our main() */
300int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
301EOF
302
a6e022ad
FB
303if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
304_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
11d9f695
FB
305if test "$_sdlversion" -lt 121 ; then
306sdl_too_old=yes
307else
308sdl=yes
309fi
7c1f25b4
FB
310
311# static link with sdl ?
312if test "$sdl" = "yes" ; then
313aa="no"
314`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
315sdl_static_libs=`$sdl_config --static-libs`
316if [ "$aa" = "yes" ] ; then
d8d8aa4e 317 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
7c1f25b4
FB
318fi
319
320if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
321 sdl_static=yes
11d9f695
FB
322fi
323
7c1f25b4
FB
324fi # static link
325
326fi # sdl compile test
327
a6e022ad
FB
328fi # cross compilation
329fi # -z $sdl
11d9f695 330
7d13299d
FB
331if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
332cat << EOF
333
334Usage: configure [options]
335Options: [defaults in brackets after descriptions]
336
337EOF
338echo "Standard options:"
339echo " --help print this message"
340echo " --prefix=PREFIX install in PREFIX [$prefix]"
1e43adfc
FB
341echo " --interp-prefix=PREFIX where to find shared libraries, etc."
342echo " use %M for cpu name [$interp_prefix]"
97a847bc 343echo " --target-list=LIST set target list [$target_list]"
7d13299d 344echo ""
c9ec1fe4
FB
345echo "kqemu kernel acceleration support:"
346echo " --disable-kqemu disable kqemu build"
347echo " --kernel-path=PATH set the kernel path (configure probes it)"
348echo ""
7d13299d
FB
349echo "Advanced options (experts only):"
350echo " --source-path=PATH path of source code [$source_path]"
351echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
352echo " --cc=CC use C compiler CC [$cc]"
83469015 353echo " --host-cc=CC use C compiler CC [$cc] for dyngen etc."
7d13299d 354echo " --make=MAKE use specified make [$make]"
43ce4dfe 355echo " --static enable static build [$static]"
67b915a5 356echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
d37282ad 357echo " --enable-adlib enable Adlib emulation"
1d14ffa9
FB
358echo " --enable-coreaudio enable Coreaudio audio driver"
359echo " --enable-alsa enable ALSA audio driver"
360echo " --enable-fmod enable FMOD audio driver"
361echo " --enabled-dsound enable DirectSound audio driver"
102a52e4
FB
362echo " --fmod-lib path to FMOD library"
363echo " --fmod-inc path to FMOD includes"
7d13299d
FB
364echo ""
365echo "NOTE: The object files are build at the place where configure is launched"
366exit 1
367fi
368
11d9f695
FB
369if test "$mingw32" = "yes" ; then
370if test -z "$prefix" ; then
371 prefix="/c/Program Files/Qemu"
372fi
373mandir="$prefix"
7efa4387 374datadir="$prefix"
1f50f8d1 375docdir="$prefix"
11d9f695
FB
376bindir="$prefix"
377else
378if test -z "$prefix" ; then
379 prefix="/usr/local"
380fi
5a67135a 381mandir="$prefix/share/man"
7efa4387 382datadir="$prefix/share/qemu"
1f50f8d1 383docdir="$prefix/share/doc/qemu"
11d9f695
FB
384bindir="$prefix/bin"
385fi
5a67135a 386
07f4ddbf 387# kqemu support
441c72ba
FB
388if test $kqemu = "yes" ; then
389 # test if the source code is installed
1d14ffa9 390 if test '!' -f "kqemu/Makefile" ; then
441c72ba
FB
391 kqemu="no"
392 fi
393fi
1d14ffa9 394
07f4ddbf
FB
395# Linux specific kqemu configuration
396if test $kqemu = "yes" -a $linux = "yes" ; then
c9ec1fe4
FB
397# find the kernel path
398if test -z "$kernel_path" ; then
399kernel_version=`uname -r`
400kernel_path="/lib/modules/$kernel_version/build"
1d14ffa9 401if test '!' -d "$kernel_path/include" ; then
c9ec1fe4 402 kernel_path="/usr/src/linux"
1d14ffa9 403 if test '!' -d "$kernel_path/include" ; then
c9ec1fe4
FB
404 echo "Could not find kernel includes in /lib/modules or /usr/src/linux - cannot build the kqemu module"
405 kqemu="no"
406 fi
407fi
408fi
409
410if test $kqemu = "yes" ; then
411
412# test that the kernel config is present
413if test '!' -f "$kernel_path/Makefile" ; then
f94daedd 414 echo "No Makefile file present in $kernel_path - kqemu cannot be built"
c9ec1fe4 415 kqemu="no"
1d14ffa9 416fi
c9ec1fe4
FB
417
418# find build system (2.6 or legacy)
419kbuild26="yes"
420if grep -q "PATCHLEVEL = 4" $kernel_path/Makefile ; then
421kbuild26="no"
422fi
423
424fi # kqemu
425
07f4ddbf 426fi # kqemu and linux
c9ec1fe4
FB
427
428
43ce4dfe 429echo "Install prefix $prefix"
7efa4387 430echo "BIOS directory $datadir"
11d9f695
FB
431echo "binary directory $bindir"
432if test "$mingw32" = "no" ; then
433echo "Manual directory $mandir"
43ce4dfe 434echo "ELF interp prefix $interp_prefix"
11d9f695 435fi
5a67135a 436echo "Source path $source_path"
43ce4dfe 437echo "C compiler $cc"
83469015 438echo "Host C compiler $host_cc"
43ce4dfe
FB
439echo "make $make"
440echo "host CPU $cpu"
de83cd02 441echo "host big endian $bigendian"
97a847bc 442echo "target list $target_list"
43ce4dfe
FB
443echo "gprof enabled $gprof"
444echo "static build $static"
5b0753e0
FB
445if test "$darwin" = "yes" ; then
446 echo "Cocoa support $cocoa"
447fi
97a847bc 448echo "SDL support $sdl"
e4afee97
FB
449if test "$sdl" != "no" ; then
450 echo "SDL static link $sdl_static"
451fi
67b915a5 452echo "mingw32 support $mingw32"
fb065187 453echo "Adlib support $adlib"
1d14ffa9
FB
454echo "CoreAudio support $coreaudio"
455echo "ALSA support $alsa"
456echo "DSound support $dsound"
102a52e4 457echo -n "FMOD support $fmod"
1d14ffa9
FB
458if test "$fmod" = "yes"; then
459 if test -z $fmod_lib || test -z $fmod_inc; then
460 echo
461 echo "Error: You must specify path to FMOD library and headers"
462 echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
463 echo
464 exit 1
465 fi
102a52e4
FB
466 echo -n " (lib='$fmod_lib' include='$fmod_inc')"
467fi
468echo ""
07f4ddbf
FB
469echo "kqemu support $kqemu"
470if test $kqemu = "yes" -a $linux = "yes" ; then
c9ec1fe4 471echo ""
07f4ddbf 472echo "KQEMU Linux module configuration:"
c9ec1fe4
FB
473echo "kernel sources $kernel_path"
474echo -n "kbuild type "
475if test $kbuild26 = "yes"; then
476echo "2.6"
477else
478echo "2.4"
479fi
480fi
67b915a5 481
97a847bc 482if test $sdl_too_old = "yes"; then
24b55b96 483echo "-> Your SDL version is too old - please upgrade to have SDL support"
7c1f25b4 484fi
24b55b96
FB
485#if test "$sdl_static" = "no"; then
486# echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
487#fi
97a847bc
FB
488
489config_mak="config-host.mak"
490config_h="config-host.h"
7d13299d 491
7c1f25b4 492#echo "Creating $config_mak and $config_h"
7d13299d 493
97a847bc
FB
494echo "# Automatically generated by configure - do not modify" > $config_mak
495echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 496
97a847bc 497echo "prefix=$prefix" >> $config_mak
11d9f695 498echo "bindir=$bindir" >> $config_mak
5a67135a 499echo "mandir=$mandir" >> $config_mak
7efa4387 500echo "datadir=$datadir" >> $config_mak
1f50f8d1 501echo "docdir=$docdir" >> $config_mak
7efa4387 502echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
97a847bc
FB
503echo "MAKE=$make" >> $config_mak
504echo "CC=$cc" >> $config_mak
e8cd23de 505if test "$have_gcc3_options" = "yes" ; then
97a847bc 506 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
e8cd23de 507fi
97a847bc
FB
508echo "HOST_CC=$host_cc" >> $config_mak
509echo "AR=$ar" >> $config_mak
510echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
511echo "CFLAGS=$CFLAGS" >> $config_mak
512echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 513echo "EXESUF=$EXESUF" >> $config_mak
97a847bc
FB
514if test "$cpu" = "i386" ; then
515 echo "ARCH=i386" >> $config_mak
516 echo "#define HOST_I386 1" >> $config_h
0b0babc6
FB
517elif test "$cpu" = "x86_64" ; then
518 echo "ARCH=x86_64" >> $config_mak
519 echo "#define HOST_X86_64 1" >> $config_h
808c4954
FB
520elif test "$cpu" = "armv4b" ; then
521 echo "ARCH=arm" >> $config_mak
522 echo "#define HOST_ARM 1" >> $config_h
7d13299d 523elif test "$cpu" = "armv4l" ; then
97a847bc
FB
524 echo "ARCH=arm" >> $config_mak
525 echo "#define HOST_ARM 1" >> $config_h
7d13299d 526elif test "$cpu" = "powerpc" ; then
97a847bc
FB
527 echo "ARCH=ppc" >> $config_mak
528 echo "#define HOST_PPC 1" >> $config_h
7d13299d 529elif test "$cpu" = "mips" ; then
97a847bc
FB
530 echo "ARCH=mips" >> $config_mak
531 echo "#define HOST_MIPS 1" >> $config_h
fb3e5849 532elif test "$cpu" = "s390" ; then
97a847bc
FB
533 echo "ARCH=s390" >> $config_mak
534 echo "#define HOST_S390 1" >> $config_h
295defa5 535elif test "$cpu" = "alpha" ; then
97a847bc
FB
536 echo "ARCH=alpha" >> $config_mak
537 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 538elif test "$cpu" = "sparc" ; then
97a847bc
FB
539 echo "ARCH=sparc" >> $config_mak
540 echo "#define HOST_SPARC 1" >> $config_h
ae228531 541elif test "$cpu" = "sparc64" ; then
97a847bc
FB
542 echo "ARCH=sparc64" >> $config_mak
543 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 544elif test "$cpu" = "ia64" ; then
97a847bc
FB
545 echo "ARCH=ia64" >> $config_mak
546 echo "#define HOST_IA64 1" >> $config_h
38e584a0 547elif test "$cpu" = "m68k" ; then
38ca2abc
FB
548 echo "ARCH=m68k" >> $config_mak
549 echo "#define HOST_M68K 1" >> $config_h
7d13299d
FB
550else
551 echo "Unsupported CPU"
552 exit 1
553fi
554if test "$bigendian" = "yes" ; then
97a847bc
FB
555 echo "WORDS_BIGENDIAN=yes" >> $config_mak
556 echo "#define WORDS_BIGENDIAN 1" >> $config_h
557fi
b6853697 558echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
67b915a5
FB
559if test "$mingw32" = "yes" ; then
560 echo "CONFIG_WIN32=yes" >> $config_mak
11d9f695 561 echo "#define CONFIG_WIN32 1" >> $config_h
7d3505c5 562elif test -f "/usr/include/byteswap.h" ; then
67b915a5
FB
563 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
564fi
83fb7adf
FB
565if test "$darwin" = "yes" ; then
566 echo "CONFIG_DARWIN=yes" >> $config_mak
567 echo "#define CONFIG_DARWIN 1" >> $config_h
568fi
67b915a5
FB
569if test "$gdbstub" = "yes" ; then
570 echo "CONFIG_GDBSTUB=yes" >> $config_mak
571 echo "#define CONFIG_GDBSTUB 1" >> $config_h
572fi
97a847bc
FB
573if test "$gprof" = "yes" ; then
574 echo "TARGET_GPROF=yes" >> $config_mak
575 echo "#define HAVE_GPROF 1" >> $config_h
576fi
577if test "$static" = "yes" ; then
578 echo "CONFIG_STATIC=yes" >> $config_mak
50863472 579 echo "#define CONFIG_STATIC 1" >> $config_h
7d13299d 580fi
c20709aa
FB
581if test "$slirp" = "yes" ; then
582 echo "CONFIG_SLIRP=yes" >> $config_mak
583 echo "#define CONFIG_SLIRP 1" >> $config_h
584fi
fb065187
FB
585if test "$adlib" = "yes" ; then
586 echo "CONFIG_ADLIB=yes" >> $config_mak
587 echo "#define CONFIG_ADLIB 1" >> $config_h
588fi
589if test "$oss" = "yes" ; then
590 echo "CONFIG_OSS=yes" >> $config_mak
591 echo "#define CONFIG_OSS 1" >> $config_h
592fi
1d14ffa9
FB
593if test "$coreaudio" = "yes" ; then
594 echo "CONFIG_COREAUDIO=yes" >> $config_mak
595 echo "#define CONFIG_COREAUDIO 1" >> $config_h
596fi
597if test "$alsa" = "yes" ; then
598 echo "CONFIG_ALSA=yes" >> $config_mak
599 echo "#define CONFIG_ALSA 1" >> $config_h
600fi
601if test "$dsound" = "yes" ; then
602 echo "CONFIG_DSOUND=yes" >> $config_mak
603 echo "#define CONFIG_DSOUND 1" >> $config_h
604fi
102a52e4
FB
605if test "$fmod" = "yes" ; then
606 echo "CONFIG_FMOD=yes" >> $config_mak
607 echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
608 echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
609 echo "#define CONFIG_FMOD 1" >> $config_h
610fi
97a847bc
FB
611echo -n "VERSION=" >>$config_mak
612head $source_path/VERSION >>$config_mak
613echo "" >>$config_mak
614echo -n "#define QEMU_VERSION \"" >> $config_h
615head $source_path/VERSION >> $config_h
616echo "\"" >> $config_h
617
c9ec1fe4
FB
618if test $kqemu = "yes" ; then
619 echo "CONFIG_KQEMU=yes" >> $config_mak
1026f133
FB
620 if test $linux = "yes" ; then
621 echo "KERNEL_PATH=$kernel_path" >> $config_mak
622 if test $kbuild26 = "yes" ; then
623 echo "CONFIG_KBUILD26=yes" >> $config_mak
624 fi
c9ec1fe4
FB
625 fi
626fi
97a847bc
FB
627echo "SRC_PATH=$source_path" >> $config_mak
628echo "TARGET_DIRS=$target_list" >> $config_mak
629
83fb7adf 630# XXX: suppress that
7d3505c5 631if [ "$bsd" = "yes" ] ; then
43003046 632 echo "#define O_LARGEFILE 0" >> $config_h
43003046 633 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
7d3505c5
FB
634 echo "#define _BSD 1" >> $config_h
635fi
636
1d14ffa9 637for target in $target_list; do
97a847bc
FB
638
639target_dir="$target"
640config_mak=$target_dir/config.mak
641config_h=$target_dir/config.h
642target_cpu=`echo $target | cut -d '-' -f 1`
643target_bigendian="no"
808c4954 644[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1e43adfc 645[ "$target_cpu" = "sparc" ] && target_bigendian=yes
64b3ab24 646[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
67867308 647[ "$target_cpu" = "ppc" ] && target_bigendian=yes
a2458627 648[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
d3258560 649[ "$target_cpu" = "mips" ] && target_bigendian=yes
97a847bc
FB
650target_softmmu="no"
651if expr $target : '.*-softmmu' > /dev/null ; then
652 target_softmmu="yes"
653fi
997344f3
FB
654target_user_only="no"
655if expr $target : '.*-user' > /dev/null ; then
656 target_user_only="yes"
657fi
97a847bc 658
97ccc689 659if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1d14ffa9 660 -a "$sdl" = "no" -a "$cocoa" = "no" ; then
97ccc689
FB
661 echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
662 echo "To build QEMU with graphical output configure with --disable-gfx-check"
663 echo "Note that this will disable all output from the virtual graphics card."
664 exit 1;
665fi
666
7c1f25b4 667#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc
FB
668
669mkdir -p $target_dir
158142c2 670mkdir -p $target_dir/fpu
808c4954 671if test "$target" = "arm-user" -o "$target" = "armeb-user" ; then
69de927c
FB
672 mkdir -p $target_dir/nwfpe
673fi
a7e61ed4
FB
674if test "$target_user_only" = "no" ; then
675 mkdir -p $target_dir/slirp
676fi
69de927c 677
97a847bc
FB
678ln -sf $source_path/Makefile.target $target_dir/Makefile
679
680echo "# Automatically generated by configure - do not modify" > $config_mak
681echo "/* Automatically generated by configure - do not modify */" > $config_h
682
de83cd02 683
97a847bc
FB
684echo "include ../config-host.mak" >> $config_mak
685echo "#include \"../config-host.h\"" >> $config_h
1e43adfc
FB
686
687interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
688echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
97a847bc
FB
689
690if test "$target_cpu" = "i386" ; then
691 echo "TARGET_ARCH=i386" >> $config_mak
692 echo "#define TARGET_ARCH \"i386\"" >> $config_h
693 echo "#define TARGET_I386 1" >> $config_h
07f4ddbf 694 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "i386" ; then
824d560f
FB
695 echo "#define USE_KQEMU 1" >> $config_h
696 fi
808c4954 697elif test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
97a847bc
FB
698 echo "TARGET_ARCH=arm" >> $config_mak
699 echo "#define TARGET_ARCH \"arm\"" >> $config_h
700 echo "#define TARGET_ARM 1" >> $config_h
1e43adfc
FB
701elif test "$target_cpu" = "sparc" ; then
702 echo "TARGET_ARCH=sparc" >> $config_mak
703 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
704 echo "#define TARGET_SPARC 1" >> $config_h
64b3ab24
FB
705elif test "$target_cpu" = "sparc64" ; then
706 echo "TARGET_ARCH=sparc64" >> $config_mak
707 echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
708 echo "#define TARGET_SPARC 1" >> $config_h
709 echo "#define TARGET_SPARC64 1" >> $config_h
67867308
FB
710elif test "$target_cpu" = "ppc" ; then
711 echo "TARGET_ARCH=ppc" >> $config_mak
712 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
713 echo "#define TARGET_PPC 1" >> $config_h
a2458627
FB
714elif test "$target_cpu" = "ppc64" ; then
715 echo "TARGET_ARCH=ppc64" >> $config_mak
716 echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
717 echo "#define TARGET_PPC 1" >> $config_h
718 echo "#define TARGET_PPC64 1" >> $config_h
0b0babc6
FB
719elif test "$target_cpu" = "x86_64" ; then
720 echo "TARGET_ARCH=x86_64" >> $config_mak
721 echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
722 echo "#define TARGET_I386 1" >> $config_h
723 echo "#define TARGET_X86_64 1" >> $config_h
07f4ddbf
FB
724 if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64" ; then
725 echo "#define USE_KQEMU 1" >> $config_h
726 fi
d3258560
FB
727elif test "$target_cpu" = "mips" ; then
728 echo "TARGET_ARCH=mips" >> $config_mak
729 echo "#define TARGET_ARCH \"mips\"" >> $config_h
730 echo "#define TARGET_MIPS 1" >> $config_h
de83cd02
FB
731else
732 echo "Unsupported target CPU"
733 exit 1
734fi
735if test "$target_bigendian" = "yes" ; then
97a847bc
FB
736 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
737 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 738fi
97a847bc
FB
739if test "$target_softmmu" = "yes" ; then
740 echo "CONFIG_SOFTMMU=yes" >> $config_mak
741 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 742fi
997344f3
FB
743if test "$target_user_only" = "yes" ; then
744 echo "CONFIG_USER_ONLY=yes" >> $config_mak
745 echo "#define CONFIG_USER_ONLY 1" >> $config_h
746fi
97a847bc 747
158142c2
FB
748if test "$target_cpu" = "arm" -o "$target_cpu" = "armeb" ; then
749 echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
750 echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
751fi
7c1f25b4
FB
752# sdl defines
753
754if test "$target_user_only" = "no"; then
755 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
dbb2c921 756 sdl1=$sdl_static
7c1f25b4 757 else
dbb2c921
FB
758 sdl1=$sdl
759 fi
760 if test "$sdl1" = "yes" ; then
761 echo "#define CONFIG_SDL 1" >> $config_h
762 echo "CONFIG_SDL=yes" >> $config_mak
763 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
764 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
765 else
7c1f25b4
FB
766 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
767 fi
dbb2c921
FB
768 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
769 if [ "${aa}" = "yes" ] ; then
770 echo -n " `aalib-config --cflags`" >> $config_mak ;
771 fi
772 echo "" >> $config_mak
7c1f25b4 773 fi
7c1f25b4
FB
774fi
775
5b0753e0
FB
776if test "$cocoa" = "yes" ; then
777 echo "#define CONFIG_COCOA 1" >> $config_h
778 echo "CONFIG_COCOA=yes" >> $config_mak
779fi
780
97a847bc 781done # for target in $targets
7d13299d
FB
782
783# build tree in object directory if source path is different from current one
784if test "$source_path_used" = "yes" ; then
785 DIRS="tests"
786 FILES="Makefile tests/Makefile"
787 for dir in $DIRS ; do
788 mkdir -p $dir
789 done
790 for f in $FILES ; do
791 ln -sf $source_path/$f $f
792 done
793fi
7d13299d 794
97a847bc 795rm -f $TMPO $TMPC $TMPE $TMPS