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