blob: 435056a1b07ce4c7f635bf2751ead72bc99ef4a2 [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
buzbeec531cef2012-10-18 07:09:20 -070021ifeq ($(ART_USE_PORTABLE_COMPILER),true)
22 ART_TEST_CFLAGS += -DART_USE_PORTABLE_COMPILER=1
buzbee2cfc6392012-05-07 14:51:40 -070023endif
24
Brian Carlstrom07d579f2011-07-27 13:31:51 -070025# $(1): target or host
26# $(2): ndebug or debug
27define build-libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070028 ifneq ($(1),target)
29 ifneq ($(1),host)
30 $$(error expected target or host for argument 1, received $(1))
31 endif
32 endif
33 ifneq ($(2),ndebug)
34 ifneq ($(2),debug)
35 $$(error expected ndebug or debug for argument 2, received $(2))
36 endif
37 endif
38
39 art_target_or_host := $(1)
40 art_ndebug_or_debug := $(2)
41
Brian Carlstrom07d579f2011-07-27 13:31:51 -070042 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070043 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070044 include external/stlport/libstlport.mk
45 endif
46 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom0796af02011-10-12 14:31:45 -070047 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070048 LOCAL_MODULE := libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070049 else # debug
Brian Carlstrom07d579f2011-07-27 13:31:51 -070050 LOCAL_MODULE := libartd
51 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070052
Brian Carlstrom07d579f2011-07-27 13:31:51 -070053 LOCAL_MODULE_TAGS := optional
Shih-wei Liaod1fec812012-02-13 09:51:10 -080054 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
55
Brian Carlstrom0796af02011-10-12 14:31:45 -070056 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070057 LOCAL_SRC_FILES := $(LIBART_TARGET_SRC_FILES)
Brian Carlstrom0796af02011-10-12 14:31:45 -070058 else # host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070059 LOCAL_SRC_FILES := $(LIBART_HOST_SRC_FILES)
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070060 LOCAL_IS_HOST_MODULE := true
Brian Carlstrom07d579f2011-07-27 13:31:51 -070061 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080062
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070063 GENERATED_SRC_DIR := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),$$(LOCAL_IS_HOST_MODULE),)
64 ENUM_OPERATOR_OUT_CC_FILES := $$(patsubst %.h,%_operator_out.cc,$$(LIBART_ENUM_OPERATOR_OUT_HEADER_FILES))
65 ENUM_OPERATOR_OUT_GEN := $$(addprefix $$(GENERATED_SRC_DIR)/,$$(ENUM_OPERATOR_OUT_CC_FILES))
66
67$$(ENUM_OPERATOR_OUT_GEN): art/tools/generate-operator-out.py
68$$(ENUM_OPERATOR_OUT_GEN): PRIVATE_CUSTOM_TOOL = art/tools/generate-operator-out.py $$< > $$@
Elliott Hughesef67aec2012-04-04 12:01:27 -070069$$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : art/%.h
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070070 $$(transform-generated-source)
71
72 LOCAL_GENERATED_SOURCES += $$(ENUM_OPERATOR_OUT_GEN)
73
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080074 LOCAL_CFLAGS := $(LIBART_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070075 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 else # host
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080078 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Elliott Hughes1d3f1142011-09-13 12:00:00 -070079 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070080 ifeq ($$(art_ndebug_or_debug),debug)
81 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070082 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070083 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070084 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Brian Carlstromfd2ec542012-05-02 15:08:57 -070085 LOCAL_LDLIBS += $(ART_HOST_DEBUG_LDLIBS)
Brian Carlstrom08125a02011-09-16 14:55:51 -070086 LOCAL_STATIC_LIBRARIES := libgtest_host
Brian Carlstrom86927212011-09-15 11:31:11 -070087 endif
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070088 else
89 ifeq ($$(art_target_or_host),target)
90 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
91 else # host
92 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
93 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070094 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Elliott Hughes18c07532011-08-18 15:50:51 -070096 LOCAL_SHARED_LIBRARIES := liblog libnativehelper
Elliott Hughes46e251b2012-05-22 15:10:45 -070097 LOCAL_SHARED_LIBRARIES += libcorkscrew # native stack trace support
Brian Carlstrom0796af02011-10-12 14:31:45 -070098 ifeq ($$(art_target_or_host),target)
Brian Carlstromc4dc43e2012-10-17 11:11:58 -070099 LOCAL_SHARED_LIBRARIES += libcutils libstlport libz libdl libselinux
Elliott Hughesffb465f2012-03-01 18:46:05 -0800100 LOCAL_SHARED_LIBRARIES += libdynamic_annotations # tsan support
Brian Carlstrom0796af02011-10-12 14:31:45 -0700101 else # host
Elliott Hughes6c9c06d2011-11-07 16:43:47 -0800102 LOCAL_STATIC_LIBRARIES += libcutils
Elliott Hughesffb465f2012-03-01 18:46:05 -0800103 LOCAL_SHARED_LIBRARIES += libz-host
104 LOCAL_SHARED_LIBRARIES += libdynamic_annotations-host # tsan support
Brian Carlstromfd2ec542012-05-02 15:08:57 -0700105 LOCAL_LDLIBS += -ldl -lpthread
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800106 ifeq ($(HOST_OS),linux)
107 LOCAL_LDLIBS += -lrt
108 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700109 endif
buzbeec531cef2012-10-18 07:09:20 -0700110 include $(LLVM_GEN_INTRINSICS_MK)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700111 ifeq ($$(art_target_or_host),target)
buzbeec531cef2012-10-18 07:09:20 -0700112 include $(LLVM_DEVICE_BUILD_MK)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700113 include $(BUILD_SHARED_LIBRARY)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700114 else # host
buzbeec531cef2012-10-18 07:09:20 -0700115 include $(LLVM_HOST_BUILD_MK)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700116 include $(BUILD_HOST_SHARED_LIBRARY)
117 endif
118endef
119
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700120ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
121 $(eval $(call build-libart,target,ndebug))
122endif
123ifeq ($(ART_BUILD_TARGET_DEBUG),true)
124 $(eval $(call build-libart,target,debug))
125endif
126ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700127 $(eval $(call build-libart,host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700128endif
129ifeq ($(ART_BUILD_HOST_DEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700130 $(eval $(call build-libart,host,debug))
131endif