blob: 752a5c36eaa2f0bcc66b7f065bc9aeb962db9f19 [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)
27 my_system_shared_libraries := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES)
28 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)
43my_ldflags := $(LOCAL_LDFLAGS)
44my_ldlibs := $(LOCAL_LDLIBS)
45my_asflags := $(LOCAL_ASFLAGS)
46my_cc := $(LOCAL_CC)
47my_cxx := $(LOCAL_CXX)
48my_c_includes := $(LOCAL_C_INCLUDES)
49my_generated_sources := $(LOCAL_GENERATED_SOURCES)
50my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
51my_additional_dependencies := $(LOCAL_MODULE_MAKEFILE) $(LOCAL_ADDITIONAL_DEPENDENCIES)
52
Dan Albertb58fb4a2014-11-14 17:15:00 -080053ifdef LOCAL_IS_HOST_MODULE
54my_allow_undefined_symbols := true
55else
56my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
57endif
58
Andrew Hsieh140761af02014-04-25 23:47:10 -070059my_ndk_sysroot :=
60my_ndk_sysroot_include :=
61my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070062ifdef LOCAL_SDK_VERSION
Ying Wangfe1bfe72012-08-14 11:08:03 -070063 ifdef LOCAL_NDK_VERSION
64 $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.)
65 endif
Ying Wang1a081002010-07-13 14:55:47 -070066 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070067 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070068 endif
Ying Wang848020f2012-08-14 10:13:16 -070069 my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources
Andrew Hsieh140761af02014-04-25 23:47:10 -070070 my_ndk_sysroot := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
71 my_ndk_sysroot_include := $(my_ndk_sysroot)/usr/include
72 ifeq (x86_64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
73 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib64
74 else
75 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/lib
76 endif
Ying Wangcce4c972011-03-03 18:53:53 -080077
Dan Albertd3d894d2014-11-14 15:28:49 -080078 # The bionic linker now has support for gnu style hashes (which are much
79 # faster!), but shipping to older devices requires the old style hash.
80 #ifeq ($(shell expr $(LOCAL_SDK_VERSION) >= FIRST_SUPPORTED_VERSION),0)
81 my_ldflags += -Wl,--hash-style=sysv
82 #endif
83
Ying Wangcce4c972011-03-03 18:53:53 -080084 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
85 # See ndk/docs/CPLUSPLUS-SUPPORT.html
86 my_ndk_stl_include_path :=
87 my_ndk_stl_shared_lib_fullpath :=
88 my_ndk_stl_shared_lib :=
89 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +080090 my_ndk_stl_cppflags :=
91 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080092 ifeq (,$(LOCAL_NDK_STL_VARIANT))
93 LOCAL_NDK_STL_VARIANT := system
94 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +080095 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 -070096 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -080097 endif
98 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
99 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
100 # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default.
101 else # LOCAL_NDK_STL_VARIANT is not system
102 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
103 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
104 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Ying Wang6ef65192014-01-15 16:02:16 -0800105 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libstlport_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800106 else
Ying Wang6ef65192014-01-15 16:02:16 -0800107 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libstlport_shared.so
Ying Wangcce4c972011-03-03 18:53:53 -0800108 my_ndk_stl_shared_lib := -lstlport_shared
109 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800110 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
111 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
112 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
113 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include \
114 $(my_ndk_source_root)/android/support/include
115 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
116 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libc++_static.a
117 else
118 my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libc++_shared.so
119 my_ndk_stl_shared_lib := -lc++_shared
120 endif
121 my_ndk_stl_cppflags := -std=c++11
Ying Wangcce4c972011-03-03 18:53:53 -0800122 else
123 # LOCAL_NDK_STL_VARIANT is gnustl_static
Ben Cheng4de6fa42014-04-10 22:46:26 -0700124 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/include \
125 $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/include
126 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/$($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_GCC_VERSION)/libs/$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)/libgnustl_static.a
Ying Wangcce4c972011-03-03 18:53:53 -0800127 endif
128 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800129 endif
Ying Wang1a081002010-07-13 14:55:47 -0700130endif
131
Dan Albert95994de2014-08-07 18:29:11 -0700132# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
133# all code is position independent, and then those warnings get promoted to
134# errors.
Ying Wang594a10a2014-08-07 20:08:04 -0700135ifndef USE_MINGW
Dan Albert4803ce22014-08-06 12:36:46 -0700136ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
137my_cflags += -fpie
138else
139my_cflags += -fPIC
140endif
Dan Albert95994de2014-08-07 18:29:11 -0700141endif
Dan Albert4803ce22014-08-06 12:36:46 -0700142
Ying Wang6feb6d52014-04-17 10:03:35 -0700143my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
144my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
145my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
146my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
147my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
148my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
149my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
150my_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 -0800151
Dan Albertdb905e72014-08-18 11:14:38 -0700152my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700153ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700154my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700155endif
156ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700157my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700158endif
159
Tim Murray92d79cb2014-04-04 14:38:29 -0700160# clang is enabled by default for host builds
161# enable it unless we've specifically disabled clang above
162ifdef LOCAL_IS_HOST_MODULE
Tim Murrayf3ca3d52014-07-24 15:20:18 -0700163 ifneq ($(HOST_OS),windows)
Tim Murray5ca1dc12014-07-24 14:42:53 -0700164 ifeq ($(my_clang),)
165 my_clang := true
166 endif
167 endif
Tim Murray92d79cb2014-04-04 14:38:29 -0700168endif
169
Tim Murray06659bc2014-08-13 11:53:07 -0700170# Add option to make clang the default for device build
171ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
172 ifeq ($(my_clang),)
173 my_clang := true
174 endif
175endif
176
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800177# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700178my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
179my_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 -0800180
Ying Wang6feb6d52014-04-17 10:03:35 -0700181my_cflags := $(filter-out $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_UNSUPPORTED_CFLAGS),$(my_cflags))
Ying Wang6ef65192014-01-15 16:02:16 -0800182
Ying Wang75e8fcb2014-10-07 13:03:29 -0700183include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700184
Ying Wang285045b2013-08-13 12:35:10 -0700185# Add static HAL libraries
186ifdef LOCAL_HAL_STATIC_LIBRARIES
187$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
188 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800189 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
190 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700191b_lib :=
192endif
193
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700194include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400195
Ying Wangba8b3772014-03-10 18:23:08 -0700196ifeq ($(strip $($(LOCAL_2ND_ARCH_VAR_PREFIX)WITHOUT_$(my_prefix)CLANG)),true)
Ying Wang824344a2014-05-27 13:03:36 -0700197 my_clang :=
Mike Lockwood051a1742013-06-14 10:52:50 -0700198endif
199
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800200# Add in libcompiler_rt for all regular device builds
Mike Lockwooddaf5e222012-10-18 10:17:47 -0700201ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800202 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700203endif
204
Jing Yu2dcc8062009-09-21 16:31:50 -0700205####################################################
206## Add FDO flags if FDO is turned on and supported
207####################################################
Dehao Chenf7a909d2014-08-07 16:53:18 -0700208ifeq ($(strip $(LOCAL_FDO_SUPPORT)), true)
synergydev4a605762013-08-05 02:44:37 -0700209 ifeq ($(strip $(LOCAL_IS_HOST_MODULE)),)
Ying Wang6ef65192014-01-15 16:02:16 -0800210 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_CFLAGS)
Dehao Chenf4294cd2014-08-20 16:48:17 -0700211 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_LDFLAGS)
synergydev4a605762013-08-05 02:44:37 -0700212 endif
Jing Yu2dcc8062009-09-21 16:31:50 -0700213endif
214
The Android Open Source Project88b60792009-03-03 19:28:42 -0800215###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800216## Explicitly declare assembly-only __ASSEMBLY__ macro for
217## assembly source
218###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800219my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800220
Ying Wangd8d37212014-03-21 16:17:04 -0700221
222##########################################################
223## Set up installed module dependency
224## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
225## they may cusomize their install path with LOCAL_MODULE_PATH
226##########################################################
227# Get the list of INSTALLED libraries as module names.
228ifdef LOCAL_SDK_VERSION
229 installed_shared_library_module_names := \
230 $(my_shared_libraries)
231else
232 installed_shared_library_module_names := \
Dan Albert04eead72014-10-23 14:04:02 -0700233 $(my_shared_libraries) $(my_system_shared_libraries)
Ying Wangd8d37212014-03-21 16:17:04 -0700234endif
Ying Wangd8d37212014-03-21 16:17:04 -0700235
236# The real dependency will be added after all Android.mks are loaded and the install paths
237# of the shared libraries are determined.
238ifdef LOCAL_INSTALLED_MODULE
239ifdef installed_shared_library_module_names
240$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
Dan Albert04eead72014-10-23 14:04:02 -0700241 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
Ying Wangd8d37212014-03-21 16:17:04 -0700242endif
243endif
244
Jim Huang20d1ba62010-10-14 16:15:56 +0800245###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700246## Define PRIVATE_ variables from global vars
247###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800248ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700249ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -0700250my_target_project_includes :=
Andrew Hsieh140761af02014-04-25 23:47:10 -0700251my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800252my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700253else
Ying Wang6ef65192014-01-15 16:02:16 -0800254my_target_project_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES)
255my_target_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_C_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800256my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700257endif # LOCAL_SDK_VERSION
258
Ying Wang824344a2014-05-27 13:03:36 -0700259ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800260my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800261my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800262my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_CPPFLAGS)
Ying Wang1f982832014-02-06 18:08:44 -0800263my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_TARGET_GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700264else
Ying Wang6ef65192014-01-15 16:02:16 -0800265my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800266my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CONLYFLAGS)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800267my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800268my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700269endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700270
Dan Albert4c12c032014-10-07 23:37:53 -0700271# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
272# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
273# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
274# clean build of your module after toggling it.
Dan Albert4bbc6c72014-09-19 14:25:57 -0700275ifeq ($(NATIVE_COVERAGE),true)
276 ifeq ($(my_native_coverage),true)
277 # We can't currently generate coverage for clang binaries for two
278 # reasons:
279 #
280 # 1) b/17574078 We currently don't have a prebuilt
281 # libclang_rt.profile-<ARCH>.a, which clang is hardcoded to link if
282 # --coverage is passed in the link stage. For now we manually link
283 # libprofile_rt (which is the name it is built as from
284 # external/compiler-rt).
285 #
286 # 2) b/17583330 Clang doesn't generate .gcno files when using
287 # -no-integrated-as. Since most of the assembly in our tree is
288 # incompatible with clang's assembler, we can't turn off this flag.
289 ifneq ($(my_clang),true)
Dan Albert4c12c032014-10-07 23:37:53 -0700290 my_cflags += --coverage -O0
291 my_ldflags += --coverage
Dan Albert4bbc6c72014-09-19 14:25:57 -0700292 endif
293 endif
294else
295 my_native_coverage := false
296endif
297
Ying Wang1a081002010-07-13 14:55:47 -0700298$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes)
Evgeniy Stepanova7095e92012-03-30 12:18:52 +0400299$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700300$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800301$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800302$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
303$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
304
Ying Wang7fff9a12014-01-09 14:39:41 -0800305else # LOCAL_IS_HOST_MODULE
306
Ying Wang824344a2014-05-27 13:03:36 -0700307ifeq ($(my_clang),true)
Ying Wang6feb6d52014-04-17 10:03:35 -0700308my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800309my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700310my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_CPPFLAGS)
311my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_HOST_GLOBAL_LDFLAGS)
Stephen Hinesf0089662014-09-25 22:35:16 -0700312my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Logan Chiene6f65432013-12-10 19:07:41 +0800313else
Ying Wang6feb6d52014-04-17 10:03:35 -0700314my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800315my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CONLYFLAGS)
Ying Wang6feb6d52014-04-17 10:03:35 -0700316my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS)
317my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LDFLAGS)
318my_host_c_includes := $($(LOCAL_2ND_ARCH_VAR_PREFIX)HOST_C_INCLUDES)
Ying Wang824344a2014-05-27 13:03:36 -0700319endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800320
321$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_C_INCLUDES := $(my_host_c_includes)
322$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800323$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800324$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
325$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
326endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700327
328###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800329## Define PRIVATE_ variables used by multiple module types
330###########################################################
331$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700332 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800333
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800334ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
335 LOCAL_NO_SYNTAX_CHECK := true
336endif
337
Andrew Hsieh906cb782013-09-10 17:37:14 +0800338ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
339 LOCAL_NO_STATIC_ANALYZER := true
340endif
341
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800342ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
343 my_syntax_arch := host
344else
Ying Wang6ef65192014-01-15 16:02:16 -0800345 my_syntax_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800346endif
347
Ying Wang6ef65192014-01-15 16:02:16 -0800348ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700349 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800350 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400351 else
Ying Wang6ef65192014-01-15 16:02:16 -0800352 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400353 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800354endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800355ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800356 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800357else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800358ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800359 my_cc := $(SYNTAX_TOOLS_PREFIX)/ccc-syntax $(my_syntax_arch) "$(my_cc)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800360endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800361endif
Ying Wang6ef65192014-01-15 16:02:16 -0800362$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800363
Ying Wang6ef65192014-01-15 16:02:16 -0800364ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700365 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800366 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400367 else
Ying Wang6ef65192014-01-15 16:02:16 -0800368 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400369 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800370endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800371ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800372 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-analyzer $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh906cb782013-09-10 17:37:14 +0800373else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800374ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800375 my_cxx := $(SYNTAX_TOOLS_PREFIX)/cxx-syntax $(my_syntax_arch) "$(my_cxx)"
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800376endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800377endif
Ying Wang6ef65192014-01-15 16:02:16 -0800378$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700379$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800380
381# TODO: support a mix of standard extensions so that this isn't necessary
382LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
383ifeq ($(LOCAL_CPP_EXTENSION),)
384 LOCAL_CPP_EXTENSION := .cpp
385endif
386$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION)
387
388# Certain modules like libdl have to have symbols resolved at runtime and blow
389# up if --no-undefined is passed to the linker.
390ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800391ifeq ($(my_allow_undefined_symbols),)
Ying Wang6ef65192014-01-15 16:02:16 -0800392 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)NO_UNDEFINED_LDFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800393endif
394endif
395
Ying Wangfcdabd42011-04-25 14:22:41 -0700396ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
397$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
398else
399$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
400endif
401
The Android Open Source Project88b60792009-03-03 19:28:42 -0800402###########################################################
403## Define arm-vs-thumb-mode flags.
404###########################################################
405LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Colin Cross6e087a32014-01-22 17:36:05 -0800406ifeq ($(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800407arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
408normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
409
Dave Bort95282482009-04-23 18:44:55 -0700410# Read the values from something like TARGET_arm_CFLAGS or
411# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
412# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800413arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
414normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700415ifeq ($(my_clang),true)
Ying Wang1f982832014-02-06 18:08:44 -0800416arm_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(arm_objects_cflags))
417normal_objects_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400418endif
419
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800420else
421arm_objects_mode :=
422normal_objects_mode :=
423arm_objects_cflags :=
424normal_objects_cflags :=
425endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800426
427###########################################################
428## Define per-module debugging flags. Users can turn on
429## debugging for a particular module by setting DEBUG_MODULE_ModuleName
430## to a non-empty value in their environment or buildspec.mk,
431## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
432## debug flags that they want to use.
433###########################################################
434ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
435 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
436else
437 debug_cflags :=
438endif
439
Tim Murraya7aa8002012-10-29 16:06:00 -0700440####################################################
441## Compile RenderScript with reflected C++
442####################################################
443
Ying Wangb8e01852014-01-23 15:09:04 -0800444renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700445
446ifneq (,$(renderscript_sources))
447
448renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
449RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
450renderscript_intermediate := $(intermediates)/renderscript
451
452ifeq ($(LOCAL_RENDERSCRIPT_CC),)
453LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
454endif
455
456# Turn on all warnings and warnings as errors for RS compiles.
457# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
458renderscript_flags := -Wall -Werror
459renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700460# -m32 or -m64
461renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700462
Ying Wang6ef65192014-01-15 16:02:16 -0800463renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700464 $(TOPDIR)external/clang/lib/Headers \
465 $(TOPDIR)frameworks/rs/scriptc \
466 $(LOCAL_RENDERSCRIPT_INCLUDES)
467
468ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800469renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700470endif
471
Ying Wang6ef65192014-01-15 16:02:16 -0800472$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700473$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
474$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
475$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
476$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
477$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
478 $(transform-renderscripts-to-cpp-and-bc)
479
480# include the dependency files (.d) generated by llvm-rs-cc.
481renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate)/, \
482 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
483-include $(renderscript_generated_dep_files)
484
485LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
486
487rs_generated_cpps := $(addprefix \
488 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
489 $(notdir $(renderscript_sources)))))
490
Stephen Hines8ff92522014-06-06 12:51:47 -0700491# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700492$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700493 @echo "Updated RS generated cpp file $@."
Tim Murraya7aa8002012-10-29 16:06:00 -0700494
Ying Wang6ef65192014-01-15 16:02:16 -0800495my_c_includes += $(renderscript_intermediate)
496my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700497
498endif
499
500
The Android Open Source Project88b60792009-03-03 19:28:42 -0800501###########################################################
502## Stuff source generated from one-off tools
503###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800504$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800505
Colin Crossd8262642014-01-24 23:17:21 -0800506my_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 -0800507
Colin Crossd8262642014-01-24 23:17:21 -0800508$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/% | $(ACP)
509 @echo "Copy: $@"
510 $(copy-file-to-target)
511
512my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
513
514ALL_GENERATED_SOURCES += $(my_generated_sources)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800515
516###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700517## Compile the .proto files to .cc and then to .o
518###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800519proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700520proto_generated_objects :=
521proto_generated_headers :=
522ifneq ($(proto_sources),)
523proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangead89442014-02-25 11:18:40 -0800524proto_generated_cc_sources_dir := $(generated_sources_dir)/proto
Ying Wanga5fc87a2010-11-02 18:43:16 -0700525proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700526 $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath)))
Ying Wangead89442014-02-25 11:18:40 -0800527proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources))
528proto_generated_obj_dir := $(intermediates)/proto
529proto_generated_objects := $(addprefix $(proto_generated_obj_dir)/, \
530 $(patsubst %.proto,%.pb.o,$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700531
Ying Wang49085952014-05-06 13:03:32 -0700532# Auto-export the generated proto source dir.
533LOCAL_EXPORT_C_INCLUDE_DIRS += $(proto_generated_cc_sources_dir)
534
Ying Wangead89442014-02-25 11:18:40 -0800535# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
536ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
Ying Wanga5fc87a2010-11-02 18:43:16 -0700537$(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP)
538$(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir)
Ying Wang33c0d952010-11-05 11:30:58 -0700539$(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700540$(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC)
541 $(transform-proto-to-cc)
542
Stephen Hines8ff92522014-06-06 12:51:47 -0700543# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Ying Wanga5fc87a2010-11-02 18:43:16 -0700544$(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc
Ying Wang81ab8332014-05-28 16:17:09 -0700545 @echo "Updated header file $@."
Ying Wanga5fc87a2010-11-02 18:43:16 -0700546
Ying Wangead89442014-02-25 11:18:40 -0800547$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
548endif # transform-proto-to-cc rule included only once
549
Ying Wang022a7b32012-06-13 11:38:10 -0700550$(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
551$(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wangead89442014-02-25 11:18:40 -0800552$(proto_generated_objects): $(proto_generated_obj_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700553 $(transform-$(PRIVATE_HOST)cpp-to-o)
554-include $(proto_generated_objects:%.o=%.P)
555
Ying Wang6ef65192014-01-15 16:02:16 -0800556my_c_includes += external/protobuf/src $(proto_generated_cc_sources_dir)
557my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wanga5fc87a2010-11-02 18:43:16 -0700558ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700559 ifneq ($(filter libprotobuf-cpp-2.3.0-full,$(my_static_libraries)),)
560 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-full in $(LOCAL_MODULE))
561 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-full,$(my_static_libraries))
562 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800563
564 ifdef LOCAL_SDK_VERSION
565 my_static_libraries += libprotobuf-cpp-full
566 else
567 my_shared_libraries += libprotobuf-cpp-full
568 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700569else
Jeff Davidsonb8ddd552014-09-15 17:51:11 -0700570 ifneq ($(filter libprotobuf-cpp-2.3.0-lite,$(my_static_libraries)),)
571 $(warning Stripping unneeded dependency on libprotobuf-cpp-2.3.0-lite in $(LOCAL_MODULE))
572 my_static_libraries := $(filter-out libprotobuf-cpp-2.3.0-lite,$(my_static_libraries))
573 endif
Dan Albertc3031c72014-11-11 10:42:17 -0800574
575 ifdef LOCAL_SDK_VERSION
576 my_static_libraries += libprotobuf-cpp-lite
577 else
578 my_shared_libraries += libprotobuf-cpp-lite
579 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700580endif
Ying Wangead89442014-02-25 11:18:40 -0800581endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700582
583
584###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000585## YACC: Compile .y and .yy files to .cpp and the to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800586###########################################################
587
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000588y_yacc_sources := $(filter %.y,$(my_src_files))
589y_yacc_cpps := $(addprefix \
590 $(intermediates)/,$(y_yacc_sources:.y=$(LOCAL_CPP_EXTENSION)))
591
592yy_yacc_sources := $(filter %.yy,$(my_src_files))
593yy_yacc_cpps := $(addprefix \
594 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
595
596yacc_cpps := $(y_yacc_cpps) $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800597yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h)
598yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o)
599
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000600ifneq ($(strip $(y_yacc_cpps)),)
601$(y_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700602 $(TOPDIR)$(LOCAL_PATH)/%.y \
Dan Albert954b5bd2014-11-08 22:20:03 -0800603 $(lex_cpps) $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800604 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
605$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000606endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800607
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000608ifneq ($(strip $(yy_yacc_cpps)),)
609$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
610 $(TOPDIR)$(LOCAL_PATH)/%.yy \
Dan Albert954b5bd2014-11-08 22:20:03 -0800611 $(lex_cpps) $(my_additional_dependencies)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000612 $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION))
613$(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
614endif
615
616ifneq ($(strip $(yacc_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800617$(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
618$(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
619$(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION)
620 $(transform-$(PRIVATE_HOST)cpp-to-o)
621endif
622
623###########################################################
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000624## LEX: Compile .l and .ll files to .cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800625###########################################################
626
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000627l_lex_sources := $(filter %.l,$(my_src_files))
628l_lex_cpps := $(addprefix \
629 $(intermediates)/,$(l_lex_sources:.l=$(LOCAL_CPP_EXTENSION)))
630
631ll_lex_sources := $(filter %.ll,$(my_src_files))
632ll_lex_cpps := $(addprefix \
633 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
634
635lex_cpps := $(l_lex_cpps) $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800636lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o)
637
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000638ifneq ($(strip $(l_lex_cpps)),)
639$(l_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700640 $(TOPDIR)$(LOCAL_PATH)/%.l
The Android Open Source Project88b60792009-03-03 19:28:42 -0800641 $(transform-l-to-cpp)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000642endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800643
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000644ifneq ($(strip $(ll_lex_cpps)),)
645$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
646 $(TOPDIR)$(LOCAL_PATH)/%.ll
647 $(transform-l-to-cpp)
648endif
649
650ifneq ($(strip $(lex_cpps)),)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800651$(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
652$(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
653$(lex_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700654 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800655 $(my_additional_dependencies) \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700656 $(yacc_headers)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800657 $(transform-$(PRIVATE_HOST)cpp-to-o)
658endif
659
660###########################################################
661## C++: Compile .cpp files to .o.
662###########################################################
663
Jeff Browne33ba4c2011-07-11 22:11:46 -0700664# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800665# it's not really arm, because there are files that are shared.
Ying Wangb8e01852014-01-23 15:09:04 -0800666cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800667cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
668
Ying Wangb8e01852014-01-23 15:09:04 -0800669cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800670cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
671
672$(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
673$(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
674$(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
675$(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
676
677cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
678
679ifneq ($(strip $(cpp_objects)),)
680$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700681 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800682 $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800683 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800684 $(transform-$(PRIVATE_HOST)cpp-to-o)
685-include $(cpp_objects:%.o=%.P)
686endif
687
688###########################################################
689## C++: Compile generated .cpp files to .o.
690###########################################################
691
Ying Wangec6d6262014-01-16 16:21:03 -0800692gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800693gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
694
695ifneq ($(strip $(gen_cpp_objects)),)
696# Compile all generated files as thumb.
697# TODO: support compiling certain generated files as arm.
698$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
699$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400700$(gen_cpp_objects): $(intermediates)/%.o: \
701 $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \
Ying Wang9c3aa052013-02-20 13:34:05 -0800702 $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800703 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800704 $(transform-$(PRIVATE_HOST)cpp-to-o)
705-include $(gen_cpp_objects:%.o=%.P)
706endif
707
708###########################################################
709## S: Compile generated .S and .s files to .o.
710###########################################################
711
Ying Wangec6d6262014-01-16 16:21:03 -0800712gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800713gen_S_objects := $(gen_S_sources:%.S=%.o)
714
715ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400716$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800717 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800718 $(transform-$(PRIVATE_HOST)s-to-o)
719-include $(gen_S_objects:%.o=%.P)
720endif
721
Ying Wangec6d6262014-01-16 16:21:03 -0800722gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800723gen_s_objects := $(gen_s_sources:%.s=%.o)
724
725ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400726$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800727 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800728 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
729-include $(gen_s_objects:%.o=%.P)
730endif
731
732gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
733
734###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000735## o: Include generated .o files in output.
736###########################################################
737
Ying Wangec6d6262014-01-16 16:21:03 -0800738gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +0000739
740###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800741## C: Compile .c files to .o.
742###########################################################
743
Ying Wangb8e01852014-01-23 15:09:04 -0800744c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800745c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
746
Ying Wangb8e01852014-01-23 15:09:04 -0800747c_normal_sources := $(filter %.c,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800748c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
749
750$(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
751$(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
752$(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
753$(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
754
755c_objects := $(c_arm_objects) $(c_normal_objects)
756
757ifneq ($(strip $(c_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400758$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800759 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800760 $(transform-$(PRIVATE_HOST)c-to-o)
761-include $(c_objects:%.o=%.P)
762endif
763
764###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700765## C: Compile generated .c files to .o.
766###########################################################
767
Ying Wangec6d6262014-01-16 16:21:03 -0800768gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700769gen_c_objects := $(gen_c_sources:%.c=%.o)
770
771ifneq ($(strip $(gen_c_objects)),)
772# Compile all generated files as thumb.
773# TODO: support compiling certain generated files as arm.
774$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
775$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400776$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800777 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -0700778 $(transform-$(PRIVATE_HOST)c-to-o)
779-include $(gen_c_objects:%.o=%.P)
780endif
781
782###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200783## ObjC: Compile .m files to .o
784###########################################################
785
Ying Wangb8e01852014-01-23 15:09:04 -0800786objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200787objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
788
789ifneq ($(strip $(objc_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400790$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800791 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200792 $(transform-$(PRIVATE_HOST)m-to-o)
793-include $(objc_objects:%.o=%.P)
794endif
795
796###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800797## AS: Compile .S files to .o.
798###########################################################
799
Ying Wangb8e01852014-01-23 15:09:04 -0800800asm_sources_S := $(filter %.S,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800801asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
802
803ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400804$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -0800805 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800806 $(transform-$(PRIVATE_HOST)s-to-o)
807-include $(asm_objects_S:%.o=%.P)
808endif
809
Ying Wangb8e01852014-01-23 15:09:04 -0800810asm_sources_s := $(filter %.s,$(my_src_files))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800811asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
812
813ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400814$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -0800815 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800816 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
817-include $(asm_objects_s:%.o=%.P)
818endif
819
820asm_objects := $(asm_objects_S) $(asm_objects_s)
821
822
Ying Wang7b913ce2014-06-05 19:05:47 -0700823# .asm for x86 needs to be compiled with yasm.
824ifeq (x86,$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
825asm_sources_asm := $(filter %.asm,$(my_src_files))
826ifneq ($(strip $(asm_sources_asm)),)
827asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
828$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -0800829 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -0700830 $(transform-asm-to-o)
831
832asm_objects += $(asm_objects_asm)
833endif
834endif
835
Ying Wang5f074802011-11-08 09:31:21 -0800836####################################################
837## Import includes
838####################################################
839import_includes := $(intermediates)/import_includes
840import_includes_deps := $(strip \
841 $(foreach l, $(installed_shared_library_module_names), \
Ying Wang6ef65192014-01-15 16:02:16 -0800842 $(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 -0800843 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Ying Wang6ef65192014-01-15 16:02:16 -0800844 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/export_includes))
Ying Wang5f074802011-11-08 09:31:21 -0800845$(import_includes) : $(import_includes_deps)
846 @echo Import includes file: $@
847 $(hide) mkdir -p $(dir $@) && rm -f $@
848ifdef import_includes_deps
849 $(hide) for f in $^; do \
850 cat $$f >> $@; \
851 done
852else
853 $(hide) touch $@
854endif
855
The Android Open Source Project88b60792009-03-03 19:28:42 -0800856###########################################################
857## Common object handling.
858###########################################################
859
860# some rules depend on asm_objects being first. If your code depends on
861# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100862normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700863 $(asm_objects) \
864 $(cpp_objects) \
865 $(gen_cpp_objects) \
866 $(gen_asm_objects) \
867 $(c_objects) \
868 $(gen_c_objects) \
869 $(objc_objects) \
870 $(yacc_objects) \
871 $(lex_objects) \
872 $(proto_generated_objects) \
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100873 $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
874
875all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800876
Colin Cross2d206702014-02-13 13:41:52 -0800877my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800878
Ying Wang848020f2012-08-14 10:13:16 -0700879ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -0800880 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -0700881endif
882
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100883# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
884# use normal_objects here to avoid creating circular dependencies. This assumes
885# that custom build rules which generate .o files don't consume other generated
886# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -0800887$(normal_objects) : | $(my_generated_sources)
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +0100888$(all_objects) : | $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800889ALL_C_CPP_ETC_OBJECTS += $(all_objects)
890
The Android Open Source Project88b60792009-03-03 19:28:42 -0800891
892###########################################################
893# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800894###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800895
896###########################################################
897# The list of libraries that this module will link against are in
898# these variables. Each is a list of bare module names like "libc libm".
899#
900# LOCAL_SHARED_LIBRARIES
901# LOCAL_STATIC_LIBRARIES
902# LOCAL_WHOLE_STATIC_LIBRARIES
903#
904# We need to convert the bare names into the dependencies that
905# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
906# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
907# libraries, so that simply building this module doesn't force
908# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
909# should depend on the INSTALLED versions of the libraries so
910# that they get installed when this module does.
911###########################################################
912# NOTE:
913# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
914# module without leaving anything out, which is useful for turning
915# a collection of .a files into a .so file. Linking against a
916# normal STATIC_LIBRARY will only pull in code/symbols that are
917# referenced by the module. (see gcc/ld's --whole-archive option)
918###########################################################
919
920# Get the list of BUILT libraries, which are under
921# various intermediates directories.
922so_suffix := $($(my_prefix)SHLIB_SUFFIX)
923a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
924
Ying Wang848020f2012-08-14 10:13:16 -0700925ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -0800926built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800927 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800928 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -0800929 $(my_shared_libraries)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800930
Ying Wangd8d37212014-03-21 16:17:04 -0700931# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -0800932my_system_shared_libraries_fullpath := \
933 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -0700934 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -0700935 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -0700936
937built_shared_libraries += $(my_system_shared_libraries_fullpath)
Ying Wang1a081002010-07-13 14:55:47 -0700938else
Ying Wang1a081002010-07-13 14:55:47 -0700939built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800940 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -0700941 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -0700942 $(installed_shared_library_module_names)))
Ying Wang1a081002010-07-13 14:55:47 -0700943endif
944
The Android Open Source Project88b60792009-03-03 19:28:42 -0800945built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -0800946 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800947 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800948 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 -0800949
Ying Wang848020f2012-08-14 10:13:16 -0700950ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -0800951built_static_libraries += $(my_ndk_stl_static_lib)
952endif
953
The Android Open Source Project88b60792009-03-03 19:28:42 -0800954built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -0800955 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800956 $(call intermediates-dir-for, \
Ying Wang6ef65192014-01-15 16:02:16 -0800957 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 -0800958
The Android Open Source Project88b60792009-03-03 19:28:42 -0800959# We don't care about installed static libraries, since the
960# libraries have already been linked into the module at that point.
961# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +0000962# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800963
964installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -0800965 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800966 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
967
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700968# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -0700969ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
970LOCAL_RTTI_FLAG := -fno-rtti
971endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700972
The Android Open Source Project88b60792009-03-03 19:28:42 -0800973###########################################################
974# Rule-specific variable definitions
975###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +0800976
Ying Wang824344a2014-05-27 13:03:36 -0700977ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -0700978my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -0800979my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -0800980my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -0700981my_asflags += $(LOCAL_CLANG_ASFLAGS)
982my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -0700983my_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 -0800984my_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 -0700985my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
986my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
987my_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 -0800988my_cflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cflags))
989my_cppflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_cppflags))
990my_asflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_asflags))
991my_ldflags := $(call $(LOCAL_2ND_ARCH_VAR_PREFIX)convert-to-$(my_host)clang-flags,$(my_ldflags))
Logan Chiene6f65432013-12-10 19:07:41 +0800992endif
993
The Android Open Source Project88b60792009-03-03 19:28:42 -0800994$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -0800995$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -0800996$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -0800997$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
998$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700999$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001000$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001001$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001002$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001003$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001004$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Ying Wangb8e01852014-01-23 15:09:04 -08001005$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(strip $(LOCAL_NO_CRT) $(LOCAL_NO_CRT_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001006
1007# this is really the way to get the files onto the command line instead
1008# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1009$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1010$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1011$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
1012$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects)
1013
1014###########################################################
1015# Define library dependencies.
1016###########################################################
1017# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1018all_libraries := \
1019 $(built_shared_libraries) \
1020 $(built_static_libraries) \
1021 $(built_whole_libraries)
1022
The Android Open Source Project88b60792009-03-03 19:28:42 -08001023# Also depend on the notice files for any static libraries that
1024# are linked into this module. This will force them to be installed
1025# when this module is.
1026$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001027
1028###########################################################
1029# Export includes
1030###########################################################
1031export_includes := $(intermediates)/export_includes
1032$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Ying Wang49085952014-05-06 13:03:32 -07001033# Make sure .pb.h are already generated before any dependent source files get compiled.
1034$(export_includes) : $(LOCAL_MODULE_MAKEFILE) $(proto_generated_headers)
Ying Wang5f074802011-11-08 09:31:21 -08001035 @echo Export includes file: $< -- $@
1036 $(hide) mkdir -p $(dir $@) && rm -f $@
1037ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
1038 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
1039 echo "-I $$d" >> $@; \
1040 done
1041else
1042 $(hide) touch $@
1043endif
Ying Wang616e5962012-04-18 17:35:55 -07001044
1045# Make sure export_includes gets generated when you are running mm/mmm
1046$(LOCAL_BUILT_MODULE) : | $(export_includes)