blob: 4f66317e46cb3130f57ce5533cbb610d1ee1973f [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001#!/bin/sh
2#
bellard3ef693a2003-03-23 20:17:16 +00003# qemu configure script (c) 2003 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00004#
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
bellard3ef693a2003-03-23 20:17:16 +000014TMPC="${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"
bellard7d132992003-03-06 23:23:54 +000018
19# default parameters
bellard11d9f692004-04-02 20:55:59 +000020prefix=""
bellard1e43adf2003-09-30 20:54:24 +000021interp_prefix="/usr/gnemul/qemu-%M"
bellard43ce4df2003-06-09 19:53:12 +000022static="no"
bellard7d132992003-03-06 23:23:54 +000023cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
bellard67867302003-11-23 17:05:30 +000030target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user"
bellard7d132992003-03-06 23:23:54 +000031case "$cpu" in
32 i386|i486|i586|i686|i86pc|BePC)
bellard97a847b2003-08-10 21:36:04 +000033 cpu="i386"
bellard7d132992003-03-06 23:23:54 +000034 ;;
35 armv4l)
36 cpu="armv4l"
37 ;;
38 alpha)
39 cpu="alpha"
40 ;;
bellard295defa2003-04-07 21:31:29 +000041 "Power Macintosh"|ppc|ppc64)
bellard7d132992003-03-06 23:23:54 +000042 cpu="powerpc"
43 ;;
44 mips)
45 cpu="mips"
46 ;;
bellardfb3e5842003-03-29 17:32:36 +000047 s390)
48 cpu="s390"
49 ;;
bellardae228532003-05-13 18:59:59 +000050 sparc)
51 cpu="sparc"
52 ;;
53 sparc64)
54 cpu="sparc64"
55 ;;
bellarda8baa8c2003-04-29 20:53:31 +000056 ia64)
57 cpu="ia64"
58 ;;
bellard38e584a2003-08-10 22:14:22 +000059 m68k)
60 cpu="m68k"
61 ;;
bellardbc51c5c2004-03-17 23:46:04 +000062 x86_64|amd64)
63 cpu="amd64"
64 ;;
bellard7d132992003-03-06 23:23:54 +000065 *)
66 cpu="unknown"
67 ;;
68esac
69gprof="no"
70bigendian="no"
bellard67b915a2004-03-31 23:37:16 +000071mingw32="no"
72EXESUF=""
73gdbstub="yes"
bellard7d132992003-03-06 23:23:54 +000074
75# OS specific
76targetos=`uname -s`
77case $targetos in
bellard67b915a2004-03-31 23:37:16 +000078MINGW32*)
79mingw32="yes"
80;;
bellard7d132992003-03-06 23:23:54 +000081*) ;;
82esac
83
84# find source path
85# XXX: we assume an absolute path is given when launching configure,
86# except in './configure' case.
87source_path=${0%configure}
88source_path=${source_path%/}
89source_path_used="yes"
90if test -z "$source_path" -o "$source_path" = "." ; then
91 source_path=`pwd`
92 source_path_used="no"
93fi
94
95for opt do
96 case "$opt" in
97 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
98 ;;
bellard32ce6332003-04-11 00:16:16 +000099 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
100 ;;
bellard7d132992003-03-06 23:23:54 +0000101 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
102 ;;
103 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
104 ;;
105 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
106 ;;
107 --make=*) make=`echo $opt | cut -d '=' -f 2`
108 ;;
109 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
110 ;;
111 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
112 ;;
113 --extra-libs=*) extralibs=${opt#--extra-libs=}
114 ;;
115 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
116 ;;
bellard97a847b2003-08-10 21:36:04 +0000117 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000118 ;;
bellard7d132992003-03-06 23:23:54 +0000119 --enable-gprof) gprof="yes"
120 ;;
bellard43ce4df2003-06-09 19:53:12 +0000121 --static) static="yes"
122 ;;
bellard97a847b2003-08-10 21:36:04 +0000123 --disable-sdl) sdl="no"
124 ;;
bellard67b915a2004-03-31 23:37:16 +0000125 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
126 ;;
bellard7d132992003-03-06 23:23:54 +0000127 esac
128done
129
130# Checking for CFLAGS
131if test -z "$CFLAGS"; then
132 CFLAGS="-O2"
133fi
134
135cc="${cross_prefix}${cc}"
136ar="${cross_prefix}${ar}"
137strip="${cross_prefix}${strip}"
138
bellard67b915a2004-03-31 23:37:16 +0000139if test "$mingw32" = "yes" ; then
bellard67b915a2004-03-31 23:37:16 +0000140 target_list="i386-softmmu"
bellard67b915a2004-03-31 23:37:16 +0000141 EXESUF=".exe"
142 gdbstub="no"
143fi
144
bellard7d132992003-03-06 23:23:54 +0000145if test -z "$cross_prefix" ; then
146
147# ---
148# big/little endian test
149cat > $TMPC << EOF
150#include <inttypes.h>
151int main(int argc, char ** argv){
152 volatile uint32_t i=0x01234567;
153 return (*((uint8_t*)(&i))) == 0x67;
154}
155EOF
156
157if $cc -o $TMPE $TMPC 2>/dev/null ; then
158$TMPE && bigendian="yes"
159else
160echo big/little test failed
161fi
162
163else
164
165# if cross compiling, cannot launch a program, so make a static guess
bellard38e584a2003-08-10 22:14:22 +0000166if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then
bellard7d132992003-03-06 23:23:54 +0000167 bigendian="yes"
168fi
169
170fi
171
bellarde8cd23d2003-06-25 16:08:13 +0000172# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000173cat > $TMPC <<EOF
174int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000175}
176EOF
177
bellarde8cd23d2003-06-25 16:08:13 +0000178have_gcc3_options="no"
179if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
180 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000181fi
bellardca735202003-03-18 20:41:34 +0000182
bellard11d9f692004-04-02 20:55:59 +0000183##########################################
184# SDL probe
185
186sdl_too_old=no
187
188if test -z "$sdl" ; then
189
190cat > $TMPC << EOF
191#include <SDL.h>
192#undef main /* We don't want SDL to override our main() */
193int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
194EOF
195
196sdl=no
197if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` 2> /dev/null ; then
198_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
199if test "$_sdlversion" -lt 121 ; then
200sdl_too_old=yes
201else
202sdl=yes
203fi
204fi
205
206fi
207
bellard7d132992003-03-06 23:23:54 +0000208if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
209cat << EOF
210
211Usage: configure [options]
212Options: [defaults in brackets after descriptions]
213
214EOF
215echo "Standard options:"
216echo " --help print this message"
217echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000218echo " --interp-prefix=PREFIX where to find shared libraries, etc."
219echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000220echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000221echo ""
222echo "Advanced options (experts only):"
223echo " --source-path=PATH path of source code [$source_path]"
224echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
225echo " --cc=CC use C compiler CC [$cc]"
226echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000227echo " --static enable static build [$static]"
bellard67b915a2004-03-31 23:37:16 +0000228echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
bellard7d132992003-03-06 23:23:54 +0000229echo ""
230echo "NOTE: The object files are build at the place where configure is launched"
231exit 1
232fi
233
bellard11d9f692004-04-02 20:55:59 +0000234if test "$mingw32" = "yes" ; then
235if test -z "$prefix" ; then
236 prefix="/c/Program Files/Qemu"
237fi
238mandir="$prefix"
239sharedir="$prefix"
240bindir="$prefix"
241else
242if test -z "$prefix" ; then
243 prefix="/usr/local"
244fi
bellard5a671352003-10-01 00:13:48 +0000245mandir="$prefix/share/man"
246sharedir="$prefix/share/qemu"
bellard11d9f692004-04-02 20:55:59 +0000247bindir="$prefix/bin"
248fi
bellard5a671352003-10-01 00:13:48 +0000249
bellard43ce4df2003-06-09 19:53:12 +0000250echo "Install prefix $prefix"
bellard5a671352003-10-01 00:13:48 +0000251echo "BIOS directory $sharedir"
bellard11d9f692004-04-02 20:55:59 +0000252echo "binary directory $bindir"
253if test "$mingw32" = "no" ; then
254echo "Manual directory $mandir"
bellard43ce4df2003-06-09 19:53:12 +0000255echo "ELF interp prefix $interp_prefix"
bellard11d9f692004-04-02 20:55:59 +0000256fi
bellard5a671352003-10-01 00:13:48 +0000257echo "Source path $source_path"
bellard43ce4df2003-06-09 19:53:12 +0000258echo "C compiler $cc"
259echo "make $make"
260echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000261echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000262echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000263echo "gprof enabled $gprof"
264echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000265echo "SDL support $sdl"
bellard67b915a2004-03-31 23:37:16 +0000266echo "mingw32 support $mingw32"
267
bellard97a847b2003-08-10 21:36:04 +0000268if test $sdl_too_old = "yes"; then
269echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000270fi
bellard97a847b2003-08-10 21:36:04 +0000271
272config_mak="config-host.mak"
273config_h="config-host.h"
274
275echo "Creating $config_mak and $config_h"
276
277echo "# Automatically generated by configure - do not modify" > $config_mak
278echo "/* Automatically generated by configure - do not modify */" > $config_h
279
280echo "prefix=$prefix" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000281echo "bindir=$bindir" >> $config_mak
bellard5a671352003-10-01 00:13:48 +0000282echo "mandir=$mandir" >> $config_mak
283echo "sharedir=$sharedir" >> $config_mak
284echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000285echo "MAKE=$make" >> $config_mak
286echo "CC=$cc" >> $config_mak
287if test "$have_gcc3_options" = "yes" ; then
288 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
289fi
290echo "HOST_CC=$host_cc" >> $config_mak
291echo "AR=$ar" >> $config_mak
292echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
293echo "CFLAGS=$CFLAGS" >> $config_mak
294echo "LDFLAGS=$LDFLAGS" >> $config_mak
bellard67b915a2004-03-31 23:37:16 +0000295echo "EXESUF=$EXESUF" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000296if test "$cpu" = "i386" ; then
297 echo "ARCH=i386" >> $config_mak
298 echo "#define HOST_I386 1" >> $config_h
bellardbc51c5c2004-03-17 23:46:04 +0000299elif test "$cpu" = "amd64" ; then
300 echo "ARCH=amd64" >> $config_mak
301 echo "#define HOST_AMD64 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000302elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000303 echo "ARCH=arm" >> $config_mak
304 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000305elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000306 echo "ARCH=ppc" >> $config_mak
307 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000308elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000309 echo "ARCH=mips" >> $config_mak
310 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000311elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000312 echo "ARCH=s390" >> $config_mak
313 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000314elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000315 echo "ARCH=alpha" >> $config_mak
316 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000317elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000318 echo "ARCH=sparc" >> $config_mak
319 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000320elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000321 echo "ARCH=sparc64" >> $config_mak
322 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000323elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000324 echo "ARCH=ia64" >> $config_mak
325 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000326elif test "$cpu" = "m68k" ; then
bellard38ca2ab2004-03-13 18:32:13 +0000327 echo "ARCH=m68k" >> $config_mak
328 echo "#define HOST_M68K 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000329else
330 echo "Unsupported CPU"
331 exit 1
332fi
333if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000334 echo "WORDS_BIGENDIAN=yes" >> $config_mak
335 echo "#define WORDS_BIGENDIAN 1" >> $config_h
336fi
bellard67b915a2004-03-31 23:37:16 +0000337if test "$mingw32" = "yes" ; then
338 echo "CONFIG_WIN32=yes" >> $config_mak
bellard11d9f692004-04-02 20:55:59 +0000339 echo "#define CONFIG_WIN32 1" >> $config_h
bellard67b915a2004-03-31 23:37:16 +0000340else
341 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
342fi
343if test "$gdbstub" = "yes" ; then
344 echo "CONFIG_GDBSTUB=yes" >> $config_mak
345 echo "#define CONFIG_GDBSTUB 1" >> $config_h
346fi
bellard97a847b2003-08-10 21:36:04 +0000347if test "$gprof" = "yes" ; then
348 echo "TARGET_GPROF=yes" >> $config_mak
349 echo "#define HAVE_GPROF 1" >> $config_h
350fi
351if test "$static" = "yes" ; then
352 echo "CONFIG_STATIC=yes" >> $config_mak
bellard50863472003-10-28 23:04:01 +0000353 echo "#define CONFIG_STATIC 1" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000354fi
355if test "$sdl" = "yes" ; then
356 echo "CONFIG_SDL=yes" >> $config_mak
357 echo "#define CONFIG_SDL 1" >> $config_h
358 echo "SDL_LIBS=`sdl-config --libs`" >> $config_mak
bellard590b7ee2004-01-04 23:49:02 +0000359 aa="no"
360 `sdl-config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
361 echo -n "SDL_STATIC_LIBS=`sdl-config --static-libs`" >> $config_mak
362 if [ "${aa}" = "yes" ] ; then
363 echo -n " `aalib-config --libs`" >> $config_mak ;
364 fi
365 echo "" >> $config_mak
366 echo -n "SDL_CFLAGS=`sdl-config --cflags`" >> $config_mak
367 if [ "${aa}" = "yes" ] ; then
368 echo -n " `aalib-config --cflags`" >> $config_mak ;
369 fi
370 echo "" >> $config_mak
bellard97a847b2003-08-10 21:36:04 +0000371fi
372echo -n "VERSION=" >>$config_mak
373head $source_path/VERSION >>$config_mak
374echo "" >>$config_mak
375echo -n "#define QEMU_VERSION \"" >> $config_h
376head $source_path/VERSION >> $config_h
377echo "\"" >> $config_h
378
379echo "SRC_PATH=$source_path" >> $config_mak
380echo "TARGET_DIRS=$target_list" >> $config_mak
381
382for target in $target_list; do
383
384target_dir="$target"
385config_mak=$target_dir/config.mak
386config_h=$target_dir/config.h
387target_cpu=`echo $target | cut -d '-' -f 1`
388target_bigendian="no"
bellard1e43adf2003-09-30 20:54:24 +0000389[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard67867302003-11-23 17:05:30 +0000390[ "$target_cpu" = "ppc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000391target_softmmu="no"
392if expr $target : '.*-softmmu' > /dev/null ; then
393 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000394fi
bellard997344f2003-10-27 21:10:39 +0000395target_user_only="no"
396if expr $target : '.*-user' > /dev/null ; then
397 target_user_only="yes"
398fi
bellardde83cd02003-06-15 20:25:43 +0000399
bellard97a847b2003-08-10 21:36:04 +0000400echo "Creating $config_mak, $config_h and $target_dir/Makefile"
401
402mkdir -p $target_dir
bellard69de9272004-02-16 21:40:43 +0000403if test "$target" = "arm-user" ; then
404 mkdir -p $target_dir/nwfpe
405fi
406
bellard97a847b2003-08-10 21:36:04 +0000407ln -sf $source_path/Makefile.target $target_dir/Makefile
408
409echo "# Automatically generated by configure - do not modify" > $config_mak
410echo "/* Automatically generated by configure - do not modify */" > $config_h
411
412
413echo "include ../config-host.mak" >> $config_mak
414echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000415
416interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
417echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000418
419if test "$target_cpu" = "i386" ; then
420 echo "TARGET_ARCH=i386" >> $config_mak
421 echo "#define TARGET_ARCH \"i386\"" >> $config_h
422 echo "#define TARGET_I386 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000423elif test "$target_cpu" = "arm" ; then
bellard97a847b2003-08-10 21:36:04 +0000424 echo "TARGET_ARCH=arm" >> $config_mak
425 echo "#define TARGET_ARCH \"arm\"" >> $config_h
426 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000427elif test "$target_cpu" = "sparc" ; then
428 echo "TARGET_ARCH=sparc" >> $config_mak
429 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
430 echo "#define TARGET_SPARC 1" >> $config_h
bellard67867302003-11-23 17:05:30 +0000431elif test "$target_cpu" = "ppc" ; then
432 echo "TARGET_ARCH=ppc" >> $config_mak
433 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
434 echo "#define TARGET_PPC 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000435else
436 echo "Unsupported target CPU"
437 exit 1
438fi
439if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000440 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
441 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
442fi
443if test "$target_softmmu" = "yes" ; then
444 echo "CONFIG_SOFTMMU=yes" >> $config_mak
445 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000446fi
bellard997344f2003-10-27 21:10:39 +0000447if test "$target_user_only" = "yes" ; then
448 echo "CONFIG_USER_ONLY=yes" >> $config_mak
449 echo "#define CONFIG_USER_ONLY 1" >> $config_h
450fi
bellardde83cd02003-06-15 20:25:43 +0000451
bellard97a847b2003-08-10 21:36:04 +0000452done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000453
454# build tree in object directory if source path is different from current one
455if test "$source_path_used" = "yes" ; then
456 DIRS="tests"
457 FILES="Makefile tests/Makefile"
458 for dir in $DIRS ; do
459 mkdir -p $dir
460 done
461 for f in $FILES ; do
462 ln -sf $source_path/$f $f
463 done
464fi
bellard7d132992003-03-06 23:23:54 +0000465
bellard97a847b2003-08-10 21:36:04 +0000466rm -f $TMPO $TMPC $TMPE $TMPS