blob: 01fc2c417d6ce0a274913f50eaaf19ffb6f15238 [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
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700119# On Linux, try to use our prebuilt toolchain to generate binaries
David 'Digit' Turnere3650682010-12-22 14:44:19 +0100120# that are compatible with Ubuntu 8.04
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700121if [ -z "$CC" -a -z "$OPTION_CC" -a "$HOST_OS" = linux ] ; then
122 HOST_CC=`dirname $0`/../../prebuilts/tools/gcc-sdk/gcc
David 'Digit' Turnere3650682010-12-22 14:44:19 +0100123 if [ -f "$HOST_CC" ] ; then
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700124 echo "Using prebuilt toolchain: $HOST_CC"
David 'Digit' Turnere3650682010-12-22 14:44:19 +0100125 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
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700135if [ -z "$CC" ]; then
136 CC=$HOST_CC
137fi
138
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200139# we only support generating 32-bit binaris on 64-bit systems.
140# And we may need to add a -Wa,--32 to CFLAGS to let the assembler
141# generate 32-bit binaries on Linux x86_64.
142#
143if [ "$OPTION_TRY_64" != "yes" ] ; then
144 force_32bit_binaries
145fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800146
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200147case $OS in
148 linux-*)
149 TARGET_DLL_SUFFIX=.so
150 ;;
151 darwin-*)
152 TARGET_DLL_SUFFIX=.dylib
153 ;;
154 windows*)
155 TARGET_DLL_SUFFIX=.dll
156esac
157
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700158TARGET_OS=$OS
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200159if [ "$OPTION_MINGW" = "yes" ] ; then
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700160 enable_linux_mingw
161 TARGET_OS=windows
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200162 TARGET_DLL_SUFFIX=.dll
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700163else
164 enable_cygwin
165fi
166
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200167# Are we running in the Android build system ?
168check_android_build
169
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800170
171# Adjust a few things when we're building within the Android build
172# system:
173# - locate prebuilt directory
174# - locate and use prebuilt libraries
175# - copy the new binary to the correct location
176#
177if [ "$OPTION_NO_PREBUILTS" = "yes" ] ; then
178 IN_ANDROID_BUILD=no
179fi
180
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200181# This is the list of static and shared host libraries we need to link
182# against in order to support OpenGLES emulation properly. Note that in
183# the case of a standalone build, we will find these libraries inside the
184# platform build tree and copy them into objs/lib/ automatically, unless
185# you use --gles-libs to point explicitely to a different directory.
186#
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700187if [ "$OPTION_TRY_64" != "yes" ] ; then
188 GLES_SHARED_LIBRARIES="libOpenglRender libGLES_CM_translator libGLES_V2_translator libEGL_translator"
189else
190 GLES_SHARED_LIBRARIES="lib64OpenglRender lib64GLES_CM_translator lib64GLES_V2_translator lib64EGL_translator"
191fi
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200192
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800193if [ "$IN_ANDROID_BUILD" = "yes" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200194 locate_android_prebuilt
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800195
196 # use ccache if USE_CCACHE is defined and the corresponding
197 # binary is available.
198 #
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800199 if [ -n "$USE_CCACHE" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200200 CCACHE="$ANDROID_PREBUILT/ccache/ccache$EXE"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800201 if [ ! -f $CCACHE ] ; then
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700202 CCACHE="$ANDROID_PREBUILTS/ccache/ccache$EXE"
203 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800204 if [ -f $CCACHE ] ; then
205 CC="$CCACHE $CC"
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700206 log "Prebuilt : CCACHE=$CCACHE"
207 else
208 log "Prebuilt : CCACHE can't be found"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800209 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800210 fi
211
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800212 # finally ensure that our new binary is copied to the 'out'
213 # subdirectory as 'emulator'
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200214 HOST_BIN=$(get_android_abs_build_var HOST_OUT_EXECUTABLES)
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200215 if [ "$TARGET_OS" = "windows" ]; then
216 HOST_BIN=$(echo $HOST_BIN | sed "s%$OS/bin%windows/bin%")
217 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800218 if [ -n "$HOST_BIN" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200219 OPTION_TARGETS="$OPTION_TARGETS $HOST_BIN/emulator$EXE"
220 log "Targets : TARGETS=$OPTION_TARGETS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800221 fi
David 'Digit' Turnera383d022009-12-03 13:50:00 -0800222
223 # find the Android SDK Tools revision number
224 TOOLS_PROPS=$ANDROID_TOP/sdk/files/tools_source.properties
225 if [ -f $TOOLS_PROPS ] ; then
226 ANDROID_SDK_TOOLS_REVISION=`awk -F= '/Pkg.Revision/ { print $2; }' $TOOLS_PROPS 2> /dev/null`
227 log "Tools : Found tools revision number $ANDROID_SDK_TOOLS_REVISION"
228 else
229 log "Tools : Could not locate $TOOLS_PROPS !?"
230 fi
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200231
232 # Try to find the GLES emulation headers and libraries automatically
233 if [ "$GLES_PROBE" = "yes" ]; then
234 GLES_SUPPORT=yes
235 if [ -z "$GLES_INCLUDE" ]; then
236 log "GLES : Probing for headers"
Jesse Hall183e9272012-04-26 15:13:27 -0700237 GLES_INCLUDE=$ANDROID_TOP/sdk/emulator/opengl/host/include
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200238 if [ -d "$GLES_INCLUDE" ]; then
239 log "GLES : Headers in $GLES_INCLUDE"
240 else
241 echo "Warning: Could not find OpenGLES emulation include dir: $GLES_INCLUDE"
242 echo "Disabling GLES emulation from this build!"
243 GLES_SUPPORT=no
244 fi
245 fi
246 if [ -z "$GLES_LIBS" ]; then
247 log "GLES : Probing for host libraries"
248 GLES_LIBS=$(dirname "$HOST_BIN")/lib
249 if [ -d "$GLES_LIBS" ]; then
250 echo "GLES : Libs in $GLES_LIBS"
251 else
252 echo "Warning: Could nof find OpenGLES emulation libraries in: $GLES_LIBS"
253 echo "Disabling GLES emulation from this build!"
254 GLES_SUPPORT=no
255 fi
256 fi
257 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800258fi # IN_ANDROID_BUILD = no
259
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200260if [ "$GLES_SUPPORT" = "yes" ]; then
261 if [ -z "$GLES_INCLUDE" -o -z "$GLES_LIBS" ]; then
262 echo "ERROR: You must use both --gles-include and --gles-libs at the same time!"
263 echo " Or use --no-gles to disable its support from this build."
264 exit 1
265 fi
266
267 GLES_HEADER=$GLES_INCLUDE/libOpenglRender/render_api.h
268 if [ ! -f "$GLES_HEADER" ]; then
269 echo "ERROR: Missing OpenGLES emulation header file: $GLES_HEADER"
270 echo "Please fix this by using --gles-include to point to the right directory!"
271 exit 1
272 fi
273
274 mkdir -p objs/lib
275
276 for lib in $GLES_SHARED_LIBRARIES; do
277 GLES_LIB=$GLES_LIBS/${lib}$TARGET_DLL_SUFFIX
278 if [ ! -f "$GLES_LIB" ]; then
279 echo "ERROR: Missing OpenGLES emulation host library: $GLES_LIB"
280 echo "Please fix this by using --gles-libs to point to the right directory!"
281 if [ "$IN_ANDROID_BUILD" = "true" ]; then
282 echo "You might also be missing the library because you forgot to rebuild the whole platform!"
283 fi
284 exit 1
285 fi
286 cp $GLES_LIB objs/lib
287 if [ $? != 0 ]; then
288 echo "ERROR: Could not find required OpenGLES emulation library: $GLES_LIB"
289 exit 1
290 else
291 log "GLES : Copying $GLES_LIB"
292 fi
293 done
294fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800295
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200296# we can build the emulator with Cygwin, so enable it
297enable_cygwin
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800298
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200299setup_toolchain
The Android Open Source Project92c73112009-03-05 14:34:31 -0800300
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800301###
302### SDL Probe
303###
304
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700305if [ -n "$SDL_CONFIG" ] ; then
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200306
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700307 # check that we can link statically with the library.
308 #
309 SDL_CFLAGS=`$SDL_CONFIG --cflags`
310 SDL_LIBS=`$SDL_CONFIG --static-libs`
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800311
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700312 # quick hack, remove the -D_GNU_SOURCE=1 of some SDL Cflags
David 'Digit' Turner826b9852011-06-01 15:28:14 +02003137 # since they break recent Mingw releases
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700314 SDL_CFLAGS=`echo $SDL_CFLAGS | sed -e s/-D_GNU_SOURCE=1//g`
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800315
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700316 log "SDL-probe : SDL_CFLAGS = $SDL_CFLAGS"
317 log "SDL-probe : SDL_LIBS = $SDL_LIBS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800318
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800319
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700320 EXTRA_CFLAGS="$SDL_CFLAGS"
321 EXTRA_LDFLAGS="$SDL_LIBS"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800322
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700323 case "$OS" in
324 freebsd-*)
325 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -lpthread"
326 ;;
327 esac
Alexey Tarasov08823222009-09-01 02:07:51 +1100328
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700329 cat > $TMPC << EOF
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800330#include <SDL.h>
331#undef main
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200332int main( int argc, char** argv ) {
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200333 return SDL_Init (SDL_INIT_VIDEO);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800334}
335EOF
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700336 feature_check_link SDL_LINKING
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200337
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700338 if [ $SDL_LINKING != "yes" ] ; then
339 echo "You provided an explicit sdl-config script, but the corresponding library"
340 echo "cannot be statically linked with the Android emulator directly."
341 echo "Error message:"
342 cat $TMPL
343 clean_exit
344 fi
345 log "SDL-probe : static linking ok"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800346
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700347 # now, let's check that the SDL library has the special functions
348 # we added to our own sources
349 #
350 cat > $TMPC << EOF
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800351#include <SDL.h>
352#undef main
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200353int main( int argc, char** argv ) {
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700354 int x, y;
355 SDL_Rect r;
356 SDL_WM_GetPos(&x, &y);
357 SDL_WM_SetPos(x, y);
358 SDL_WM_GetMonitorDPI(&x, &y);
359 SDL_WM_GetMonitorRect(&r);
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200360 return SDL_Init (SDL_INIT_VIDEO);
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800361}
362EOF
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700363 feature_check_link SDL_LINKING
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200364
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700365 if [ $SDL_LINKING != "yes" ] ; then
366 echo "You provided an explicit sdl-config script in SDL_CONFIG, but the"
367 echo "corresponding library doesn't have the patches required to link"
368 echo "with the Android emulator. Unsetting SDL_CONFIG will use the"
369 echo "sources bundled with the emulator instead"
370 echo "Error:"
371 cat $TMPL
372 clean_exit
373 fi
374
375 log "SDL-probe : extra features ok"
376 clean_temp
377
378 EXTRA_CFLAGS=
379 EXTRA_LDFLAGS=
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800380fi
381
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800382###
383### Audio subsystems probes
384###
385PROBE_COREAUDIO=no
386PROBE_ALSA=no
387PROBE_OSS=no
388PROBE_ESD=no
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700389PROBE_PULSEAUDIO=no
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800390PROBE_WINAUDIO=no
391
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700392case "$TARGET_OS" in
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800393 darwin*) PROBE_COREAUDIO=yes;
394 ;;
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700395 linux-*) PROBE_ALSA=yes; PROBE_OSS=yes; PROBE_ESD=yes; PROBE_PULSEAUDIO=yes;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800396 ;;
Alexey Tarasov08823222009-09-01 02:07:51 +1100397 freebsd-*) PROBE_OSS=yes;
398 ;;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800399 windows) PROBE_WINAUDIO=yes
400 ;;
401esac
402
403ORG_CFLAGS=$CFLAGS
404ORG_LDFLAGS=$LDFLAGS
405
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200406if [ "$OPTION_IGNORE_AUDIO" = "yes" ] ; then
407PROBE_ESD_ESD=no
408PROBE_ALSA=no
409PROBE_PULSEAUDIO=no
410fi
411
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700412# Probe a system library
413#
414# $1: Variable name (e.g. PROBE_ESD)
415# $2: Library name (e.g. "Alsa")
416# $3: Path to source file for probe program (e.g. android/config/check-alsa.c)
417# $4: Package name (e.g. libasound-dev)
418#
419probe_system_library ()
420{
421 if [ `var_value $1` = yes ] ; then
422 CFLAGS="$ORG_CFLAGS"
423 LDFLAGS="$ORG_LDFLAGS -ldl"
424 cp -f android/config/check-esd.c $TMPC
David 'Digit' Turnera7ef1ac2010-12-10 22:33:51 +0100425 compile
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700426 if [ $? = 0 ] ; then
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200427 log "AudioProbe : $2 seems to be usable on this system"
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700428 else
429 if [ "$OPTION_IGNORE_AUDIO" = no ] ; then
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200430 echo "The $2 development files do not seem to be installed on this system"
431 echo "Are you missing the $4 package ?"
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700432 echo "Correct the errors below and try again:"
433 cat $TMPL
434 clean_exit
435 fi
436 eval $1=no
David 'Digit' Turner80bc5c82010-10-20 19:04:51 +0200437 log "AudioProbe : $2 seems to be UNUSABLE on this system !!"
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800438 fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800439 fi
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700440}
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800441
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700442probe_system_library PROBE_ESD ESounD android/config/check-esd.c libesd-dev
443probe_system_library PROBE_ALSA Alsa android/config/check-alsa.c libasound-dev
444probe_system_library PROBE_PULSEAUDIO PulseAudio android/config/check-pulseaudio.c libpulse-dev
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800445
446CFLAGS=$ORG_CFLAGS
447LDFLAGS=$ORG_LDFLAGS
448
449# create the objs directory that is going to contain all generated files
450# including the configuration ones
451#
452mkdir -p objs
453
454###
455### Compiler probe
456###
457
458####
459#### Host system probe
460####
461
462# because the previous version could be read-only
463rm -f $TMPC
464
465# check host endianess
466#
467HOST_BIGENDIAN=no
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700468if [ "$TARGET_OS" = "$OS" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800469cat > $TMPC << EOF
470#include <inttypes.h>
471int main(int argc, char ** argv){
472 volatile uint32_t i=0x01234567;
Marcus Comstedt17d31322010-10-05 21:54:12 +0200473 return (*((uint8_t*)(&i))) == 0x01;
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800474}
475EOF
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200476feature_run_exec HOST_BIGENDIAN
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700477fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800478
479# check size of host long bits
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700480HOST_LONGBITS=32
481if [ "$TARGET_OS" = "$OS" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800482cat > $TMPC << EOF
483int main(void) {
484 return sizeof(void*)*8;
485}
486EOF
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200487feature_run_exec HOST_LONGBITS
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700488fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800489
490# check whether we have <byteswap.h>
491#
David Turnerb8fec3e2010-09-09 18:15:23 +0200492feature_check_header HAVE_BYTESWAP_H "<byteswap.h>"
493feature_check_header HAVE_MACHINE_BSWAP_H "<machine/bswap.h>"
494feature_check_header HAVE_FNMATCH_H "<fnmatch.h>"
David Turner80dd1262010-09-09 18:04:49 +0200495
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800496# Build the config.make file
497#
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200498
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200499case $TARGET_OS in
500 windows)
501 TARGET_EXEEXT=.exe
502 ;;
503 *)
504 TARGET_EXEEXT=
505 ;;
506esac
507
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200508create_config_mk
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700509echo "" >> $config_mk
Jun Nakajima334ab472011-02-02 23:49:59 -0800510if [ $TARGET_ARCH = arm ] ; then
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700511echo "TARGET_ARCH := arm" >> $config_mk
Jun Nakajima334ab472011-02-02 23:49:59 -0800512fi
513
514if [ $TARGET_ARCH = x86 ] ; then
515echo "TARGET_ARCH := x86" >> $config_mk
516fi
517
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700518echo "HOST_PREBUILT_TAG := $TARGET_OS" >> $config_mk
David 'Digit' Turner81f74292010-10-14 18:29:45 +0200519echo "HOST_EXEEXT := $TARGET_EXEEXT" >> $config_mk
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700520echo "PREBUILT := $ANDROID_PREBUILT" >> $config_mk
Andrew Hsiehc7389bd2012-03-13 02:13:40 -0700521echo "PREBUILTS := $ANDROID_PREBUILTS" >> $config_mk
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200522
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800523PWD=`pwd`
524echo "SRC_PATH := $PWD" >> $config_mk
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700525if [ -n "$SDL_CONFIG" ] ; then
David 'Digit' Turnera4026682011-08-24 12:54:01 +0200526echo "QEMU_SDL_CONFIG := $SDL_CONFIG" >> $config_mk
David 'Digit' Turner34d16512010-05-18 17:02:33 -0700527fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800528echo "CONFIG_COREAUDIO := $PROBE_COREAUDIO" >> $config_mk
529echo "CONFIG_WINAUDIO := $PROBE_WINAUDIO" >> $config_mk
530echo "CONFIG_ESD := $PROBE_ESD" >> $config_mk
531echo "CONFIG_ALSA := $PROBE_ALSA" >> $config_mk
532echo "CONFIG_OSS := $PROBE_OSS" >> $config_mk
David 'Digit' Turner415a4b12010-07-28 12:20:14 -0700533echo "CONFIG_PULSEAUDIO := $PROBE_PULSEAUDIO" >> $config_mk
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800534echo "BUILD_STANDALONE_EMULATOR := true" >> $config_mk
David 'Digit' Turnerd68b4872009-07-24 16:33:05 +0200535if [ $OPTION_DEBUG = yes ] ; then
536 echo "BUILD_DEBUG_EMULATOR := true" >> $config_mk
537fi
David 'Digit' Turnerab873b72010-03-08 18:33:50 -0800538if [ $OPTION_STATIC = yes ] ; then
539 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
540fi
541
David 'Digit' Turnera383d022009-12-03 13:50:00 -0800542if [ -n "$ANDROID_SDK_TOOLS_REVISION" ] ; then
543 echo "ANDROID_SDK_TOOLS_REVISION := $ANDROID_SDK_TOOLS_REVISION" >> $config_mk
544fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800545
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700546if [ "$OPTION_MINGW" = "yes" ] ; then
547 echo "" >> $config_mk
548 echo "USE_MINGW := 1" >> $config_mk
549 echo "HOST_OS := windows" >> $config_mk
550fi
551
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200552if [ "$GLES_INCLUDE" -a "$GLES_LIBS" ]; then
553 echo "QEMU_OPENGLES_INCLUDE := $GLES_INCLUDE" >> $config_mk
554 echo "QEMU_OPENGLES_LIBS := $GLES_LIBS" >> $config_mk
555fi
556
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800557# Build the config-host.h file
558#
559config_h=objs/config-host.h
560echo "/* This file was autogenerated by '$PROGNAME' */" > $config_h
561echo "#define CONFIG_QEMU_SHAREDIR \"/usr/local/share/qemu\"" >> $config_h
562echo "#define HOST_LONG_BITS $HOST_LONGBITS" >> $config_h
563if [ "$HAVE_BYTESWAP_H" = "yes" ] ; then
David Turnerb8fec3e2010-09-09 18:15:23 +0200564 echo "#define CONFIG_BYTESWAP_H 1" >> $config_h
565fi
566if [ "$HAVE_MACHINE_BYTESWAP_H" = "yes" ] ; then
567 echo "#define CONFIG_MACHINE_BSWAP_H 1" >> $config_h
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800568fi
David Turner80dd1262010-09-09 18:04:49 +0200569if [ "$HAVE_FNMATCH_H" = "yes" ] ; then
570 echo "#define CONFIG_FNMATCH 1" >> $config_h
571fi
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800572echo "#define CONFIG_GDBSTUB 1" >> $config_h
573echo "#define CONFIG_SLIRP 1" >> $config_h
574echo "#define CONFIG_SKINS 1" >> $config_h
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200575echo "#define CONFIG_TRACE 1" >> $config_h
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700576
David 'Digit' Turner826b9852011-06-01 15:28:14 +0200577case "$TARGET_OS" in
578 windows)
579 echo "#define CONFIG_WIN32 1" >> $config_h
580 ;;
581 *)
582 echo "#define CONFIG_POSIX 1" >> $config_h
583 ;;
584esac
585
586case "$TARGET_OS" in
587 linux-*)
588 echo "#define CONFIG_KVM_GS_RESTORE 1" >> $config_h
589 ;;
590esac
591
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700592# only Linux has fdatasync()
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700593case "$TARGET_OS" in
David 'Digit' Turnerfd3b1a02010-05-10 23:47:54 -0700594 linux-*)
595 echo "#define CONFIG_FDATASYNC 1" >> $config_h
596 ;;
597esac
598
David 'Digit' Turner280afa02011-05-11 17:37:44 +0200599case "$TARGET_OS" in
600 linux-*|darwin-*)
601 echo "#define CONFIG_MADVISE 1" >> $config_h
602 ;;
603esac
604
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800605# the -nand-limits options can only work on non-windows systems
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700606if [ "$TARGET_OS" != "windows" ] ; then
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800607 echo "#define CONFIG_NAND_LIMITS 1" >> $config_h
608fi
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700609echo "#define QEMU_VERSION \"0.10.50\"" >> $config_h
610echo "#define QEMU_PKGVERSION \"Android\"" >> $config_h
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800611case "$CPU" in
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200612 x86) CONFIG_CPU=I386
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800613 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200614 ppc) CONFIG_CPU=PPC
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800615 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200616 x86_64) CONFIG_CPU=X86_64
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800617 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200618 *) CONFIG_CPU=$CPU
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800619 ;;
620esac
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200621echo "#define HOST_$CONFIG_CPU 1" >> $config_h
Marcus Comstedt17d31322010-10-05 21:54:12 +0200622if [ "$HOST_BIGENDIAN" = "1" ] ; then
623 echo "#define HOST_WORDS_BIGENDIAN 1" >> $config_h
624fi
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200625BSD=0
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700626case "$TARGET_OS" in
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200627 linux-*) CONFIG_OS=LINUX
628 ;;
629 darwin-*) CONFIG_OS=DARWIN
630 BSD=1
631 ;;
Alexey Tarasov08823222009-09-01 02:07:51 +1100632 freebsd-*) CONFIG_OS=FREEBSD
633 BSD=1
634 ;;
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200635 windows*) CONFIG_OS=WIN32
636 ;;
637 *) CONFIG_OS=$OS
638esac
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700639
David 'Digit' Turnerab873b72010-03-08 18:33:50 -0800640if [ "$OPTION_STATIC" = "yes" ] ; then
641 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
642 echo "#define CONFIG_STATIC_EXECUTABLE 1" >> $config_h
643fi
644
David 'Digit' Turner377eb2c2010-05-20 15:16:28 -0700645case $TARGET_OS in
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700646 linux-*|darwin-*)
David 'Digit' Turner3d66dc72010-01-27 18:18:41 -0800647 echo "#define CONFIG_IOVEC 1" >> $config_h
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700648 ;;
649esac
650
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200651echo "#define CONFIG_$CONFIG_OS 1" >> $config_h
652if [ $BSD = 1 ] ; then
David 'Digit' Turner2c538c82010-05-10 16:48:20 -0700653 echo "#define CONFIG_BSD 1" >> $config_h
David 'Digit' Turner46be4872009-06-04 16:07:01 +0200654 echo "#define O_LARGEFILE 0" >> $config_h
655 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
656fi
David 'Digit' Turner5d8f37a2009-09-14 14:32:27 -0700657
David 'Digit' Turnere92bc562010-09-07 06:21:25 -0700658echo "#define CONFIG_ANDROID 1" >> $config_h
659
David 'Digit' Turner0c8c8852011-08-24 13:26:58 +0200660if [ "$GLES_INCLUDE" -a "$GLES_LIBS" ]; then
661 echo "#define CONFIG_ANDROID_OPENGLES 1" >> $config_h
662fi
663
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -0800664log "Generate : $config_h"
665
666echo "Ready to go. Type 'make' to build emulator"