]> Git Repo - qemu.git/blame - configure
PowerPC merge: real time TB and decrementer - faster and simpler exception handling...
[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`
a541f297 30target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-softmmu"
7d13299d
FB
31case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
97a847bc 33 cpu="i386"
7d13299d
FB
34 ;;
35 armv4l)
36 cpu="armv4l"
37 ;;
38 alpha)
39 cpu="alpha"
40 ;;
295defa5 41 "Power Macintosh"|ppc|ppc64)
7d13299d
FB
42 cpu="powerpc"
43 ;;
44 mips)
45 cpu="mips"
46 ;;
fb3e5849
FB
47 s390)
48 cpu="s390"
49 ;;
ae228531
FB
50 sparc)
51 cpu="sparc"
52 ;;
53 sparc64)
54 cpu="sparc64"
55 ;;
a8baa8c5
FB
56 ia64)
57 cpu="ia64"
58 ;;
38e584a0
FB
59 m68k)
60 cpu="m68k"
61 ;;
bc51c5c9
FB
62 x86_64|amd64)
63 cpu="amd64"
64 ;;
7d13299d
FB
65 *)
66 cpu="unknown"
67 ;;
68esac
69gprof="no"
70bigendian="no"
67b915a5
FB
71mingw32="no"
72EXESUF=""
73gdbstub="yes"
c20709aa 74slirp="no"
7d13299d
FB
75
76# OS specific
77targetos=`uname -s`
78case $targetos in
67b915a5
FB
79MINGW32*)
80mingw32="yes"
81;;
7d3505c5
FB
82FreeBSD)
83bsd="yes"
84;;
85NetBSD)
86bsd="yes"
87;;
88OpenBSD)
89bsd="yes"
90;;
7d13299d
FB
91*) ;;
92esac
93
7d3505c5
FB
94if [ "$bsd" = "yes" ] ; then
95 make="gmake"
96 target_list="i386-softmmu"
97fi
98
7d13299d
FB
99# find source path
100# XXX: we assume an absolute path is given when launching configure,
101# except in './configure' case.
102source_path=${0%configure}
103source_path=${source_path%/}
104source_path_used="yes"
105if test -z "$source_path" -o "$source_path" = "." ; then
106 source_path=`pwd`
107 source_path_used="no"
108fi
109
110for opt do
111 case "$opt" in
112 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
113 ;;
32ce6337
FB
114 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
115 ;;
7d13299d
FB
116 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
117 ;;
118 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
119 ;;
120 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
121 ;;
122 --make=*) make=`echo $opt | cut -d '=' -f 2`
123 ;;
124 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
125 ;;
126 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
127 ;;
128 --extra-libs=*) extralibs=${opt#--extra-libs=}
129 ;;
130 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
131 ;;
97a847bc 132 --target-list=*) target_list=${opt#--target-list=}
de83cd02 133 ;;
7d13299d
FB
134 --enable-gprof) gprof="yes"
135 ;;
43ce4dfe
FB
136 --static) static="yes"
137 ;;
97a847bc
FB
138 --disable-sdl) sdl="no"
139 ;;
67b915a5
FB
140 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
141 ;;
c20709aa
FB
142 --enable-slirp) slirp="yes"
143 ;;
7d13299d
FB
144 esac
145done
146
147# Checking for CFLAGS
148if test -z "$CFLAGS"; then
149 CFLAGS="-O2"
150fi
151
152cc="${cross_prefix}${cc}"
153ar="${cross_prefix}${ar}"
154strip="${cross_prefix}${strip}"
155
67b915a5 156if test "$mingw32" = "yes" ; then
43003046 157 target_list="i386-softmmu ppc-softmmu"
67b915a5
FB
158 EXESUF=".exe"
159 gdbstub="no"
160fi
161
7d13299d
FB
162if test -z "$cross_prefix" ; then
163
164# ---
165# big/little endian test
166cat > $TMPC << EOF
167#include <inttypes.h>
168int main(int argc, char ** argv){
169 volatile uint32_t i=0x01234567;
170 return (*((uint8_t*)(&i))) == 0x67;
171}
172EOF
173
174if $cc -o $TMPE $TMPC 2>/dev/null ; then
175$TMPE && bigendian="yes"
176else
177echo big/little test failed
178fi
179
180else
181
182# if cross compiling, cannot launch a program, so make a static guess
38e584a0 183if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then
7d13299d
FB
184 bigendian="yes"
185fi
186
187fi
188
e8cd23de 189# check gcc options support
04369ff2
FB
190cat > $TMPC <<EOF
191int main(void) {
04369ff2
FB
192}
193EOF
194
e8cd23de
FB
195have_gcc3_options="no"
196if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
197 have_gcc3_options="yes"
04369ff2 198fi
ca735206 199
11d9f695
FB
200##########################################
201# SDL probe
202
203sdl_too_old=no
204
205if test -z "$sdl" ; then
206
a6e022ad
FB
207sdl_config="sdl-config"
208sdl=no
7c1f25b4 209sdl_static=no
a6e022ad
FB
210
211if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
212# win32 cross compilation case
213 sdl_config="i386-mingw32msvc-sdl-config"
214 sdl=yes
215else
216# normal SDL probe
11d9f695
FB
217cat > $TMPC << EOF
218#include <SDL.h>
219#undef main /* We don't want SDL to override our main() */
220int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
221EOF
222
a6e022ad
FB
223if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
224_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
11d9f695
FB
225if test "$_sdlversion" -lt 121 ; then
226sdl_too_old=yes
227else
228sdl=yes
229fi
7c1f25b4
FB
230
231# static link with sdl ?
232if test "$sdl" = "yes" ; then
233aa="no"
234`$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
235sdl_static_libs=`$sdl_config --static-libs`
236if [ "$aa" = "yes" ] ; then
d8d8aa4e 237 sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
7c1f25b4
FB
238fi
239
240if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then
241 sdl_static=yes
11d9f695
FB
242fi
243
7c1f25b4
FB
244fi # static link
245
246fi # sdl compile test
247
a6e022ad
FB
248fi # cross compilation
249fi # -z $sdl
11d9f695 250
7d13299d
FB
251if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
252cat << EOF
253
254Usage: configure [options]
255Options: [defaults in brackets after descriptions]
256
257EOF
258echo "Standard options:"
259echo " --help print this message"
260echo " --prefix=PREFIX install in PREFIX [$prefix]"
1e43adfc
FB
261echo " --interp-prefix=PREFIX where to find shared libraries, etc."
262echo " use %M for cpu name [$interp_prefix]"
97a847bc 263echo " --target-list=LIST set target list [$target_list]"
7d13299d
FB
264echo ""
265echo "Advanced options (experts only):"
266echo " --source-path=PATH path of source code [$source_path]"
267echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
268echo " --cc=CC use C compiler CC [$cc]"
269echo " --make=MAKE use specified make [$make]"
43ce4dfe 270echo " --static enable static build [$static]"
67b915a5 271echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
7d13299d
FB
272echo ""
273echo "NOTE: The object files are build at the place where configure is launched"
274exit 1
275fi
276
11d9f695
FB
277if test "$mingw32" = "yes" ; then
278if test -z "$prefix" ; then
279 prefix="/c/Program Files/Qemu"
280fi
281mandir="$prefix"
7efa4387 282datadir="$prefix"
1f50f8d1 283docdir="$prefix"
11d9f695
FB
284bindir="$prefix"
285else
286if test -z "$prefix" ; then
287 prefix="/usr/local"
288fi
5a67135a 289mandir="$prefix/share/man"
7efa4387 290datadir="$prefix/share/qemu"
1f50f8d1 291docdir="$prefix/share/doc/qemu"
11d9f695
FB
292bindir="$prefix/bin"
293fi
5a67135a 294
43ce4dfe 295echo "Install prefix $prefix"
7efa4387 296echo "BIOS directory $datadir"
11d9f695
FB
297echo "binary directory $bindir"
298if test "$mingw32" = "no" ; then
299echo "Manual directory $mandir"
43ce4dfe 300echo "ELF interp prefix $interp_prefix"
11d9f695 301fi
5a67135a 302echo "Source path $source_path"
43ce4dfe
FB
303echo "C compiler $cc"
304echo "make $make"
305echo "host CPU $cpu"
de83cd02 306echo "host big endian $bigendian"
97a847bc 307echo "target list $target_list"
43ce4dfe
FB
308echo "gprof enabled $gprof"
309echo "static build $static"
97a847bc 310echo "SDL support $sdl"
7c1f25b4 311echo "SDL static link $sdl_static"
67b915a5
FB
312echo "mingw32 support $mingw32"
313
97a847bc
FB
314if test $sdl_too_old = "yes"; then
315echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
316fi
7c1f25b4
FB
317if test "$sdl_static" = "no"; then
318 echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
319fi
97a847bc
FB
320
321config_mak="config-host.mak"
322config_h="config-host.h"
7d13299d 323
7c1f25b4 324#echo "Creating $config_mak and $config_h"
7d13299d 325
97a847bc
FB
326echo "# Automatically generated by configure - do not modify" > $config_mak
327echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 328
97a847bc 329echo "prefix=$prefix" >> $config_mak
11d9f695 330echo "bindir=$bindir" >> $config_mak
5a67135a 331echo "mandir=$mandir" >> $config_mak
7efa4387 332echo "datadir=$datadir" >> $config_mak
1f50f8d1 333echo "docdir=$docdir" >> $config_mak
7efa4387 334echo "#define CONFIG_QEMU_SHAREDIR \"$datadir\"" >> $config_h
97a847bc
FB
335echo "MAKE=$make" >> $config_mak
336echo "CC=$cc" >> $config_mak
e8cd23de 337if test "$have_gcc3_options" = "yes" ; then
97a847bc 338 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
e8cd23de 339fi
97a847bc
FB
340echo "HOST_CC=$host_cc" >> $config_mak
341echo "AR=$ar" >> $config_mak
342echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
343echo "CFLAGS=$CFLAGS" >> $config_mak
344echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 345echo "EXESUF=$EXESUF" >> $config_mak
97a847bc
FB
346if test "$cpu" = "i386" ; then
347 echo "ARCH=i386" >> $config_mak
348 echo "#define HOST_I386 1" >> $config_h
bc51c5c9
FB
349elif test "$cpu" = "amd64" ; then
350 echo "ARCH=amd64" >> $config_mak
351 echo "#define HOST_AMD64 1" >> $config_h
7d13299d 352elif test "$cpu" = "armv4l" ; then
97a847bc
FB
353 echo "ARCH=arm" >> $config_mak
354 echo "#define HOST_ARM 1" >> $config_h
7d13299d 355elif test "$cpu" = "powerpc" ; then
97a847bc
FB
356 echo "ARCH=ppc" >> $config_mak
357 echo "#define HOST_PPC 1" >> $config_h
7d13299d 358elif test "$cpu" = "mips" ; then
97a847bc
FB
359 echo "ARCH=mips" >> $config_mak
360 echo "#define HOST_MIPS 1" >> $config_h
fb3e5849 361elif test "$cpu" = "s390" ; then
97a847bc
FB
362 echo "ARCH=s390" >> $config_mak
363 echo "#define HOST_S390 1" >> $config_h
295defa5 364elif test "$cpu" = "alpha" ; then
97a847bc
FB
365 echo "ARCH=alpha" >> $config_mak
366 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 367elif test "$cpu" = "sparc" ; then
97a847bc
FB
368 echo "ARCH=sparc" >> $config_mak
369 echo "#define HOST_SPARC 1" >> $config_h
ae228531 370elif test "$cpu" = "sparc64" ; then
97a847bc
FB
371 echo "ARCH=sparc64" >> $config_mak
372 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 373elif test "$cpu" = "ia64" ; then
97a847bc
FB
374 echo "ARCH=ia64" >> $config_mak
375 echo "#define HOST_IA64 1" >> $config_h
38e584a0 376elif test "$cpu" = "m68k" ; then
38ca2abc
FB
377 echo "ARCH=m68k" >> $config_mak
378 echo "#define HOST_M68K 1" >> $config_h
7d13299d
FB
379else
380 echo "Unsupported CPU"
381 exit 1
382fi
383if test "$bigendian" = "yes" ; then
97a847bc
FB
384 echo "WORDS_BIGENDIAN=yes" >> $config_mak
385 echo "#define WORDS_BIGENDIAN 1" >> $config_h
386fi
67b915a5
FB
387if test "$mingw32" = "yes" ; then
388 echo "CONFIG_WIN32=yes" >> $config_mak
11d9f695 389 echo "#define CONFIG_WIN32 1" >> $config_h
7d3505c5 390elif test -f "/usr/include/byteswap.h" ; then
67b915a5
FB
391 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
392fi
393if test "$gdbstub" = "yes" ; then
394 echo "CONFIG_GDBSTUB=yes" >> $config_mak
395 echo "#define CONFIG_GDBSTUB 1" >> $config_h
396fi
97a847bc
FB
397if test "$gprof" = "yes" ; then
398 echo "TARGET_GPROF=yes" >> $config_mak
399 echo "#define HAVE_GPROF 1" >> $config_h
400fi
401if test "$static" = "yes" ; then
402 echo "CONFIG_STATIC=yes" >> $config_mak
50863472 403 echo "#define CONFIG_STATIC 1" >> $config_h
7d13299d 404fi
c20709aa
FB
405if test "$slirp" = "yes" ; then
406 echo "CONFIG_SLIRP=yes" >> $config_mak
407 echo "#define CONFIG_SLIRP 1" >> $config_h
408fi
97a847bc
FB
409echo -n "VERSION=" >>$config_mak
410head $source_path/VERSION >>$config_mak
411echo "" >>$config_mak
412echo -n "#define QEMU_VERSION \"" >> $config_h
413head $source_path/VERSION >> $config_h
414echo "\"" >> $config_h
415
416echo "SRC_PATH=$source_path" >> $config_mak
417echo "TARGET_DIRS=$target_list" >> $config_mak
418
7d3505c5 419if [ "$bsd" = "yes" ] ; then
43003046
FB
420 echo "#define O_LARGEFILE 0" >> $config_h
421 echo "#define lseek64 lseek" >> $config_h
422 echo "#define ftruncate64 ftruncate" >> $config_h
423 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
7d3505c5
FB
424 echo "#define _BSD 1" >> $config_h
425fi
426
97a847bc
FB
427for target in $target_list; do
428
429target_dir="$target"
430config_mak=$target_dir/config.mak
431config_h=$target_dir/config.h
432target_cpu=`echo $target | cut -d '-' -f 1`
433target_bigendian="no"
1e43adfc 434[ "$target_cpu" = "sparc" ] && target_bigendian=yes
67867308 435[ "$target_cpu" = "ppc" ] && target_bigendian=yes
97a847bc
FB
436target_softmmu="no"
437if expr $target : '.*-softmmu' > /dev/null ; then
438 target_softmmu="yes"
439fi
997344f3
FB
440target_user_only="no"
441if expr $target : '.*-user' > /dev/null ; then
442 target_user_only="yes"
443fi
97a847bc 444
7c1f25b4 445#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
97a847bc
FB
446
447mkdir -p $target_dir
69de927c
FB
448if test "$target" = "arm-user" ; then
449 mkdir -p $target_dir/nwfpe
450fi
a7e61ed4
FB
451if test "$target_user_only" = "no" ; then
452 mkdir -p $target_dir/slirp
453fi
69de927c 454
97a847bc
FB
455ln -sf $source_path/Makefile.target $target_dir/Makefile
456
457echo "# Automatically generated by configure - do not modify" > $config_mak
458echo "/* Automatically generated by configure - do not modify */" > $config_h
459
de83cd02 460
97a847bc
FB
461echo "include ../config-host.mak" >> $config_mak
462echo "#include \"../config-host.h\"" >> $config_h
1e43adfc
FB
463
464interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
465echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
97a847bc
FB
466
467if test "$target_cpu" = "i386" ; then
468 echo "TARGET_ARCH=i386" >> $config_mak
469 echo "#define TARGET_ARCH \"i386\"" >> $config_h
470 echo "#define TARGET_I386 1" >> $config_h
de83cd02 471elif test "$target_cpu" = "arm" ; then
97a847bc
FB
472 echo "TARGET_ARCH=arm" >> $config_mak
473 echo "#define TARGET_ARCH \"arm\"" >> $config_h
474 echo "#define TARGET_ARM 1" >> $config_h
1e43adfc
FB
475elif test "$target_cpu" = "sparc" ; then
476 echo "TARGET_ARCH=sparc" >> $config_mak
477 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
478 echo "#define TARGET_SPARC 1" >> $config_h
67867308
FB
479elif test "$target_cpu" = "ppc" ; then
480 echo "TARGET_ARCH=ppc" >> $config_mak
481 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
482 echo "#define TARGET_PPC 1" >> $config_h
de83cd02
FB
483else
484 echo "Unsupported target CPU"
485 exit 1
486fi
487if test "$target_bigendian" = "yes" ; then
97a847bc
FB
488 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
489 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 490fi
97a847bc
FB
491if test "$target_softmmu" = "yes" ; then
492 echo "CONFIG_SOFTMMU=yes" >> $config_mak
493 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 494fi
997344f3
FB
495if test "$target_user_only" = "yes" ; then
496 echo "CONFIG_USER_ONLY=yes" >> $config_mak
497 echo "#define CONFIG_USER_ONLY 1" >> $config_h
498fi
97a847bc 499
7c1f25b4
FB
500# sdl defines
501
502if test "$target_user_only" = "no"; then
503 if test "$target_softmmu" = "no" -o "$static" = "yes"; then
504 if test "$sdl_static" = "yes" ; then
505 echo "#define CONFIG_SDL 1" >> $config_h
506 echo "CONFIG_SDL=yes" >> $config_mak
507 echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
508 fi
509 else
510 if test "$sdl" = "yes" ; then
511 echo "#define CONFIG_SDL 1" >> $config_h
512 echo "CONFIG_SDL=yes" >> $config_mak
513 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
514 fi
515 fi
516 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
517 if [ "${aa}" = "yes" ] ; then
518 echo -n " `aalib-config --cflags`" >> $config_mak ;
519 fi
520 echo "" >> $config_mak
521fi
522
97a847bc 523done # for target in $targets
7d13299d
FB
524
525# build tree in object directory if source path is different from current one
526if test "$source_path_used" = "yes" ; then
527 DIRS="tests"
528 FILES="Makefile tests/Makefile"
529 for dir in $DIRS ; do
530 mkdir -p $dir
531 done
532 for f in $FILES ; do
533 ln -sf $source_path/$f $f
534 done
535fi
7d13299d 536
97a847bc 537rm -f $TMPO $TMPC $TMPE $TMPS
This page took 0.121096 seconds and 4 git commands to generate.