blob: c7a85eff7fe18a53e4eb451505e5f19d93ee1ae1 [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)
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070057 LOCAL_IS_HOST_MODULE := true
Brian Carlstrom07d579f2011-07-27 13:31:51 -070058 endif
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080059
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070060 GENERATED_SRC_DIR := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),$$(LOCAL_IS_HOST_MODULE),)
61 ENUM_OPERATOR_OUT_CC_FILES := $$(patsubst %.h,%_operator_out.cc,$$(LIBART_ENUM_OPERATOR_OUT_HEADER_FILES))
62 ENUM_OPERATOR_OUT_GEN := $$(addprefix $$(GENERATED_SRC_DIR)/,$$(ENUM_OPERATOR_OUT_CC_FILES))
63
64$$(ENUM_OPERATOR_OUT_GEN): art/tools/generate-operator-out.py
65$$(ENUM_OPERATOR_OUT_GEN): PRIVATE_CUSTOM_TOOL = art/tools/generate-operator-out.py $$< > $$@
Elliott Hughesef67aec2012-04-04 12:01:27 -070066$$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : art/%.h
Elliott Hughes0e57ccb2012-04-03 16:04:52 -070067 $$(transform-generated-source)
68
69 LOCAL_GENERATED_SOURCES += $$(ENUM_OPERATOR_OUT_GEN)
70
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080071 LOCAL_CFLAGS := $(LIBART_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070072 ifeq ($$(art_target_or_host),target)
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080073 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070074 else # host
Shih-wei Liaoc4c98812012-03-10 21:55:51 -080075 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Elliott Hughes1d3f1142011-09-13 12:00:00 -070076 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070077 ifeq ($$(art_ndebug_or_debug),debug)
78 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070079 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070080 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070081 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Brian Carlstrom08125a02011-09-16 14:55:51 -070082 LOCAL_STATIC_LIBRARIES := libgtest_host
Brian Carlstrom86927212011-09-15 11:31:11 -070083 endif
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070084 else
85 ifeq ($$(art_target_or_host),target)
86 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
87 else # host
88 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
89 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070090 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070091 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Shih-wei Liaod1fec812012-02-13 09:51:10 -080092 ifeq ($(ART_USE_LLVM_COMPILER),true)
Shih-wei Liao5b8b1ed2012-02-23 23:48:21 -080093 LOCAL_C_INCLUDES += frameworks/compile/linkloader
Logan Chienc38a9012012-03-27 20:25:58 +080094 LOCAL_STATIC_LIBRARIES += librsloader libLLVMSupport
Shih-wei Liaod1fec812012-02-13 09:51:10 -080095 endif
Elliott Hughes18c07532011-08-18 15:50:51 -070096 LOCAL_SHARED_LIBRARIES := liblog libnativehelper
Brian Carlstrom0796af02011-10-12 14:31:45 -070097 ifeq ($$(art_target_or_host),target)
Elliott Hughesffb465f2012-03-01 18:46:05 -080098 LOCAL_SHARED_LIBRARIES += libcutils libstlport libz libdl
99 LOCAL_SHARED_LIBRARIES += libdynamic_annotations # tsan support
100 LOCAL_SHARED_LIBRARIES += libcorkscrew # native stack trace 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
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800105 LOCAL_LDLIBS := -ldl -lpthread
106 ifeq ($(HOST_OS),linux)
107 LOCAL_LDLIBS += -lrt
108 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700109 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -0700110 ifeq ($$(art_target_or_host),target)
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800111 ifeq ($(ART_USE_LLVM_COMPILER),true)
112 include $(LLVM_GEN_INTRINSICS_MK)
113 include $(LLVM_DEVICE_BUILD_MK)
114 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700115 include $(BUILD_SHARED_LIBRARY)
Brian Carlstrom0796af02011-10-12 14:31:45 -0700116 else # host
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800117 ifeq ($(ART_USE_LLVM_COMPILER),true)
118 include $(LLVM_GEN_INTRINSICS_MK)
119 include $(LLVM_HOST_BUILD_MK)
120 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700121 include $(BUILD_HOST_SHARED_LIBRARY)
122 endif
123endef
124
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700125ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
126 $(eval $(call build-libart,target,ndebug))
127endif
128ifeq ($(ART_BUILD_TARGET_DEBUG),true)
129 $(eval $(call build-libart,target,debug))
130endif
131ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700132 $(eval $(call build-libart,host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700133endif
134ifeq ($(ART_BUILD_HOST_DEBUG),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -0700135 $(eval $(call build-libart,host,debug))
136endif