]>
Commit | Line | Data |
---|---|---|
7d13299d FB |
1 | #!/bin/sh |
2 | # | |
3ef693a0 | 3 | # qemu configure script (c) 2003 Fabrice Bellard |
7d13299d FB |
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 | ||
3ef693a0 FB |
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" | |
7d13299d FB |
18 | |
19 | # default parameters | |
20 | prefix="/usr/local" | |
1e43adfc | 21 | interp_prefix="/usr/gnemul/qemu-%M" |
43ce4dfe | 22 | static="no" |
7d13299d FB |
23 | cross_prefix="" |
24 | cc="gcc" | |
25 | host_cc="gcc" | |
26 | ar="ar" | |
27 | make="make" | |
28 | strip="strip" | |
29 | cpu=`uname -m` | |
67867308 | 30 | target_list="i386-user i386 i386-softmmu arm-user sparc-user ppc-user" |
7d13299d FB |
31 | case "$cpu" in |
32 | i386|i486|i586|i686|i86pc|BePC) | |
97a847bc | 33 | cpu="i386" |
7d13299d FB |
34 | ;; |
35 | armv4l) | |
36 | cpu="armv4l" | |
37 | ;; | |
38 | alpha) | |
39 | cpu="alpha" | |
40 | ;; | |
295defa5 | 41 | "Power Macintosh"|ppc|ppc64) |
7d13299d FB |
42 | cpu="powerpc" |
43 | ;; | |
44 | mips) | |
45 | cpu="mips" | |
46 | ;; | |
fb3e5849 FB |
47 | s390) |
48 | cpu="s390" | |
49 | ;; | |
ae228531 FB |
50 | sparc) |
51 | cpu="sparc" | |
52 | ;; | |
53 | sparc64) | |
54 | cpu="sparc64" | |
55 | ;; | |
a8baa8c5 FB |
56 | ia64) |
57 | cpu="ia64" | |
58 | ;; | |
38e584a0 FB |
59 | m68k) |
60 | cpu="m68k" | |
61 | ;; | |
bc51c5c9 FB |
62 | x86_64|amd64) |
63 | cpu="amd64" | |
64 | ;; | |
7d13299d FB |
65 | *) |
66 | cpu="unknown" | |
67 | ;; | |
68 | esac | |
69 | gprof="no" | |
70 | bigendian="no" | |
71 | ||
72 | # OS specific | |
73 | targetos=`uname -s` | |
74 | case $targetos in | |
7d13299d FB |
75 | *) ;; |
76 | esac | |
77 | ||
97a847bc FB |
78 | ########################################## |
79 | # SDL probe | |
80 | ||
81 | cat > $TMPC << EOF | |
82 | #include <SDL.h> | |
83 | #undef main /* We don't want SDL to override our main() */ | |
84 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
85 | EOF | |
86 | ||
87 | sdl_too_old=no | |
88 | sdl=no | |
89 | if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` 2> /dev/null ; then | |
90 | _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'` | |
91 | if test "$_sdlversion" -lt 121 ; then | |
92 | sdl_too_old=yes | |
93 | else | |
94 | sdl=yes | |
95 | fi | |
96 | fi | |
97 | ||
7d13299d FB |
98 | # find source path |
99 | # XXX: we assume an absolute path is given when launching configure, | |
100 | # except in './configure' case. | |
101 | source_path=${0%configure} | |
102 | source_path=${source_path%/} | |
103 | source_path_used="yes" | |
104 | if test -z "$source_path" -o "$source_path" = "." ; then | |
105 | source_path=`pwd` | |
106 | source_path_used="no" | |
107 | fi | |
108 | ||
109 | for opt do | |
110 | case "$opt" in | |
111 | --prefix=*) prefix=`echo $opt | cut -d '=' -f 2` | |
112 | ;; | |
32ce6337 FB |
113 | --interp-prefix=*) interp_prefix=`echo $opt | cut -d '=' -f 2` |
114 | ;; | |
7d13299d FB |
115 | --source-path=*) source_path=`echo $opt | cut -d '=' -f 2` |
116 | ;; | |
117 | --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2` | |
118 | ;; | |
119 | --cc=*) cc=`echo $opt | cut -d '=' -f 2` | |
120 | ;; | |
121 | --make=*) make=`echo $opt | cut -d '=' -f 2` | |
122 | ;; | |
123 | --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}" | |
124 | ;; | |
125 | --extra-ldflags=*) LDFLAGS="${opt#--extra-ldflags=}" | |
126 | ;; | |
127 | --extra-libs=*) extralibs=${opt#--extra-libs=} | |
128 | ;; | |
129 | --cpu=*) cpu=`echo $opt | cut -d '=' -f 2` | |
130 | ;; | |
97a847bc | 131 | --target-list=*) target_list=${opt#--target-list=} |
de83cd02 | 132 | ;; |
7d13299d FB |
133 | --enable-gprof) gprof="yes" |
134 | ;; | |
43ce4dfe FB |
135 | --static) static="yes" |
136 | ;; | |
97a847bc FB |
137 | --disable-sdl) sdl="no" |
138 | ;; | |
7d13299d FB |
139 | esac |
140 | done | |
141 | ||
142 | # Checking for CFLAGS | |
143 | if test -z "$CFLAGS"; then | |
144 | CFLAGS="-O2" | |
145 | fi | |
146 | ||
147 | cc="${cross_prefix}${cc}" | |
148 | ar="${cross_prefix}${ar}" | |
149 | strip="${cross_prefix}${strip}" | |
150 | ||
151 | if test -z "$cross_prefix" ; then | |
152 | ||
153 | # --- | |
154 | # big/little endian test | |
155 | cat > $TMPC << EOF | |
156 | #include <inttypes.h> | |
157 | int main(int argc, char ** argv){ | |
158 | volatile uint32_t i=0x01234567; | |
159 | return (*((uint8_t*)(&i))) == 0x67; | |
160 | } | |
161 | EOF | |
162 | ||
163 | if $cc -o $TMPE $TMPC 2>/dev/null ; then | |
164 | $TMPE && bigendian="yes" | |
165 | else | |
166 | echo big/little test failed | |
167 | fi | |
168 | ||
169 | else | |
170 | ||
171 | # if cross compiling, cannot launch a program, so make a static guess | |
38e584a0 | 172 | if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k"; then |
7d13299d FB |
173 | bigendian="yes" |
174 | fi | |
175 | ||
176 | fi | |
177 | ||
e8cd23de | 178 | # check gcc options support |
04369ff2 FB |
179 | cat > $TMPC <<EOF |
180 | int main(void) { | |
04369ff2 FB |
181 | } |
182 | EOF | |
183 | ||
e8cd23de FB |
184 | have_gcc3_options="no" |
185 | if $cc -fno-reorder-blocks -fno-optimize-sibling-calls -o $TMPO $TMPC 2> /dev/null ; then | |
186 | have_gcc3_options="yes" | |
04369ff2 | 187 | fi |
ca735206 | 188 | |
7d13299d FB |
189 | if test x"$1" = x"-h" -o x"$1" = x"--help" ; then |
190 | cat << EOF | |
191 | ||
192 | Usage: configure [options] | |
193 | Options: [defaults in brackets after descriptions] | |
194 | ||
195 | EOF | |
196 | echo "Standard options:" | |
197 | echo " --help print this message" | |
198 | echo " --prefix=PREFIX install in PREFIX [$prefix]" | |
1e43adfc FB |
199 | echo " --interp-prefix=PREFIX where to find shared libraries, etc." |
200 | echo " use %M for cpu name [$interp_prefix]" | |
97a847bc | 201 | echo " --target-list=LIST set target list [$target_list]" |
7d13299d FB |
202 | echo "" |
203 | echo "Advanced options (experts only):" | |
204 | echo " --source-path=PATH path of source code [$source_path]" | |
205 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" | |
206 | echo " --cc=CC use C compiler CC [$cc]" | |
207 | echo " --make=MAKE use specified make [$make]" | |
43ce4dfe | 208 | echo " --static enable static build [$static]" |
7d13299d FB |
209 | echo "" |
210 | echo "NOTE: The object files are build at the place where configure is launched" | |
211 | exit 1 | |
212 | fi | |
213 | ||
5a67135a FB |
214 | mandir="$prefix/share/man" |
215 | sharedir="$prefix/share/qemu" | |
216 | ||
43ce4dfe | 217 | echo "Install prefix $prefix" |
5a67135a FB |
218 | echo "Manual directory $mandir" |
219 | echo "BIOS directory $sharedir" | |
43ce4dfe | 220 | echo "ELF interp prefix $interp_prefix" |
5a67135a | 221 | echo "Source path $source_path" |
43ce4dfe FB |
222 | echo "C compiler $cc" |
223 | echo "make $make" | |
224 | echo "host CPU $cpu" | |
de83cd02 | 225 | echo "host big endian $bigendian" |
97a847bc | 226 | echo "target list $target_list" |
43ce4dfe FB |
227 | echo "gprof enabled $gprof" |
228 | echo "static build $static" | |
97a847bc FB |
229 | echo "SDL support $sdl" |
230 | if test $sdl_too_old = "yes"; then | |
231 | echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support" | |
232 | fi | |
233 | ||
234 | config_mak="config-host.mak" | |
235 | config_h="config-host.h" | |
7d13299d | 236 | |
97a847bc | 237 | echo "Creating $config_mak and $config_h" |
7d13299d | 238 | |
97a847bc FB |
239 | echo "# Automatically generated by configure - do not modify" > $config_mak |
240 | echo "/* Automatically generated by configure - do not modify */" > $config_h | |
7d13299d | 241 | |
97a847bc | 242 | echo "prefix=$prefix" >> $config_mak |
5a67135a FB |
243 | echo "mandir=$mandir" >> $config_mak |
244 | echo "sharedir=$sharedir" >> $config_mak | |
245 | echo "#define CONFIG_QEMU_SHAREDIR \"$sharedir\"" >> $config_h | |
97a847bc FB |
246 | echo "MAKE=$make" >> $config_mak |
247 | echo "CC=$cc" >> $config_mak | |
e8cd23de | 248 | if test "$have_gcc3_options" = "yes" ; then |
97a847bc | 249 | echo "HAVE_GCC3_OPTIONS=yes" >> $config_mak |
e8cd23de | 250 | fi |
97a847bc FB |
251 | echo "HOST_CC=$host_cc" >> $config_mak |
252 | echo "AR=$ar" >> $config_mak | |
253 | echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak | |
254 | echo "CFLAGS=$CFLAGS" >> $config_mak | |
255 | echo "LDFLAGS=$LDFLAGS" >> $config_mak | |
256 | if test "$cpu" = "i386" ; then | |
257 | echo "ARCH=i386" >> $config_mak | |
258 | echo "#define HOST_I386 1" >> $config_h | |
bc51c5c9 FB |
259 | elif test "$cpu" = "amd64" ; then |
260 | echo "ARCH=amd64" >> $config_mak | |
261 | echo "#define HOST_AMD64 1" >> $config_h | |
7d13299d | 262 | elif test "$cpu" = "armv4l" ; then |
97a847bc FB |
263 | echo "ARCH=arm" >> $config_mak |
264 | echo "#define HOST_ARM 1" >> $config_h | |
7d13299d | 265 | elif test "$cpu" = "powerpc" ; then |
97a847bc FB |
266 | echo "ARCH=ppc" >> $config_mak |
267 | echo "#define HOST_PPC 1" >> $config_h | |
7d13299d | 268 | elif test "$cpu" = "mips" ; then |
97a847bc FB |
269 | echo "ARCH=mips" >> $config_mak |
270 | echo "#define HOST_MIPS 1" >> $config_h | |
fb3e5849 | 271 | elif test "$cpu" = "s390" ; then |
97a847bc FB |
272 | echo "ARCH=s390" >> $config_mak |
273 | echo "#define HOST_S390 1" >> $config_h | |
295defa5 | 274 | elif test "$cpu" = "alpha" ; then |
97a847bc FB |
275 | echo "ARCH=alpha" >> $config_mak |
276 | echo "#define HOST_ALPHA 1" >> $config_h | |
ae228531 | 277 | elif test "$cpu" = "sparc" ; then |
97a847bc FB |
278 | echo "ARCH=sparc" >> $config_mak |
279 | echo "#define HOST_SPARC 1" >> $config_h | |
ae228531 | 280 | elif test "$cpu" = "sparc64" ; then |
97a847bc FB |
281 | echo "ARCH=sparc64" >> $config_mak |
282 | echo "#define HOST_SPARC64 1" >> $config_h | |
a8baa8c5 | 283 | elif test "$cpu" = "ia64" ; then |
97a847bc FB |
284 | echo "ARCH=ia64" >> $config_mak |
285 | echo "#define HOST_IA64 1" >> $config_h | |
38e584a0 | 286 | elif test "$cpu" = "m68k" ; then |
38ca2abc FB |
287 | echo "ARCH=m68k" >> $config_mak |
288 | echo "#define HOST_M68K 1" >> $config_h | |
7d13299d FB |
289 | else |
290 | echo "Unsupported CPU" | |
291 | exit 1 | |
292 | fi | |
293 | if test "$bigendian" = "yes" ; then | |
97a847bc FB |
294 | echo "WORDS_BIGENDIAN=yes" >> $config_mak |
295 | echo "#define WORDS_BIGENDIAN 1" >> $config_h | |
296 | fi | |
297 | echo "#define HAVE_BYTESWAP_H 1" >> $config_h | |
298 | if test "$gprof" = "yes" ; then | |
299 | echo "TARGET_GPROF=yes" >> $config_mak | |
300 | echo "#define HAVE_GPROF 1" >> $config_h | |
301 | fi | |
302 | if test "$static" = "yes" ; then | |
303 | echo "CONFIG_STATIC=yes" >> $config_mak | |
50863472 | 304 | echo "#define CONFIG_STATIC 1" >> $config_h |
7d13299d | 305 | fi |
97a847bc FB |
306 | if test "$sdl" = "yes" ; then |
307 | echo "CONFIG_SDL=yes" >> $config_mak | |
308 | echo "#define CONFIG_SDL 1" >> $config_h | |
309 | echo "SDL_LIBS=`sdl-config --libs`" >> $config_mak | |
590b7eed FB |
310 | aa="no" |
311 | `sdl-config --static-libs | grep \\\-laa > /dev/null` && aa="yes" | |
312 | echo -n "SDL_STATIC_LIBS=`sdl-config --static-libs`" >> $config_mak | |
313 | if [ "${aa}" = "yes" ] ; then | |
314 | echo -n " `aalib-config --libs`" >> $config_mak ; | |
315 | fi | |
316 | echo "" >> $config_mak | |
317 | echo -n "SDL_CFLAGS=`sdl-config --cflags`" >> $config_mak | |
318 | if [ "${aa}" = "yes" ] ; then | |
319 | echo -n " `aalib-config --cflags`" >> $config_mak ; | |
320 | fi | |
321 | echo "" >> $config_mak | |
97a847bc FB |
322 | fi |
323 | echo -n "VERSION=" >>$config_mak | |
324 | head $source_path/VERSION >>$config_mak | |
325 | echo "" >>$config_mak | |
326 | echo -n "#define QEMU_VERSION \"" >> $config_h | |
327 | head $source_path/VERSION >> $config_h | |
328 | echo "\"" >> $config_h | |
329 | ||
330 | echo "SRC_PATH=$source_path" >> $config_mak | |
331 | echo "TARGET_DIRS=$target_list" >> $config_mak | |
332 | ||
333 | for target in $target_list; do | |
334 | ||
335 | target_dir="$target" | |
336 | config_mak=$target_dir/config.mak | |
337 | config_h=$target_dir/config.h | |
338 | target_cpu=`echo $target | cut -d '-' -f 1` | |
339 | target_bigendian="no" | |
1e43adfc | 340 | [ "$target_cpu" = "sparc" ] && target_bigendian=yes |
67867308 | 341 | [ "$target_cpu" = "ppc" ] && target_bigendian=yes |
97a847bc FB |
342 | target_softmmu="no" |
343 | if expr $target : '.*-softmmu' > /dev/null ; then | |
344 | target_softmmu="yes" | |
345 | fi | |
997344f3 FB |
346 | target_user_only="no" |
347 | if expr $target : '.*-user' > /dev/null ; then | |
348 | target_user_only="yes" | |
349 | fi | |
97a847bc FB |
350 | |
351 | echo "Creating $config_mak, $config_h and $target_dir/Makefile" | |
352 | ||
353 | mkdir -p $target_dir | |
69de927c FB |
354 | if test "$target" = "arm-user" ; then |
355 | mkdir -p $target_dir/nwfpe | |
356 | fi | |
357 | ||
97a847bc FB |
358 | ln -sf $source_path/Makefile.target $target_dir/Makefile |
359 | ||
360 | echo "# Automatically generated by configure - do not modify" > $config_mak | |
361 | echo "/* Automatically generated by configure - do not modify */" > $config_h | |
362 | ||
de83cd02 | 363 | |
97a847bc FB |
364 | echo "include ../config-host.mak" >> $config_mak |
365 | echo "#include \"../config-host.h\"" >> $config_h | |
1e43adfc FB |
366 | |
367 | interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"` | |
368 | echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h | |
97a847bc FB |
369 | |
370 | if test "$target_cpu" = "i386" ; then | |
371 | echo "TARGET_ARCH=i386" >> $config_mak | |
372 | echo "#define TARGET_ARCH \"i386\"" >> $config_h | |
373 | echo "#define TARGET_I386 1" >> $config_h | |
de83cd02 | 374 | elif test "$target_cpu" = "arm" ; then |
97a847bc FB |
375 | echo "TARGET_ARCH=arm" >> $config_mak |
376 | echo "#define TARGET_ARCH \"arm\"" >> $config_h | |
377 | echo "#define TARGET_ARM 1" >> $config_h | |
1e43adfc FB |
378 | elif test "$target_cpu" = "sparc" ; then |
379 | echo "TARGET_ARCH=sparc" >> $config_mak | |
380 | echo "#define TARGET_ARCH \"sparc\"" >> $config_h | |
381 | echo "#define TARGET_SPARC 1" >> $config_h | |
67867308 FB |
382 | elif test "$target_cpu" = "ppc" ; then |
383 | echo "TARGET_ARCH=ppc" >> $config_mak | |
384 | echo "#define TARGET_ARCH \"ppc\"" >> $config_h | |
385 | echo "#define TARGET_PPC 1" >> $config_h | |
de83cd02 FB |
386 | else |
387 | echo "Unsupported target CPU" | |
388 | exit 1 | |
389 | fi | |
390 | if test "$target_bigendian" = "yes" ; then | |
97a847bc FB |
391 | echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak |
392 | echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h | |
de83cd02 | 393 | fi |
97a847bc FB |
394 | if test "$target_softmmu" = "yes" ; then |
395 | echo "CONFIG_SOFTMMU=yes" >> $config_mak | |
396 | echo "#define CONFIG_SOFTMMU 1" >> $config_h | |
43ce4dfe | 397 | fi |
997344f3 FB |
398 | if test "$target_user_only" = "yes" ; then |
399 | echo "CONFIG_USER_ONLY=yes" >> $config_mak | |
400 | echo "#define CONFIG_USER_ONLY 1" >> $config_h | |
401 | fi | |
97a847bc FB |
402 | |
403 | done # for target in $targets | |
7d13299d FB |
404 | |
405 | # build tree in object directory if source path is different from current one | |
406 | if test "$source_path_used" = "yes" ; then | |
407 | DIRS="tests" | |
408 | FILES="Makefile tests/Makefile" | |
409 | for dir in $DIRS ; do | |
410 | mkdir -p $dir | |
411 | done | |
412 | for f in $FILES ; do | |
413 | ln -sf $source_path/$f $f | |
414 | done | |
415 | fi | |
7d13299d | 416 | |
97a847bc | 417 | rm -f $TMPO $TMPC $TMPE $TMPS |