]> git.proxmox.com Git - mirror_qemu.git/blame - configure
added VGA emulation - added PS/2 mouse and keyboard emulation - use SDL for VGA display
[mirror_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
20prefix="/usr/local"
32ce6337 21interp_prefix="/usr/gnemul/qemu-i386"
43ce4dfe 22static="no"
7d13299d
FB
23cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
97a847bc 30target_list="i386 i386-softmmu arm"
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 ;;
7d13299d
FB
59 *)
60 cpu="unknown"
61 ;;
62esac
63gprof="no"
64bigendian="no"
65
66# OS specific
67targetos=`uname -s`
68case $targetos in
7d13299d
FB
69*) ;;
70esac
71
97a847bc
FB
72##########################################
73# SDL probe
74
75cat > $TMPC << EOF
76#include <SDL.h>
77#undef main /* We don't want SDL to override our main() */
78int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
79EOF
80
81sdl_too_old=no
82sdl=no
83if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` 2> /dev/null ; then
84_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
85if test "$_sdlversion" -lt 121 ; then
86sdl_too_old=yes
87else
88sdl=yes
89fi
90fi
91
7d13299d
FB
92# find source path
93# XXX: we assume an absolute path is given when launching configure,
94# except in './configure' case.
95source_path=${0%configure}
96source_path=${source_path%/}
97source_path_used="yes"
98if test -z "$source_path" -o "$source_path" = "." ; then
99 source_path=`pwd`
100 source_path_used="no"
101fi
102
103for opt do
104 case "$opt" in
105 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
106 ;;
32ce6337
FB
107 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
108 ;;
7d13299d
FB
109 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
110 ;;
111 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
112 ;;
113 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
114 ;;
115 --make=*) make=`echo $opt | cut -d '=' -f 2`
116 ;;
117 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
118 ;;
119 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
120 ;;
121 --extra-libs=*) extralibs=${opt#--extra-libs=}
122 ;;
123 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
124 ;;
97a847bc 125 --target-list=*) target_list=${opt#--target-list=}
de83cd02 126 ;;
7d13299d
FB
127 --enable-gprof) gprof="yes"
128 ;;
43ce4dfe
FB
129 --static) static="yes"
130 ;;
97a847bc
FB
131 --disable-sdl) sdl="no"
132 ;;
7d13299d
FB
133 esac
134done
135
136# Checking for CFLAGS
137if test -z "$CFLAGS"; then
138 CFLAGS="-O2"
139fi
140
141cc="${cross_prefix}${cc}"
142ar="${cross_prefix}${ar}"
143strip="${cross_prefix}${strip}"
144
145if 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
ae228531 166if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64"; then
7d13299d
FB
167 bigendian="yes"
168fi
169
170fi
171
e8cd23de 172# check gcc options support
04369ff2
FB
173cat > $TMPC <<EOF
174int main(void) {
04369ff2
FB
175}
176EOF
177
e8cd23de
FB
178have_gcc3_options="no"
179if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then
180 have_gcc3_options="yes"
04369ff2 181fi
ca735206 182
7d13299d
FB
183if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
184cat << EOF
185
186Usage: configure [options]
187Options: [defaults in brackets after descriptions]
188
189EOF
190echo "Standard options:"
191echo " --help print this message"
192echo " --prefix=PREFIX install in PREFIX [$prefix]"
32ce6337 193echo " --interp-prefix=PREFIX where to find shared libraries, etc. [$interp_prefix]"
97a847bc 194echo " --target-list=LIST set target list [$target_list]"
7d13299d
FB
195echo ""
196echo "Advanced options (experts only):"
197echo " --source-path=PATH path of source code [$source_path]"
198echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
199echo " --cc=CC use C compiler CC [$cc]"
200echo " --make=MAKE use specified make [$make]"
43ce4dfe 201echo " --static enable static build [$static]"
7d13299d
FB
202echo ""
203echo "NOTE: The object files are build at the place where configure is launched"
204exit 1
205fi
206
43ce4dfe
FB
207echo "Install prefix $prefix"
208echo "Source path $source_path"
209echo "ELF interp prefix $interp_prefix"
210echo "C compiler $cc"
211echo "make $make"
212echo "host CPU $cpu"
de83cd02 213echo "host big endian $bigendian"
97a847bc 214echo "target list $target_list"
43ce4dfe
FB
215echo "gprof enabled $gprof"
216echo "static build $static"
97a847bc
FB
217echo "SDL support $sdl"
218if test $sdl_too_old = "yes"; then
219echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
220fi
221
222config_mak="config-host.mak"
223config_h="config-host.h"
7d13299d 224
97a847bc 225echo "Creating $config_mak and $config_h"
7d13299d 226
97a847bc
FB
227echo "# Automatically generated by configure - do not modify" > $config_mak
228echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 229
97a847bc
FB
230echo "prefix=$prefix" >> $config_mak
231echo "MAKE=$make" >> $config_mak
232echo "CC=$cc" >> $config_mak
e8cd23de 233if test "$have_gcc3_options" = "yes" ; then
97a847bc 234 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
e8cd23de 235fi
97a847bc
FB
236echo "HOST_CC=$host_cc" >> $config_mak
237echo "AR=$ar" >> $config_mak
238echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
239echo "CFLAGS=$CFLAGS" >> $config_mak
240echo "LDFLAGS=$LDFLAGS" >> $config_mak
241if test "$cpu" = "i386" ; then
242 echo "ARCH=i386" >> $config_mak
243 echo "#define HOST_I386 1" >> $config_h
7d13299d 244elif test "$cpu" = "armv4l" ; then
97a847bc
FB
245 echo "ARCH=arm" >> $config_mak
246 echo "#define HOST_ARM 1" >> $config_h
7d13299d 247elif test "$cpu" = "powerpc" ; then
97a847bc
FB
248 echo "ARCH=ppc" >> $config_mak
249 echo "#define HOST_PPC 1" >> $config_h
7d13299d 250elif test "$cpu" = "mips" ; then
97a847bc
FB
251 echo "ARCH=mips" >> $config_mak
252 echo "#define HOST_MIPS 1" >> $config_h
fb3e5849 253elif test "$cpu" = "s390" ; then
97a847bc
FB
254 echo "ARCH=s390" >> $config_mak
255 echo "#define HOST_S390 1" >> $config_h
295defa5 256elif test "$cpu" = "alpha" ; then
97a847bc
FB
257 echo "ARCH=alpha" >> $config_mak
258 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 259elif test "$cpu" = "sparc" ; then
97a847bc
FB
260 echo "ARCH=sparc" >> $config_mak
261 echo "#define HOST_SPARC 1" >> $config_h
ae228531 262elif test "$cpu" = "sparc64" ; then
97a847bc
FB
263 echo "ARCH=sparc64" >> $config_mak
264 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 265elif test "$cpu" = "ia64" ; then
97a847bc
FB
266 echo "ARCH=ia64" >> $config_mak
267 echo "#define HOST_IA64 1" >> $config_h
7d13299d
FB
268else
269 echo "Unsupported CPU"
270 exit 1
271fi
272if test "$bigendian" = "yes" ; then
97a847bc
FB
273 echo "WORDS_BIGENDIAN=yes" >> $config_mak
274 echo "#define WORDS_BIGENDIAN 1" >> $config_h
275fi
276echo "#define HAVE_BYTESWAP_H 1" >> $config_h
277if test "$gprof" = "yes" ; then
278 echo "TARGET_GPROF=yes" >> $config_mak
279 echo "#define HAVE_GPROF 1" >> $config_h
280fi
281if test "$static" = "yes" ; then
282 echo "CONFIG_STATIC=yes" >> $config_mak
7d13299d 283fi
97a847bc
FB
284if test "$sdl" = "yes" ; then
285 echo "CONFIG_SDL=yes" >> $config_mak
286 echo "#define CONFIG_SDL 1" >> $config_h
287 echo "SDL_LIBS=`sdl-config --libs`" >> $config_mak
288 echo "SDL_CFLAGS=`sdl-config --cflags`" >> $config_mak
289fi
290echo -n "VERSION=" >>$config_mak
291head $source_path/VERSION >>$config_mak
292echo "" >>$config_mak
293echo -n "#define QEMU_VERSION \"" >> $config_h
294head $source_path/VERSION >> $config_h
295echo "\"" >> $config_h
296
297echo "SRC_PATH=$source_path" >> $config_mak
298echo "TARGET_DIRS=$target_list" >> $config_mak
299
300for target in $target_list; do
301
302target_dir="$target"
303config_mak=$target_dir/config.mak
304config_h=$target_dir/config.h
305target_cpu=`echo $target | cut -d '-' -f 1`
306target_bigendian="no"
307target_softmmu="no"
308if expr $target : '.*-softmmu' > /dev/null ; then
309 target_softmmu="yes"
310fi
311
312echo "Creating $config_mak, $config_h and $target_dir/Makefile"
313
314mkdir -p $target_dir
315ln -sf $source_path/Makefile.target $target_dir/Makefile
316
317echo "# Automatically generated by configure - do not modify" > $config_mak
318echo "/* Automatically generated by configure - do not modify */" > $config_h
319
de83cd02 320
97a847bc
FB
321echo "include ../config-host.mak" >> $config_mak
322echo "#include \"../config-host.h\"" >> $config_h
323echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix\"" >> $config_h
324
325if test "$target_cpu" = "i386" ; then
326 echo "TARGET_ARCH=i386" >> $config_mak
327 echo "#define TARGET_ARCH \"i386\"" >> $config_h
328 echo "#define TARGET_I386 1" >> $config_h
de83cd02 329elif test "$target_cpu" = "arm" ; then
97a847bc
FB
330 echo "TARGET_ARCH=arm" >> $config_mak
331 echo "#define TARGET_ARCH \"arm\"" >> $config_h
332 echo "#define TARGET_ARM 1" >> $config_h
de83cd02
FB
333else
334 echo "Unsupported target CPU"
335 exit 1
336fi
337if test "$target_bigendian" = "yes" ; then
97a847bc
FB
338 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
339 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 340fi
97a847bc
FB
341if test "$target_softmmu" = "yes" ; then
342 echo "CONFIG_SOFTMMU=yes" >> $config_mak
343 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 344fi
97a847bc
FB
345
346done # for target in $targets
7d13299d
FB
347
348# build tree in object directory if source path is different from current one
349if test "$source_path_used" = "yes" ; then
350 DIRS="tests"
351 FILES="Makefile tests/Makefile"
352 for dir in $DIRS ; do
353 mkdir -p $dir
354 done
355 for f in $FILES ; do
356 ln -sf $source_path/$f $f
357 done
358fi
7d13299d 359
97a847bc 360rm -f $TMPO $TMPC $TMPE $TMPS