blob: 6eaa778c18772cc11c2fa63d1094561820c76abc [file] [log] [blame]
Carl Shapiro7b216702011-06-17 15:09:26 -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
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080017LIBART_CFLAGS :=
18ifeq ($(ART_USE_LLVM_COMPILER),true)
19 LIBART_CFLAGS += -DART_USE_LLVM_COMPILER=1
Shih-wei Liao21d28f52012-06-12 05:55:00 -070020 ifeq ($(ART_USE_DEXLANG_FRONTEND),true)
21 LIBART_CFLAGS += -DART_USE_DEXLANG_FRONTEND=1
22 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080023endif
24
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -070025ifeq ($(ART_USE_GREENLAND_COMPILER),true)
26 LIBART_CFLAGS += -DART_USE_GREENLAND_COMPILER=1
27endif
28
buzbee2cfc6392012-05-07 14:51:40 -070029ifeq ($(ART_USE_QUICK_COMPILER),true)
30 LIBART_CFLAGS += -DART_USE_QUICK_COMPILER=1
31endif
32
Brian Carlstrom07d579f2011-07-27 13:31:51 -070033# $(1): target or host
34# $(2): ndebug or debug
35define build-libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070036 ifneq ($(1),target)
37 ifneq ($(1),host)
38 $$(error expected target or host for argument 1, received $(1))
39 endif
40 endif
41 ifneq ($(2),ndebug)
42 ifneq ($(2),debug)
43 $$(error expected ndebug or debug for argument 2, received $(2))
44 endif
45 endif
46
47 art_target_or_host := $(1)
48 art_ndebug_or_debug := $(2)
49
Brian Carlstrom07d579f2011-07-27 13:31:51 -070050 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070051 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070052 include external/stlport/libstlport.mk
53 endif
54 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom0796af02011-10-12 14:31:45 -070055 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070056 LOCAL_MODULE := libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070057 else # debug
Brian Carlstrom07d579f2011-07-27 13:31:51 -070058 LOCAL_MODULE := libartd
59 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070060
Brian Carlstrom07d579f2011-07-27 13:31:51 -070061 LOCAL_MODULE_TAGS := optional
Shih-wei Liaod1fec812012-02-13 09:51:10 -080062 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
63
Brian Carlstrom0796af02011-10-12 14:31:45 -070064 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070065 LOCAL_SRC_FILES := $(LIBART_TARGET_SRC_FILES)
Brian Carlstrom0796af02011-10-12 14:31:45 -070066 else # host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070067 LOCAL_SRC_FILES := $(LIBART_HOST_SRC_FILES)
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070068 LOCAL_IS_HOST_MODULE := true
Brian Carlstrom07d579f2011-07-27 13:31:51 -070069 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080070
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070071 GENERATED_SRC_DIR := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),$$(LOCAL_IS_HOST_MODULE),)
72 ENUM_OPERATOR_OUT_CC_FILES := $$(patsubst %.h,%_operator_out.cc,$$(LIBART_ENUM_OPERATOR_OUT_HEADER_FILES))
73 ENUM_OPERATOR_OUT_GEN := $$(addprefix $$(GENERATED_SRC_DIR)/,$$(ENUM_OPERATOR_OUT_CC_FILES))
74
75$$(ENUM_OPERATOR_OUT_GEN): art/tools/generate-operator-out.py
76$$(ENUM_OPERATOR_OUT_GEN): PRIVATE_CUSTOM_TOOL = art/tools/generate-operator-out.py $$< > $$@
Elliott Hughesef67aec2012-04-04 12:01:27 -070077$$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : art/%.h
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070078 $$(transform-generated-source)
79
80 LOCAL_GENERATED_SOURCES += $$(ENUM_OPERATOR_OUT_GEN)
81
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080082 LOCAL_CFLAGS := $(LIBART_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070083 ifeq ($$(art_target_or_host),target)
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080084 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070085 else # host
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080086 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Elliott Hughes1d3f1142011-09-13 12:00:00 -070087 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070088 ifeq ($$(art_ndebug_or_debug),debug)
89 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070090 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070091 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070092 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Brian Carlstromfd2ec542012-05-02 15:08:57 -070093 LOCAL_LDLIBS += $(ART_HOST_DEBUG_LDLIBS)
Brian Carlstrom08125a02011-09-16 14:55:51 -070094 LOCAL_STATIC_LIBRARIES := libgtest_host
Brian Carlstrom86927212011-09-15 11:31:11 -070095 endif
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070096 else
97 ifeq ($$(art_target_or_host),target)
98 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
99 else # host
100 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
101 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700102 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700103 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Elliott Hughes18c07532011-08-18 15:50:51 -0700104 LOCAL_SHARED_LIBRARIES := liblog libnativehelper
Elliott Hughes46e251b2012-05-22 15:10:45 -0700105 LOCAL_SHARED_LIBRARIES += libcorkscrew # native stack trace support
Brian Carlstrom0796af02011-10-12 14:31:45 -0700106 ifeq ($$(art_target_or_host),target)
Elliott Hughesffb465f2012-03-01 18:46:05 -0800107 LOCAL_SHARED_LIBRARIES += libcutils libstlport libz libdl
108 LOCAL_SHARED_LIBRARIES += libdynamic_annotations # tsan support
Brian Carlstrom0796af02011-10-12 14:31:45 -0700109 else # host
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800110 LOCAL_STATIC_LIBRARIES += libcutils
Elliott Hughesffb465f2012-03-01 18:46:05 -0800111 LOCAL_SHARED_LIBRARIES += libz-host
112 LOCAL_SHARED_LIBRARIES += libdynamic_annotations-host # tsan support
Brian Carlstromfd2ec542012-05-02 15:08:57 -0700113 LOCAL_LDLIBS += -ldl -lpthread
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800114 ifeq ($(HOST_OS),linux)
115 LOCAL_LDLIBS += -lrt
116 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700117 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700118 ifeq ($$(art_target_or_host),target)
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -0700119 ifeq ($(ART_REQUIRE_LLVM),true)
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800120 include $(LLVM_GEN_INTRINSICS_MK)
121 include $(LLVM_DEVICE_BUILD_MK)
122 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700123 include $(BUILD_SHARED_LIBRARY)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700124 else # host
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -0700125 ifeq ($(ART_REQUIRE_LLVM),true)
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800126 include $(LLVM_GEN_INTRINSICS_MK)
127 include $(LLVM_HOST_BUILD_MK)
128 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700129 include $(BUILD_HOST_SHARED_LIBRARY)
130 endif
131endef
132
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700133ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
134 $(eval $(call build-libart,target,ndebug))
135endif
136ifeq ($(ART_BUILD_TARGET_DEBUG),true)
137 $(eval $(call build-libart,target,debug))
138endif
139ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700140 $(eval $(call build-libart,host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700141endif
142ifeq ($(ART_BUILD_HOST_DEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700143 $(eval $(call build-libart,host,debug))
144endif