Statistics
| Branch: | Revision:

root / configure @ c20709aa

History | View | Annotate | Download (12.4 kB)

1
#!/bin/sh
2
#
3
# qemu configure script (c) 2003 Fabrice Bellard
4
#
5
# set temporary file name
6
if test ! -z "$TMPDIR" ; then
7
    TMPDIR1="${TMPDIR}"
8
elif test ! -z "$TEMPDIR" ; then
9
    TMPDIR1="${TEMPDIR}"
10
else
11
    TMPDIR1="/tmp"
12
fi
13

    
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"
18

    
19
# default parameters
20
prefix=""
21
interp_prefix="/usr/gnemul/qemu-%M"
22
static="no"
23
cross_prefix=""
24
cc="gcc"
25
host_cc="gcc"
26
ar="ar"
27
make="make"
28
strip="strip"
29
cpu=`uname -m`
30
target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-softmmu"
31
case "$cpu" in
32
  i386|i486|i586|i686|i86pc|BePC)
33
    cpu="i386"
34
  ;;
35
  armv4l)
36
    cpu="armv4l"
37
  ;;
38
  alpha)
39
    cpu="alpha"
40
  ;;
41
  "Power Macintosh"|ppc|ppc64)
42
    cpu="powerpc"
43
  ;;
44
  mips)
45
    cpu="mips"
46
  ;;
47
  s390)
48
    cpu="s390"
49
  ;;
50
  sparc)
51
    cpu="sparc"
52
  ;;
53
  sparc64)
54
    cpu="sparc64"
55
  ;;
56
  ia64)
57
    cpu="ia64"
58
  ;;
59
  m68k)
60
    cpu="m68k"
61
  ;;
62
  x86_64|amd64)
63
    cpu="amd64"
64
  ;;
65
  *)
66
    cpu="unknown"
67
  ;;
68
esac
69
gprof="no"
70
bigendian="no"
71
mingw32="no"
72
EXESUF=""
73
gdbstub="yes"
74
slirp="no"
75

    
76
# OS specific
77
targetos=`uname -s`
78
case $targetos in
79
MINGW32*)
80
mingw32="yes"
81
;;
82
*) ;;
83
esac
84

    
85
# find source path
86
# XXX: we assume an absolute path is given when launching configure, 
87
# except in './configure' case.
88
source_path=${0%configure}
89
source_path=${source_path%/}
90
source_path_used="yes"
91
if test -z "$source_path" -o "$source_path" = "." ; then
92
    source_path=`pwd`
93
    source_path_used="no"
94
fi
95

    
96
for opt do
97
  case "$opt" in
98
  --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
99
  ;;
