blob: f680b6945b9455e76ec11fda2db140df8445974e [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
20prefix="/usr/local"
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`
bellard1e43adf2003-09-30 20:54:24 +000030target_list="i386 i386-softmmu arm sparc"
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 ;;
bellard7d132992003-03-06 23:23:54 +000062 *)
63 cpu="unknown"
64 ;;
65esac
66gprof="no"
67bigendian="no"
68
69# OS specific
70targetos=`uname -s`
71case $targetos in
bellard7d132992003-03-06 23:23:54 +000072*) ;;
73esac
74
bellard97a847b2003-08-10 21:36:04 +000075##########################################
76# SDL probe
77
78cat > $TMPC << EOF
79#include <SDL.h>
80#undef main /* We don't want SDL to override our main() */
81int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
82EOF
83
84sdl_too_old=no
85sdl=no
86if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` 2> /dev/null ; then
87_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
88if test "$_sdlversion" -lt 121 ; then
89sdl_too_old=yes
90else
91sdl=yes
92fi
93fi
94
bellard7d132992003-03-06 23:23:54 +000095# find source path
96# XXX: we assume an absolute path is given when launching configure,
97# except in './configure' case.
98source_path=${0%configure}
99source_path=${source_path%/}
100source_path_used="yes"
101if test -z "$source_path" -o "$source_path" = "." ; then
102 source_path=`pwd`
103 source_path_used="no"
104fi
105
106for opt do
107 case "$opt" in
108 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
109 ;;
bellard32ce6332003-04-11 00:16:16 +0000110 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
111 ;;
bellard7d132992003-03-06 23:23:54 +0000112 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
113 ;;
114 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
115 ;;
116 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
117 ;;
118 --make=*) make=`echo $opt | cut -d '=' -f 2`
119 ;;
120 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
121 ;;
122 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
123 ;;
124 --extra-libs=*) extralibs=${opt#--extra-libs=}
125 ;;
126 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
127 ;;
bellard97a847b2003-08-10 21:36:04 +0000128 --target-list=*) target_list=${opt#--target-list=}
bellardde83cd02003-06-15 20:25:43 +0000129 ;;
bellard7d132992003-03-06 23:23:54 +0000130 --enable-gprof) gprof="yes"
131 ;;
bellard43ce4df2003-06-09 19:53:12 +0000132 --static) static="yes"
133 ;;
bellard97a847b2003-08-10 21:36:04 +0000134 --disable-sdl) sdl="no"
135 ;;
bellard7d132992003-03-06 23:23:54 +0000136 esac
137done
138
139# Checking for CFLAGS
140if test -z "$CFLAGS"; then
141 CFLAGS="-O2"
142fi
143
144cc="${cross_prefix}${cc}"
145ar="${cross_prefix}${ar}"
146strip="${cross_prefix}${strip}"
147
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
bellard38e584a2003-08-10 22:14:22 +0000169if 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 +0000170 bigendian="yes"
171fi
172
173fi
174
bellarde8cd23d2003-06-25 16:08:13 +0000175# check gcc options support
bellard04369ff2003-03-20 22:33:23 +0000176cat > $TMPC <<EOF
177int main(void) {
bellard04369ff2003-03-20 22:33:23 +0000178}
179EOF
180
bellarde8cd23d2003-06-25 16:08:13 +0000181have_gcc3_options="no"
182if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
183 have_gcc3_options="yes"
bellard04369ff2003-03-20 22:33:23 +0000184fi
bellardca735202003-03-18 20:41:34 +0000185
bellard7d132992003-03-06 23:23:54 +0000186if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
187cat << EOF
188
189Usage: configure [options]
190Options: [defaults in brackets after descriptions]
191
192EOF
193echo "Standard options:"
194echo " --help print this message"
195echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard1e43adf2003-09-30 20:54:24 +0000196echo " --interp-prefix=PREFIX where to find shared libraries, etc."
197echo " use %M for cpu name [$interp_prefix]"
bellard97a847b2003-08-10 21:36:04 +0000198echo " --target-list=LIST set target list [$target_list]"
bellard7d132992003-03-06 23:23:54 +0000199echo ""
200echo "Advanced options (experts only):"
201echo " --source-path=PATH path of source code [$source_path]"
202echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
203echo " --cc=CC use C compiler CC [$cc]"
204echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000205echo " --static enable static build [$static]"
bellard7d132992003-03-06 23:23:54 +0000206echo ""
207echo "NOTE: The object files are build at the place where configure is launched"
208exit 1
209fi
210
bellard43ce4df2003-06-09 19:53:12 +0000211echo "Install prefix $prefix"
212echo "Source path $source_path"
213echo "ELF interp prefix $interp_prefix"
214echo "C compiler $cc"
215echo "make $make"
216echo "host CPU $cpu"
bellardde83cd02003-06-15 20:25:43 +0000217echo "host big endian $bigendian"
bellard97a847b2003-08-10 21:36:04 +0000218echo "target list $target_list"
bellard43ce4df2003-06-09 19:53:12 +0000219echo "gprof enabled $gprof"
220echo "static build $static"
bellard97a847b2003-08-10 21:36:04 +0000221echo "SDL support $sdl"
222if test $sdl_too_old = "yes"; then
223echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
bellarde8cd23d2003-06-25 16:08:13 +0000224fi
bellard97a847b2003-08-10 21:36:04 +0000225
226config_mak="config-host.mak"
227config_h="config-host.h"
228
229echo "Creating $config_mak and $config_h"
230
231echo "# Automatically generated by configure - do not modify" > $config_mak
232echo "/* Automatically generated by configure - do not modify */" > $config_h
233
234echo "prefix=$prefix" >> $config_mak
235echo "MAKE=$make" >> $config_mak
236echo "CC=$cc" >> $config_mak
237if test "$have_gcc3_options" = "yes" ; then
238 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
239fi
240echo "HOST_CC=$host_cc" >> $config_mak
241echo "AR=$ar" >> $config_mak
242echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
243echo "CFLAGS=$CFLAGS" >> $config_mak
244echo "LDFLAGS=$LDFLAGS" >> $config_mak
245if test "$cpu" = "i386" ; then
246 echo "ARCH=i386" >> $config_mak
247 echo "#define HOST_I386 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000248elif test "$cpu" = "armv4l" ; then
bellard97a847b2003-08-10 21:36:04 +0000249 echo "ARCH=arm" >> $config_mak
250 echo "#define HOST_ARM 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000251elif test "$cpu" = "powerpc" ; then
bellard97a847b2003-08-10 21:36:04 +0000252 echo "ARCH=ppc" >> $config_mak
253 echo "#define HOST_PPC 1" >> $config_h
bellard7d132992003-03-06 23:23:54 +0000254elif test "$cpu" = "mips" ; then
bellard97a847b2003-08-10 21:36:04 +0000255 echo "ARCH=mips" >> $config_mak
256 echo "#define HOST_MIPS 1" >> $config_h
bellardfb3e5842003-03-29 17:32:36 +0000257elif test "$cpu" = "s390" ; then
bellard97a847b2003-08-10 21:36:04 +0000258 echo "ARCH=s390" >> $config_mak
259 echo "#define HOST_S390 1" >> $config_h
bellard295defa2003-04-07 21:31:29 +0000260elif test "$cpu" = "alpha" ; then
bellard97a847b2003-08-10 21:36:04 +0000261 echo "ARCH=alpha" >> $config_mak
262 echo "#define HOST_ALPHA 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000263elif test "$cpu" = "sparc" ; then
bellard97a847b2003-08-10 21:36:04 +0000264 echo "ARCH=sparc" >> $config_mak
265 echo "#define HOST_SPARC 1" >> $config_h
bellardae228532003-05-13 18:59:59 +0000266elif test "$cpu" = "sparc64" ; then
bellard97a847b2003-08-10 21:36:04 +0000267 echo "ARCH=sparc64" >> $config_mak
268 echo "#define HOST_SPARC64 1" >> $config_h
bellarda8baa8c2003-04-29 20:53:31 +0000269elif test "$cpu" = "ia64" ; then
bellard97a847b2003-08-10 21:36:04 +0000270 echo "ARCH=ia64" >> $config_mak
271 echo "#define HOST_IA64 1" >> $config_h
bellard38e584a2003-08-10 22:14:22 +0000272elif test "$cpu" = "m68k" ; then
273 echo "ARCH=m68k" >> config.mak
274 echo "#define HOST_M68K 1" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000275else
276 echo "Unsupported CPU"
277 exit 1
278fi
279if test "$bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000280 echo "WORDS_BIGENDIAN=yes" >> $config_mak
281 echo "#define WORDS_BIGENDIAN 1" >> $config_h
282fi
283echo "#define HAVE_BYTESWAP_H 1" >> $config_h
284if test "$gprof" = "yes" ; then
285 echo "TARGET_GPROF=yes" >> $config_mak
286 echo "#define HAVE_GPROF 1" >> $config_h
287fi
288if test "$static" = "yes" ; then
289 echo "CONFIG_STATIC=yes" >> $config_mak
290fi
291if test "$sdl" = "yes" ; then
292 echo "CONFIG_SDL=yes" >> $config_mak
293 echo "#define CONFIG_SDL 1" >> $config_h
294 echo "SDL_LIBS=`sdl-config --libs`" >> $config_mak
295 echo "SDL_CFLAGS=`sdl-config --cflags`" >> $config_mak
296fi
297echo -n "VERSION=" >>$config_mak
298head $source_path/VERSION >>$config_mak
299echo "" >>$config_mak
300echo -n "#define QEMU_VERSION \"" >> $config_h
301head $source_path/VERSION >> $config_h
302echo "\"" >> $config_h
303
304echo "SRC_PATH=$source_path" >> $config_mak
305echo "TARGET_DIRS=$target_list" >> $config_mak
306
307for target in $target_list; do
308
309target_dir="$target"
310config_mak=$target_dir/config.mak
311config_h=$target_dir/config.h
312target_cpu=`echo $target | cut -d '-' -f 1`
313target_bigendian="no"
bellard1e43adf2003-09-30 20:54:24 +0000314[ "$target_cpu" = "sparc" ] && target_bigendian=yes
bellard97a847b2003-08-10 21:36:04 +0000315target_softmmu="no"
316if expr $target : '.*-softmmu' > /dev/null ; then
317 target_softmmu="yes"
bellard7d132992003-03-06 23:23:54 +0000318fi
bellardde83cd02003-06-15 20:25:43 +0000319
bellard97a847b2003-08-10 21:36:04 +0000320echo "Creating $config_mak, $config_h and $target_dir/Makefile"
321
322mkdir -p $target_dir
323ln -sf $source_path/Makefile.target $target_dir/Makefile
324
325echo "# Automatically generated by configure - do not modify" > $config_mak
326echo "/* Automatically generated by configure - do not modify */" > $config_h
327
328
329echo "include ../config-host.mak" >> $config_mak
330echo "#include \"../config-host.h\"" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000331
332interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
333echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
bellard97a847b2003-08-10 21:36:04 +0000334
335if test "$target_cpu" = "i386" ; then
336 echo "TARGET_ARCH=i386" >> $config_mak
337 echo "#define TARGET_ARCH \"i386\"" >> $config_h
338 echo "#define TARGET_I386 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000339elif test "$target_cpu" = "arm" ; then
bellard97a847b2003-08-10 21:36:04 +0000340 echo "TARGET_ARCH=arm" >> $config_mak
341 echo "#define TARGET_ARCH \"arm\"" >> $config_h
342 echo "#define TARGET_ARM 1" >> $config_h
bellard1e43adf2003-09-30 20:54:24 +0000343elif test "$target_cpu" = "sparc" ; then
344 echo "TARGET_ARCH=sparc" >> $config_mak
345 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
346 echo "#define TARGET_SPARC 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000347else
348 echo "Unsupported target CPU"
349 exit 1
350fi
351if test "$target_bigendian" = "yes" ; then
bellard97a847b2003-08-10 21:36:04 +0000352 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
353 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
354fi
355if test "$target_softmmu" = "yes" ; then
356 echo "CONFIG_SOFTMMU=yes" >> $config_mak
357 echo "#define CONFIG_SOFTMMU 1" >> $config_h
bellardde83cd02003-06-15 20:25:43 +0000358fi
359
bellard97a847b2003-08-10 21:36:04 +0000360done # for target in $targets
bellard7d132992003-03-06 23:23:54 +0000361
362# build tree in object directory if source path is different from current one
363if test "$source_path_used" = "yes" ; then
364 DIRS="tests"
365 FILES="Makefile tests/Makefile"
366 for dir in $DIRS ; do
367 mkdir -p $dir
368 done
369 for f in $FILES ; do
370 ln -sf $source_path/$f $f
371 done
372fi
bellard7d132992003-03-06 23:23:54 +0000373
bellard97a847b2003-08-10 21:36:04 +0000374rm -f $TMPO $TMPC $TMPE $TMPS