3 # qemu configure script (c) 2003 Fabrice Bellard
5 # set temporary file name
6 if test ! -z "$TMPDIR" ; then
8 elif test ! -z "$TEMPDIR" ; then
14 TMPC
="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15 TMPO
="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16 TMPE
="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17 TMPS
="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
21 interp_prefix
="/usr/gnemul/qemu-%M"
30 target_list
="i386-user i386 i386-softmmu arm-user sparc-user"
32 i386|i486|i586|i686|i86pc|BePC
)
41 "Power Macintosh"|ppc|ppc64
)
75 ##########################################
80 #undef main /* We don't want SDL to override our main() */
81 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
86 if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` 2> /dev
/null
; then
87 _sdlversion
=`sdl-config --version | sed 's/[^0-9]//g'`
88 if test "$_sdlversion" -lt 121 ; then
96 # XXX: we assume an absolute path is given when launching configure,
97 # except in './configure' case.
98 source_path
=${0%configure}
99 source_path
=${source_path%/}
100 source_path_used
="yes"
101 if test -z "$source_path" -o "$source_path" = "." ; then
103 source_path_used
="no"
108 --prefix=*) prefix
=`echo $opt | cut -d '=' -f 2`
110 --interp-prefix=*) interp_prefix
=`echo $opt | cut -d '=' -f 2`
112 --source-path=*) source_path
=`echo $opt | cut -d '=' -f 2`
114 --cross-prefix=*) cross_prefix
=`echo $opt | cut -d '=' -f 2`
116 --cc=*) cc
=`echo $opt | cut -d '=' -f 2`
118 --make=*) make=`echo $opt | cut -d '=' -f 2`
120 --extra-cflags=*) CFLAGS
="${opt#--extra-cflags=}"
122 --extra-ldflags=*) LDFLAGS
="${opt#--extra-ldflags=}"
124 --extra-libs=*) extralibs
=${opt#--extra-libs=}
126 --cpu=*) cpu
=`echo $opt | cut -d '=' -f 2`
128 --target-list=*) target_list
=${opt#--target-list=}
130 --enable-gprof) gprof
="yes"
132 --static) static
="yes"
134 --disable-sdl) sdl
="no"
139 # Checking for CFLAGS
140 if test -z "$CFLAGS"; then
144 cc
="${cross_prefix}${cc}"
145 ar="${cross_prefix}${ar}"
146 strip
="${cross_prefix}${strip}"
148 if test -z "$cross_prefix" ; then
151 # big/little endian test
153 #include <inttypes.h>
154 int main(int argc, char ** argv){
155 volatile uint32_t i=0x01234567;
156 return (*((uint8_t*)(&i))) == 0x67;
160 if $cc -o $TMPE $TMPC 2>/dev
/null
; then
161 $TMPE && bigendian
="yes"
163 echo big
/little
test failed
168 # if cross compiling, cannot launch a program, so make a static guess
169 if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then
175 # check gcc options support
181 have_gcc3_options
="no"
182 if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev
/null
; then
183 have_gcc3_options
="yes"
186 if test x
"$1" = x
"-h" -o x
"$1" = x
"--help" ; then
189 Usage: configure [options]
190 Options: [defaults in brackets after descriptions]
193 echo "Standard options:"
194 echo " --help print this message"
195 echo " --prefix=PREFIX install in PREFIX [$prefix]"
196 echo " --interp-prefix=PREFIX where to find shared libraries, etc."
197 echo " use %M for cpu name [$interp_prefix]"
198 echo " --target-list=LIST set target list [$target_list]"
200 echo "Advanced options (experts only):"
201 echo " --source-path=PATH path of source code [$source_path]"
202 echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
203 echo " --cc=CC use C compiler CC [$cc]"
204 echo " --make=MAKE use specified make [$make]"
205 echo " --static enable static build [$static]"
207 echo "NOTE: The object files are build at the place where configure is launched"
211 mandir
="$prefix/share/man"
212 sharedir
="$prefix/share/qemu"
214 echo "Install prefix $prefix"
215 echo "Manual directory $mandir"
216 echo "BIOS directory $sharedir"
217 echo "ELF interp prefix $interp_prefix"
218 echo "Source path $source_path"
219 echo "C compiler $cc"
222 echo "host big endian $bigendian"
223 echo "target list $target_list"
224 echo "gprof enabled $gprof"
225 echo "static build $static"
226 echo "SDL support $sdl"
227 if test $sdl_too_old = "yes"; then
228 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
231 config_mak
="config-host.mak"
232 config_h
="config-host.h"
234 echo "Creating $config_mak and $config_h"
236 echo "# Automatically generated by configure - do not modify" > $config_mak
237 echo "/* Automatically generated by configure - do not modify */" > $config_h
239 echo "prefix=$prefix" >> $config_mak
240 echo "mandir=$mandir" >> $config_mak
241 echo "sharedir=$sharedir" >> $config_mak
242 echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h
243 echo "MAKE=$make" >> $config_mak
244 echo "CC=$cc" >> $config_mak
245 if test "$have_gcc3_options" = "yes" ; then
246 echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
248 echo "HOST_CC=$host_cc" >> $config_mak
249 echo "AR=$ar" >> $config_mak
250 echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
251 echo "CFLAGS=$CFLAGS" >> $config_mak
252 echo "LDFLAGS=$LDFLAGS" >> $config_mak
253 if test "$cpu" = "i386" ; then
254 echo "ARCH=i386" >> $config_mak
255 echo "#define HOST_I386 1" >> $config_h
256 elif test "$cpu" = "armv4l" ; then
257 echo "ARCH=arm" >> $config_mak
258 echo "#define HOST_ARM 1" >> $config_h
259 elif test "$cpu" = "powerpc" ; then
260 echo "ARCH=ppc" >> $config_mak
261 echo "#define HOST_PPC 1" >> $config_h
262 elif test "$cpu" = "mips" ; then
263 echo "ARCH=mips" >> $config_mak
264 echo "#define HOST_MIPS 1" >> $config_h
265 elif test "$cpu" = "s390" ; then
266 echo "ARCH=s390" >> $config_mak
267 echo "#define HOST_S390 1" >> $config_h
268 elif test "$cpu" = "alpha" ; then
269 echo "ARCH=alpha" >> $config_mak
270 echo "#define HOST_ALPHA 1" >> $config_h
271 elif test "$cpu" = "sparc" ; then
272 echo "ARCH=sparc" >> $config_mak
273 echo "#define HOST_SPARC 1" >> $config_h
274 elif test "$cpu" = "sparc64" ; then
275 echo "ARCH=sparc64" >> $config_mak
276 echo "#define HOST_SPARC64 1" >> $config_h
277 elif test "$cpu" = "ia64" ; then
278 echo "ARCH=ia64" >> $config_mak
279 echo "#define HOST_IA64 1" >> $config_h
280 elif test "$cpu" = "m68k" ; then
281 echo "ARCH=m68k" >> config.mak
282 echo "#define HOST_M68K 1" >> $TMPH
284 echo "Unsupported CPU"
287 if test "$bigendian" = "yes" ; then
288 echo "WORDS_BIGENDIAN=yes" >> $config_mak
289 echo "#define WORDS_BIGENDIAN 1" >> $config_h
291 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
292 if test "$gprof" = "yes" ; then
293 echo "TARGET_GPROF=yes" >> $config_mak
294 echo "#define HAVE_GPROF 1" >> $config_h
296 if test "$static" = "yes" ; then
297 echo "CONFIG_STATIC=yes" >> $config_mak
299 if test "$sdl" = "yes" ; then
300 echo "CONFIG_SDL=yes" >> $config_mak
301 echo "#define CONFIG_SDL 1" >> $config_h
302 echo "SDL_LIBS=`sdl-config --libs`" >> $config_mak
303 echo "SDL_CFLAGS=`sdl-config --cflags`" >> $config_mak
305 echo -n "VERSION=" >>$config_mak
306 head $source_path/VERSION
>>$config_mak
307 echo "" >>$config_mak
308 echo -n "#define QEMU_VERSION \"" >> $config_h
309 head $source_path/VERSION
>> $config_h
310 echo "\"" >> $config_h
312 echo "SRC_PATH=$source_path" >> $config_mak
313 echo "TARGET_DIRS=$target_list" >> $config_mak
315 for target
in $target_list; do
318 config_mak
=$target_dir/config.mak
319 config_h
=$target_dir/config.h
320 target_cpu
=`echo $target | cut -d '-' -f 1`
321 target_bigendian
="no"
322 [ "$target_cpu" = "sparc" ] && target_bigendian
=yes
324 if expr $target : '.*-softmmu' > /dev
/null
; then
327 target_user_only
="no"
328 if expr $target : '.*-user' > /dev
/null
; then
329 target_user_only
="yes"
332 echo "Creating $config_mak, $config_h and $target_dir/Makefile"
335 ln -sf $source_path/Makefile.target
$target_dir/Makefile
337 echo "# Automatically generated by configure - do not modify" > $config_mak
338 echo "/* Automatically generated by configure - do not modify */" > $config_h
341 echo "include ../config-host.mak" >> $config_mak
342 echo "#include \"../config-host.h\"" >> $config_h
344 interp_prefix1
=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
345 echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
347 if test "$target_cpu" = "i386" ; then
348 echo "TARGET_ARCH=i386" >> $config_mak
349 echo "#define TARGET_ARCH \"i386\"" >> $config_h
350 echo "#define TARGET_I386 1" >> $config_h
351 elif test "$target_cpu" = "arm" ; then
352 echo "TARGET_ARCH=arm" >> $config_mak
353 echo "#define TARGET_ARCH \"arm\"" >> $config_h
354 echo "#define TARGET_ARM 1" >> $config_h
355 elif test "$target_cpu" = "sparc" ; then
356 echo "TARGET_ARCH=sparc" >> $config_mak
357 echo "#define TARGET_ARCH \"sparc\"" >> $config_h
358 echo "#define TARGET_SPARC 1" >> $config_h
360 echo "Unsupported target CPU"
363 if test "$target_bigendian" = "yes" ; then
364 echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
365 echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
367 if test "$target_softmmu" = "yes" ; then
368 echo "CONFIG_SOFTMMU=yes" >> $config_mak
369 echo "#define CONFIG_SOFTMMU 1" >> $config_h
371 if test "$target_user_only" = "yes" ; then
372 echo "CONFIG_USER_ONLY=yes" >> $config_mak
373 echo "#define CONFIG_USER_ONLY 1" >> $config_h
376 done # for target in $targets
378 # build tree in object directory if source path is different from current one
379 if test "$source_path_used" = "yes" ; then
381 FILES
="Makefile tests/Makefile"
382 for dir
in $DIRS ; do
386 ln -sf $source_path/$f $f
390 rm -f $TMPO $TMPC $TMPE $TMPS