diff options
| author | Jean-Baptiste Queru <jbq@google.com> | 2012-04-28 10:43:39 -0700 |
|---|---|---|
| committer | Jean-Baptiste Queru <jbq@google.com> | 2012-04-28 10:43:39 -0700 |
| commit | 68a13761e28d34f90fa0140363616dda73ad49de (patch) | |
| tree | 673d825105735eedbeed2a690959226912699a59 /Android.mksnapshot.mk | |
| parent | b39bb80c4e2160bcb17cb0de1c4bbb9793f783f5 (diff) | |
| download | android_external_v8-68a13761e28d34f90fa0140363616dda73ad49de.tar.gz android_external_v8-68a13761e28d34f90fa0140363616dda73ad49de.tar.bz2 android_external_v8-68a13761e28d34f90fa0140363616dda73ad49de.zip | |
Build a different mksnapshot for each arch.
Since mksnapshot uses different source files for each
arch, building it in a single location fails when switching
between builds.
This uses a separate version for each arch, using the
same variable that is used to select which source files
get built.
Change-Id: I8608bf3b0f85571c75c7f6b21e47091ef8ed8c3f
Diffstat (limited to 'Android.mksnapshot.mk')
| -rw-r--r-- | Android.mksnapshot.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.mksnapshot.mk b/Android.mksnapshot.mk index 9b2a68b0..c1326e03 100644 --- a/Android.mksnapshot.mk +++ b/Android.mksnapshot.mk @@ -6,8 +6,9 @@ include $(CLEAR_VARS) # Set up the target identity LOCAL_IS_HOST_MODULE := true -LOCAL_MODULE := mksnapshot +LOCAL_MODULE := mksnapshot.$(TARGET_ARCH) LOCAL_MODULE_CLASS := EXECUTABLES +LOCAL_MODULE_TAGS = optional intermediates := $(call local-intermediates-dir) V8_LOCAL_SRC_FILES := |
