blob: 7d6ee403b7a5913464914d0bc64319e3eb980ccc [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001###########################################################
2## Standard rules for building binary object files from
Ying Wangd8d37212014-03-21 16:17:04 -07003## asm/c/cpp/yacc/lex/etc source files.
The Android Open Source Project88b60792009-03-03 19:28:42 -08004##
5## The list of object files is exported in $(all_objects).
6###########################################################
7
Ying Wangd8d37212014-03-21 16:17:04 -07008#######################################
9include $(BUILD_SYSTEM)/base_rules.mk
10#######################################
11
Dan Albertd3d894d2014-11-14 15:28:49 -080012##################################################
13# Compute the dependency of the shared libraries
14##################################################
15# On the target, we compile with -nostdlib, so we must add in the
16# default system shared libraries, unless they have requested not
17# to by supplying a LOCAL_SYSTEM_SHARED_LIBRARIES value. One would
18# supply that, for example, when building libc itself.
19ifdef LOCAL_IS_HOST_MODULE
20 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
21 my_system_shared_libraries :=
22 else
23 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
24 endif
25else
26 ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none)
Dan Albert7ba582a2015-08-06 12:22:40 -070027 my_system_shared_libraries := libc libm
Dan Albertd3d894d2014-11-14 15:28:49 -080028 else
29 my_system_shared_libraries := $(LOCAL_SYSTEM_SHARED_LIBRARIES)
30 endif
31endif
32
33# The following LOCAL_ variables will be modified in this file.
34# Because the same LOCAL_ variables may be used to define modules for both 1st arch and 2nd arch,
35# we can't modify them in place.
36my_src_files := $(LOCAL_SRC_FILES)
37my_static_libraries := $(LOCAL_STATIC_LIBRARIES)
38my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES)
39my_shared_libraries := $(LOCAL_SHARED_LIBRARIES)
40my_cflags := $(LOCAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -080041my_conlyflags := $(LOCAL_CONLYFLAGS)
Dan Albertd3d894d2014-11-14 15:28:49 -080042my_cppflags := $(LOCAL_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -070043my_cflags_no_override := $(GLOBAL_CFLAGS_NO_OVERRIDE)
44my_cppflags_no_override := $(GLOBAL_CPPFLAGS_NO_OVERRIDE)
Dan Albertd3d894d2014-11-14 15:28:49 -080045my_ldflags := $(LOCAL_LDFLAGS)
46my_ldlibs := $(LOCAL_LDLIBS)
47my_asflags := $(LOCAL_ASFLAGS)
48my_cc := $(LOCAL_CC)
Ying Wang57d90602015-07-20 18:40:18 -070049my_cc_wrapper := $(CC_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080050my_cxx := $(LOCAL_CXX)
Ying Wang57d90602015-07-20 18:40:18 -070051my_cxx_wrapper := $(CXX_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080052my_c_includes := $(LOCAL_C_INCLUDES)
53my_generated_sources := $(LOCAL_GENERATED_SOURCES)
54my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
55my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
56
Dan Albertb58fb4a2014-11-14 17:15:00 -080057ifdef LOCAL_IS_HOST_MODULE
58my_allow_undefined_symbols := true
59else
60my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
61endif
62
Andrew Hsieh140761af02014-04-25 23:47:10 -070063my_ndk_sysroot :=
64my_ndk_sysroot_include :=
65my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070066ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070067 ifdef LOCAL_NDK_VERSION
68 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
69 endif
Ying Wang1a081002010-07-13 14:55:47 -070070 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070071 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070072 endif
Ying Wang848020f2012-08-14 10:13:16 -070073 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070074 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
75 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
76 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
77 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
Duane Sand1a074872014-11-08 15:25:18 -080078 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
79 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -070080 else
81 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
82 endif
Ying Wangcce4c972011-03-03 18:53:53 -080083
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070084 # The bionic linker now has support for packed relocations and gnu style
85 # hashes (which are much faster!), but shipping to older devices requires
86 # the old style hash and disabling packed relocations.
Dan Albertd3d894d2014-11-14 15:28:49 -080087 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
88 my_ldflags += -Wl,--hash-style=sysv
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -070089 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -080090 #endif
91
Ying Wangcce4c972011-03-03 18:53:53 -080092 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
93 # See ndk/docs/CPLUSPLUS-SUPPORT.html
94 my_ndk_stl_include_path :=
95 my_ndk_stl_shared_lib_fullpath :=
96 my_ndk_stl_shared_lib :=
97 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080098 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -080099 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
100 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
101 my_cpu_variant := mips32r6
102 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800103 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800104 ifeq (,$(LOCAL_NDK_STL_VARIANT))
105 LOCAL_NDK_STL_VARIANT := system
106 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800107 ifneq (1,$(words $(filter system stlport_static stlport_shared c++_static c++_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT))))
Ying Wang848020f2012-08-14 10:13:16 -0700108 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800109 endif
110 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
111 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
112 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
113 else # LOCAL_NDK_STL_VARIANT is not system
114 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
115 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
116 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800117 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800118 else
Duane Sand1a074872014-11-08 15:25:18 -0800119 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_shared.so
Ying Wangcce4c972011-03-03 18:53:53 -0800120 my_ndk_stl_shared_lib := -lstlport_shared
121 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800122 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
123 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
124 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
125 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
126 $(my_ndk_source_root)/android/support/include
127 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800128 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800129 else
Duane Sand1a074872014-11-08 15:25:18 -0800130 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_shared.so
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800131 my_ndk_stl_shared_lib := -lc++_shared
132 endif
133 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800134 else
135 # LOCAL_NDK_STL_VARIANT is gnustl_static
Duane Sand1a074872014-11-08 15:25:18 -0800136 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(my_cpu_variant)/include \
Ben Cheng4de6fa42014-04-10 22:46:26 -0700137 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include
Duane Sand1a074872014-11-08 15:25:18 -0800138 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(my_cpu_variant)/libgnustl_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800139 endif
140 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800141 endif
Ying Wang1a081002010-07-13 14:55:47 -0700142endif
143
Dan Albert95994de2014-08-07 18:29:11 -0700144# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
145# all code is position independent, and then those warnings get promoted to
146# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700147ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700148ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
149my_cflags += -fpie
150else
151my_cflags += -fPIC
152endif
Dan Albert95994de2014-08-07 18:29:11 -0700153endif
Dan Albert4803ce22014-08-06 12:36:46 -0700154
Ying Wang6feb6d52014-04-17 10:03:35 -0700155my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
156my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
157my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
158my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
159my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
160my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
161my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
162my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_GENERATED_SOURCES_$(my_32_64_bit_suffix))
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800163
Dan Albertdb905e72014-08-18 11:14:38 -0700164my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700165ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700166my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700167endif
168ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700169my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700170endif
171
Tim Murray92d79cb2014-04-04 14:38:29 -0700172# clang is enabled by default for host builds
173# enable it unless we've specifically disabled clang above
174ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700175 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700176 ifeq ($(my_clang),)
177 my_clang := true
178 endif
179 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700180endif
181
Dan Albertc7d307d2015-07-29 15:13:57 -0700182my_cpp_std_version := -std=gnu++14
183ifdef LOCAL_SDK_VERSION
184 # The NDK handles this itself.
185 my_cpp_std_version :=
186endif
187
188ifdef LOCAL_IS_HOST_MODULE
189 ifneq ($(my_clang),true)
190 # The host GCC doesn't support C++14 (and is deprecated, so likely
191 # never will). Build these modules with C++11.
192 my_cpp_std_version := -std=gnu++11
193 endif
194endif
195
196my_cppflags := $(my_cpp_std_version) $(my_cppflags)
197
Tim Murray06659bc2014-08-13 11:53:07 -0700198# Add option to make clang the default for device build
199ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
200 ifeq ($(my_clang),)
201 my_clang := true
202 endif
203endif
204
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800205# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700206my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
207my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_WHOLE_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_whole_static_libraries)
Ying Wang6ef65192014-01-15 16:02:16 -0800208
Ying Wang6feb6d52014-04-17 10:03:35 -0700209my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800210
Ying Wang75e8fcb2014-10-07 13:03:29 -0700211include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700212
Ying Wang285045b2013-08-13 12:35:10 -0700213# Add static HAL libraries
214ifdef LOCAL_HAL_STATIC_LIBRARIES
215$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
216 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800217 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
218 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700219b_lib :=
220endif
221
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700222my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_LINKER)
223
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700224include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400225
Ying Wangba8b3772014-03-10 18:23:08 -0700226ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700227 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700228endif
229
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800230# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700231ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800232 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700233endif
234
Jing Yu2dcc8062009-09-21 16:31:50 -0700235####################################################
236## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700237## Please note that we will do option filtering during FDO build.
238## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
239##################################################################
Ying Wangd7914632014-10-28 14:50:59 -0700240my_fdo_build :=
241ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
242 ifeq ($(BUILD_FDO_INSTRUMENT),true)
243 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
244 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
245 my_fdo_build := true
246 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
247 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
248 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700249 endif
Ying Wang57d90602015-07-20 18:40:18 -0700250 # Disable ccache (or other compiler wrapper).
251 my_cc_wrapper :=
252 my_cxx_wrapper :=
Jing Yu2dcc8062009-09-21 16:31:50 -0700253endif
254
The Android Open Source Project88b60792009-03-03 19:28:42 -0800255###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800256## Explicitly declare assembly-only __ASSEMBLY__ macro for
257## assembly source
258###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800259my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800260
Ying Wangd8d37212014-03-21 16:17:04 -0700261
Jim Huang20d1ba62010-10-14 16:15:56 +0800262###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700263## Define PRIVATE_ variables from global vars
264###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800265ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700266ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700267my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700268my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800269my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700270else
Ying Wang6ef65192014-01-15 16:02:16 -0800271my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
272my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800273my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700274endif # LOCAL_SDK_VERSION
275
Ying Wang824344a2014-05-27 13:03:36 -0700276ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800277my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800278my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800279my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800280my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700281else
Ying Wang6ef65192014-01-15 16:02:16 -0800282my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800283my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800284my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800285my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700286endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700287
Ying Wang1a081002010-07-13 14:55:47 -0700288$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400289$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700290$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800291$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800292$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
293$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
294
Ying Wang7fff9a12014-01-09 14:39:41 -0800295else # LOCAL_IS_HOST_MODULE
296
Ying Wang824344a2014-05-27 13:03:36 -0700297ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700298my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800299my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700300my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
301my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700302my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800303else
Ying Wang6feb6d52014-04-17 10:03:35 -0700304my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800305my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700306my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
307my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
308my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700309endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800310
311$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
312$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800313$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800314$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
315$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
316endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700317
Dan Albert43e128a2015-01-23 16:12:57 -0800318# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
319# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
320# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
321# clean build of your module after toggling it.
322ifeq ($(NATIVE_COVERAGE),true)
323 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800324 # Note that clang coverage doesn't play nicely with acov out of the box.
325 # Clang apparently generates .gcno files that aren't compatible with
326 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
327 # with `--gcov-tool /usr/bin/gcov-4.6`.
328 #
329 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800330 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800331 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800332 endif
333else
334 my_native_coverage := false
335endif
336
Ying Wang1a081002010-07-13 14:55:47 -0700337###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800338## Define PRIVATE_ variables used by multiple module types
339###########################################################
340$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700341 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800342
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800343ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
344 LOCAL_NO_SYNTAX_CHECK := true
345endif
346
Andrew Hsieh906cb782013-09-10 17:37:14 +0800347ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
348 LOCAL_NO_STATIC_ANALYZER := true
349endif
350
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800351ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
352 my_syntax_arch := host
353else
Ying Wang6ef65192014-01-15 16:02:16 -0800354 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800355endif
356
Ying Wang6ef65192014-01-15 16:02:16 -0800357ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700358 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800359 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400360 else
Ying Wang6ef65192014-01-15 16:02:16 -0800361 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400362 endif
Ying Wang57d90602015-07-20 18:40:18 -0700363 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800364endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800365ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800366 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800367else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800368ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800369 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800370endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800371endif
Ying Wang6ef65192014-01-15 16:02:16 -0800372$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800373
Ying Wang6ef65192014-01-15 16:02:16 -0800374ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700375 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800376 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400377 else
Ying Wang6ef65192014-01-15 16:02:16 -0800378 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400379 endif
Ying Wang57d90602015-07-20 18:40:18 -0700380 my_cxx := $(my_cxx_wrapper) $(my_cxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800381endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800382ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800383 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800384else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800385ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800386 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800387endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800388endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700389$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker)
Ying Wang6ef65192014-01-15 16:02:16 -0800390$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700391$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800392
393# TODO: support a mix of standard extensions so that this isn't necessary
394LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
395ifeq ($(LOCAL_CPP_EXTENSION),)
396 LOCAL_CPP_EXTENSION := .cpp
397endif
398$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
399
400# Certain modules like libdl have to have symbols resolved at runtime and blow
401# up if --no-undefined is passed to the linker.
402ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800403ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800404 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800405endif
406endif
407
Ying Wangfcdabd42011-04-25 14:22:41 -0700408ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
409$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
410else
411$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
412endif
413
The Android Open Source Project88b60792009-03-03 19:28:42 -0800414###########################################################
415## Define arm-vs-thumb-mode flags.
416###########################################################
417LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800418ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800419arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
420normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
421
Dave Bort95282482009-04-23 18:44:55 -0700422# Read the values from something like TARGET_arm_CFLAGS or
423# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
424# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800425arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
426normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700427ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800428arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
429normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400430endif
431
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800432else
433arm_objects_mode :=
434normal_objects_mode :=
435arm_objects_cflags :=
436normal_objects_cflags :=
437endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800438
439###########################################################
440## Define per-module debugging flags. Users can turn on
441## debugging for a particular module by setting DEBUG_MODULE_ModuleName
442## to a non-empty value in their environment or buildspec.mk,
443## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
444## debug flags that they want to use.
445###########################################################
446ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
447 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
448else
449 debug_cflags :=
450endif
451
Tim Murraya7aa8002012-10-29 16:06:00 -0700452####################################################
453## Compile RenderScript with reflected C++
454####################################################
455
Ying Wangb8e01852014-01-23 15:09:04 -0800456renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700457
458ifneq (,$(renderscript_sources))
459
460renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
461RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
462renderscript_intermediate := $(intermediates)/renderscript
463
Noah Presler4796a8c2015-08-13 17:04:10 -0700464renderscript_target_api :=
465
466ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
467renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
468else
469ifneq (,$(LOCAL_SDK_VERSION))
470# Set target-api for LOCAL_SDK_VERSIONs other than current.
471ifneq (,$(filter-out current system_current, $(LOCAL_SDK_VERSION)))
472renderscript_target_api := $(LOCAL_SDK_VERSION)
473endif
474endif # LOCAL_SDK_VERSION is set
475endif # LOCAL_RENDERSCRIPT_TARGET_API is set
476
477
Tim Murraya7aa8002012-10-29 16:06:00 -0700478ifeq ($(LOCAL_RENDERSCRIPT_CC),)
479LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
480endif
481
482# Turn on all warnings and warnings as errors for RS compiles.
483# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
484renderscript_flags := -Wall -Werror
485renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700486# -m32 or -m64
487renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700488
Ying Wang6ef65192014-01-15 16:02:16 -0800489renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700490 $(TOPDIR)external/clang/lib/Headers \
491 $(TOPDIR)frameworks/rs/scriptc \
492 $(LOCAL_RENDERSCRIPT_INCLUDES)
493
494ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800495renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700496endif
497
Ying Wangb9319562015-04-03 16:15:28 -0700498bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
499 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
500
Ying Wang6ef65192014-01-15 16:02:16 -0800501$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700502$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
503$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
504$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
505$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Noah Presler4796a8c2015-08-13 17:04:10 -0700506$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
Ying Wangb9319562015-04-03 16:15:28 -0700507$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700508$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
509 $(transform-renderscripts-to-cpp-and-bc)
510
Ying Wangb9319562015-04-03 16:15:28 -0700511# include the dependency files (.d/.P) generated by llvm-rs-cc.
512-include $(bc_dep_files:%.d=%.P)
Tim Murraya7aa8002012-10-29 16:06:00 -0700513
514LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
515
516rs_generated_cpps := $(addprefix \
517 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
518 $(notdir $(renderscript_sources)))))
519
Stephen Hines8ff92522014-06-06 12:51:47 -0700520# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700521$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700522 @echo "Updated RS generated cpp file $@."
Tim Murraya7aa8002012-10-29 16:06:00 -0700523
Ying Wang6ef65192014-01-15 16:02:16 -0800524my_c_includes += $(renderscript_intermediate)
525my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700526
527endif
528
529
The Android Open Source Project88b60792009-03-03 19:28:42 -0800530###########################################################
531## Stuff source generated from one-off tools
532###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800533$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800534
Colin Crossd8262642014-01-24 23:17:21 -0800535my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800536
Colin Crossd8262642014-01-24 23:17:21 -0800537$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
538 @echo "Copy: $@"
539 $(copy-file-to-target)
540
541my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
542
543ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800544
545###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700546## Compile the .proto files to .cc and then to .o
547###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800548proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700549proto_generated_objects :=
550proto_generated_headers :=
551ifneq ($(proto_sources),)
552proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800553proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700554proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700555 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800556proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
557proto_generated_obj_dir := $(intermediates)/proto
558proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
559 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700560
Ying Wang49085952014-05-06 13:03:32 -0700561# Auto-export the generated proto source dir.
562LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
563
Ying Wangead89442014-02-25 11:18:40 -0800564# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
565ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700566$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
567$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700568$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700569$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
570 $(transform-proto-to-cc)
571
Stephen Hines8ff92522014-06-06 12:51:47 -0700572# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700573$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700574 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700575
Ying Wangead89442014-02-25 11:18:40 -0800576$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
577endif # transform-proto-to-cc rule included only once
578
Ying Wang022a7b32012-06-13 11:38:10 -0700579$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
580$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800581$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700582 $(transform-$(PRIVATE_HOST)cpp-to-o)
583-include $(proto_generated_objects:%.o=%.P)
584
Ying Wang6ef65192014-01-15 16:02:16 -0800585my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
586my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700587ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800588 ifdef LOCAL_SDK_VERSION
589 my_static_libraries += libprotobuf-cpp-full
590 else
591 my_shared_libraries += libprotobuf-cpp-full
592 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700593else
Dan Albertc3031c72014-11-11 10:42:17 -0800594 ifdef LOCAL_SDK_VERSION
595 my_static_libraries += libprotobuf-cpp-lite
596 else
597 my_shared_libraries += libprotobuf-cpp-lite
598 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700599endif
Ying Wangead89442014-02-25 11:18:40 -0800600endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700601
602
603###########################################################
Christopher Wileybc2be462015-07-29 17:14:24 -0700604## Compile the .dbus.xml files to c++ headers
605###########################################################
606dbus_if_sources := $(filter %.dbus.xml,$(my_src_files))
607ifneq ($(dbus_if_sources),)
608
609dbus_if_sources_full_path := $(addprefix $(LOCAL_PATH)/,$(dbus_if_sources))
610dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files))
611dbus_service_config_full_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config))
612
Gilad Arnold54e92d02015-08-06 12:50:23 -0700613dbus_header_prefix := $(generated_sources_dir)/dbus_bindings
Christopher Wileybc2be462015-07-29 17:14:24 -0700614dbus_adaptors_header := $(dbus_header_prefix)/adaptors.h
615dbus_proxies_header := $(dbus_header_prefix)/proxies.h
616dbus_method_names_header := $(dbus_header_prefix)/method_names.h
617
618dbus_generated_source_dependencies := \
619 $(dbus_if_sources_full_path) \
620 $(dbus_service_config_full_path) \
621 $(DBUS_GENERATOR)
622
623# Ensure that we only define build rules once in multilib builds.
624ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
625$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true
626$(dbus_adaptors_header) : PRIVATE_DBUS_MODULE := $(LOCAL_MODULE)
627$(dbus_adaptors_header) : PRIVATE_DBUS_HEADER_DIRECTORY := $(dbus_header_prefix)
628$(dbus_adaptors_header) : PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_full_path)
629$(dbus_adaptors_header) : PRIVATE_DBUS_ADAPTORS_HEADER := $(dbus_adaptors_header)
630$(dbus_adaptors_header) : PRIVATE_DBUS_PROXIES_HEADER := $(dbus_proxies_header)
631$(dbus_adaptors_header) : PRIVATE_DBUS_METHOD_NAMES_HEADER := $(dbus_method_names_header)
632$(dbus_adaptors_header) : PRIVATE_DBUS_INTERFACE_DEFINITIONS := $(dbus_if_sources_full_path)
633$(dbus_adaptors_header) : $(dbus_generated_source_dependencies)
634 $(generate-dbus-bindings)
635# These are actually generated by the above recipe, but we'd like to make the
636# dependency chain complete.
637$(dbus_proxies_header) : $(dbus_adaptors_header)
638$(dbus_method_names_header) : $(dbus_adaptors_header)
639endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
640
641my_generated_sources += \
642 $(dbus_adaptors_header) \
643 $(dbus_proxies_header) \
644 $(dbus_method_names_header)
645endif # $(dbus_if_sources) non-empty
646
647
648###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000649## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800650###########################################################
651
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000652y_yacc_sources := $(filter %.y,$(my_src_files))
653y_yacc_cpps := $(addprefix \
654 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
655
656yy_yacc_sources := $(filter %.yy,$(my_src_files))
657yy_yacc_cpps := $(addprefix \
658 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
659
660yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800661yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
662yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
663
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000664ifneq ($(strip $(y_yacc_cpps)),)
665$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700666 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800667 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800668 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
669$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000670endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800671
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000672ifneq ($(strip $(yy_yacc_cpps)),)
673$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
674 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800675 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000676 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
677$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
678endif
679
680ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800681$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
682$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
683$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
684 $(transform-$(PRIVATE_HOST)cpp-to-o)
685endif
686
687###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000688## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800689###########################################################
690
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000691l_lex_sources := $(filter %.l,$(my_src_files))
692l_lex_cpps := $(addprefix \
693 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
694
695ll_lex_sources := $(filter %.ll,$(my_src_files))
696ll_lex_cpps := $(addprefix \
697 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
698
699lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800700lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
701
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000702ifneq ($(strip $(l_lex_cpps)),)
703$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700704 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800705 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000706endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800707
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000708ifneq ($(strip $(ll_lex_cpps)),)
709$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
710 $(TOPDIR)$(LOCAL_PATH)/%.ll
711 $(transform-l-to-cpp)
712endif
713
714ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800715$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
716$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
717$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700718 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800719 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700720 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800721 $(transform-$(PRIVATE_HOST)cpp-to-o)
722endif
723
724###########################################################
725## C++: Compile .cpp files to .o.
726###########################################################
727
Jeff Browne33ba4c2011-07-11 22:11:46 -0700728# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800729# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700730cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
731dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
732cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
733cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800734
Ying Wangfb22a422015-03-10 18:03:11 -0700735# For source files starting with ../, we remove all the ../ in the object file path,
736# to avoid object file escaping the intermediate directory.
737dotdot_arm_objects :=
738$(foreach s,$(dotdot_arm_sources),\
739 $(eval $(call compile-dotdot-cpp-file,$(s),\
740 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
741 dotdot_arm_objects)))
742
743dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
744dotdot_objects :=
745$(foreach s,$(dotdot_sources),\
746 $(eval $(call compile-dotdot-cpp-file,$(s),\
747 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
748 dotdot_objects)))
749
750cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800751cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
752
Ying Wangfb22a422015-03-10 18:03:11 -0700753$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
754$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
755$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
756$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800757
758cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
759
760ifneq ($(strip $(cpp_objects)),)
761$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700762 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800763 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800764 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765 $(transform-$(PRIVATE_HOST)cpp-to-o)
766-include $(cpp_objects:%.o=%.P)
767endif
768
Ying Wangfb22a422015-03-10 18:03:11 -0700769cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
770
The Android Open Source Project88b60792009-03-03 19:28:42 -0800771###########################################################
772## C++: Compile generated .cpp files to .o.
773###########################################################
774
Ying Wangec6d6262014-01-16 16:21:03 -0800775gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800776gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
777
778ifneq ($(strip $(gen_cpp_objects)),)
779# Compile all generated files as thumb.
780# TODO: support compiling certain generated files as arm.
781$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
782$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400783$(gen_cpp_objects): $(intermediates)/%.o: \
784 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800785 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800786 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800787 $(transform-$(PRIVATE_HOST)cpp-to-o)
788-include $(gen_cpp_objects:%.o=%.P)
789endif
790
791###########################################################
792## S: Compile generated .S and .s files to .o.
793###########################################################
794
Ying Wangec6d6262014-01-16 16:21:03 -0800795gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800796gen_S_objects := $(gen_S_sources:%.S=%.o)
797
798ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400799$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800800 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800801 $(transform-$(PRIVATE_HOST)s-to-o)
802-include $(gen_S_objects:%.o=%.P)
803endif
804
Ying Wangec6d6262014-01-16 16:21:03 -0800805gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800806gen_s_objects := $(gen_s_sources:%.s=%.o)
807
808ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400809$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800810 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800811 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
812-include $(gen_s_objects:%.o=%.P)
813endif
814
815gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
816
817###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000818## o: Include generated .o files in output.
819###########################################################
820
Ying Wangec6d6262014-01-16 16:21:03 -0800821gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000822
823###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800824## C: Compile .c files to .o.
825###########################################################
826
Ying Wangfb22a422015-03-10 18:03:11 -0700827c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
828dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
829c_arm_sources := $(filter-out ../%,$(c_arm_sources))
830c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800831
Ying Wangfb22a422015-03-10 18:03:11 -0700832# For source files starting with ../, we remove all the ../ in the object file path,
833# to avoid object file escaping the intermediate directory.
834dotdot_arm_objects :=
835$(foreach s,$(dotdot_arm_sources),\
836 $(eval $(call compile-dotdot-c-file,$(s),\
837 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
838 dotdot_arm_objects)))
839
840dotdot_sources := $(filter ../%.c, $(my_src_files))
841dotdot_objects :=
842$(foreach s, $(dotdot_sources),\
843 $(eval $(call compile-dotdot-c-file,$(s),\
844 $(yacc_cpps) $(proto_generated_headers) $(my_additional_dependencies),\
845 dotdot_objects)))
846
847c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800848c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
849
Ying Wangfb22a422015-03-10 18:03:11 -0700850$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
851$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
852$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
853$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800854
855c_objects := $(c_arm_objects) $(c_normal_objects)
856
857ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400858$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800859 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800860 $(transform-$(PRIVATE_HOST)c-to-o)
861-include $(c_objects:%.o=%.P)
862endif
863
Ying Wangfb22a422015-03-10 18:03:11 -0700864c_objects += $(dotdot_arm_objects) $(dotdot_objects)
865
The Android Open Source Project88b60792009-03-03 19:28:42 -0800866###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700867## C: Compile generated .c files to .o.
868###########################################################
869
Ying Wangec6d6262014-01-16 16:21:03 -0800870gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700871gen_c_objects := $(gen_c_sources:%.c=%.o)
872
873ifneq ($(strip $(gen_c_objects)),)
874# Compile all generated files as thumb.
875# TODO: support compiling certain generated files as arm.
876$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
877$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400878$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800879 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700880 $(transform-$(PRIVATE_HOST)c-to-o)
881-include $(gen_c_objects:%.o=%.P)
882endif
883
884###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200885## ObjC: Compile .m files to .o
886###########################################################
887
Ying Wangb8e01852014-01-23 15:09:04 -0800888objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200889objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
890
891ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400892$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800893 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200894 $(transform-$(PRIVATE_HOST)m-to-o)
895-include $(objc_objects:%.o=%.P)
896endif
897
898###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800899## AS: Compile .S files to .o.
900###########################################################
901
Ying Wangb8e01852014-01-23 15:09:04 -0800902asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700903dotdot_sources := $(filter ../%,$(asm_sources_S))
904asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800905asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
906
Ying Wangfb22a422015-03-10 18:03:11 -0700907dotdot_objects_S :=
908$(foreach s,$(dotdot_sources),\
909 $(eval $(call compile-dotdot-s-file,$(s),\
910 $(my_additional_dependencies),\
911 dotdot_objects_S)))
912
The Android Open Source Project88b60792009-03-03 19:28:42 -0800913ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400914$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800915 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800916 $(transform-$(PRIVATE_HOST)s-to-o)
917-include $(asm_objects_S:%.o=%.P)
918endif
919
Ying Wangb8e01852014-01-23 15:09:04 -0800920asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -0700921dotdot_sources := $(filter ../%,$(asm_sources_s))
922asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800923asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
924
Ying Wangfb22a422015-03-10 18:03:11 -0700925dotdot_objects_s :=
926$(foreach s,$(dotdot_sources),\
927 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
928 $(my_additional_dependencies),\
929 dotdot_objects_s)))
930
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400932$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800933 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800934 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800935endif
936
Ying Wangfb22a422015-03-10 18:03:11 -0700937asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800938
939
Ying Wangfe1e5c32015-03-09 18:57:40 -0700940# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -0700941asm_sources_asm := $(filter %.asm,$(my_src_files))
942ifneq ($(strip $(asm_sources_asm)),)
943asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
944$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800945 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700946 $(transform-asm-to-o)
947
948asm_objects += $(asm_objects_asm)
949endif
Ying Wang7b913ce2014-06-05 19:05:47 -0700950
Jeff Davidson680f0712015-01-08 18:25:30 -0800951
952##########################################################
953## Set up installed module dependency
954## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
955## they may cusomize their install path with LOCAL_MODULE_PATH
956##########################################################
957# Get the list of INSTALLED libraries as module names.
958ifdef LOCAL_SDK_VERSION
959 installed_shared_library_module_names := \
960 $(my_shared_libraries)
961else
962 installed_shared_library_module_names := \
963 $(my_shared_libraries) $(my_system_shared_libraries)
964endif
965
966# The real dependency will be added after all Android.mks are loaded and the install paths
967# of the shared libraries are determined.
968ifdef LOCAL_INSTALLED_MODULE
969ifdef installed_shared_library_module_names
970$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
971 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
972endif
973endif
974
975
Ying Wang5f074802011-11-08 09:31:21 -0800976####################################################
977## Import includes
978####################################################
979import_includes := $(intermediates)/import_includes
980import_includes_deps := $(strip \
981 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800982 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes) \
Colin Cross90353fe2014-02-04 14:53:25 -0800983 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800984 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes))
Ying Wang14d02a32015-01-22 15:44:04 -0800985$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
986$(import_includes) : $(LOCAL_MODULE_MAKEFILE) $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -0800987 @echo Import includes file: $@
988 $(hide) mkdir -p $(dir $@) && rm -f $@
989ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -0800990 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -0800991 cat $$f >> $@; \
992 done
993else
994 $(hide) touch $@
995endif
996
The Android Open Source Project88b60792009-03-03 19:28:42 -0800997###########################################################
998## Common object handling.
999###########################################################
1000
1001# some rules depend on asm_objects being first. If your code depends on
1002# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001003normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001004 $(asm_objects) \
1005 $(cpp_objects) \
1006 $(gen_cpp_objects) \
1007 $(gen_asm_objects) \
1008 $(c_objects) \
1009 $(gen_c_objects) \
1010 $(objc_objects) \
1011 $(yacc_objects) \
1012 $(lex_objects) \
1013 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001014 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
1015
1016all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001017
Colin Cross2d206702014-02-13 13:41:52 -08001018my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001019
Ying Wang848020f2012-08-14 10:13:16 -07001020ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -08001021 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -07001022endif
1023
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001024# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
1025# use normal_objects here to avoid creating circular dependencies. This assumes
1026# that custom build rules which generate .o files don't consume other generated
1027# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -08001028$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001029$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001030ALL_C_CPP_ETC_OBJECTS += $(all_objects)
1031
The Android Open Source Project88b60792009-03-03 19:28:42 -08001032
1033###########################################################
1034# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001035###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001036
1037###########################################################
1038# The list of libraries that this module will link against are in
1039# these variables. Each is a list of bare module names like "libc libm".
1040#
1041# LOCAL_SHARED_LIBRARIES
1042# LOCAL_STATIC_LIBRARIES
1043# LOCAL_WHOLE_STATIC_LIBRARIES
1044#
1045# We need to convert the bare names into the dependencies that
1046# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1047# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1048# libraries, so that simply building this module doesn't force
1049# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1050# should depend on the INSTALLED versions of the libraries so
1051# that they get installed when this module does.
1052###########################################################
1053# NOTE:
1054# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1055# module without leaving anything out, which is useful for turning
1056# a collection of .a files into a .so file. Linking against a
1057# normal STATIC_LIBRARY will only pull in code/symbols that are
1058# referenced by the module. (see gcc/ld's --whole-archive option)
1059###########################################################
1060
1061# Get the list of BUILT libraries, which are under
1062# various intermediates directories.
1063so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1064a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1065
Ying Wang848020f2012-08-14 10:13:16 -07001066ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001067built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001068 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001069 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001070 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001071
Ying Wangd8d37212014-03-21 16:17:04 -07001072# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001073my_system_shared_libraries_fullpath := \
1074 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001075 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001076 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001077
1078built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -07001079else
Ying Wang1a081002010-07-13 14:55:47 -07001080built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001081 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001082 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001083 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -07001084endif
1085
The Android Open Source Project88b60792009-03-03 19:28:42 -08001086built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001087 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001089 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001090
Ying Wang848020f2012-08-14 10:13:16 -07001091ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001092built_static_libraries += $(my_ndk_stl_static_lib)
1093endif
1094
The Android Open Source Project88b60792009-03-03 19:28:42 -08001095built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001096 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001097 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -08001098 STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001099
The Android Open Source Project88b60792009-03-03 19:28:42 -08001100# We don't care about installed static libraries, since the
1101# libraries have already been linked into the module at that point.
1102# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001103# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001104
1105installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001106 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001107 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1108
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001109# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001110ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1111LOCAL_RTTI_FLAG := -fno-rtti
1112endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001113
The Android Open Source Project88b60792009-03-03 19:28:42 -08001114###########################################################
1115# Rule-specific variable definitions
1116###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001117
Ying Wang824344a2014-05-27 13:03:36 -07001118ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001119my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001120my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001121my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001122my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1123my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001124my_asflags += $(LOCAL_CLANG_ASFLAGS)
1125my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001126my_cflags += $(LOCAL_CLANG_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CFLAGS_$(my_32_64_bit_suffix))
Stephen Hines15680292014-11-26 00:53:46 -08001127my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CONLYFLAGS_$(my_32_64_bit_suffix))
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001128my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1129my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1130my_asflags += $(LOCAL_CLANG_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_ASFLAGS_$(my_32_64_bit_suffix))
Ying Wang1f982832014-02-06 18:08:44 -08001131my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
1132my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
1133my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
1134my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +08001135endif
1136
Ying Wangd7914632014-10-28 14:50:59 -07001137ifeq ($(my_fdo_build), true)
1138 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1139 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1140 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001141endif
1142
The Android Open Source Project88b60792009-03-03 19:28:42 -08001143$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001144$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001145$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001146$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1147$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001148$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1149$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001150$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001151$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001152$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001153$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001154$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001155$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001156
1157# this is really the way to get the files onto the command line instead
1158# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1159$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1160$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1161$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1162$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1163
1164###########################################################
1165# Define library dependencies.
1166###########################################################
1167# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1168all_libraries := \
1169 $(built_shared_libraries) \
1170 $(built_static_libraries) \
1171 $(built_whole_libraries)
1172
The Android Open Source Project88b60792009-03-03 19:28:42 -08001173# Also depend on the notice files for any static libraries that
1174# are linked into this module. This will force them to be installed
1175# when this module is.
1176$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001177
1178###########################################################
1179# Export includes
1180###########################################################
1181export_includes := $(intermediates)/export_includes
1182$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001183# Make sure .pb.h are already generated before any dependent source files get compiled.
1184$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001185 @echo Export includes file: $< -- $@
1186 $(hide) mkdir -p $(dir $@) && rm -f $@
1187ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1188 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1189 echo "-I $$d" >> $@; \
1190 done
1191else
1192 $(hide) touch $@
1193endif
Ying Wang616e5962012-04-18 17:35:55 -07001194
1195# Make sure export_includes gets generated when you are running mm/mmm
1196$(LOCAL_BUILT_MODULE) : | $(export_includes)