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