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