100
  --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2`
101
  ;;
102
  --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
103
  ;;
104
  --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
105
  ;;
106
  --cc=*) cc=`echo $opt | cut -d '=' -f 2`
107
  ;;
108
  --make=*) make=`echo $opt | cut -d '=' -f 2`
109
  ;;
110
  --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
111
  ;;
112
  --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}"
113
  ;;
114
  --extra-libs=*) extralibs=${opt#--extra-libs=}
115
  ;;
116
  --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
117
  ;;
118
  --target-list=*) target_list=${opt#--target-list=}
119
  ;;
120
  --enable-gprof) gprof="yes"
121
  ;;
122
  --static) static="yes"
123
  ;;
124
  --disable-sdl) sdl="no"
125
  ;;
126
  --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
127
  ;; 
128
  --enable-slirp) slirp="yes"
129
  ;; 
130
  esac
131
done
132

    
133
# Checking for CFLAGS
134
if test -z "$CFLAGS"; then
135
    CFLAGS="-O2"
136
fi
137

    
138
cc="${cross_prefix}${cc}"
139
ar="${cross_prefix}${ar}"
140
strip="${cross_prefix}${strip}"
141

    
142
if test "$mingw32" = "yes" ; then
143
    target_list="i386-softmmu"
144
    EXESUF=".exe"
145
    gdbstub="no"
146
fi
147

    
148
if test -z "$cross_prefix" ; then
149

    
150
# ---
151
# big/little endian test
152
cat > $TMPC << EOF
153
#include <inttypes.h>
154
int main(int argc, char ** argv){
155
	volatile uint32_t i=0x01234567;
156
	return (*((uint8_t*)(&i))) == 0x67;
157
}
158
EOF
159

    
160
if $cc -o $TMPE $TMPC 2>/dev/null ; then
161
$TMPE && bigendian="yes"
162
else
163
echo big/little test failed
164
fi
165

    
166
else
167

    
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
170
    bigendian="yes"
171
fi
172

    
173
fi
174

    
175
# check gcc options support
176
cat > $TMPC <<EOF
177
int main(void) {
178
}
179
EOF
180

    
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"
184
fi
185

    
186
##########################################
187
# SDL probe
188

    
189
sdl_too_old=no
190

    
191
if test -z "$sdl" ; then
192

    
193
sdl_config="sdl-config"
194
sdl=no
195

    
196
if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then
197
# win32 cross compilation case
198
    sdl_config="i386-mingw32msvc-sdl-config"
199
    sdl=yes
200
else
201
# normal SDL probe
202
cat > $TMPC << EOF
203
#include <SDL.h>
204
#undef main /* We don't want SDL to override our main() */
205
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
206
EOF
207

    
208
if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /dev/null ; then
209
_sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
210
if test "$_sdlversion" -lt 121 ; then
211
sdl_too_old=yes
212
else
213
sdl=yes
214
fi
215
fi
216

    
217
fi # cross compilation
218
fi # -z $sdl
219

    
220
if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
221
cat << EOF
222

    
223
Usage: configure [options]
224
Options: [defaults in brackets after descriptions]
225

    
226
EOF
227
echo "Standard options:"
228
echo "  --help                   print this message"
229
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
230
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
231
echo "                           use %M for cpu name [$interp_prefix]"
232
echo "  --target-list=LIST       set target list [$target_list]"
233
echo ""
234
echo "Advanced options (experts only):"
235
echo "  --source-path=PATH       path of source code [$source_path]"
236
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
237
echo "  --cc=CC                  use C compiler CC [$cc]"
238
echo "  --make=MAKE              use specified make [$make]"
239
echo "  --static                 enable static build [$static]"
240
echo "  --enable-mingw32         enable Win32 cross compilation with mingw32"
241
echo ""
242
echo "NOTE: The object files are build at the place where configure is launched"
243
exit 1
244
fi
245

    
246
if test "$mingw32" = "yes" ; then
247
if test -z "$prefix" ; then
248
    prefix="/c/Program Files/Qemu"
249
fi
250
mandir="$prefix"
251
sharedir="$prefix"
252
bindir="$prefix"
253
else
254
if test -z "$prefix" ; then
255
    prefix="/usr/local"
256
fi
257
mandir="$prefix/share/man"
258
sharedir="$prefix/share/qemu"
259
bindir="$prefix/bin"
260
fi
261

    
262
echo "Install prefix    $prefix"
263
echo "BIOS directory    $sharedir"
264
echo "binary directory  $bindir"
265
if test "$mingw32" = "no" ; then
266
echo "Manual directory  $mandir"
267
echo "ELF interp prefix $interp_prefix"
268
fi
269
echo "Source path       $source_path"
270
echo "C compiler        $cc"
271
echo "make              $make"
272
echo "host CPU          $cpu"
273
echo "host big endian   $bigendian"
274
echo "target list       $target_list"
275
echo "gprof enabled     $gprof"
276
echo "static build      $static"
277
echo "SDL support       $sdl"
278
echo "mingw32 support   $mingw32"
279

    
280
if test $sdl_too_old = "yes"; then
281
echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
282
fi
283

    
284
config_mak="config-host.mak"
285
config_h="config-host.h"
286

    
287
echo "Creating $config_mak and $config_h"
288

    
289
echo "# Automatically generated by configure - do not modify" > $config_mak
290
echo "/* Automatically generated by configure - do not modify */" > $config_h
291

    
292
echo "prefix=$prefix" >> $config_mak
293
echo "bindir=$bindir" >> $config_mak
294
echo "mandir=$mandir" >> $config_mak
295
echo "sharedir=$sharedir" >> $config_mak
296
echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h
297
echo "MAKE=$make" >> $config_mak
298
echo "CC=$cc" >> $config_mak
299
if test "$have_gcc3_options" = "yes" ; then
300
  echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak
301
fi
302
echo "HOST_CC=$host_cc" >> $config_mak
303
echo "AR=$ar" >> $config_mak
304
echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
305
echo "CFLAGS=$CFLAGS" >> $config_mak
306
echo "LDFLAGS=$LDFLAGS" >> $config_mak
307
echo "EXESUF=$EXESUF" >> $config_mak
308
if test "$cpu" = "i386" ; then
309
  echo "ARCH=i386" >> $config_mak
310
  echo "#define HOST_I386 1" >> $config_h
311
elif test "$cpu" = "amd64" ; then
312
  echo "ARCH=amd64" >> $config_mak
313
  echo "#define HOST_AMD64 1" >> $config_h
314
elif test "$cpu" = "armv4l" ; then
315
  echo "ARCH=arm" >> $config_mak
316
  echo "#define HOST_ARM 1" >> $config_h
317
elif test "$cpu" = "powerpc" ; then
318
  echo "ARCH=ppc" >> $config_mak
319
  echo "#define HOST_PPC 1" >> $config_h
320
elif test "$cpu" = "mips" ; then
321
  echo "ARCH=mips" >> $config_mak
322
  echo "#define HOST_MIPS 1" >> $config_h
323
elif test "$cpu" = "s390" ; then
324
  echo "ARCH=s390" >> $config_mak
325
  echo "#define HOST_S390 1" >> $config_h
326
elif test "$cpu" = "alpha" ; then
327
  echo "ARCH=alpha" >> $config_mak
328
  echo "#define HOST_ALPHA 1" >> $config_h
329
elif test "$cpu" = "sparc" ; then
330
  echo "ARCH=sparc" >> $config_mak
331
  echo "#define HOST_SPARC 1" >> $config_h
332
elif test "$cpu" = "sparc64" ; then
333
  echo "ARCH=sparc64" >> $config_mak
334
  echo "#define HOST_SPARC64 1" >> $config_h
335
elif test "$cpu" = "ia64" ; then
336
  echo "ARCH=ia64" >> $config_mak
337
  echo "#define HOST_IA64 1" >> $config_h
338
elif test "$cpu" = "m68k" ; then
339
  echo "ARCH=m68k" >> $config_mak
340
  echo "#define HOST_M68K 1" >> $config_h
341
else
342
  echo "Unsupported CPU"
343
  exit 1
344
fi
345
if test "$bigendian" = "yes" ; then
346
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
347
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
348
fi
349
if test "$mingw32" = "yes" ; then
350
  echo "CONFIG_WIN32=yes" >> $config_mak
351
  echo "#define CONFIG_WIN32 1" >> $config_h
352
else
353
  echo "#define HAVE_BYTESWAP_H 1" >> $config_h
354
fi
355
if test "$gdbstub" = "yes" ; then
356
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
357
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
358
fi
359
if test "$gprof" = "yes" ; then
360
  echo "TARGET_GPROF=yes" >> $config_mak
361
  echo "#define HAVE_GPROF 1" >> $config_h
362
fi
363
if test "$static" = "yes" ; then
364
  echo "CONFIG_STATIC=yes" >> $config_mak
365
  echo "#define CONFIG_STATIC 1" >> $config_h
366
fi
367
if test "$sdl" = "yes" ; then
368
  echo "CONFIG_SDL=yes" >> $config_mak
369
  echo "#define CONFIG_SDL 1" >> $config_h
370
  echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
371
  aa="no"
372
  `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes"
