2012-01-16 13:29:12 +00:00
|
|
|
# Copyright 2012 the V8 project authors. All rights reserved.
|
2011-08-05 09:44:30 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
|
|
# Variable default definitions. Override them by exporting them in your shell.
|
2011-11-09 16:18:36 +00:00
|
|
|
CXX ?= g++
|
|
|
|
LINK ?= g++
|
2011-08-05 09:44:30 +00:00
|
|
|
OUTDIR ?= out
|
2012-10-18 14:21:35 +00:00
|
|
|
TESTJOBS ?=
|
2011-08-26 11:23:51 +00:00
|
|
|
GYPFLAGS ?=
|
2011-10-06 11:08:41 +00:00
|
|
|
TESTFLAGS ?=
|
2012-01-16 13:29:12 +00:00
|
|
|
ANDROID_NDK_ROOT ?=
|
2013-07-17 08:37:48 +00:00
|
|
|
ANDROID_NDK_HOST_ARCH ?=
|
2012-08-31 13:31:09 +00:00
|
|
|
ANDROID_TOOLCHAIN ?=
|
2013-06-28 07:31:23 +00:00
|
|
|
ANDROID_V8 ?= /data/local/tmp/v8
|
2013-04-17 08:27:40 +00:00
|
|
|
NACL_SDK_ROOT ?=
|
2011-08-26 11:23:51 +00:00
|
|
|
|
|
|
|
# Special build flags. Use them like this: "make library=shared"
|
|
|
|
|
|
|
|
# library=shared || component=shared_library
|
|
|
|
ifeq ($(library), shared)
|
|
|
|
GYPFLAGS += -Dcomponent=shared_library
|
|
|
|
endif
|
|
|
|
ifdef component
|
|
|
|
GYPFLAGS += -Dcomponent=$(component)
|
|
|
|
endif
|
|
|
|
# console=readline
|
|
|
|
ifdef console
|
|
|
|
GYPFLAGS += -Dconsole=$(console)
|
|
|
|
endif
|
|
|
|
# disassembler=on
|
|
|
|
ifeq ($(disassembler), on)
|
|
|
|
GYPFLAGS += -Dv8_enable_disassembler=1
|
|
|
|
endif
|
2011-09-23 09:38:03 +00:00
|
|
|
# objectprint=on
|
|
|
|
ifeq ($(objectprint), on)
|
|
|
|
GYPFLAGS += -Dv8_object_print=1
|
|
|
|
endif
|
2012-10-12 11:41:14 +00:00
|
|
|
# verifyheap=on
|
|
|
|
ifeq ($(verifyheap), on)
|
|
|
|
GYPFLAGS += -Dv8_enable_verify_heap=1
|
|
|
|
endif
|
2012-12-14 14:27:06 +00:00
|
|
|
# backtrace=off
|
|
|
|
ifeq ($(backtrace), off)
|
|
|
|
GYPFLAGS += -Dv8_enable_backtrace=0
|
|
|
|
else
|
|
|
|
GYPFLAGS += -Dv8_enable_backtrace=1
|
|
|
|
endif
|
2011-08-26 11:23:51 +00:00
|
|
|
# snapshot=off
|
|
|
|
ifeq ($(snapshot), off)
|
|
|
|
GYPFLAGS += -Dv8_use_snapshot='false'
|
|
|
|
endif
|
2012-09-05 09:24:37 +00:00
|
|
|
# extrachecks=on/off
|
|
|
|
ifeq ($(extrachecks), on)
|
2013-09-30 11:56:52 +00:00
|
|
|
GYPFLAGS += -Dv8_enable_extra_checks=1 -Dv8_enable_handle_zapping=1
|
2012-09-05 09:24:37 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(extrachecks), off)
|
2013-09-30 11:56:52 +00:00
|
|
|
GYPFLAGS += -Dv8_enable_extra_checks=0 -Dv8_enable_handle_zapping=0
|
2012-09-05 09:24:37 +00:00
|
|
|
endif
|
2013-07-03 12:00:40 +00:00
|
|
|
# gdbjit=on/off
|
2011-08-26 11:23:51 +00:00
|
|
|
ifeq ($(gdbjit), on)
|
|
|
|
GYPFLAGS += -Dv8_enable_gdbjit=1
|
|
|
|
endif
|
2013-07-03 12:00:40 +00:00
|
|
|
ifeq ($(gdbjit), off)
|
|
|
|
GYPFLAGS += -Dv8_enable_gdbjit=0
|
|
|
|
endif
|
2013-04-12 12:48:27 +00:00
|
|
|
# vtunejit=on
|
|
|
|
ifeq ($(vtunejit), on)
|
|
|
|
GYPFLAGS += -Dv8_enable_vtunejit=1
|
|
|
|
endif
|
2013-07-15 16:33:06 +00:00
|
|
|
# optdebug=on
|
|
|
|
ifeq ($(optdebug), on)
|
2013-11-26 16:48:55 +00:00
|
|
|
GYPFLAGS += -Dv8_optimized_debug=2
|
2013-07-15 16:33:06 +00:00
|
|
|
endif
|
2012-03-07 10:57:36 +00:00
|
|
|
# debuggersupport=off
|
|
|
|
ifeq ($(debuggersupport), off)
|
|
|
|
GYPFLAGS += -Dv8_enable_debugger_support=0
|
|
|
|
endif
|
2013-04-16 14:39:48 +00:00
|
|
|
# unalignedaccess=on
|
|
|
|
ifeq ($(unalignedaccess), on)
|
|
|
|
GYPFLAGS += -Dv8_can_use_unaligned_accesses=true
|
|
|
|
endif
|
2013-11-07 12:01:26 +00:00
|
|
|
# randomseed=12345, disable random seed via randomseed=0
|
|
|
|
ifdef randomseed
|
|
|
|
GYPFLAGS += -Dv8_random_seed=$(randomseed)
|
|
|
|
endif
|
2011-09-08 13:20:49 +00:00
|
|
|
# soname_version=1.2.3
|
|
|
|
ifdef soname_version
|
|
|
|
GYPFLAGS += -Dsoname_version=$(soname_version)
|
|
|
|
endif
|
2011-10-06 11:08:41 +00:00
|
|
|
# werror=no
|
|
|
|
ifeq ($(werror), no)
|
|
|
|
GYPFLAGS += -Dwerror=''
|
|
|
|
endif
|
|
|
|
# presubmit=no
|
|
|
|
ifeq ($(presubmit), no)
|
|
|
|
TESTFLAGS += --no-presubmit
|
|
|
|
endif
|
2012-01-18 10:17:03 +00:00
|
|
|
# strictaliasing=off (workaround for GCC-4.5)
|
|
|
|
ifeq ($(strictaliasing), off)
|
|
|
|
GYPFLAGS += -Dv8_no_strict_aliasing=1
|
|
|
|
endif
|
2012-06-14 08:01:05 +00:00
|
|
|
# regexp=interpreted
|
|
|
|
ifeq ($(regexp), interpreted)
|
|
|
|
GYPFLAGS += -Dv8_interpreted_regexp=1
|
|
|
|
endif
|
2013-09-19 12:07:03 +00:00
|
|
|
# i18nsupport=off
|
|
|
|
ifeq ($(i18nsupport), off)
|
|
|
|
GYPFLAGS += -Dv8_enable_i18n_support=0
|
|
|
|
TESTFLAGS += --noi18n
|
2013-07-03 11:22:29 +00:00
|
|
|
endif
|
2013-09-30 13:28:23 +00:00
|
|
|
# deprecation_warnings=on
|
|
|
|
ifeq ($(deprecationwarnings), on)
|
|
|
|
GYPFLAGS += -Dv8_deprecation_warnings=1
|
|
|
|
endif
|
2013-04-16 14:39:48 +00:00
|
|
|
# arm specific flags.
|
|
|
|
# armv7=false/true
|
2013-01-03 08:56:05 +00:00
|
|
|
ifeq ($(armv7), false)
|
|
|
|
GYPFLAGS += -Darmv7=0
|
2013-04-16 14:39:48 +00:00
|
|
|
else
|
|
|
|
ifeq ($(armv7), true)
|
|
|
|
GYPFLAGS += -Darmv7=1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
# vfp2=off. Deprecated, use armfpu=
|
|
|
|
# vfp3=off. Deprecated, use armfpu=
|
|
|
|
ifeq ($(vfp3), off)
|
|
|
|
GYPFLAGS += -Darm_fpu=vfp
|
|
|
|
endif
|
|
|
|
# hardfp=on/off. Deprecated, use armfloatabi
|
|
|
|
ifeq ($(hardfp),on)
|
|
|
|
GYPFLAGS += -Darm_float_abi=hard
|
|
|
|
else
|
|
|
|
ifeq ($(hardfp),off)
|
|
|
|
GYPFLAGS += -Darm_float_abi=softfp
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
# armneon=on/off
|
|
|
|
ifeq ($(armneon), on)
|
|
|
|
GYPFLAGS += -Darm_neon=1
|
|
|
|
endif
|
|
|
|
# fpu: armfpu=xxx
|
|
|
|
# xxx: vfp, vfpv3-d16, vfpv3, neon.
|
|
|
|
ifeq ($(armfpu),)
|
|
|
|
ifneq ($(vfp3), off)
|
|
|
|
GYPFLAGS += -Darm_fpu=default
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
GYPFLAGS += -Darm_fpu=$(armfpu)
|
|
|
|
endif
|
|
|
|
# float abi: armfloatabi=softfp/hard
|
|
|
|
ifeq ($(armfloatabi),)
|
|
|
|
ifeq ($(hardfp),)
|
|
|
|
GYPFLAGS += -Darm_float_abi=default
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
GYPFLAGS += -Darm_float_abi=$(armfloatabi)
|
|
|
|
endif
|
|
|
|
# armthumb=on/off
|
|
|
|
ifeq ($(armthumb), off)
|
|
|
|
GYPFLAGS += -Darm_thumb=0
|
|
|
|
else
|
|
|
|
ifeq ($(armthumb), on)
|
|
|
|
GYPFLAGS += -Darm_thumb=1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
# armtest=on
|
|
|
|
# With this flag set, by default v8 will only use features implied
|
|
|
|
# by the compiler (no probe). This is done by modifying the default
|
|
|
|
# values of enable_armv7, enable_vfp2, enable_vfp3 and enable_32dregs.
|
|
|
|
# Modifying these flags when launching v8 will enable the probing for
|
|
|
|
# the specified values.
|
|
|
|
# When using the simulator, this flag is implied.
|
|
|
|
ifeq ($(armtest), on)
|
|
|
|
GYPFLAGS += -Darm_test=on
|
2013-01-03 08:56:05 +00:00
|
|
|
endif
|
2011-08-26 11:23:51 +00:00
|
|
|
|
|
|
|
# ----------------- available targets: --------------------
|
2011-09-07 13:48:29 +00:00
|
|
|
# - "dependencies": pulls in external dependencies (currently: GYP)
|
2013-08-02 09:02:02 +00:00
|
|
|
# - "grokdump": rebuilds heap constants lists used by grokdump
|
2011-08-26 11:23:51 +00:00
|
|
|
# - any arch listed in ARCHES (see below)
|
|
|
|
# - any mode listed in MODES
|
|
|
|
# - every combination <arch>.<mode>, e.g. "ia32.release"
|
2011-09-15 08:16:07 +00:00
|
|
|
# - "native": current host's architecture, release mode
|
2011-08-26 11:23:51 +00:00
|
|
|
# - any of the above with .check appended, e.g. "ia32.release.check"
|
2012-07-03 07:45:58 +00:00
|
|
|
# - "android": cross-compile for Android/ARM
|
2013-04-17 08:27:40 +00:00
|
|
|
# - "nacl" : cross-compile for Native Client (ia32 and x64)
|
2011-11-09 16:18:36 +00:00
|
|
|
# - default (no target specified): build all DEFAULT_ARCHES and MODES
|
2011-08-26 11:23:51 +00:00
|
|
|
# - "check": build all targets and run all tests
|
|
|
|
# - "<arch>.clean" for any <arch> in ARCHES
|
|
|
|
# - "clean": clean all ARCHES
|
|
|
|
|
|
|
|
# ----------------- internal stuff ------------------------
|
|
|
|
|
|
|
|
# Architectures and modes to be compiled. Consider these to be internal
|
|
|
|
# variables, don't override them (use the targets instead).
|
2012-07-11 15:15:04 +00:00
|
|
|
ARCHES = ia32 x64 arm mipsel
|
2011-11-09 16:18:36 +00:00
|
|
|
DEFAULT_ARCHES = ia32 x64 arm
|
2011-08-05 09:44:30 +00:00
|
|
|
MODES = release debug
|
2013-02-25 16:39:03 +00:00
|
|
|
ANDROID_ARCHES = android_ia32 android_arm android_mipsel
|
2013-04-17 08:27:40 +00:00
|
|
|
NACL_ARCHES = nacl_ia32 nacl_x64
|
2011-08-05 09:44:30 +00:00
|
|
|
|
|
|
|
# List of files that trigger Makefile regeneration:
|
2013-07-10 11:15:16 +00:00
|
|
|
GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \
|
2013-10-04 16:21:23 +00:00
|
|
|
build/toolchain.gypi samples/samples.gyp src/d8.gyp \
|
|
|
|
test/cctest/cctest.gyp tools/gyp/v8.gyp
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2013-04-12 12:48:27 +00:00
|
|
|
# If vtunejit=on, the v8vtune.gyp will be appended.
|
|
|
|
ifeq ($(vtunejit), on)
|
|
|
|
GYPFILES += src/third_party/vtune/v8vtune.gyp
|
|
|
|
endif
|
2011-08-05 09:44:30 +00:00
|
|
|
# Generates all combinations of ARCHES and MODES, e.g. "ia32.release".
|
|
|
|
BUILDS = $(foreach mode,$(MODES),$(addsuffix .$(mode),$(ARCHES)))
|
2012-07-18 11:43:44 +00:00
|
|
|
ANDROID_BUILDS = $(foreach mode,$(MODES), \
|
|
|
|
$(addsuffix .$(mode),$(ANDROID_ARCHES)))
|
2013-04-17 08:27:40 +00:00
|
|
|
NACL_BUILDS = $(foreach mode,$(MODES), \
|
|
|
|
$(addsuffix .$(mode),$(NACL_ARCHES)))
|
2011-08-05 09:44:30 +00:00
|
|
|
# Generates corresponding test targets, e.g. "ia32.release.check".
|
2011-08-26 11:23:51 +00:00
|
|
|
CHECKS = $(addsuffix .check,$(BUILDS))
|
2012-07-18 11:43:44 +00:00
|
|
|
ANDROID_CHECKS = $(addsuffix .check,$(ANDROID_BUILDS))
|
2013-04-17 08:27:40 +00:00
|
|
|
NACL_CHECKS = $(addsuffix .check,$(NACL_BUILDS))
|
2011-08-26 11:23:51 +00:00
|
|
|
# File where previously used GYPFLAGS are stored.
|
|
|
|
ENVFILE = $(OUTDIR)/environment
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-09-15 08:16:07 +00:00
|
|
|
.PHONY: all check clean dependencies $(ENVFILE).new native \
|
2011-08-31 13:01:28 +00:00
|
|
|
$(ARCHES) $(MODES) $(BUILDS) $(CHECKS) $(addsuffix .clean,$(ARCHES)) \
|
2012-01-16 13:29:12 +00:00
|
|
|
$(addsuffix .check,$(MODES)) $(addsuffix .check,$(ARCHES)) \
|
2012-07-18 11:43:44 +00:00
|
|
|
$(ANDROID_ARCHES) $(ANDROID_BUILDS) $(ANDROID_CHECKS) \
|
2013-04-17 08:27:40 +00:00
|
|
|
must-set-ANDROID_NDK_ROOT_OR_TOOLCHAIN \
|
|
|
|
$(NACL_ARCHES) $(NACL_BUILDS) $(NACL_CHECKS) \
|
|
|
|
must-set-NACL_SDK_ROOT
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-08-26 11:23:51 +00:00
|
|
|
# Target definitions. "all" is the default.
|
|
|
|
all: $(MODES)
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2012-05-11 12:18:09 +00:00
|
|
|
# Special target for the buildbots to use. Depends on $(OUTDIR)/Makefile
|
|
|
|
# having been created before.
|
|
|
|
buildbot:
|
|
|
|
$(MAKE) -C "$(OUTDIR)" BUILDTYPE=$(BUILDTYPE) \
|
|
|
|
builddir="$(abspath $(OUTDIR))/$(BUILDTYPE)"
|
|
|
|
|
2012-07-11 15:15:04 +00:00
|
|
|
mips mips.release mips.debug:
|
|
|
|
@echo "V8 does not support big-endian MIPS builds at the moment," \
|
|
|
|
"please use little-endian builds (mipsel)."
|
|
|
|
|
2011-08-26 11:23:51 +00:00
|
|
|
# Compile targets. MODES and ARCHES are convenience targets.
|
|
|
|
.SECONDEXPANSION:
|
2011-11-09 16:18:36 +00:00
|
|
|
$(MODES): $(addsuffix .$$@,$(DEFAULT_ARCHES))
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-08-26 11:23:51 +00:00
|
|
|
$(ARCHES): $(addprefix $$@.,$(MODES))
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-08-26 11:23:51 +00:00
|
|
|
# Defines how to build a particular target (e.g. ia32.release).
|
2012-05-03 08:11:38 +00:00
|
|
|
$(BUILDS): $(OUTDIR)/Makefile.$$(basename $$@)
|
|
|
|
@$(MAKE) -C "$(OUTDIR)" -f Makefile.$(basename $@) \
|
2011-08-05 09:44:30 +00:00
|
|
|
CXX="$(CXX)" LINK="$(LINK)" \
|
|
|
|
BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
|
|
|
|
python -c "print raw_input().capitalize()") \
|
|
|
|
builddir="$(shell pwd)/$(OUTDIR)/$@"
|
|
|
|
|
2012-05-03 08:11:38 +00:00
|
|
|
native: $(OUTDIR)/Makefile.native
|
|
|
|
@$(MAKE) -C "$(OUTDIR)" -f Makefile.native \
|
2011-09-15 08:16:07 +00:00
|
|
|
CXX="$(CXX)" LINK="$(LINK)" BUILDTYPE=Release \
|
|
|
|
builddir="$(shell pwd)/$(OUTDIR)/$@"
|
|
|
|
|
2012-07-23 12:02:46 +00:00
|
|
|
$(ANDROID_ARCHES): $(addprefix $$@.,$(MODES))
|
2012-07-03 07:45:58 +00:00
|
|
|
|
2012-07-18 11:43:44 +00:00
|
|
|
$(ANDROID_BUILDS): $(GYPFILES) $(ENVFILE) build/android.gypi \
|
2012-08-31 13:31:09 +00:00
|
|
|
must-set-ANDROID_NDK_ROOT_OR_TOOLCHAIN Makefile.android
|
2012-07-27 11:14:44 +00:00
|
|
|
@$(MAKE) -f Makefile.android $@ \
|
|
|
|
ARCH="$(basename $@)" \
|
|
|
|
MODE="$(subst .,,$(suffix $@))" \
|
|
|
|
OUTDIR="$(OUTDIR)" \
|
|
|
|
GYPFLAGS="$(GYPFLAGS)"
|
2012-01-16 13:29:12 +00:00
|
|
|
|
2013-04-17 08:27:40 +00:00
|
|
|
$(NACL_ARCHES): $(addprefix $$@.,$(MODES))
|
|
|
|
|
|
|
|
$(NACL_BUILDS): $(GYPFILES) $(ENVFILE) \
|
|
|
|
Makefile.nacl must-set-NACL_SDK_ROOT
|
|
|
|
@$(MAKE) -f Makefile.nacl $@ \
|
|
|
|
ARCH="$(basename $@)" \
|
|
|
|
MODE="$(subst .,,$(suffix $@))" \
|
|
|
|
OUTDIR="$(OUTDIR)" \
|
|
|
|
GYPFLAGS="$(GYPFLAGS)"
|
|
|
|
|
2011-08-05 09:44:30 +00:00
|
|
|
# Test targets.
|
|
|
|
check: all
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2011-11-09 16:18:36 +00:00
|
|
|
--arch=$(shell echo $(DEFAULT_ARCHES) | sed -e 's/ /,/g') \
|
2011-10-06 11:08:41 +00:00
|
|
|
$(TESTFLAGS)
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-08-10 11:07:31 +00:00
|
|
|
$(addsuffix .check,$(MODES)): $$(basename $$@)
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2011-10-06 11:08:41 +00:00
|
|
|
--mode=$(basename $@) $(TESTFLAGS)
|
2011-08-05 09:44:30 +00:00
|
|
|
|
|
|
|
$(addsuffix .check,$(ARCHES)): $$(basename $$@)
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2011-10-06 11:08:41 +00:00
|
|
|
--arch=$(basename $@) $(TESTFLAGS)
|
2011-08-05 09:44:30 +00:00
|
|
|
|
|
|
|
$(CHECKS): $$(basename $$@)
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2011-10-06 11:08:41 +00:00
|
|
|
--arch-and-mode=$(basename $@) $(TESTFLAGS)
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2012-07-18 11:43:44 +00:00
|
|
|
$(addsuffix .sync, $(ANDROID_BUILDS)): $$(basename $$@)
|
2012-07-03 07:45:58 +00:00
|
|
|
@tools/android-sync.sh $(basename $@) $(OUTDIR) \
|
|
|
|
$(shell pwd) $(ANDROID_V8)
|
|
|
|
|
2012-07-18 11:43:44 +00:00
|
|
|
$(addsuffix .check, $(ANDROID_BUILDS)): $$(basename $$@).sync
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2012-07-03 07:45:58 +00:00
|
|
|
--arch-and-mode=$(basename $@) \
|
2012-08-01 13:06:08 +00:00
|
|
|
--timeout=600 \
|
2013-10-25 05:52:11 +00:00
|
|
|
--command-prefix="tools/android-run.py" $(TESTFLAGS)
|
2012-07-03 07:45:58 +00:00
|
|
|
|
2012-07-18 11:43:44 +00:00
|
|
|
$(addsuffix .check, $(ANDROID_ARCHES)): \
|
|
|
|
$(addprefix $$(basename $$@).,$(MODES)).check
|
2012-07-03 07:45:58 +00:00
|
|
|
|
2013-04-17 08:27:40 +00:00
|
|
|
$(addsuffix .check, $(NACL_BUILDS)): $$(basename $$@)
|
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
|
|
|
--arch-and-mode=$(basename $@) \
|
2013-09-19 12:07:03 +00:00
|
|
|
--timeout=600 --nopresubmit --noi18n \
|
2013-04-17 08:27:40 +00:00
|
|
|
--command-prefix="tools/nacl-run.py"
|
|
|
|
|
|
|
|
$(addsuffix .check, $(NACL_ARCHES)): \
|
|
|
|
$(addprefix $$(basename $$@).,$(MODES)).check
|
|
|
|
|
2011-09-15 08:16:07 +00:00
|
|
|
native.check: native
|
2012-10-18 14:21:35 +00:00
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR)/native \
|
2011-10-06 11:08:41 +00:00
|
|
|
--arch-and-mode=. $(TESTFLAGS)
|
2011-09-15 08:16:07 +00:00
|
|
|
|
2013-11-28 13:18:04 +00:00
|
|
|
FASTTESTFLAGS = --flaky-tests=skip --slow-tests=skip --pass-fail-tests=skip \
|
|
|
|
--variants=default,stress
|
|
|
|
FASTTESTMODES = ia32.release,x64.release,ia32.debug,x64.debug,arm.debug
|
|
|
|
|
|
|
|
quickcheck:
|
2013-12-01 11:40:02 +00:00
|
|
|
@$(MAKE) all optdebug=on
|
|
|
|
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
2013-11-28 13:18:04 +00:00
|
|
|
--arch-and-mode=$(FASTTESTMODES) $(FASTTESTFLAGS) $(TESTFLAGS)
|
|
|
|
qc: quickcheck
|
|
|
|
|
2011-08-05 09:44:30 +00:00
|
|
|
# Clean targets. You can clean each architecture individually, or everything.
|
2013-04-17 08:27:40 +00:00
|
|
|
$(addsuffix .clean, $(ARCHES) $(ANDROID_ARCHES) $(NACL_ARCHES)):
|
2012-05-03 08:11:38 +00:00
|
|
|
rm -f $(OUTDIR)/Makefile.$(basename $@)
|
2011-08-05 09:44:30 +00:00
|
|
|
rm -rf $(OUTDIR)/$(basename $@).release
|
|
|
|
rm -rf $(OUTDIR)/$(basename $@).debug
|
2012-05-03 08:11:38 +00:00
|
|
|
find $(OUTDIR) -regex '.*\(host\|target\).$(basename $@)\.mk' -delete
|
2011-08-05 09:44:30 +00:00
|
|
|
|
2011-09-15 08:16:07 +00:00
|
|
|
native.clean:
|
2012-05-03 08:11:38 +00:00
|
|
|
rm -f $(OUTDIR)/Makefile.native
|
2011-09-15 08:16:07 +00:00
|
|
|
rm -rf $(OUTDIR)/native
|
2012-05-03 08:11:38 +00:00
|
|
|
find $(OUTDIR) -regex '.*\(host\|target\).native\.mk' -delete
|
2011-09-15 08:16:07 +00:00
|
|
|
|
2013-04-17 08:27:40 +00:00
|
|
|
clean: $(addsuffix .clean, $(ARCHES) $(ANDROID_ARCHES) $(NACL_ARCHES)) native.clean
|
2011-08-05 09:44:30 +00:00
|
|
|
|
|
|
|
# GYP file generation targets.
|
2012-07-27 11:14:44 +00:00
|
|
|
OUT_MAKEFILES = $(addprefix $(OUTDIR)/Makefile.,$(ARCHES))
|
|
|
|
$(OUT_MAKEFILES): $(GYPFILES) $(ENVFILE)
|
2013-07-15 15:41:21 +00:00
|
|
|
PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \
|
2012-03-28 12:42:49 +00:00
|
|
|
GYP_GENERATORS=make \
|
2011-11-09 16:18:36 +00:00
|
|
|
build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
|
2012-05-03 08:11:38 +00:00
|
|
|
-Ibuild/standalone.gypi --depth=. \
|
|
|
|
-Dv8_target_arch=$(subst .,,$(suffix $@)) \
|
|
|
|
-S.$(subst .,,$(suffix $@)) $(GYPFLAGS)
|
2011-11-09 16:18:36 +00:00
|
|
|
|
2012-05-03 08:11:38 +00:00
|
|
|
$(OUTDIR)/Makefile.native: $(GYPFILES) $(ENVFILE)
|
2013-07-15 15:41:21 +00:00
|
|
|
PYTHONPATH="$(shell pwd)/tools/generate_shim_headers:$(PYTHONPATH)" \
|
2012-03-28 12:42:49 +00:00
|
|
|
GYP_GENERATORS=make \
|
2011-09-15 08:16:07 +00:00
|
|
|
build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
|
2012-05-03 08:11:38 +00:00
|
|
|
-Ibuild/standalone.gypi --depth=. -S.native $(GYPFLAGS)
|
2011-09-15 08:16:07 +00:00
|
|
|
|
2012-08-31 13:31:09 +00:00
|
|
|
must-set-ANDROID_NDK_ROOT_OR_TOOLCHAIN:
|
2012-01-16 13:29:12 +00:00
|
|
|
ifndef ANDROID_NDK_ROOT
|
2012-08-31 13:31:09 +00:00
|
|
|
ifndef ANDROID_TOOLCHAIN
|
|
|
|
$(error ANDROID_NDK_ROOT or ANDROID_TOOLCHAIN must be set))
|
|
|
|
endif
|
2012-01-16 13:29:12 +00:00
|
|
|
endif
|
|
|
|
|
2013-04-17 08:27:40 +00:00
|
|
|
# Note that NACL_SDK_ROOT must be set to point to an appropriate
|
|
|
|
# Native Client SDK before using this makefile. You can download
|
|
|
|
# an SDK here:
|
|
|
|
# https://developers.google.com/native-client/sdk/download
|
|
|
|
# The path indicated by NACL_SDK_ROOT will typically end with
|
|
|
|
# a folder for a pepper version such as "pepper_25" that should
|
|
|
|
# have "tools" and "toolchain" subdirectories.
|
|
|
|
must-set-NACL_SDK_ROOT:
|
|
|
|
ifndef NACL_SDK_ROOT
|
|
|
|
$(error NACL_SDK_ROOT must be set)
|
|
|
|
endif
|
|
|
|
|
2011-08-26 11:23:51 +00:00
|
|
|
# Replaces the old with the new environment file if they're different, which
|
|
|
|
# will trigger GYP to regenerate Makefiles.
|
|
|
|
$(ENVFILE): $(ENVFILE).new
|
2013-08-02 09:02:02 +00:00
|
|
|
@if test -r $(ENVFILE) && cmp $(ENVFILE).new $(ENVFILE) > /dev/null; \
|
2011-08-26 11:23:51 +00:00
|
|
|
then rm $(ENVFILE).new; \
|
|
|
|
else mv $(ENVFILE).new $(ENVFILE); fi
|
|
|
|
|
|
|
|
# Stores current GYPFLAGS in a file.
|
|
|
|
$(ENVFILE).new:
|
2012-04-13 07:59:09 +00:00
|
|
|
@mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \
|
|
|
|
echo "CXX=$(CXX)" >> $(ENVFILE).new
|
2011-09-07 13:48:29 +00:00
|
|
|
|
2013-08-02 09:02:02 +00:00
|
|
|
# Heap constants for grokdump.
|
|
|
|
DUMP_FILE = tools/v8heapconst.py
|
|
|
|
grokdump: ia32.release
|
|
|
|
@cat $(DUMP_FILE).tmpl > $(DUMP_FILE)
|
|
|
|
@$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE)
|
|
|
|
|
2011-09-07 13:48:29 +00:00
|
|
|
# Dependencies.
|
2012-09-26 09:12:45 +00:00
|
|
|
# Remember to keep these in sync with the DEPS file.
|
2011-09-07 13:48:29 +00:00
|
|
|
dependencies:
|
|
|
|
svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
|
2013-07-31 13:41:12 +00:00
|
|
|
--revision 1685
|
2013-07-01 08:32:41 +00:00
|
|
|
svn checkout --force \
|
|
|
|
https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
|
2013-07-31 13:41:12 +00:00
|
|
|
third_party/icu --revision 214189
|