blob: 9a7a5f9088302c80a53d404295279fac6997d6e0 [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"
18TMPH="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.h"
bellard7d132992003-03-06 23:23:54 +000019
20# default parameters
21prefix="/usr/local"
bellard32ce6332003-04-11 00:16:16 +000022interp_prefix="/usr/gnemul/qemu-i386"
bellard43ce4df2003-06-09 19:53:12 +000023static="no"
bellard7d132992003-03-06 23:23:54 +000024cross_prefix=""
25cc="gcc"
26host_cc="gcc"
27ar="ar"
28make="make"
29strip="strip"
bellarda98fd892003-04-29 21:24:12 +000030target_cpu="x86"
bellard7d132992003-03-06 23:23:54 +000031cpu=`uname -m`
32case "$cpu" in
33 i386|i486|i586|i686|i86pc|BePC)
34 cpu="x86"
35 ;;
36 armv4l)
37 cpu="armv4l"
38 ;;
39 alpha)
40 cpu="alpha"
41 ;;
bellard295defa2003-04-07 21:31:29 +000042 "Power Macintosh"|ppc|ppc64)
bellard7d132992003-03-06 23:23:54 +000043 cpu="powerpc"
44 ;;
45 mips)
46 cpu="mips"
47 ;;
bellardfb3e5842003-03-29 17:32:36 +000048 s390)
49 cpu="s390"
50 ;;
bellardae228532003-05-13 18:59:59 +000051 sparc)
52 cpu="sparc"
53 ;;
54 sparc64)
55 cpu="sparc64"
56 ;;
bellarda8baa8c2003-04-29 20:53:31 +000057 ia64)
58 cpu="ia64"
59 ;;
bellard7d132992003-03-06 23:23:54 +000060 *)
61 cpu="unknown"
62 ;;
63esac
64gprof="no"
65bigendian="no"
66
67# OS specific
68targetos=`uname -s`
69case $targetos in
bellard7d132992003-03-06 23:23:54 +000070*) ;;
71esac
72
73# find source path
74# XXX: we assume an absolute path is given when launching configure,
75# except in './configure' case.
76source_path=${0%configure}
77source_path=${source_path%/}
78source_path_used="yes"
79if test -z "$source_path" -o "$source_path" = "." ; then
80 source_path=`pwd`
81 source_path_used="no"
82fi
83
84for opt do
85 case "$opt" in
86 --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
87 ;;
bellard32ce6332003-04-11 00:16:16 +000088 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
89 ;;
bellard7d132992003-03-06 23:23:54 +000090 --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
91 ;;
92 --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
93 ;;
94 --cc=*) cc=`echo $opt | cut -d '=' -f 2`
95 ;;
96 --make=*) make=`echo $opt | cut -d '=' -f 2`
97 ;;
98 --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
99 ;;
100 --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
101 ;;
102 --extra-libs=*) extralibs=${opt#--extra-libs=}
103 ;;
104 --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
105 ;;
106 --enable-gprof) gprof="yes"
107 ;;
bellard43ce4df2003-06-09 19:53:12 +0000108 --static) static="yes"
109 ;;
bellard7d132992003-03-06 23:23:54 +0000110 esac
111done
112
113# Checking for CFLAGS
114if test -z "$CFLAGS"; then
115 CFLAGS="-O2"
116fi
117
118cc="${cross_prefix}${cc}"
119ar="${cross_prefix}${ar}"
120strip="${cross_prefix}${strip}"
121
122if test -z "$cross_prefix" ; then
123
124# ---
125# big/little endian test
126cat > $TMPC << EOF
127#include <inttypes.h>
128int main(int argc, char ** argv){
129 volatile uint32_t i=0x01234567;
130 return (*((uint8_t*)(&i))) == 0x67;
131}
132EOF
133
134if $cc -o $TMPE $TMPC 2>/dev/null ; then
135$TMPE && bigendian="yes"
136else
137echo big/little test failed
138fi
139
140else
141
142# if cross compiling, cannot launch a program, so make a static guess
bellardae228532003-05-13 18:59:59 +0000143if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64"; then
bellard7d132992003-03-06 23:23:54 +0000144 bigendian="yes"
145fi
146
147fi
148
bellardca735202003-03-18 20:41:34 +0000149# check gcc version
bellard04369ff2003-03-20 22:33:23 +0000150cat > $TMPC <<EOF
151int main(void) {
152#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
153return 0;
154#else
155#error gcc < 3.2
156#endif
157}
158EOF
159
bellardca735202003-03-18 20:41:34 +0000160gcc_major="2"
bellard04369ff2003-03-20 22:33:23 +0000161if $cc -o $TMPO $TMPC 2> /dev/null ; then
162 gcc_major="3"
163fi
bellardca735202003-03-18 20:41:34 +0000164
bellard7d132992003-03-06 23:23:54 +0000165if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
166cat << EOF
167
168Usage: configure [options]
169Options: [defaults in brackets after descriptions]
170
171EOF
172echo "Standard options:"
173echo " --help print this message"
174echo " --prefix=PREFIX install in PREFIX [$prefix]"
bellard32ce6332003-04-11 00:16:16 +0000175echo " --interp-prefix=PREFIX where to find shared libraries, etc. [$interp_prefix]"
bellard7d132992003-03-06 23:23:54 +0000176echo ""
177echo "Advanced options (experts only):"
178echo " --source-path=PATH path of source code [$source_path]"
179echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
180echo " --cc=CC use C compiler CC [$cc]"
181echo " --make=MAKE use specified make [$make]"
bellard43ce4df2003-06-09 19:53:12 +0000182echo " --static enable static build [$static]"
bellard7d132992003-03-06 23:23:54 +0000183echo ""
184echo "NOTE: The object files are build at the place where configure is launched"
185exit 1
186fi
187
bellard43ce4df2003-06-09 19:53:12 +0000188echo "Install prefix $prefix"
189echo "Source path $source_path"
190echo "ELF interp prefix $interp_prefix"
191echo "C compiler $cc"
192echo "make $make"
193echo "host CPU $cpu"
194echo "Big Endian $bigendian"
195echo "target CPU $target_cpu"
196echo "gprof enabled $gprof"
197echo "static build $static"
bellard7d132992003-03-06 23:23:54 +0000198
199echo "Creating config.mak and config.h"
200
201echo "# Automatically generated by configure - do not modify" > config.mak
202echo "/* Automatically generated by configure - do not modify */" > $TMPH
203
204echo "prefix=$prefix" >> config.mak
bellard32ce6332003-04-11 00:16:16 +0000205echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix\"" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000206echo "MAKE=$make" >> config.mak
207echo "CC=$cc" >> config.mak
bellardca735202003-03-18 20:41:34 +0000208echo "GCC_MAJOR=$gcc_major" >> config.mak
bellard7d132992003-03-06 23:23:54 +0000209echo "HOST_CC=$host_cc" >> config.mak
210echo "AR=$ar" >> config.mak
211echo "STRIP=$strip -s -R .comment -R .note" >> config.mak
212echo "CFLAGS=$CFLAGS" >> config.mak
213echo "LDFLAGS=$LDFLAGS" >> config.mak
214if test "$cpu" = "x86" ; then
215 echo "ARCH=i386" >> config.mak
bellard295defa2003-04-07 21:31:29 +0000216 echo "#define HOST_I386 1" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000217elif test "$cpu" = "armv4l" ; then
218 echo "ARCH=arm" >> config.mak
bellard295defa2003-04-07 21:31:29 +0000219 echo "#define HOST_ARM 1" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000220elif test "$cpu" = "powerpc" ; then
bellard04369ff2003-03-20 22:33:23 +0000221 echo "ARCH=ppc" >> config.mak
bellard295defa2003-04-07 21:31:29 +0000222 echo "#define HOST_PPC 1" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000223elif test "$cpu" = "mips" ; then
bellard04369ff2003-03-20 22:33:23 +0000224 echo "ARCH=mips" >> config.mak
bellard295defa2003-04-07 21:31:29 +0000225 echo "#define HOST_MIPS 1" >> $TMPH
bellardfb3e5842003-03-29 17:32:36 +0000226elif test "$cpu" = "s390" ; then
227 echo "ARCH=s390" >> config.mak
bellard295defa2003-04-07 21:31:29 +0000228 echo "#define HOST_S390 1" >> $TMPH
229elif test "$cpu" = "alpha" ; then
230 echo "ARCH=alpha" >> config.mak
231 echo "#define HOST_ALPHA 1" >> $TMPH
bellardae228532003-05-13 18:59:59 +0000232elif test "$cpu" = "sparc" ; then
233 echo "ARCH=sparc" >> config.mak
234 echo "#define HOST_SPARC 1" >> $TMPH
235elif test "$cpu" = "sparc64" ; then
236 echo "ARCH=sparc64" >> config.mak
237 echo "#define HOST_SPARC64 1" >> $TMPH
bellarda8baa8c2003-04-29 20:53:31 +0000238elif test "$cpu" = "ia64" ; then
239 echo "ARCH=ia64" >> config.mak
240 echo "#define HOST_IA64 1" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000241else
242 echo "Unsupported CPU"
243 exit 1
244fi
245if test "$bigendian" = "yes" ; then
246 echo "WORDS_BIGENDIAN=yes" >> config.mak
247 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
248fi
249if test "$gprof" = "yes" ; then
250 echo "TARGET_GPROF=yes" >> config.mak
251 echo "#define HAVE_GPROF 1" >> $TMPH
252fi
bellard43ce4df2003-06-09 19:53:12 +0000253if test "$static" = "yes" ; then
254 echo "CONFIG_STATIC=yes" >> config.mak
255fi
bellard7d132992003-03-06 23:23:54 +0000256echo -n "VERSION=" >>config.mak
257head $source_path/VERSION >>config.mak
258echo "" >>config.mak
bellard3ef693a2003-03-23 20:17:16 +0000259echo -n "#define QEMU_VERSION \"" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000260head $source_path/VERSION >> $TMPH
261echo "\"" >> $TMPH
bellard7d132992003-03-06 23:23:54 +0000262
263# build tree in object directory if source path is different from current one
264if test "$source_path_used" = "yes" ; then
265 DIRS="tests"
266 FILES="Makefile tests/Makefile"
267 for dir in $DIRS ; do
268 mkdir -p $dir
269 done
270 for f in $FILES ; do
271 ln -sf $source_path/$f $f
272 done
273fi
274echo "SRC_PATH=$source_path" >> config.mak
275
276diff $TMPH config.h >/dev/null 2>&1
277if test $? -ne 0 ; then
278 mv -f $TMPH config.h
279else
280 echo "config.h is unchanged"
281fi
282
bellard1eb87252003-04-11 01:12:28 +0000283rm -f $TMPO $TMPC $TMPE $TMPS $TMPH