373
  echo -n "SDL_STATIC_LIBS=`$sdl_config --static-libs`" >> $config_mak
374
  if [ "${aa}" = "yes" ] ; then
375
      echo -n " `aalib-config --libs`" >> $config_mak ;
376
  fi
377
  echo "" >> $config_mak
378
  echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
379
  if [ "${aa}" = "yes" ] ; then
380
      echo -n " `aalib-config --cflags`" >> $config_mak ;
381
  fi
382
  echo "" >> $config_mak
383
fi
384
if test "$slirp" = "yes" ; then
385
  echo "CONFIG_SLIRP=yes" >> $config_mak
386
  echo "#define CONFIG_SLIRP 1" >> $config_h
387
fi
388
echo -n "VERSION=" >>$config_mak
389
head $source_path/VERSION >>$config_mak
390
echo "" >>$config_mak
391
echo -n "#define QEMU_VERSION \"" >> $config_h
392
head $source_path/VERSION >> $config_h
393
echo "\"" >> $config_h
394

    
395
echo "SRC_PATH=$source_path" >> $config_mak
396
echo "TARGET_DIRS=$target_list" >> $config_mak
397

    
398
for target in $target_list; do 
399

    
400
target_dir="$target"
401
config_mak=$target_dir/config.mak
402
config_h=$target_dir/config.h
403
target_cpu=`echo $target | cut -d '-' -f 1`
404
target_bigendian="no"
405
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
406
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
407
target_softmmu="no"
408
if expr $target : '.*-softmmu' > /dev/null ; then
409
  target_softmmu="yes"
