Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: Makefile

Issue 29509592: Issue 5267 - Add support of 64 bit android (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created Aug. 8, 2017, 12:59 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 4e39f20c754d63db3dc72c201823c23571f5fd8a..3e9e9ef1baf121be0e344ab5bb63aa152860d8bd 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,8 @@ ifeq ($(ANDROID_ARCH),arm)
ANDROID_ABI = armeabi-v7a
else ifeq ($(ANDROID_ARCH),ia32)
ANDROID_ABI = x86
+else ifeq ($(ANDROID_ARCH),arm64)
+ANDROID_ABI = arm64-v8a
else
$(error "Unsupported Android architecture: $(ANDROID_ARCH))
endif
@@ -109,6 +111,9 @@ v8_android_multi_mac_ia32: v8_android_multi
v8_android_multi_mac_arm: v8_android_multi
find build/android_arm.release/ -depth 1 -iname \*.a -exec ${ANDROID_NDK_ROOT}/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-ranlib {} \;
+v8_android_multi_mac_arm64: v8_android_multi
+ find build/android_arm64.release/ -depth 1 -iname \*.a -exec ${ANDROID_NDK_ROOT}/toolchains/aarch64-linux-android-4.9/prebuilt/darwin-x86_64/bin/aarch64-linux-android-ranlib {} \;
+
build-v8-android: v8_android_multi_${HOST_OS}_${ANDROID_ARCH}
android_multi: ${BUILD_V8} ensure_dependencies
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld