blob: 10936a45d67cd7b33b8a53c442f6f57d378e4c1f [file] [log] [blame]
Brian Carlstrom16192862011-09-12 17:50:06 -07001#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Brian Carlstrom27ec9612011-09-19 20:20:38 -070017########################################################################
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080018# Rules to build a smaller "core" image to support core libraries
19# (that is, non-Android frameworks) testing on the host and target
20#
21# The main rules to build the default "boot" image are in
22# build/core/dex_preopt_libart.mk
Brian Carlstrom16192862011-09-12 17:50:06 -070023
Ian Rogersafd9acc2014-06-17 08:21:54 -070024include art/build/Android.common_path.mk
Dave Allison70202782013-10-22 17:52:19 -070025
Nicolas Geoffray1db132d2014-03-26 10:56:24 +000026# Use dex2oat debug version for better error reporting
Ian Rogersafd9acc2014-06-17 08:21:54 -070027# $(1): 2ND_ or undefined, 2ND_ for 32-bit host builds.
28define create-core-oat-host-rules
Brian Carlstrom3d4e6842014-07-28 23:12:58 +000029$$($(1)HOST_CORE_IMG_OUT): $$(HOST_CORE_DEX_FILES) $$(DEX2OATD_DEPENDENCY)
Ian Rogersafd9acc2014-06-17 08:21:54 -070030 @echo "host dex2oat: $$@ ($$?)"
31 @mkdir -p $$(dir $$@)
Colin Cross44a3c192014-07-09 22:14:12 -070032 $$(hide) $$(DEX2OATD) --runtime-arg -Xms$(DEX2OAT_IMAGE_XMS) --runtime-arg -Xmx$(DEX2OAT_IMAGE_XMX) \
Ian Rogersafd9acc2014-06-17 08:21:54 -070033 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(HOST_CORE_DEX_FILES)) \
34 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)HOST_CORE_OAT_OUT) \
35 --oat-location=$$($(1)HOST_CORE_OAT) --image=$$($(1)HOST_CORE_IMG_OUT) \
36 --base=$$(LIBART_IMG_HOST_BASE_ADDRESS) --instruction-set=$$($(1)ART_HOST_ARCH) \
37 --instruction-set-features=$$($(1)HOST_INSTRUCTION_SET_FEATURES) \
Alex Light53cb16b2014-06-12 11:26:29 -070038 --host --android-root=$$(HOST_OUT) --include-patch-information
Brian Carlstrom27ec9612011-09-19 20:20:38 -070039
Ian Rogersafd9acc2014-06-17 08:21:54 -070040# This "renaming" eases declaration in art/Android.mk
41HOST_CORE_IMG_OUT$($(1)ART_PHONY_TEST_HOST_SUFFIX) := $($(1)HOST_CORE_IMG_OUT)
42
43$$($(1)HOST_CORE_OAT_OUT): $$($(1)HOST_CORE_IMG_OUT)
44endef # create-core-oat-host-rules
45
46$(eval $(call create-core-oat-host-rules,))
47ifneq ($(HOST_PREFER_32_BIT),true)
48$(eval $(call create-core-oat-host-rules,2ND_))
49endif
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070050
Ian Rogersafd9acc2014-06-17 08:21:54 -070051define create-core-oat-target-rules
Brian Carlstrom3d4e6842014-07-28 23:12:58 +000052$$($(1)TARGET_CORE_IMG_OUT): $$($(1)TARGET_CORE_DEX_FILES) $$(DEX2OATD_DEPENDENCY)
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070053 @echo "target dex2oat: $$@ ($$?)"
54 @mkdir -p $$(dir $$@)
Colin Cross44a3c192014-07-09 22:14:12 -070055 $$(hide) $$(DEX2OATD) --runtime-arg -Xms$(DEX2OAT_XMS) --runtime-arg -Xmx$(DEX2OAT_XMX) \
Ian Rogersafd9acc2014-06-17 08:21:54 -070056 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(TARGET_CORE_DEX_FILES)) \
57 $$(addprefix --dex-location=,$$(TARGET_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)TARGET_CORE_OAT_OUT) \
58 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) \
59 --base=$$(LIBART_IMG_TARGET_BASE_ADDRESS) --instruction-set=$$($(1)TARGET_ARCH) \
60 --instruction-set-features=$$($(1)TARGET_INSTRUCTION_SET_FEATURES) \
Alex Light53cb16b2014-06-12 11:26:29 -070061 --android-root=$$(PRODUCT_OUT)/system --include-patch-information
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070062
Andreas Gampe2fe07922014-04-21 07:50:39 -070063# This "renaming" eases declaration in art/Android.mk
64TARGET_CORE_IMG_OUT$($(1)ART_PHONY_TEST_TARGET_SUFFIX) := $($(1)TARGET_CORE_IMG_OUT)
65
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070066$$($(1)TARGET_CORE_OAT_OUT): $$($(1)TARGET_CORE_IMG_OUT)
Ian Rogersafd9acc2014-06-17 08:21:54 -070067endef # create-core-oat-target-rules
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070068
69ifdef TARGET_2ND_ARCH
Ian Rogersafd9acc2014-06-17 08:21:54 -070070$(eval $(call create-core-oat-target-rules,2ND_))
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070071endif
Ian Rogersafd9acc2014-06-17 08:21:54 -070072$(eval $(call create-core-oat-target-rules,))
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070073
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070074
Brian Carlstromcb91f1a2013-02-01 12:55:09 -080075ifeq ($(ART_BUILD_HOST),true)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070076include $(CLEAR_VARS)
77LOCAL_MODULE := core.art-host
78LOCAL_MODULE_TAGS := optional
Brian Carlstromc0ee6502013-07-12 18:09:50 -070079LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
80LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
Brian Carlstrom51c24672013-07-11 16:00:56 -070081LOCAL_ADDITIONAL_DEPENDENCIES += $(HOST_CORE_IMG_OUT)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070082include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080083endif # ART_BUILD_HOST
Brian Carlstrom85545cd2012-06-27 14:28:06 -070084
Brian Carlstrom2b070962013-10-29 13:35:25 -070085# If we aren't building the host toolchain, skip building the target core.art.
Brian Carlstromdc959ea2013-10-28 00:44:49 -070086ifeq ($(ART_BUILD_TARGET),true)
87include $(CLEAR_VARS)
88LOCAL_MODULE := core.art
89LOCAL_MODULE_TAGS := optional
90LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
91LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
92LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_CORE_IMG_OUT)
93include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080094endif # ART_BUILD_TARGET