410
fi
411
target_user_only="no"
412
if expr $target : '.*-user' > /dev/null ; then
413
  target_user_only="yes"
414
fi
415

    
416
echo "Creating $config_mak, $config_h and $target_dir/Makefile"
417

    
418
mkdir -p $target_dir
419
if test "$target" = "arm-user" ; then
420
  mkdir -p $target_dir/nwfpe
421
fi
422

    
423
ln -sf $source_path/Makefile.target $target_dir/Makefile
424

    
425
echo "# Automatically generated by configure - do not modify" > $config_mak
426
echo "/* Automatically generated by configure - do not modify */" > $config_h
427

    
428

    
429
echo "include ../config-host.mak" >> $config_mak
430
echo "#include \"../config-host.h\"" >> $config_h
431

    
432
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
433
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
434

    
435
if test "$target_cpu" = "i386" ; then
436
  echo "TARGET_ARCH=i386" >> $config_mak
437
  echo "#define TARGET_ARCH \"i386\"" >> $config_h
438
  echo "#define TARGET_I386 1" >> $config_h
439
elif test "$target_cpu" = "arm" ; then
440
  echo "TARGET_ARCH=arm" >> $config_mak
441
  echo "#define TARGET_ARCH \"arm\"" >> $config_h
442
  echo "#define TARGET_ARM 1" >> $config_h
443
elif test "$target_cpu" = "sparc" ; then
444
  echo "TARGET_ARCH=sparc" >> $config_mak
445
  echo "#define TARGET_ARCH \"sparc\"" >> $config_h
446
  echo "#define TARGET_SPARC 1" >> $config_h
447
elif test "$target_cpu" = "ppc" ; then
448
  echo "TARGET_ARCH=ppc" >> $config_mak
449
  echo "#define TARGET_ARCH \"ppc\"" >> $config_h
450
  echo "#define TARGET_PPC 1" >> $config_h
451
else
452
  echo "Unsupported target CPU"
453
  exit 1
454
fi
455
if test "$target_bigendian" = "yes" ; then
456
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
457
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
458
fi
459
if test "$target_softmmu" = "yes" ; then
460
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
461
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
462
fi
463
if test "$target_user_only" = "yes" ; then
464
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
465
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
466
fi
467

    
468
done # for target in $targets
469

    
470
# build tree in object directory if source path is different from current one
471
if test "$source_path_used" = "yes" ; then
472
    DIRS="tests"
473
    FILES="Makefile tests/Makefile"
474
    for dir in $DIRS ; do
475
            mkdir -p $dir
476
    done
477
    for f in $FILES ; do
478
        ln -sf $source_path/$f $f
479
    done
480
fi
481

    
482
rm -f $TMPO $TMPC $TMPE $TMPS