blob: 5bc8f4635f94b2aa65433cd9bb8c53f3e6ec1258 [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
20endif
21
Brian Carlstrom07d579f2011-07-27 13:31:51 -070022# $(1): target or host
23# $(2): ndebug or debug
24define build-libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070025 ifneq ($(1),target)
26 ifneq ($(1),host)
27 $$(error expected target or host for argument 1, received $(1))
28 endif
29 endif
30 ifneq ($(2),ndebug)
31 ifneq ($(2),debug)
32 $$(error expected ndebug or debug for argument 2, received $(2))
33 endif
34 endif
35
36 art_target_or_host := $(1)
37 art_ndebug_or_debug := $(2)
38
Brian Carlstrom07d579f2011-07-27 13:31:51 -070039 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070040 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070041 include external/stlport/libstlport.mk
42 endif
43 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom0796af02011-10-12 14:31:45 -070044 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070045 LOCAL_MODULE := libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070046 else # debug
Brian Carlstrom07d579f2011-07-27 13:31:51 -070047 LOCAL_MODULE := libartd
48 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070049
Brian Carlstrom07d579f2011-07-27 13:31:51 -070050 LOCAL_MODULE_TAGS := optional
Shih-wei Liaod1fec812012-02-13 09:51:10 -080051 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
52
Brian Carlstrom0796af02011-10-12 14:31:45 -070053 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070054 LOCAL_SRC_FILES := $(LIBART_TARGET_SRC_FILES)
Brian Carlstrom0796af02011-10-12 14:31:45 -070055 else # host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070056 LOCAL_SRC_FILES := $(LIBART_HOST_SRC_FILES)
57 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080058
59 LOCAL_CFLAGS := $(LIBART_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070060 ifeq ($$(art_target_or_host),target)
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080061 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070062 else # host
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080063 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Elliott Hughes1d3f1142011-09-13 12:00:00 -070064 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070065 ifeq ($$(art_ndebug_or_debug),debug)
66 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070067 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070068 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070069 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Brian Carlstrom08125a02011-09-16 14:55:51 -070070 LOCAL_STATIC_LIBRARIES := libgtest_host
Brian Carlstrom86927212011-09-15 11:31:11 -070071 endif
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070072 else
73 ifeq ($$(art_target_or_host),target)
74 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
75 else # host
76 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
77 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070078 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070079 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Shih-wei Liaod1fec812012-02-13 09:51:10 -080080 ifeq ($(ART_USE_LLVM_COMPILER),true)
Shih-wei Liao5b8b1ed2012-02-23 23:48:21 -080081 LOCAL_C_INCLUDES += frameworks/compile/linkloader
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080082 LOCAL_STATIC_LIBRARIES += librsloader
Logan Chien8b977d32012-02-21 19:14:55 +080083 libart_arm_STATIC_LIBRARIES := \
84 libLLVMARMInfo \
85 libLLVMARMDisassembler \
86 libLLVMARMAsmParser \
87 libLLVMARMAsmPrinter \
88 libLLVMARMCodeGen \
89 libLLVMARMDesc
90
91 libart_mips_STATIC_LIBRARIES := \
92 libLLVMMipsInfo \
93 libLLVMMipsCodeGen \
94 libLLVMMipsDesc \
95 libLLVMMipsAsmPrinter \
96
97 libart_x86_STATIC_LIBRARIES := \
98 libLLVMX86Info \
99 libLLVMX86AsmParser \
100 libLLVMX86CodeGen \
101 libLLVMX86Disassembler \
102 libLLVMX86Desc \
103 libLLVMX86AsmPrinter \
104 libLLVMX86Utils
105
106 ifeq ($$(art_target_or_host),target)
107 LOCAL_STATIC_LIBRARIES += \
108 $$(libart_arm_STATIC_LIBRARIES)
109 else
110 LOCAL_STATIC_LIBRARIES += \
111 $$(libart_arm_STATIC_LIBRARIES) \
112 $$(libart_mips_STATIC_LIBRARIES) \
113 $$(libart_x86_STATIC_LIBRARIES)
114 endif
115
116 LOCAL_STATIC_LIBRARIES += \
117 libLLVMLinker \
118 libLLVMipo \
119 libLLVMBitWriter \
120 libLLVMBitReader \
121 libLLVMAsmPrinter \
122 libLLVMSelectionDAG \
123 libLLVMCodeGen \
124 libLLVMScalarOpts \
125 libLLVMInstCombine \
126 libLLVMInstrumentation \
127 libLLVMTransformUtils \
128 libLLVMipa \
129 libLLVMAnalysis \
130 libLLVMTarget \
131 libLLVMMC \
132 libLLVMMCParser \
133 libLLVMCore \
Shih-wei Liaoc4c98812012-03-10 21:55:51 -0800134 libLLVMSupport
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800135 endif
Elliott Hughes18c07532011-08-18 15:50:51 -0700136 LOCAL_SHARED_LIBRARIES := liblog libnativehelper
Brian Carlstrom0796af02011-10-12 14:31:45 -0700137 ifeq ($$(art_target_or_host),target)
Elliott Hughesffb465f2012-03-01 18:46:05 -0800138 LOCAL_SHARED_LIBRARIES += libcutils libstlport libz libdl
139 LOCAL_SHARED_LIBRARIES += libdynamic_annotations # tsan support
140 LOCAL_SHARED_LIBRARIES += libcorkscrew # native stack trace support
Brian Carlstrom0796af02011-10-12 14:31:45 -0700141 else # host
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800142 LOCAL_STATIC_LIBRARIES += libcutils
Elliott Hughesffb465f2012-03-01 18:46:05 -0800143 LOCAL_SHARED_LIBRARIES += libz-host
144 LOCAL_SHARED_LIBRARIES += libdynamic_annotations-host # tsan support
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800145 LOCAL_LDLIBS := -ldl -lpthread
146 ifeq ($(HOST_OS),linux)
147 LOCAL_LDLIBS += -lrt
148 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700149 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700150 ifeq ($$(art_target_or_host),target)
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800151 ifeq ($(ART_USE_LLVM_COMPILER),true)
152 include $(LLVM_GEN_INTRINSICS_MK)
153 include $(LLVM_DEVICE_BUILD_MK)
154 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700155 include $(BUILD_SHARED_LIBRARY)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700156 else # host
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800157 LOCAL_IS_HOST_MODULE := true
158 ifeq ($(ART_USE_LLVM_COMPILER),true)
159 include $(LLVM_GEN_INTRINSICS_MK)
160 include $(LLVM_HOST_BUILD_MK)
161 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700162 include $(BUILD_HOST_SHARED_LIBRARY)
163 endif
164endef
165
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700166ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
167 $(eval $(call build-libart,target,ndebug))
168endif
169ifeq ($(ART_BUILD_TARGET_DEBUG),true)
170 $(eval $(call build-libart,target,debug))
171endif
172ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700173 $(eval $(call build-libart,host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700174endif
175ifeq ($(ART_BUILD_HOST_DEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700176 $(eval $(call build-libart,host,debug))
177endif