From 3f264d250b811493cdcc2a42d429b19b87631fa0 Mon Sep 17 00:00:00 2001 From: "digit@chromium.org" Date: Fri, 3 Aug 2012 15:17:10 +0000 Subject: 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 --- android/google_breakpad/Android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'android/google_breakpad') 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. -- cgit v1.2.1