blob: ac1d64e622753e9931578523641b2191327e6ebe [file] [log] [blame]
Brian Carlstrom69b15fb2011-09-03 12:25:21 -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
17ART_HOST_EXECUTABLES :=
18ART_TARGET_EXECUTABLES :=
19
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080020ART_EXECUTABLES_CFLAGS :=
21ifeq ($(ART_USE_LLVM_COMPILER),true)
22 ART_EXECUTABLES_CFLAGS += -DART_USE_LLVM_COMPILER=1
Shih-wei Liao21d28f52012-06-12 05:55:00 -070023 ifeq ($(ART_USE_DEXLANG_FRONTEND),true)
24 ART_EXECUTABLES_CFLAGS += -DART_USE_DEXLANG_FRONTEND=1
25 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080026endif
27
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -070028ifeq ($(ART_USE_GREENLAND_COMPILER),true)
29 ART_EXECUTABLES_CFLAGS += -DART_USE_GREENLAND_COMPILER=1
30endif
31
buzbee2cfc6392012-05-07 14:51:40 -070032ifeq ($(ART_USE_QUICK_COMPILER),true)
33 ART_EXECUTABLES_CFLAGS += -DART_USE_QUICK_COMPILER=1
34endif
35
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070036# $(1): executable ("d" will be appended for debug version)
37# $(2): source
38# $(3): target or host
39# $(4): ndebug or debug
40define build-art-executable
Brian Carlstrom0796af02011-10-12 14:31:45 -070041 ifneq ($(3),target)
42 ifneq ($(3),host)
43 $$(error expected target or host for argument 3, received $(3))
44 endif
45 endif
46 ifneq ($(4),ndebug)
47 ifneq ($(4),debug)
48 $$(error expected ndebug or debug for argument 4, received $(4))
49 endif
50 endif
51
52 art_executable := $(1)
53 art_source := $(2)
54 art_target_or_host := $(3)
55 art_ndebug_or_debug := $(4)
56
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070057 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070058 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070059 include external/stlport/libstlport.mk
60 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070061
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070062 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070063 LOCAL_MODULE_TAGS := optional
Brian Carlstrom0796af02011-10-12 14:31:45 -070064 LOCAL_SRC_FILES := $$(art_source)
65 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
66 LOCAL_SHARED_LIBRARIES := libnativehelper
67
68 ifeq ($$(art_ndebug_or_debug),ndebug)
69 LOCAL_MODULE := $$(art_executable)
70 else #debug
71 LOCAL_MODULE := $$(art_executable)d
Elliott Hughes1d3f1142011-09-13 12:00:00 -070072 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070073
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080074 LOCAL_CFLAGS := $(ART_EXECUTABLES_CFLAGS)
Brian Carlstrom89521892011-12-07 22:05:07 -080075 ifeq ($$(art_target_or_host),target)
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080076 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070077 ifeq ($$(art_ndebug_or_debug),debug)
Brian Carlstrom86927212011-09-15 11:31:11 -070078 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070079 else
80 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070081 endif
82 else # host
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080083 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070084 ifeq ($$(art_ndebug_or_debug),debug)
Brian Carlstrom86927212011-09-15 11:31:11 -070085 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070086 else
87 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
Brian Carlstrom86927212011-09-15 11:31:11 -070088 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070089 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070090
91 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070092 LOCAL_SHARED_LIBRARIES += libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070093 else # debug
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070094 LOCAL_SHARED_LIBRARIES += libartd
Elliott Hughes06e3ad42012-02-07 14:51:57 -080095 ifeq ($$(art_target_or_host),target)
96 LOCAL_SHARED_LIBRARIES += libdynamic_annotations
97 else
98 LOCAL_SHARED_LIBRARIES += libdynamic_annotations-host
99 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700100 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700101
102 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700103 LOCAL_SHARED_LIBRARIES += libstlport
104 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700105
106 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700107 include $(BUILD_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700108 ART_TARGET_EXECUTABLES := $(ART_TARGET_EXECUTABLES) $(TARGET_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
109 else # host
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700110 include $(BUILD_HOST_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700111 ART_HOST_EXECUTABLES := $(ART_HOST_EXECUTABLES) $(HOST_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700112 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700113
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700114endef
115
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700116ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
117 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700118 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700119 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700120endif
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700121ifeq ($(ART_BUILD_TARGET_DEBUG),true)
122 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700123 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,debug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700124 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,debug))
125endif
126ifeq ($(ART_BUILD_HOST_NDEBUG),true)
127 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700128 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700129 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700130endif
131ifeq ($(ART_BUILD_HOST_DEBUG),true)
132 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700133 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700134 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700135endif