diff options
| author | Koushik Dutta <koushd@gmail.com> | 2010-08-07 10:08:28 -0700 |
|---|---|---|
| committer | Koushik Dutta <koushd@gmail.com> | 2010-08-07 10:11:48 -0700 |
| commit | 15b4fa6df76582ae62236b94efc70f21248841ad (patch) | |
| tree | b50f3da914a127f73f618c39e0dc0ca682c9977c | |
| parent | 6599b9dd3411791c9d89ab7efbfb4131e5664c48 (diff) | |
| download | android_external_v8-15b4fa6df76582ae62236b94efc70f21248841ad.tar.gz android_external_v8-15b4fa6df76582ae62236b94efc70f21248841ad.tar.bz2 android_external_v8-15b4fa6df76582ae62236b94efc70f21248841ad.zip | |
Add the option to disable v8 mksnapshot via the buildspec.mk to fix the builds on Darwin x86_64.froyo-stablefroyo
| -rw-r--r-- | Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -30,8 +30,10 @@ include $(CLEAR_VARS) # Build libv8 and v8shell # TODO: remove the check when the v8 build is fixed for x86 ifeq ($(TARGET_ARCH),arm) + ifneq ($(DISABLE_V8_SNAPSHOT),true) ENABLE_V8_SNAPSHOT = true include $(BASE_PATH)/Android.mksnapshot.mk + endif include $(BASE_PATH)/Android.libv8.mk include $(BASE_PATH)/Android.v8shell.mk endif |
