blob: aeff01c665e1da1c9c6fc51daff0bb6c8f671bf6 [file] [log] [blame]
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +00001# Copyright 2012 the V8 project authors. All rights reserved.
2# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28# Those definitions should be consistent with the main Makefile
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +000029ANDROID_ARCHES = android_ia32 android_arm android_mipsel
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000030MODES = release debug
31
32# Generates all combinations of ANDROID ARCHES and MODES,
33# e.g. "android_ia32.release" or "android_arm.release"
34ANDROID_BUILDS = $(foreach mode,$(MODES), \
35 $(addsuffix .$(mode),$(ANDROID_ARCHES)))
36
37HOST_OS = $(shell uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')
38ifeq ($(HOST_OS), linux)
39 TOOLCHAIN_DIR = linux-x86
40else
41 ifeq ($(HOST_OS), mac)
42 TOOLCHAIN_DIR = darwin-x86
43 else
44 $(error Host platform "${HOST_OS}" is not supported)
45 endif
46endif
47
48ifeq ($(ARCH), android_arm)
49 DEFINES = target_arch=arm v8_target_arch=arm android_target_arch=arm
50 DEFINES += arm_neon=0 armv7=1
verwaest@chromium.org33e09c82012-10-10 17:07:22 +000051 TOOLCHAIN_ARCH = arm-linux-androideabi-4.6
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000052else
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +000053 ifeq ($(ARCH), android_mipsel)
54 DEFINES = target_arch=mipsel v8_target_arch=mipsel android_target_arch=mips
55 DEFINES += mips_arch_variant=mips32r2
56 TOOLCHAIN_ARCH = mipsel-linux-android-4.6
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000057 else
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +000058 ifeq ($(ARCH), android_ia32)
59 DEFINES = target_arch=ia32 v8_target_arch=ia32 android_target_arch=x86
60 TOOLCHAIN_ARCH = x86-4.6
61 else
62 $(error Target architecture "${ARCH}" is not supported)
63 endif
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000064 endif
65endif
66
67TOOLCHAIN_PATH = ${ANDROID_NDK_ROOT}/toolchains/${TOOLCHAIN_ARCH}/prebuilt
jkummerow@chromium.org78502a92012-09-06 13:50:42 +000068ANDROID_TOOLCHAIN ?= ${TOOLCHAIN_PATH}/${TOOLCHAIN_DIR}
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000069ifeq ($(wildcard $(ANDROID_TOOLCHAIN)),)
70 $(error Cannot find Android toolchain in "${ANDROID_TOOLCHAIN}")
71endif
72
73# For mksnapshot host generation.
74DEFINES += host_os=${HOST_OS}
75
76.SECONDEXPANSION:
77$(ANDROID_BUILDS): $(OUTDIR)/Makefile.$$(basename $$@)
78 @$(MAKE) -C "$(OUTDIR)" -f Makefile.$(basename $@) \
jkummerow@chromium.org78502a92012-09-06 13:50:42 +000079 CXX="$(ANDROID_TOOLCHAIN)/bin/*-g++" \
80 AR="$(ANDROID_TOOLCHAIN)/bin/*-ar" \
81 RANLIB="$(ANDROID_TOOLCHAIN)/bin/*-ranlib" \
82 CC="$(ANDROID_TOOLCHAIN)/bin/*-gcc" \
83 LD="$(ANDROID_TOOLCHAIN)/bin/*-ld" \
84 LINK="$(ANDROID_TOOLCHAIN)/bin/*-g++" \
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000085 BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
86 python -c "print raw_input().capitalize()") \
87 builddir="$(shell pwd)/$(OUTDIR)/$@"
88
89# Android GYP file generation targets.
90ANDROID_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(ANDROID_ARCHES))
91$(ANDROID_MAKEFILES):
92 @GYP_GENERATORS=make-android \
93 GYP_DEFINES="${DEFINES}" \
jkummerow@chromium.org78502a92012-09-06 13:50:42 +000094 CC="${ANDROID_TOOLCHAIN}/bin/*-gcc" \
95 CXX="${ANDROID_TOOLCHAIN}/bin/*-g++" \
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000096 build/gyp/gyp --generator-output="${OUTDIR}" build/all.gyp \
97 -Ibuild/standalone.gypi --depth=. -Ibuild/android.gypi \
98 -S.${ARCH} ${GYPFLAGS}