blob: 6d25d20715861165a35495867cd53d3cf8c09eb0 [file] [log] [blame]
David 'Digit' Turner46be4872009-06-04 16:07:01 +02001#!/bin/sh
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08002#
3# this script is used to rebuild the Android emulator from sources
4# in the current directory. It also contains logic to speed up the
5# rebuild if it detects that you're using the Android build system
6#
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08007# here's the list of environment variables you can define before
8# calling this script to control it (besides options):
9#
10#
11
12# first, let's see which system we're running this on
13cd `dirname $0`
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080014
David 'Digit' Turner46be4872009-06-04 16:07:01 +020015# source common functions definitions
16. android/build/common.sh
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080017
18# Parse options
19OPTION_TARGETS=""
20OPTION_DEBUG=no
21OPTION_IGNORE_AUDIO=no
22OPTION_NO_PREBUILTS=no
23OPTION_TRY_64=no
24OPTION_HELP=no
David 'Digit' Turnerd68b4872009-07-24 16:33:05 +020025OPTION_DEBUG=no
David 'Digit' Turnerab873b72010-03-08 18:33:50 -080026OPTION_STATIC=no
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -070027OPTION_MINGW=no
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080028
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +020029GLES_INCLUDE=
30GLES_LIBS=
31GLES_SUPPORT=no
32GLES_PROBE=yes
33
David 'Digit' Turnere3650682010-12-22 14:44:19 +010034HOST_CC=${CC:-gcc}
35OPTION_CC=
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080036
David 'Digit' Turner5b2e7c42011-02-07 18:51:07 +010037TARGET_ARCH=arm
38
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080039for opt do
40 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41 case "$opt" in
42 --help|-h|-\?) OPTION_HELP=yes
43 ;;
44 --verbose)
45 if [ "$VERBOSE" = "yes" ] ; then
46 VERBOSE2=yes
47 else
48 VERBOSE=yes
49 fi
50 ;;
David 'Digit' Turnerd68b4872009-07-24 16:33:05 +020051 --debug) OPTION_DEBUG=yes
52 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +020053 --install=*) OPTION_TARGETS="$OPTION_TARGETS $optarg";
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080054 ;;
55 --sdl-config=*) SDL_CONFIG=$optarg
56 ;;
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -070057 --mingw) OPTION_MINGW=yes
58 ;;
David 'Digit' Turnere3650682010-12-22 14:44:19 +010059 --cc=*) OPTION_CC="$optarg"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080060 ;;
61 --no-strip) OPTION_NO_STRIP=yes
62 ;;
63 --debug) OPTION_DEBUG=yes
64 ;;
65 --ignore-audio) OPTION_IGNORE_AUDIO=yes
66 ;;
67 --no-prebuilts) OPTION_NO_PREBUILTS=yes
68 ;;
69 --try-64) OPTION_TRY_64=yes
70 ;;
David 'Digit' Turnerab873b72010-03-08 18:33:50 -080071 --static) OPTION_STATIC=yes
72 ;;
David 'Digit' Turner5b2e7c42011-02-07 18:51:07 +010073 --arch=*) TARGET_ARCH=$optarg
74 ;;
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +020075 --gles-include=*) GLES_INCLUDE=$optarg
76 GLES_SUPPORT=yes
77 ;;
78 --gles-libs=*) GLES_LIBS=$optarg
79 GLES_SUPPORT=yes
80 ;;
81 --no-gles) GLES_PROBE=no
82 ;;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080083 *)
84 echo "unknown option '$opt', use --help"
85 exit 1
86 esac
87done
88
89# Print the help message
90#
91if [ "$OPTION_HELP" = "yes" ] ; then
92 cat << EOF
93
94Usage: rebuild.sh [options]
95Options: [defaults in brackets after descriptions]
96EOF
97 echo "Standard options:"
98 echo " --help print this message"
99 echo " --install=FILEPATH copy emulator executable to FILEPATH [$TARGETS]"
David 'Digit' Turnere3650682010-12-22 14:44:19 +0100100 echo " --cc=PATH specify C compiler [$HOST_CC]"
David 'Digit' Turner5b2e7c42011-02-07 18:51:07 +0100101 echo " --arch=ARM specify target architecture [$TARGET_ARCH]"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800102 echo " --sdl-config=FILE use specific sdl-config script [$SDL_CONFIG]"
103 echo " --no-strip do not strip emulator executable"
104 echo " --debug enable debug (-O0 -g) build"
105 echo " --ignore-audio ignore audio messages (may build sound-less emulator)"
106 echo " --no-prebuilts do not use prebuilt libraries and compiler"
107 echo " --try-64 try to build a 64-bit executable (may crash)"
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700108 echo " --mingw build Windows executable on Linux"
David 'Digit' Turnerab873b72010-03-08 18:33:50 -0800109 echo " --static build a completely static executable"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800110 echo " --verbose verbose configuration"
David 'Digit' Turnerd68b4872009-07-24 16:33:05 +0200111 echo " --debug build debug version of the emulator"
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200112 echo " --gles-include=PATH specify path to GLES emulation headers"
113 echo " --gles-libs=PATH specify path to GLES emulation host libraries"
114 echo " --no-gles disable GLES emulation support"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800115 echo ""
116 exit 1
117fi
118
David 'Digit' Turnere3650682010-12-22 14:44:19 +0100119# On Linux, try to use our 32-bit prebuilt toolchain to generate binaries
120# that are compatible with Ubuntu 8.04
121if [ -z "$CC" -a -z "$OPTION_CC" -a "$HOST_OS" = linux -a "$OPTION_TRY_64" != "yes" ] ; then
122 HOST_CC=`dirname $0`/../../prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/bin/i686-linux-gcc
123 if [ -f "$HOST_CC" ] ; then
124 echo "Using prebuilt 32-bit toolchain: $HOST_CC"
125 CC="$HOST_CC"
126 fi
127fi
128
David 'Digit' Turnerba313e02011-02-09 16:01:53 +0100129echo "OPTION_CC='$OPTION_CC'"
130if [ -n "$OPTION_CC" ]; then
131 echo "Using specified C compiler: $OPTION_CC"
132 CC="$OPTION_CC"
133fi
134
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200135# we only support generating 32-bit binaris on 64-bit systems.
136# And we may need to add a -Wa,--32 to CFLAGS to let the assembler
137# generate 32-bit binaries on Linux x86_64.
138#
139if [ "$OPTION_TRY_64" != "yes" ] ; then
140 force_32bit_binaries
141fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800142
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200143case $OS in
144 linux-*)
145 TARGET_DLL_SUFFIX=.so
146 ;;
147 darwin-*)
148 TARGET_DLL_SUFFIX=.dylib
149 ;;
150 windows*)
151 TARGET_DLL_SUFFIX=.dll
152esac
153
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700154TARGET_OS=$OS
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200155if [ "$OPTION_MINGW" = "yes" ] ; then
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700156 enable_linux_mingw
157 TARGET_OS=windows
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200158 TARGET_DLL_SUFFIX=.dll
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700159else
160 enable_cygwin
161fi
162
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200163# Are we running in the Android build system ?
164check_android_build
165
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800166
167# Adjust a few things when we're building within the Android build
168# system:
169# - locate prebuilt directory
170# - locate and use prebuilt libraries
171# - copy the new binary to the correct location
172#
173if [ "$OPTION_NO_PREBUILTS" = "yes" ] ; then
174 IN_ANDROID_BUILD=no
175fi
176
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200177# This is the list of static and shared host libraries we need to link
178# against in order to support OpenGLES emulation properly. Note that in
179# the case of a standalone build, we will find these libraries inside the
180# platform build tree and copy them into objs/lib/ automatically, unless
181# you use --gles-libs to point explicitely to a different directory.
182#
183GLES_SHARED_LIBRARIES="libOpenglRender libGLES_CM_translator libGLES_V2_translator libEGL_translator"
184
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800185if [ "$IN_ANDROID_BUILD" = "yes" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200186 locate_android_prebuilt
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800187
188 # use ccache if USE_CCACHE is defined and the corresponding
189 # binary is available.
190 #
191 # note: located in PREBUILT/ccache/ccache in the new tree layout
192 # located in PREBUILT/ccache in the old one
193 #
194 if [ -n "$USE_CCACHE" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200195 CCACHE="$ANDROID_PREBUILT/ccache/ccache$EXE"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800196 if [ ! -f $CCACHE ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200197 CCACHE="$ANDROID_PREBUILT/ccache$EXE"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800198 fi
199 if [ -f $CCACHE ] ; then
200 CC="$CCACHE $CC"
201 fi
202 log "Prebuilt : CCACHE=$CCACHE"
203 fi
204
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800205 # finally ensure that our new binary is copied to the 'out'
206 # subdirectory as 'emulator'
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200207 HOST_BIN=$(get_android_abs_build_var HOST_OUT_EXECUTABLES)
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200208 if [ "$TARGET_OS" = "windows" ]; then
209 HOST_BIN=$(echo $HOST_BIN | sed "s%$OS/bin%windows/bin%")
210 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800211 if [ -n "$HOST_BIN" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200212 OPTION_TARGETS="$OPTION_TARGETS $HOST_BIN/emulator$EXE"
213 log "Targets : TARGETS=$OPTION_TARGETS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800214 fi
David 'Digit' Turnera383d022009-12-03 13:50:00 -0800215
216 # find the Android SDK Tools revision number
217 TOOLS_PROPS=$ANDROID_TOP/sdk/files/tools_source.properties
218 if [ -f $TOOLS_PROPS ] ; then
219 ANDROID_SDK_TOOLS_REVISION=`awk -F= '/Pkg.Revision/ { print $2; }' $TOOLS_PROPS 2> /dev/null`
220 log "Tools : Found tools revision number $ANDROID_SDK_TOOLS_REVISION"
221 else
222 log "Tools : Could not locate $TOOLS_PROPS !?"
223 fi
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200224
225 # Try to find the GLES emulation headers and libraries automatically
226 if [ "$GLES_PROBE" = "yes" ]; then
227 GLES_SUPPORT=yes
228 if [ -z "$GLES_INCLUDE" ]; then
229 log "GLES : Probing for headers"
230 GLES_INCLUDE=$ANDROID_TOP/development/tools/emulator/opengl/host/include
231 if [ -d "$GLES_INCLUDE" ]; then
232 log "GLES : Headers in $GLES_INCLUDE"
233 else
234 echo "Warning: Could not find OpenGLES emulation include dir: $GLES_INCLUDE"
235 echo "Disabling GLES emulation from this build!"
236 GLES_SUPPORT=no
237 fi
238 fi
239 if [ -z "$GLES_LIBS" ]; then
240 log "GLES : Probing for host libraries"
241 GLES_LIBS=$(dirname "$HOST_BIN")/lib
242 if [ -d "$GLES_LIBS" ]; then
243 echo "GLES : Libs in $GLES_LIBS"
244 else
245 echo "Warning: Could nof find OpenGLES emulation libraries in: $GLES_LIBS"
246 echo "Disabling GLES emulation from this build!"
247 GLES_SUPPORT=no
248 fi
249 fi
250 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800251fi # IN_ANDROID_BUILD = no
252
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200253if [ "$GLES_SUPPORT" = "yes" ]; then
254 if [ -z "$GLES_INCLUDE" -o -z "$GLES_LIBS" ]; then
255 echo "ERROR: You must use both --gles-include and --gles-libs at the same time!"
256 echo " Or use --no-gles to disable its support from this build."
257 exit 1
258 fi
259
260 GLES_HEADER=$GLES_INCLUDE/libOpenglRender/render_api.h
261 if [ ! -f "$GLES_HEADER" ]; then
262 echo "ERROR: Missing OpenGLES emulation header file: $GLES_HEADER"
263 echo "Please fix this by using --gles-include to point to the right directory!"
264 exit 1
265 fi
266
267 mkdir -p objs/lib
268
269 for lib in $GLES_SHARED_LIBRARIES; do
270 GLES_LIB=$GLES_LIBS/${lib}$TARGET_DLL_SUFFIX
271 if [ ! -f "$GLES_LIB" ]; then
272 echo "ERROR: Missing OpenGLES emulation host library: $GLES_LIB"
273 echo "Please fix this by using --gles-libs to point to the right directory!"
274 if [ "$IN_ANDROID_BUILD" = "true" ]; then
275 echo "You might also be missing the library because you forgot to rebuild the whole platform!"
276 fi
277 exit 1
278 fi
279 cp $GLES_LIB objs/lib
280 if [ $? != 0 ]; then
281 echo "ERROR: Could not find required OpenGLES emulation library: $GLES_LIB"
282 exit 1
283 else
284 log "GLES : Copying $GLES_LIB"
285 fi
286 done
287fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800288
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200289# we can build the emulator with Cygwin, so enable it
290enable_cygwin
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800291
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200292setup_toolchain
The Android Open Source Project92c73112009-03-05 14:34:31 -0800293
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800294###
295### SDL Probe
296###
297
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700298if [ -n "$SDL_CONFIG" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200299
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700300 # check that we can link statically with the library.
301 #
302 SDL_CFLAGS=`$SDL_CONFIG --cflags`
303 SDL_LIBS=`$SDL_CONFIG --static-libs`
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800304
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700305 # quick hack, remove the -D_GNU_SOURCE=1 of some SDL Cflags
David 'Digit' Turner826b9852011-06-01 15:28:14 +02003067 # since they break recent Mingw releases
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700307 SDL_CFLAGS=`echo $SDL_CFLAGS | sed -e s/-D_GNU_SOURCE=1//g`
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800308
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700309 log "SDL-probe : SDL_CFLAGS = $SDL_CFLAGS"
310 log "SDL-probe : SDL_LIBS = $SDL_LIBS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800311
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800312
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700313 EXTRA_CFLAGS="$SDL_CFLAGS"
314 EXTRA_LDFLAGS="$SDL_LIBS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800315
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700316 case "$OS" in
317 freebsd-*)
318 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -lpthread"
319 ;;
320 esac
Alexey Tarasov08823222009-09-01 02:07:51 +1100321
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700322 cat > $TMPC << EOF
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800323#include <SDL.h>
324#undef main
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200325int main( int argc, char** argv ) {
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200326 return SDL_Init (SDL_INIT_VIDEO);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800327}
328EOF
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700329 feature_check_link SDL_LINKING
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200330
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700331 if [ $SDL_LINKING != "yes" ] ; then
332 echo "You provided an explicit sdl-config script, but the corresponding library"
333 echo "cannot be statically linked with the Android emulator directly."
334 echo "Error message:"
335 cat $TMPL
336 clean_exit
337 fi
338 log "SDL-probe : static linking ok"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800339
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700340 # now, let's check that the SDL library has the special functions
341 # we added to our own sources
342 #
343 cat > $TMPC << EOF
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800344#include <SDL.h>
345#undef main
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200346int main( int argc, char** argv ) {
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700347 int x, y;
348 SDL_Rect r;
349 SDL_WM_GetPos(&x, &y);
350 SDL_WM_SetPos(x, y);
351 SDL_WM_GetMonitorDPI(&x, &y);
352 SDL_WM_GetMonitorRect(&r);
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200353 return SDL_Init (SDL_INIT_VIDEO);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800354}
355EOF
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700356 feature_check_link SDL_LINKING
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200357
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700358 if [ $SDL_LINKING != "yes" ] ; then
359 echo "You provided an explicit sdl-config script in SDL_CONFIG, but the"
360 echo "corresponding library doesn't have the patches required to link"
361 echo "with the Android emulator. Unsetting SDL_CONFIG will use the"
362 echo "sources bundled with the emulator instead"
363 echo "Error:"
364 cat $TMPL
365 clean_exit
366 fi
367
368 log "SDL-probe : extra features ok"
369 clean_temp
370
371 EXTRA_CFLAGS=
372 EXTRA_LDFLAGS=
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800373fi
374
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800375###
376### Audio subsystems probes
377###
378PROBE_COREAUDIO=no
379PROBE_ALSA=no
380PROBE_OSS=no
381PROBE_ESD=no
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700382PROBE_PULSEAUDIO=no
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800383PROBE_WINAUDIO=no
384
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700385case "$TARGET_OS" in
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800386 darwin*) PROBE_COREAUDIO=yes;
387 ;;
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700388 linux-*) PROBE_ALSA=yes; PROBE_OSS=yes; PROBE_ESD=yes; PROBE_PULSEAUDIO=yes;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800389 ;;
Alexey Tarasov08823222009-09-01 02:07:51 +1100390 freebsd-*) PROBE_OSS=yes;
391 ;;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800392 windows) PROBE_WINAUDIO=yes
393 ;;
394esac
395
396ORG_CFLAGS=$CFLAGS
397ORG_LDFLAGS=$LDFLAGS
398
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200399if [ "$OPTION_IGNORE_AUDIO" = "yes" ] ; then
400PROBE_ESD_ESD=no
401PROBE_ALSA=no
402PROBE_PULSEAUDIO=no
403fi
404
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700405# Probe a system library
406#
407# $1: Variable name (e.g. PROBE_ESD)
408# $2: Library name (e.g. "Alsa")
409# $3: Path to source file for probe program (e.g. android/config/check-alsa.c)
410# $4: Package name (e.g. libasound-dev)
411#
412probe_system_library ()
413{
414 if [ `var_value $1` = yes ] ; then
415 CFLAGS="$ORG_CFLAGS"
416 LDFLAGS="$ORG_LDFLAGS -ldl"
417 cp -f android/config/check-esd.c $TMPC
David 'Digit' Turnera7ef1ac2010-12-10 22:33:51 +0100418 compile
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700419 if [ $? = 0 ] ; then
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200420 log "AudioProbe : $2 seems to be usable on this system"
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700421 else
422 if [ "$OPTION_IGNORE_AUDIO" = no ] ; then
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200423 echo "The $2 development files do not seem to be installed on this system"
424 echo "Are you missing the $4 package ?"
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700425 echo "Correct the errors below and try again:"
426 cat $TMPL
427 clean_exit
428 fi
429 eval $1=no
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200430 log "AudioProbe : $2 seems to be UNUSABLE on this system !!"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800431 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800432 fi
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700433}
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800434
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700435probe_system_library PROBE_ESD ESounD android/config/check-esd.c libesd-dev
436probe_system_library PROBE_ALSA Alsa android/config/check-alsa.c libasound-dev
437probe_system_library PROBE_PULSEAUDIO PulseAudio android/config/check-pulseaudio.c libpulse-dev
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800438
439CFLAGS=$ORG_CFLAGS
440LDFLAGS=$ORG_LDFLAGS
441
442# create the objs directory that is going to contain all generated files
443# including the configuration ones
444#
445mkdir -p objs
446
447###
448### Compiler probe
449###
450
451####
452#### Host system probe
453####
454
455# because the previous version could be read-only
456rm -f $TMPC
457
458# check host endianess
459#
460HOST_BIGENDIAN=no
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700461if [ "$TARGET_OS" = "$OS" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800462cat > $TMPC << EOF
463#include <inttypes.h>
464int main(int argc, char ** argv){
465 volatile uint32_t i=0x01234567;
Marcus Comstedt17d31322010-10-05 21:54:12 +0200466 return (*((uint8_t*)(&i))) == 0x01;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800467}
468EOF
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200469feature_run_exec HOST_BIGENDIAN
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700470fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800471
472# check size of host long bits
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700473HOST_LONGBITS=32
474if [ "$TARGET_OS" = "$OS" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800475cat > $TMPC << EOF
476int main(void) {
477 return sizeof(void*)*8;
478}
479EOF
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200480feature_run_exec HOST_LONGBITS
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700481fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800482
483# check whether we have <byteswap.h>
484#
David Turnerb8fec3e2010-09-09 18:15:23 +0200485feature_check_header HAVE_BYTESWAP_H "<byteswap.h>"
486feature_check_header HAVE_MACHINE_BSWAP_H "<machine/bswap.h>"
487feature_check_header HAVE_FNMATCH_H "<fnmatch.h>"
David Turner80dd1262010-09-09 18:04:49 +0200488
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800489# Build the config.make file
490#
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200491
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200492case $TARGET_OS in
493 windows)
494 TARGET_EXEEXT=.exe
495 ;;
496 *)
497 TARGET_EXEEXT=
498 ;;
499esac
500
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200501create_config_mk
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700502echo "" >> $config_mk
Jun Nakajima334ab472011-02-02 23:49:59 -0800503if [ $TARGET_ARCH = arm ] ; then
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700504echo "TARGET_ARCH := arm" >> $config_mk
Jun Nakajima334ab472011-02-02 23:49:59 -0800505fi
506
507if [ $TARGET_ARCH = x86 ] ; then
508echo "TARGET_ARCH := x86" >> $config_mk
509fi
510
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700511echo "HOST_PREBUILT_TAG := $TARGET_OS" >> $config_mk
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200512echo "HOST_EXEEXT := $TARGET_EXEEXT" >> $config_mk
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700513echo "PREBUILT := $ANDROID_PREBUILT" >> $config_mk
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200514
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800515PWD=`pwd`
516echo "SRC_PATH := $PWD" >> $config_mk
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700517if [ -n "$SDL_CONFIG" ] ; then
David 'Digit' Turnera4026682011-08-24 12:54:01 +0200518echo "QEMU_SDL_CONFIG := $SDL_CONFIG" >> $config_mk
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700519fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800520echo "CONFIG_COREAUDIO := $PROBE_COREAUDIO" >> $config_mk
521echo "CONFIG_WINAUDIO := $PROBE_WINAUDIO" >> $config_mk
522echo "CONFIG_ESD := $PROBE_ESD" >> $config_mk
523echo "CONFIG_ALSA := $PROBE_ALSA" >> $config_mk
524echo "CONFIG_OSS := $PROBE_OSS" >> $config_mk
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700525echo "CONFIG_PULSEAUDIO := $PROBE_PULSEAUDIO" >> $config_mk
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800526echo "BUILD_STANDALONE_EMULATOR := true" >> $config_mk
David 'Digit' Turnerd68b4872009-07-24 16:33:05 +0200527if [ $OPTION_DEBUG = yes ] ; then
528 echo "BUILD_DEBUG_EMULATOR := true" >> $config_mk
529fi
David 'Digit' Turnerab873b72010-03-08 18:33:50 -0800530if [ $OPTION_STATIC = yes ] ; then
531 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
532fi
533
David 'Digit' Turnera383d022009-12-03 13:50:00 -0800534if [ -n "$ANDROID_SDK_TOOLS_REVISION" ] ; then
535 echo "ANDROID_SDK_TOOLS_REVISION := $ANDROID_SDK_TOOLS_REVISION" >> $config_mk
536fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800537
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700538if [ "$OPTION_MINGW" = "yes" ] ; then
539 echo "" >> $config_mk
540 echo "USE_MINGW := 1" >> $config_mk
541 echo "HOST_OS := windows" >> $config_mk
542fi
543
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200544if [ "$GLES_INCLUDE" -a "$GLES_LIBS" ]; then
545 echo "QEMU_OPENGLES_INCLUDE := $GLES_INCLUDE" >> $config_mk
546 echo "QEMU_OPENGLES_LIBS := $GLES_LIBS" >> $config_mk
547fi
548
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800549# Build the config-host.h file
550#
551config_h=objs/config-host.h
552echo "/* This file was autogenerated by '$PROGNAME' */" > $config_h
553echo "#define CONFIG_QEMU_SHAREDIR \"/usr/local/share/qemu\"" >> $config_h
554echo "#define HOST_LONG_BITS $HOST_LONGBITS" >> $config_h
555if [ "$HAVE_BYTESWAP_H" = "yes" ] ; then
David Turnerb8fec3e2010-09-09 18:15:23 +0200556 echo "#define CONFIG_BYTESWAP_H 1" >> $config_h
557fi
558if [ "$HAVE_MACHINE_BYTESWAP_H" = "yes" ] ; then
559 echo "#define CONFIG_MACHINE_BSWAP_H 1" >> $config_h
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800560fi
David Turner80dd1262010-09-09 18:04:49 +0200561if [ "$HAVE_FNMATCH_H" = "yes" ] ; then
562 echo "#define CONFIG_FNMATCH 1" >> $config_h
563fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800564echo "#define CONFIG_GDBSTUB 1" >> $config_h
565echo "#define CONFIG_SLIRP 1" >> $config_h
566echo "#define CONFIG_SKINS 1" >> $config_h
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200567echo "#define CONFIG_TRACE 1" >> $config_h
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700568
David 'Digit' Turner826b9852011-06-01 15:28:14 +0200569case "$TARGET_OS" in
570 windows)
571 echo "#define CONFIG_WIN32 1" >> $config_h
572 ;;
573 *)
574 echo "#define CONFIG_POSIX 1" >> $config_h
575 ;;
576esac
577
578case "$TARGET_OS" in
579 linux-*)
580 echo "#define CONFIG_KVM_GS_RESTORE 1" >> $config_h
581 ;;
582esac
583
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700584# only Linux has fdatasync()
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700585case "$TARGET_OS" in
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700586 linux-*)
587 echo "#define CONFIG_FDATASYNC 1" >> $config_h
588 ;;
589esac
590
David 'Digit' Turner280afa02011-05-11 17:37:44 +0200591case "$TARGET_OS" in
592 linux-*|darwin-*)
593 echo "#define CONFIG_MADVISE 1" >> $config_h
594 ;;
595esac
596
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800597# the -nand-limits options can only work on non-windows systems
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700598if [ "$TARGET_OS" != "windows" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800599 echo "#define CONFIG_NAND_LIMITS 1" >> $config_h
600fi
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700601echo "#define QEMU_VERSION \"0.10.50\"" >> $config_h
602echo "#define QEMU_PKGVERSION \"Android\"" >> $config_h
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800603case "$CPU" in
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200604 x86) CONFIG_CPU=I386
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800605 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200606 ppc) CONFIG_CPU=PPC
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800607 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200608 x86_64) CONFIG_CPU=X86_64
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800609 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200610 *) CONFIG_CPU=$CPU
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800611 ;;
612esac
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200613echo "#define HOST_$CONFIG_CPU 1" >> $config_h
Marcus Comstedt17d31322010-10-05 21:54:12 +0200614if [ "$HOST_BIGENDIAN" = "1" ] ; then
615 echo "#define HOST_WORDS_BIGENDIAN 1" >> $config_h
616fi
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200617BSD=0
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700618case "$TARGET_OS" in
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200619 linux-*) CONFIG_OS=LINUX
620 ;;
621 darwin-*) CONFIG_OS=DARWIN
622 BSD=1
623 ;;
Alexey Tarasov08823222009-09-01 02:07:51 +1100624 freebsd-*) CONFIG_OS=FREEBSD
625 BSD=1
626 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200627 windows*) CONFIG_OS=WIN32
628 ;;
629 *) CONFIG_OS=$OS
630esac
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700631
David 'Digit' Turnerab873b72010-03-08 18:33:50 -0800632if [ "$OPTION_STATIC" = "yes" ] ; then
633 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
634 echo "#define CONFIG_STATIC_EXECUTABLE 1" >> $config_h
635fi
636
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700637case $TARGET_OS in
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700638 linux-*|darwin-*)
David 'Digit' Turner3d66dc72010-01-27 18:18:41 -0800639 echo "#define CONFIG_IOVEC 1" >> $config_h
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700640 ;;
641esac
642
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200643echo "#define CONFIG_$CONFIG_OS 1" >> $config_h
644if [ $BSD = 1 ] ; then
David 'Digit' Turner2c538c82010-05-10 16:48:20 -0700645 echo "#define CONFIG_BSD 1" >> $config_h
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200646 echo "#define O_LARGEFILE 0" >> $config_h
647 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
648fi
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700649
David 'Digit' Turnere92bc562010-09-07 06:21:25 -0700650echo "#define CONFIG_ANDROID 1" >> $config_h
651
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200652if [ "$GLES_INCLUDE" -a "$GLES_LIBS" ]; then
653 echo "#define CONFIG_ANDROID_OPENGLES 1" >> $config_h
654fi
655
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800656log "Generate : $config_h"
657
658echo "Ready to go. Type 'make' to build emulator"