]> git.proxmox.com Git - qemu.git/blame - configure
NT mouse fix (Mark Jonckheere)
[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"
7d13299d
FB
74
75# OS specific
76targetos=`uname -s`
77case $targetos in
67b915a5
FB
78MINGW32*)
79mingw32="yes"
80;;
7d13299d
FB
81*) ;;
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 ;;
32ce6337
FB
99 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
100 ;;
7d13299d
FB
101 --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 ;;
97a847bc 117 --target-list=*) target_list=${opt#--target-list=}
de83cd02 118 ;;
7d13299d
FB
119 --enable-gprof) gprof="yes"
120 ;;
43ce4dfe
FB
121 --static) static="yes"
122 ;;
97a847bc
FB
123 --disable-sdl) sdl="no"
124 ;;
67b915a5
FB
125 --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
126 ;;
7d13299d
FB
127 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
67b915a5 139if test "$mingw32" = "yes" ; then
67b915a5 140 target_list="i386-softmmu"
67b915a5
FB
141 EXESUF=".exe"
142 gdbstub="no"
143fi
144
7d13299d
FB
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
38e584a0 166if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; 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
11d9f695
FB
183##########################################
184# SDL probe
185
186sdl_too_old=no
187
188if test -z "$sdl" ; then
189
a6e022ad
FB
190sdl_config="sdl-config"
191sdl=no
192
193if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
194# win32 cross compilation case
195 sdl_config="i386-mingw32msvc-sdl-config"
196 sdl=yes
197else
198# normal SDL probe
11d9f695
FB
199cat > $TMPC << EOF
200#include <SDL.h>
201#undef main /* We don't want SDL to override our main() */
202int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
203EOF
204
a6e022ad
FB
205if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
206_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
11d9f695
FB
207if test "$_sdlversion" -lt 121 ; then
208sdl_too_old=yes
209else
210sdl=yes
211fi
212fi
213
a6e022ad
FB
214fi # cross compilation
215fi # -z $sdl
11d9f695 216
7d13299d
FB
217if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
218cat << EOF
219
220Usage: configure [options]
221Options: [defaults in brackets after descriptions]
222
223EOF
224echo "Standard options:"
225echo " --help print this message"
226echo " --prefix=PREFIX install in PREFIX [$prefix]"
1e43adfc
FB
227echo " --interp-prefix=PREFIX where to find shared libraries, etc."
228echo " use %M for cpu name [$interp_prefix]"
97a847bc 229echo " --target-list=LIST set target list [$target_list]"
7d13299d
FB
230echo ""
231echo "Advanced options (experts only):"
232echo " --source-path=PATH path of source code [$source_path]"
233echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
234echo " --cc=CC use C compiler CC [$cc]"
235echo " --make=MAKE use specified make [$make]"
43ce4dfe 236echo " --static enable static build [$static]"
67b915a5 237echo " --enable-mingw32 enable Win32 cross compilation with mingw32"
7d13299d
FB
238echo ""
239echo "NOTE: The object files are build at the place where configure is launched"
240exit 1
241fi
242
11d9f695
FB
243if test "$mingw32" = "yes" ; then
244if test -z "$prefix" ; then
245 prefix="/c/Program Files/Qemu"
246fi
247mandir="$prefix"
248sharedir="$prefix"
249bindir="$prefix"
250else
251if test -z "$prefix" ; then
252 prefix="/usr/local"
253fi
5a67135a
FB
254mandir="$prefix/share/man"
255sharedir="$prefix/share/qemu"
11d9f695
FB
256bindir="$prefix/bin"
257fi
5a67135a 258
43ce4dfe 259echo "Install prefix $prefix"
5a67135a 260echo "BIOS directory $sharedir"
11d9f695
FB
261echo "binary directory $bindir"
262if test "$mingw32" = "no" ; then
263echo "Manual directory $mandir"
43ce4dfe 264echo "ELF interp prefix $interp_prefix"
11d9f695 265fi
5a67135a 266echo "Source path $source_path"
43ce4dfe
FB
267echo "C compiler $cc"
268echo "make $make"
269echo "host CPU $cpu"
de83cd02 270echo "host big endian $bigendian"
97a847bc 271echo "target list $target_list"
43ce4dfe
FB
272echo "gprof enabled $gprof"
273echo "static build $static"
97a847bc 274echo "SDL support $sdl"
67b915a5
FB
275echo "mingw32 support $mingw32"
276
97a847bc
FB
277if test $sdl_too_old = "yes"; then
278echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
279fi
280
281config_mak="config-host.mak"
282config_h="config-host.h"
7d13299d 283
97a847bc 284echo "Creating $config_mak and $config_h"
7d13299d 285
97a847bc
FB
286echo "# Automatically generated by configure - do not modify" > $config_mak
287echo "/* Automatically generated by configure - do not modify */" > $config_h
7d13299d 288
97a847bc 289echo "prefix=$prefix" >> $config_mak
11d9f695 290echo "bindir=$bindir" >> $config_mak
5a67135a
FB
291echo "mandir=$mandir" >> $config_mak
292echo "sharedir=$sharedir" >> $config_mak
293echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h
97a847bc
FB
294echo "MAKE=$make" >> $config_mak
295echo "CC=$cc" >> $config_mak
e8cd23de 296if test "$have_gcc3_options" = "yes" ; then
97a847bc 297 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
e8cd23de 298fi
97a847bc
FB
299echo "HOST_CC=$host_cc" >> $config_mak
300echo "AR=$ar" >> $config_mak
301echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
302echo "CFLAGS=$CFLAGS" >> $config_mak
303echo "LDFLAGS=$LDFLAGS" >> $config_mak
67b915a5 304echo "EXESUF=$EXESUF" >> $config_mak
97a847bc
FB
305if test "$cpu" = "i386" ; then
306 echo "ARCH=i386" >> $config_mak
307 echo "#define HOST_I386 1" >> $config_h
bc51c5c9
FB
308elif test "$cpu" = "amd64" ; then
309 echo "ARCH=amd64" >> $config_mak
310 echo "#define HOST_AMD64 1" >> $config_h
7d13299d 311elif test "$cpu" = "armv4l" ; then
97a847bc
FB
312 echo "ARCH=arm" >> $config_mak
313 echo "#define HOST_ARM 1" >> $config_h
7d13299d 314elif test "$cpu" = "powerpc" ; then
97a847bc
FB
315 echo "ARCH=ppc" >> $config_mak
316 echo "#define HOST_PPC 1" >> $config_h
7d13299d 317elif test "$cpu" = "mips" ; then
97a847bc
FB
318 echo "ARCH=mips" >> $config_mak
319 echo "#define HOST_MIPS 1" >> $config_h
fb3e5849 320elif test "$cpu" = "s390" ; then
97a847bc
FB
321 echo "ARCH=s390" >> $config_mak
322 echo "#define HOST_S390 1" >> $config_h
295defa5 323elif test "$cpu" = "alpha" ; then
97a847bc
FB
324 echo "ARCH=alpha" >> $config_mak
325 echo "#define HOST_ALPHA 1" >> $config_h
ae228531 326elif test "$cpu" = "sparc" ; then
97a847bc
FB
327 echo "ARCH=sparc" >> $config_mak
328 echo "#define HOST_SPARC 1" >> $config_h
ae228531 329elif test "$cpu" = "sparc64" ; then
97a847bc
FB
330 echo "ARCH=sparc64" >> $config_mak
331 echo "#define HOST_SPARC64 1" >> $config_h
a8baa8c5 332elif test "$cpu" = "ia64" ; then
97a847bc
FB
333 echo "ARCH=ia64" >> $config_mak
334 echo "#define HOST_IA64 1" >> $config_h
38e584a0 335elif test "$cpu" = "m68k" ; then
38ca2abc
FB
336 echo "ARCH=m68k" >> $config_mak
337 echo "#define HOST_M68K 1" >> $config_h
7d13299d
FB
338else
339 echo "Unsupported CPU"
340 exit 1
341fi
342if test "$bigendian" = "yes" ; then
97a847bc
FB
343 echo "WORDS_BIGENDIAN=yes" >> $config_mak
344 echo "#define WORDS_BIGENDIAN 1" >> $config_h
345fi
67b915a5
FB
346if test "$mingw32" = "yes" ; then
347 echo "CONFIG_WIN32=yes" >> $config_mak
11d9f695 348 echo "#define CONFIG_WIN32 1" >> $config_h
67b915a5
FB
349else
350 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
351fi
352if test "$gdbstub" = "yes" ; then
353 echo "CONFIG_GDBSTUB=yes" >> $config_mak
354 echo "#define CONFIG_GDBSTUB 1" >> $config_h
355fi
97a847bc
FB
356if test "$gprof" = "yes" ; then
357 echo "TARGET_GPROF=yes" >> $config_mak
358 echo "#define HAVE_GPROF 1" >> $config_h
359fi
360if test "$static" = "yes" ; then
361 echo "CONFIG_STATIC=yes" >> $config_mak
50863472 362 echo "#define CONFIG_STATIC 1" >> $config_h
7d13299d 363fi
97a847bc
FB
364if test "$sdl" = "yes" ; then
365 echo "CONFIG_SDL=yes" >> $config_mak
366 echo "#define CONFIG_SDL 1" >> $config_h
a6e022ad 367 echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
590b7eed 368 aa="no"
a6e022ad
FB
369 `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
370 echo -n "SDL_STATIC_LIBS=`$sdl_config --static-libs`" >> $config_mak
590b7eed
FB
371 if [ "${aa}" = "yes" ] ; then
372 echo -n " `aalib-config --libs`" >> $config_mak ;
373 fi
374 echo "" >> $config_mak
a6e022ad 375 echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
590b7eed
FB
376 if [ "${aa}" = "yes" ] ; then
377 echo -n " `aalib-config --cflags`" >> $config_mak ;
378 fi
379 echo "" >> $config_mak
97a847bc
FB
380fi
381echo -n "VERSION=" >>$config_mak
382head $source_path/VERSION >>$config_mak
383echo "" >>$config_mak
384echo -n "#define QEMU_VERSION \"" >> $config_h
385head $source_path/VERSION >> $config_h
386echo "\"" >> $config_h
387
388echo "SRC_PATH=$source_path" >> $config_mak
389echo "TARGET_DIRS=$target_list" >> $config_mak
390
391for target in $target_list; do
392
393target_dir="$target"
394config_mak=$target_dir/config.mak
395config_h=$target_dir/config.h
396target_cpu=`echo $target | cut -d '-' -f 1`
397target_bigendian="no"
1e43adfc 398[ "$target_cpu" = "sparc" ] && target_bigendian=yes
67867308 399[ "$target_cpu" = "ppc" ] && target_bigendian=yes
97a847bc
FB
400target_softmmu="no"
401if expr $target : '.*-softmmu' > /dev/null ; then
402 target_softmmu="yes"
403fi
997344f3
FB
404target_user_only="no"
405if expr $target : '.*-user' > /dev/null ; then
406 target_user_only="yes"
407fi
97a847bc
FB
408
409echo "Creating $config_mak, $config_h and $target_dir/Makefile"
410
411mkdir -p $target_dir
69de927c
FB
412if test "$target" = "arm-user" ; then
413 mkdir -p $target_dir/nwfpe
414fi
415
97a847bc
FB
416ln -sf $source_path/Makefile.target $target_dir/Makefile
417
418echo "# Automatically generated by configure - do not modify" > $config_mak
419echo "/* Automatically generated by configure - do not modify */" > $config_h
420
de83cd02 421
97a847bc
FB
422echo "include ../config-host.mak" >> $config_mak
423echo "#include \"../config-host.h\"" >> $config_h
1e43adfc
FB
424
425interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
426echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
97a847bc
FB
427
428if test "$target_cpu" = "i386" ; then
429 echo "TARGET_ARCH=i386" >> $config_mak
430 echo "#define TARGET_ARCH \"i386\"" >> $config_h
431 echo "#define TARGET_I386 1" >> $config_h
de83cd02 432elif test "$target_cpu" = "arm" ; then
97a847bc
FB
433 echo "TARGET_ARCH=arm" >> $config_mak
434 echo "#define TARGET_ARCH \"arm\"" >> $config_h
435 echo "#define TARGET_ARM 1" >> $config_h
1e43adfc
FB
436elif test "$target_cpu" = "sparc" ; then
437 echo "TARGET_ARCH=sparc" >> $config_mak
438 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
439 echo "#define TARGET_SPARC 1" >> $config_h
67867308
FB
440elif test "$target_cpu" = "ppc" ; then
441 echo "TARGET_ARCH=ppc" >> $config_mak
442 echo "#define TARGET_ARCH \"ppc\"" >> $config_h
443 echo "#define TARGET_PPC 1" >> $config_h
de83cd02
FB
444else
445 echo "Unsupported target CPU"
446 exit 1
447fi
448if test "$target_bigendian" = "yes" ; then
97a847bc
FB
449 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
450 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
de83cd02 451fi
97a847bc
FB
452if test "$target_softmmu" = "yes" ; then
453 echo "CONFIG_SOFTMMU=yes" >> $config_mak
454 echo "#define CONFIG_SOFTMMU 1" >> $config_h
43ce4dfe 455fi
997344f3
FB
456if test "$target_user_only" = "yes" ; then
457 echo "CONFIG_USER_ONLY=yes" >> $config_mak
458 echo "#define CONFIG_USER_ONLY 1" >> $config_h
459fi
97a847bc
FB
460
461done # for target in $targets
7d13299d
FB
462
463# build tree in object directory if source path is different from current one
464if test "$source_path_used" = "yes" ; then
465 DIRS="tests"
466 FILES="Makefile tests/Makefile"
467 for dir in $DIRS ; do
468 mkdir -p $dir
469 done
470 for f in $FILES ; do
471 ln -sf $source_path/$f $f
472 done
473fi
7d13299d 474
97a847bc 475rm -f $TMPO $TMPC $TMPE $TMPS