aboutsummaryrefslogtreecommitdiffstats
path: root/android-configure.sh
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2012-05-11 06:56:43 -0700
committerVladimir Chtchetkine <vchtchetkine@google.com>2012-05-11 14:42:42 -0700
commit2c4c30e62aac9f55cf2287feb0ef6ed81c5430d3 (patch)
tree7f6b2fe1306eeee3104be855971d2a01ad36d183 /android-configure.sh
parent9d6d9e510f31485416554baf2dd35b4f68fdd4bc (diff)
downloadexternal_qemu-2c4c30e62aac9f55cf2287feb0ef6ed81c5430d3.zip
external_qemu-2c4c30e62aac9f55cf2287feb0ef6ed81c5430d3.tar.gz
external_qemu-2c4c30e62aac9f55cf2287feb0ef6ed81c5430d3.tar.bz2
Fix --no-gles config, and ease the pain of standalone emulator build
1. Apparently, emulator build fails when configured with --no-gles option due to missing android_setPostCallback implementation. 2. It's painful to configure standalone emulator build WITH OpenGLES, since it requires explicit using of --gles-include, and --gles-lib when launching android-configure.sh To ease that pain, just use default location for standalone emulator build. Change-Id: I2d9ed56d68a4ab1cb1ec294817f22dca80d33223
Diffstat (limited to 'android-configure.sh')
-rwxr-xr-xandroid-configure.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/android-configure.sh b/android-configure.sh
index 01fc2c4..9510ece 100755
--- a/android-configure.sh
+++ b/android-configure.sh
@@ -255,6 +255,32 @@ if [ "$IN_ANDROID_BUILD" = "yes" ] ; then
fi
fi
fi
+else
+ if [ "$GLES_PROBE" = "yes" ]; then
+ GLES_SUPPORT=yes
+ if [ -z "$GLES_INCLUDE" ]; then
+ log "GLES : Probing for headers"
+ GLES_INCLUDE=../../sdk/emulator/opengl/host/include
+ if [ -d "$GLES_INCLUDE" ]; then
+ log "GLES : Headers in $GLES_INCLUDE"
+ else
+ echo "Warning: Could not find OpenGLES emulation include dir: $GLES_INCLUDE"
+ echo "Disabling GLES emulation from this build!"
+ GLES_SUPPORT=no
+ fi
+ fi
+ if [ -z "$GLES_LIBS" ]; then
+ log "GLES : Probing for host libraries"
+ GLES_LIBS=../../out/host/$OS/lib
+ if [ -d "$GLES_LIBS" ]; then
+ echo "GLES : Libs in $GLES_LIBS"
+ else
+ echo "Warning: Could nof find OpenGLES emulation libraries in: $GLES_LIBS"
+ echo "Disabling GLES emulation from this build!"
+ GLES_SUPPORT=no
+ fi
+ fi
+ fi
fi # IN_ANDROID_BUILD = no
if [ "$GLES_SUPPORT" = "yes" ]; then