aboutsummaryrefslogtreecommitdiff
path: root/android/google_breakpad
diff options
context:
space:
mode:
authordigit@chromium.org <digit@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-08-03 15:17:10 +0000
committerdigit@chromium.org <digit@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-08-03 15:17:10 +0000
commit3f264d250b811493cdcc2a42d429b19b87631fa0 (patch)
treec8877ba6a7cf33a5a063476f2ab13caf940f7818 /android/google_breakpad
parentSORRY. It seems I've screwed up my commit for http://breakpad.appspot.com/411... (diff)
downloadbreakpad-3f264d250b811493cdcc2a42d429b19b87631fa0.tar.xz
android: Add --abi option to android/run-checks.sh
This patch adds an option to android/run-checks.sh to specify the target ABI. For example, by using the following line: android/run-checks.sh --abi=x86 --no-device One can check the Android/x86 build of Google Breakpad (which still fails for reasons that will be fixed in later patches). Another use is to force the 'armeabi' ABI even when an ARMv7-A device is connected (which uses the 'armeabi-v7a' by default, but supports 'armeabi' as well). Review URL: https://breakpad.appspot.com/424002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1003 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'android/google_breakpad')
-rw-r--r--android/google_breakpad/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/google_breakpad/Android.mk b/android/google_breakpad/Android.mk
index 81aeb114..00ea737e 100644
--- a/android/google_breakpad/Android.mk
+++ b/android/google_breakpad/Android.mk
@@ -46,8 +46,8 @@
#
# Sanity check. We can only build for ARM for now.
-ifneq (,$(filter-out armeabi armeabi-v7a,$(TARGET_ARCH_ABI)))
-$(error Sorry, Google Breakpad only works on Android ARM for now!)
+ifneq (,$(filter-out armeabi armeabi-v7a x86,$(TARGET_ARCH_ABI)))
+$(error Sorry, Google Breakpad only works on Android ARM and x86 for now!)
endif
# The top Google Breakpad directory.