]> git.proxmox.com Git - mirror_qemu.git/blame - configure
added missing link scripts
[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"
18TMPH="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.h"
7d13299d
FB
19
20# default parameters
21prefix="/usr/local"
32ce6337 22interp_prefix="/usr/gnemul/qemu-i386"
43ce4dfe 23static="no"
7d13299d
FB
24cross_prefix=""
25cc="gcc"
26host_cc="gcc"
27ar="ar"
28make="make"
29strip="strip"
a98fd896 30target_cpu="x86"
7d13299d
FB
31cpu=`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 ;;
295defa5 42 "Power Macintosh"|ppc|ppc64)
7d13299d
FB
43 cpu="powerpc"
44 ;;
45 mips)
46 cpu="mips"
47 ;;
fb3e5849
FB
48 s390)
49 cpu="s390"
50 ;;
ae228531
FB
51 sparc)
52 cpu="sparc"
53 ;;
54 sparc64)
55 cpu="sparc64"
56 ;;
a8baa8c5
FB
57 ia64)
58 cpu="ia64"
59 ;;
7d13299d
FB
60 *)
61 cpu="unknown"
62 ;;
63esac
64gprof="no"
65bigendian="no"
66
67# OS specific
68targetos=`uname -s`
69case $targetos in
7d13299d
FB
70*) ;;
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 ;;
32ce6337
FB
88 --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
89 ;;
7d13299d
FB
90 --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 ;;
43ce4dfe
FB
108 --static) static="yes"
109 ;;
7d13299d
FB
110 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
ae228531 143if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64"; then
7d13299d
FB
144 bigendian="yes"
145fi
146
147fi
148
ca735206 149# check gcc version
04369ff2
FB
150cat > $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
ca735206 160gcc_major="2"
04369ff2
FB
161if $cc -o $TMPO $TMPC 2> /dev/null ; then
162 gcc_major="3"
163fi
ca735206 164
7d13299d
FB
165if 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]"
32ce6337 175echo " --interp-prefix=PREFIX where to find shared libraries, etc. [$interp_prefix]"
7d13299d
FB
176echo ""
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]"
43ce4dfe 182echo " --static enable static build [$static]"
7d13299d
FB
183echo ""
184echo "NOTE: The object files are build at the place where configure is launched"
185exit 1
186fi
187
43ce4dfe
FB
188echo "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"
7d13299d
FB
198
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
32ce6337 205echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix\"" >> $TMPH
7d13299d
FB
206echo "MAKE=$make" >> config.mak
207echo "CC=$cc" >> config.mak
ca735206 208echo "GCC_MAJOR=$gcc_major" >> config.mak
7d13299d
FB
209echo "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
295defa5 216 echo "#define HOST_I386 1" >> $TMPH
7d13299d
FB
217elif test "$cpu" = "armv4l" ; then
218 echo "ARCH=arm" >> config.mak
295defa5 219 echo "#define HOST_ARM 1" >> $TMPH
7d13299d 220elif test "$cpu" = "powerpc" ; then
04369ff2 221 echo "ARCH=ppc" >> config.mak
295defa5 222 echo "#define HOST_PPC 1" >> $TMPH
7d13299d 223elif test "$cpu" = "mips" ; then
04369ff2 224 echo "ARCH=mips" >> config.mak
295defa5 225 echo "#define HOST_MIPS 1" >> $TMPH
fb3e5849
FB
226elif test "$cpu" = "s390" ; then
227 echo "ARCH=s390" >> config.mak
295defa5
FB
228 echo "#define HOST_S390 1" >> $TMPH
229elif test "$cpu" = "alpha" ; then
230 echo "ARCH=alpha" >> config.mak
231 echo "#define HOST_ALPHA 1" >> $TMPH
ae228531
FB
232elif 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
a8baa8c5
FB
238elif test "$cpu" = "ia64" ; then
239 echo "ARCH=ia64" >> config.mak
240 echo "#define HOST_IA64 1" >> $TMPH
7d13299d
FB
241else
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
43ce4dfe
FB
253if test "$static" = "yes" ; then
254 echo "CONFIG_STATIC=yes" >> config.mak
255fi
7d13299d
FB
256echo -n "VERSION=" >>config.mak
257head $source_path/VERSION >>config.mak
258echo "" >>config.mak
3ef693a0 259echo -n "#define QEMU_VERSION \"" >> $TMPH
7d13299d
FB
260head $source_path/VERSION >> $TMPH
261echo "\"" >> $TMPH
7d13299d
FB
262
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
1eb87257 283rm -f $TMPO $TMPC $TMPE $TMPS $TMPH