blob: d7ebefe25bdfa26ab343eddfc1a1e577f2964f20 [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
Brian Carlstrom07d579f2011-07-27 13:31:51 -070017# $(1): target or host
18# $(2): ndebug or debug
19define build-libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070020 ifneq ($(1),target)
21 ifneq ($(1),host)
22 $$(error expected target or host for argument 1, received $(1))
23 endif
24 endif
25 ifneq ($(2),ndebug)
26 ifneq ($(2),debug)
27 $$(error expected ndebug or debug for argument 2, received $(2))
28 endif
29 endif
30
31 art_target_or_host := $(1)
32 art_ndebug_or_debug := $(2)
33
Brian Carlstrom07d579f2011-07-27 13:31:51 -070034 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070035 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070036 include external/stlport/libstlport.mk
37 endif
38 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom0796af02011-10-12 14:31:45 -070039 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070040 LOCAL_MODULE := libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070041 else # debug
Brian Carlstrom07d579f2011-07-27 13:31:51 -070042 LOCAL_MODULE := libartd
43 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070044
Brian Carlstrom07d579f2011-07-27 13:31:51 -070045 LOCAL_MODULE_TAGS := optional
Shih-wei Liaod1fec812012-02-13 09:51:10 -080046 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
47
Brian Carlstrom0796af02011-10-12 14:31:45 -070048 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070049 LOCAL_SRC_FILES := $(LIBART_TARGET_SRC_FILES)
Brian Carlstrom0796af02011-10-12 14:31:45 -070050 else # host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070051 LOCAL_SRC_FILES := $(LIBART_HOST_SRC_FILES)
52 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070053 ifeq ($$(art_target_or_host),target)
Elliott Hughes1d3f1142011-09-13 12:00:00 -070054 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070055 else # host
Elliott Hughes1d3f1142011-09-13 12:00:00 -070056 LOCAL_CFLAGS := $(ART_HOST_CFLAGS)
57 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070058 ifeq ($$(art_ndebug_or_debug),debug)
59 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070060 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070061 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070062 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Brian Carlstrom08125a02011-09-16 14:55:51 -070063 LOCAL_STATIC_LIBRARIES := libgtest_host
Brian Carlstrom86927212011-09-15 11:31:11 -070064 endif
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070065 else
66 ifeq ($$(art_target_or_host),target)
67 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
68 else # host
69 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
70 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070071 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070072 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Shih-wei Liaod1fec812012-02-13 09:51:10 -080073 ifeq ($(ART_USE_LLVM_COMPILER),true)
74 LOCAL_STATIC_LIBRARIES += libLLVMBitWriter libLLVMCore libLLVMSupport
75 endif
Elliott Hughes18c07532011-08-18 15:50:51 -070076 LOCAL_SHARED_LIBRARIES := liblog libnativehelper
Brian Carlstrom0796af02011-10-12 14:31:45 -070077 ifeq ($$(art_target_or_host),target)
Elliott Hughes06e3ad42012-02-07 14:51:57 -080078 LOCAL_SHARED_LIBRARIES += libcutils libstlport libz libdl libdynamic_annotations
Brian Carlstrom0796af02011-10-12 14:31:45 -070079 else # host
Elliott Hughes6c9c06d2011-11-07 16:43:47 -080080 LOCAL_STATIC_LIBRARIES += libcutils
Elliott Hughes06e3ad42012-02-07 14:51:57 -080081 LOCAL_SHARED_LIBRARIES += libz-host libdynamic_annotations-host
Elliott Hughesad6c9c32012-01-19 17:39:12 -080082 LOCAL_LDLIBS := -ldl -lpthread
83 ifeq ($(HOST_OS),linux)
84 LOCAL_LDLIBS += -lrt
85 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070086 endif
buzbeec143c552011-08-20 17:38:58 -070087 LOCAL_STATIC_LIBRARIES += libdex
Brian Carlstrom0796af02011-10-12 14:31:45 -070088 ifeq ($$(art_target_or_host),target)
Shih-wei Liaod1fec812012-02-13 09:51:10 -080089 ifeq ($(ART_USE_LLVM_COMPILER),true)
90 include $(LLVM_GEN_INTRINSICS_MK)
91 include $(LLVM_DEVICE_BUILD_MK)
92 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070093 include $(BUILD_SHARED_LIBRARY)
Brian Carlstrom0796af02011-10-12 14:31:45 -070094 else # host
Shih-wei Liaod1fec812012-02-13 09:51:10 -080095 LOCAL_IS_HOST_MODULE := true
96 ifeq ($(ART_USE_LLVM_COMPILER),true)
97 include $(LLVM_GEN_INTRINSICS_MK)
98 include $(LLVM_HOST_BUILD_MK)
99 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700100 include $(BUILD_HOST_SHARED_LIBRARY)
101 endif
102endef
103
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700104ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
105 $(eval $(call build-libart,target,ndebug))
106endif
107ifeq ($(ART_BUILD_TARGET_DEBUG),true)
108 $(eval $(call build-libart,target,debug))
109endif
110ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700111 $(eval $(call build-libart,host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700112endif
113ifeq ($(ART_BUILD_HOST_DEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700114 $(eval $(call build-libart,host,debug))
115endif