xref: /openbmc/qemu/configure (revision d9c4d1cc)
1#!/bin/sh
2#
3# qemu configure script (c) 2003 Fabrice Bellard
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
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"
19
20# default parameters
21prefix="/usr/local"
22interp_prefix="/usr/gnemul/qemu-i386"
23cross_prefix=""
24cc="gcc"
25host_cc="gcc"
26ar="ar"
27make="make"
28strip="strip"
29cpu=`uname -m`
30case "$cpu" in
31  i386|i486|i586|i686|i86pc|BePC)
32    cpu="x86"
33  ;;
34  armv4l)
35    cpu="armv4l"
36  ;;
37  alpha)
38    cpu="alpha"
39  ;;
40  "Power Macintosh"|ppc|ppc64)
41    cpu="powerpc"
42  ;;
43  mips)
44    cpu="mips"
45  ;;
46  s390)
47    cpu="s390"
48  ;;
49  *)
50    cpu="unknown"
51  ;;
52esac
53gprof="no"
54bigendian="no"
55
56# OS specific
57targetos=`uname -s`
58case $targetos in
59*) ;;
60esac
61
62# find source path
63# XXX: we assume an absolute path is given when launching configure,
64# except in './configure' case.
65source_path=${0%configure}
66source_path=${source_path%/}
67source_path_used="yes"
68if test -z "$source_path" -o "$source_path" = "." ; then
69    source_path=`pwd`
70    source_path_used="no"
71fi
72
73for opt do
74  case "$opt" in
75  --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
76  ;;
77  --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
78  ;;
79  --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
80  ;;
81  --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
82  ;;
83  --cc=*) cc=`echo $opt | cut -d '=' -f 2`
84  ;;
85  --make=*) make=`echo $opt | cut -d '=' -f 2`
86  ;;
87  --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
88  ;;
89  --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
90  ;;
91  --extra-libs=*) extralibs=${opt#--extra-libs=}
92  ;;
93  --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
94  ;;
95  --enable-gprof) gprof="yes"
96  ;;
97  esac
98done
99
100# Checking for CFLAGS
101if test -z "$CFLAGS"; then
102    CFLAGS="-O2"
103fi
104
105cc="${cross_prefix}${cc}"
106ar="${cross_prefix}${ar}"
107strip="${cross_prefix}${strip}"
108
109if test -z "$cross_prefix" ; then
110
111# ---
112# big/little endian test
113cat > $TMPC << EOF
114#include <inttypes.h>
115int main(int argc, char ** argv){
116	volatile uint32_t i=0x01234567;
117	return (*((uint8_t*)(&i))) == 0x67;
118}
119EOF
120
121if $cc -o $TMPE $TMPC 2>/dev/null ; then
122$TMPE && bigendian="yes"
123else
124echo big/little test failed
125fi
126
127else
128
129# if cross compiling, cannot launch a program, so make a static guess
130if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" ; then
131    bigendian="yes"
132fi
133
134fi
135
136# check gcc version
137cat > $TMPC <<EOF
138int main(void) {
139#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
140return 0;
141#else
142#error gcc < 3.2
143#endif
144}
145EOF
146
147gcc_major="2"
148if $cc -o $TMPO $TMPC 2> /dev/null ; then
149   gcc_major="3"
150fi
151
152if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
153cat << EOF
154
155Usage: configure [options]
156Options: [defaults in brackets after descriptions]
157
158EOF
159echo "Standard options:"
160echo "  --help                   print this message"
161echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
162echo "  --interp-prefix=PREFIX   where to find shared libraries, etc. [$interp_prefix]"
163echo ""
164echo "Advanced options (experts only):"
165echo "  --source-path=PATH       path of source code [$source_path]"
166echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
167echo "  --cc=CC                  use C compiler CC [$cc]"
168echo "  --make=MAKE              use specified make [$make]"
169echo ""
170echo "NOTE: The object files are build at the place where configure is launched"
171exit 1
172fi
173
174echo "Install prefix   $prefix"
175echo "Source path      $source_path"
176echo "C compiler       $cc"
177echo "make             $make"
178echo "CPU              $cpu"
179echo "Big Endian       $bigendian"
180echo "gprof enabled    $gprof"
181
182echo "Creating config.mak and config.h"
183
184echo "# Automatically generated by configure - do not modify" > config.mak
185echo "/* Automatically generated by configure - do not modify */" > $TMPH
186
187echo "prefix=$prefix" >> config.mak
188echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix\"" >> $TMPH
189echo "MAKE=$make" >> config.mak
190echo "CC=$cc" >> config.mak
191echo "GCC_MAJOR=$gcc_major" >> config.mak
192echo "HOST_CC=$host_cc" >> config.mak
193echo "AR=$ar" >> config.mak
194echo "STRIP=$strip -s -R .comment -R .note" >> config.mak
195echo "CFLAGS=$CFLAGS" >> config.mak
196echo "LDFLAGS=$LDFLAGS" >> config.mak
197if test "$cpu" = "x86" ; then
198  echo "ARCH=i386" >> config.mak
199  echo "#define HOST_I386 1" >> $TMPH
200elif test "$cpu" = "armv4l" ; then
201  echo "ARCH=arm" >> config.mak
202  echo "#define HOST_ARM 1" >> $TMPH
203elif test "$cpu" = "powerpc" ; then
204  echo "ARCH=ppc" >> config.mak
205  echo "#define HOST_PPC 1" >> $TMPH
206elif test "$cpu" = "mips" ; then
207  echo "ARCH=mips" >> config.mak
208  echo "#define HOST_MIPS 1" >> $TMPH
209elif test "$cpu" = "s390" ; then
210  echo "ARCH=s390" >> config.mak
211  echo "#define HOST_S390 1" >> $TMPH
212elif test "$cpu" = "alpha" ; then
213  echo "ARCH=alpha" >> config.mak
214  echo "#define HOST_ALPHA 1" >> $TMPH
215else
216  echo "Unsupported CPU"
217  exit 1
218fi
219if test "$bigendian" = "yes" ; then
220  echo "WORDS_BIGENDIAN=yes" >> config.mak
221  echo "#define WORDS_BIGENDIAN 1" >> $TMPH
222fi
223if test "$gprof" = "yes" ; then
224  echo "TARGET_GPROF=yes" >> config.mak
225  echo "#define HAVE_GPROF 1" >> $TMPH
226fi
227echo -n "VERSION=" >>config.mak
228head $source_path/VERSION >>config.mak
229echo "" >>config.mak
230echo -n "#define QEMU_VERSION \"" >> $TMPH
231head $source_path/VERSION >> $TMPH
232echo "\"" >> $TMPH
233
234# build tree in object directory if source path is different from current one
235if test "$source_path_used" = "yes" ; then
236    DIRS="tests"
237    FILES="Makefile tests/Makefile"
238    for dir in $DIRS ; do
239            mkdir -p $dir
240    done
241    for f in $FILES ; do
242        ln -sf $source_path/$f $f
243    done
244fi
245echo "SRC_PATH=$source_path" >> config.mak
246
247diff $TMPH config.h >/dev/null 2>&1
248if test $? -ne 0 ; then
249	mv -f $TMPH config.h
250else
251	echo "config.h is unchanged"
252fi
253
254rm -f $TMPO $TMPC $TMPE $TMPS $TMPH
255