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