blob: e225edba86f68c689a2965b33d6dd086ad39e694 [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)
Colin Crossa04abc82015-06-30 12:21:59 -070037my_src_files_exclude := $(LOCAL_SRC_FILES_EXCLUDE)
Dan Albertd3d894d2014-11-14 15:28:49 -080038my_static_libraries := $(LOCAL_STATIC_LIBRARIES)
39my_whole_static_libraries := $(LOCAL_WHOLE_STATIC_LIBRARIES)
40my_shared_libraries := $(LOCAL_SHARED_LIBRARIES)
41my_cflags := $(LOCAL_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -080042my_conlyflags := $(LOCAL_CONLYFLAGS)
Dan Albertd3d894d2014-11-14 15:28:49 -080043my_cppflags := $(LOCAL_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -070044my_cflags_no_override := $(GLOBAL_CFLAGS_NO_OVERRIDE)
45my_cppflags_no_override := $(GLOBAL_CPPFLAGS_NO_OVERRIDE)
Dan Albertd3d894d2014-11-14 15:28:49 -080046my_ldflags := $(LOCAL_LDFLAGS)
47my_ldlibs := $(LOCAL_LDLIBS)
48my_asflags := $(LOCAL_ASFLAGS)
49my_cc := $(LOCAL_CC)
Ying Wangc671a7c2015-07-20 18:40:18 -070050my_cc_wrapper := $(CC_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080051my_cxx := $(LOCAL_CXX)
Ying Wangc671a7c2015-07-20 18:40:18 -070052my_cxx_wrapper := $(CXX_WRAPPER)
Dan Albertd3d894d2014-11-14 15:28:49 -080053my_c_includes := $(LOCAL_C_INCLUDES)
54my_generated_sources := $(LOCAL_GENERATED_SOURCES)
55my_native_coverage := $(LOCAL_NATIVE_COVERAGE)
Dan Willemsen1c6dc5b2016-01-06 14:28:36 -080056my_additional_dependencies := $(LOCAL_ADDITIONAL_DEPENDENCIES)
Ying Wangfaeb6932015-04-07 11:59:34 -070057my_export_c_include_dirs := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
Dan Albertd3d894d2014-11-14 15:28:49 -080058
Dan Albertb58fb4a2014-11-14 17:15:00 -080059ifdef LOCAL_IS_HOST_MODULE
60my_allow_undefined_symbols := true
61else
62my_allow_undefined_symbols := $(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS))
63endif
64
Andrew Hsieh140761af02014-04-25 23:47:10 -070065my_ndk_sysroot :=
66my_ndk_sysroot_include :=
67my_ndk_sysroot_lib :=
Ying Wang848020f2012-08-14 10:13:16 -070068ifdef LOCAL_SDK_VERSION
Ying Wang1a081002010-07-13 14:55:47 -070069 ifdef LOCAL_IS_HOST_MODULE
Ian Rogers76a6dc32012-10-01 16:36:23 -070070 $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module)
Ying Wang1a081002010-07-13 14:55:47 -070071 endif
Nikola Veljkovicf7385622016-04-06 19:20:02 +020072
Dan Albert02bf1382016-07-21 10:04:12 -070073 # Make sure we've built the NDK.
Colin Cross723b37e2016-07-29 15:09:03 -070074 my_additional_dependencies += $(SOONG_OUT_DIR)/ndk.timestamp
Dan Albert02bf1382016-07-21 10:04:12 -070075
Nikola Veljkovicf7385622016-04-06 19:20:02 +020076 # mips32r6 is not supported by the NDK. No released NDK contains these
77 # libraries, but the r10 in prebuilts/ndk had a local hack to add them :(
78 #
79 # We need to find a real solution to this problem, but until we do just drop
80 # mips32r6 things back to r10 to get the tree building again.
81 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
82 ifeq ($(LOCAL_NDK_VERSION), current)
83 LOCAL_NDK_VERSION := r10
84 endif
85 endif
86
Dan Albert02bf1382016-07-21 10:04:12 -070087 my_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
88 ifneq (,$(filter arm64 mips64 x86_64,$(my_arch)))
89 my_min_sdk_version := 21
90 else
91 my_min_sdk_version := 9
92 endif
93
94 # Historically we've just set up a bunch of symlinks in prebuilts/ndk to map
95 # missing API levels to existing ones where necessary, but we're not doing
96 # that for the generated libraries. Clip the API level to the minimum where
97 # appropriate.
98 my_ndk_api := \
99 $(shell if [ $(LOCAL_SDK_VERSION) -lt $(my_min_sdk_version) ]; then \
100 echo $(my_min_sdk_version); else echo $(LOCAL_SDK_VERSION); fi)
101
102 my_ndk_source_root := \
103 $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources
104 my_ndk_sysroot := \
105 $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/platforms/android-$(my_ndk_api)/arch-$(my_arch)
106 my_built_ndk := $(SOONG_OUT_DIR)/ndk
107 my_ndk_triple := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_TRIPLE)
108 my_ndk_sysroot_include := \
109 $(my_built_ndk)/sysroot/usr/include \
110 $(my_built_ndk)/sysroot/usr/include/$(my_ndk_triple) \
111 $(my_ndk_sysroot)/usr/include \
Dan Albert445bc2f2015-12-11 12:49:18 -0800112
113 # x86_64 and and mips64 are both multilib toolchains, so their libraries are
114 # installed in /usr/lib64. Aarch64, on the other hand, is not a multilib
115 # compiler, so its libraries are in /usr/lib.
116 #
117 # Mips32r6 is yet another variation, with libraries installed in libr6.
118 #
119 # For the rest, the libraries are installed simply to /usr/lib.
Dan Albert02bf1382016-07-21 10:04:12 -0700120 ifneq (,$(filter x86_64 mips64,$(my_arch)))
121 my_ndk_libdir_name := lib64
Duane Sand1a074872014-11-08 15:25:18 -0800122 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
Dan Albert02bf1382016-07-21 10:04:12 -0700123 my_ndk_libdir_name := libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -0700124 else
Dan Albert02bf1382016-07-21 10:04:12 -0700125 my_ndk_libdir_name := lib
Andrew Hsieh140761af02014-04-25 23:47:10 -0700126 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800127
Dan Albert02bf1382016-07-21 10:04:12 -0700128 my_ndk_platform_dir := \
129 $(my_built_ndk)/platforms/android-$(my_ndk_api)/arch-$(my_arch)
130 my_built_ndk_libs := $(my_ndk_platform_dir)/usr/$(my_ndk_libdir_name)
131 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/$(my_ndk_libdir_name)
132
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -0700133 # The bionic linker now has support for packed relocations and gnu style
134 # hashes (which are much faster!), but shipping to older devices requires
Dan Albertee629c92015-12-09 14:52:25 -0800135 # the old style hash. Fortunately, we can build with both and it'll work
136 # anywhere.
Dan Albert8dca15f2015-12-09 16:26:20 -0800137 #
138 # This is not currently supported on MIPS architectures.
139 ifeq (,$(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
140 my_ldflags += -Wl,--hash-style=both
141 endif
Dan Albertee629c92015-12-09 14:52:25 -0800142
143 # We don't want to expose the relocation packer to the NDK just yet.
144 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -0800145
Ying Wangcce4c972011-03-03 18:53:53 -0800146 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
147 # See ndk/docs/CPLUSPLUS-SUPPORT.html
148 my_ndk_stl_include_path :=
149 my_ndk_stl_shared_lib_fullpath :=
150 my_ndk_stl_shared_lib :=
151 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800152 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -0800153 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
Nikola Veljkovicf7385622016-04-06 19:20:02 +0200154 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
155 my_cpu_variant := mips32r6
156 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800157 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800158 ifeq (,$(LOCAL_NDK_STL_VARIANT))
159 LOCAL_NDK_STL_VARIANT := system
160 endif
Dan Albert0e2e71d2015-12-09 14:46:13 -0800161 ifneq (1,$(words $(filter none system stlport_static stlport_shared c++_static c++_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT))))
Ying Wang848020f2012-08-14 10:13:16 -0700162 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800163 endif
164 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
165 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
Dan Albert0e2e71d2015-12-09 14:46:13 -0800166 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800167 else # LOCAL_NDK_STL_VARIANT is not system
168 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
169 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
Dan Albert0e2e71d2015-12-09 14:46:13 -0800170 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800171 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800172 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a
Dan Alberta81e1b72016-03-10 15:17:09 -0800173 my_ldlibs += -ldl
Ying Wangcce4c972011-03-03 18:53:53 -0800174 else
Duane Sand1a074872014-11-08 15:25:18 -0800175 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 -0800176 my_ndk_stl_shared_lib := -lstlport_shared
177 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800178 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
179 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
Dan Albert658d1e02016-03-22 17:17:40 -0700180 my_ndk_stl_include_path := \
181 $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include \
182 $(my_ndk_source_root)/android/support/include \
183
184 # Pre-r11 NDKs used libgabi++ for libc++'s C++ ABI, but r11 and later use
185 # libc++abi.
186 ifeq ($(LOCAL_NDK_VERSION),r10)
187 my_ndk_stl_include_path += \
188 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include
189 else
190 my_ndk_stl_include_path += \
191 $(my_ndk_source_root)/cxx-stl/llvm-libc++abi/libcxxabi/include
192 endif
193
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800194 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800195 my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)/libc++_static.a
Dan Alberta81e1b72016-03-10 15:17:09 -0800196 my_ldlibs += -ldl
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800197 else
Duane Sand1a074872014-11-08 15:25:18 -0800198 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 +0800199 my_ndk_stl_shared_lib := -lc++_shared
200 endif
201 my_ndk_stl_cppflags := -std=c++11
Dan Albert0e2e71d2015-12-09 14:46:13 -0800202 else # LOCAL_NDK_STL_VARIANT is not c++_* either
203 ifneq (,$(filter gnustl_%, $(LOCAL_NDK_STL_VARIANT)))
Duane Sand1a074872014-11-08 15:25:18 -0800204 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 -0700205 $(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 -0800206 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
Dan Albert0e2e71d2015-12-09 14:46:13 -0800207 else # LOCAL_NDK_STL_VARIANT must be none
208 # Do nothing.
209 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800210 endif
211 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800212 endif
Dan Albert02bf1382016-07-21 10:04:12 -0700213
214 my_generated_ndk_shared_libraries := \
215 $(filter $(NDK_MIGRATED_LIBS),$(my_system_shared_libraries))
216 my_system_shared_libraries := \
217 $(filter-out $(NDK_MIGRATED_LIBS),$(my_system_shared_libraries))
Ying Wang1a081002010-07-13 14:55:47 -0700218endif
219
Dan Albert95994de2014-08-07 18:29:11 -0700220# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
221# all code is position independent, and then those warnings get promoted to
222# errors.
Alexey Polyudovcbb038c2016-08-01 17:36:39 -0700223ifneq ($(LOCAL_NO_PIC),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700224ifneq ($($(my_prefix)OS),windows)
Dan Willemsen7fe992c2016-03-02 13:54:51 -0800225ifneq ($(filter EXECUTABLES NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),)
Dan Albert4803ce22014-08-06 12:36:46 -0700226my_cflags += -fpie
227else
228my_cflags += -fPIC
229endif
Dan Albert95994de2014-08-07 18:29:11 -0700230endif
Alexey Polyudovcbb038c2016-08-01 17:36:39 -0700231endif
Dan Albert4803ce22014-08-06 12:36:46 -0700232
Dan Willemsen7a549852015-08-13 17:51:40 -0700233ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen85ac8d22015-08-18 17:47:06 -0700234my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)OS)) $(LOCAL_SRC_FILES_$($(my_prefix)OS)_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
Dan Willemsen7a549852015-08-13 17:51:40 -0700235my_static_libraries += $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)OS))
236my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)OS))
237my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)OS))
238my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)OS))
239my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)OS))
240my_ldlibs += $(LOCAL_LDLIBS_$($(my_prefix)OS))
241my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)OS))
242my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)OS))
243my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)OS))
244endif
245
Ying Wang6feb6d52014-04-17 10:03:35 -0700246my_src_files += $(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
Colin Crossa04abc82015-06-30 12:21:59 -0700247my_src_files_exclude += $(LOCAL_SRC_FILES_EXCLUDE_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SRC_FILES_EXCLUDE_$(my_32_64_bit_suffix))
Ying Wang6feb6d52014-04-17 10:03:35 -0700248my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
249my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
250my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
251my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
252my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
253my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
254my_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 -0800255
Dan Willemsenc29172c2015-12-03 22:58:39 -0800256my_missing_exclude_files := $(filter-out $(my_src_files),$(my_src_files_exclude))
257ifneq ($(my_missing_exclude_files),)
258$(warning Files are listed in LOCAL_SRC_FILES_EXCLUDE but not LOCAL_SRC_FILES)
259$(error $(my_missing_exclude_files))
260endif
Colin Crossa04abc82015-06-30 12:21:59 -0700261my_src_files := $(filter-out $(my_src_files_exclude),$(my_src_files))
262
Dan Albertdb905e72014-08-18 11:14:38 -0700263my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700264ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700265my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700266endif
267ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700268my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700269endif
270
Alexey Polyudov7d6b3f12016-06-24 11:22:51 -0700271# if custom toolchain is in use, default is not to use clang, if not explicitly required
272ifneq ($(my_cc)$(my_cxx),)
273 ifeq ($(my_clang),)
274 my_clang := false
275 endif
276endif
Chih-Hung Hsiehd9cd1fa2016-08-02 14:22:06 -0700277# Issue warning if LOCAL_CLANG* is set to false and the local makefile is not found
278# in the exception project list.
279ifeq ($(my_clang),false)
280 ifeq ($(call find_in_local_clang_exception_projects,$(LOCAL_MODULE_MAKEFILE)),)
Chih-Hung Hsieh2ee4c1a2016-08-04 15:35:51 -0700281 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): LOCAL_CLANG is set to false)
Chih-Hung Hsiehd9cd1fa2016-08-02 14:22:06 -0700282 endif
283endif
Alexey Polyudov7d6b3f12016-06-24 11:22:51 -0700284
Tim Murray92d79cb2014-04-04 14:38:29 -0700285# clang is enabled by default for host builds
286# enable it unless we've specifically disabled clang above
287ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen95374772016-03-29 12:34:03 -0700288 ifeq ($($(my_prefix)OS),windows)
289 ifeq ($(my_clang),true)
290 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Clang is not yet supported for windows binaries)
291 endif
292 my_clang := false
293 else
294 ifeq ($(my_clang),)
295 my_clang := true
296 endif
Tim Murray5ca1dc12014-07-24 14:42:53 -0700297 endif
Stephen Hines7a0c88e2015-12-13 22:58:22 +0000298# Add option to make clang the default for device build
299else ifeq ($(USE_CLANG_PLATFORM_BUILD),true)
Dan Willemsen77288172015-09-09 15:45:21 -0700300 ifeq ($(my_clang),)
Stephen Hines7a0c88e2015-12-13 22:58:22 +0000301 my_clang := true
Dan Willemsen77288172015-09-09 15:45:21 -0700302 endif
303endif
304
Dan Albertc7d307d2015-07-29 15:13:57 -0700305my_cpp_std_version := -std=gnu++14
Dan Albertda637392015-10-26 11:09:24 -0700306
307ifneq ($(my_clang),true)
308 # GCC uses an invalid C++14 ABI (emits calls to
309 # __cxa_throw_bad_array_length, which is not a valid C++ RT ABI).
310 # http://b/25022512
311 my_cpp_std_version := -std=gnu++11
312endif
313
Dan Albertc7d307d2015-07-29 15:13:57 -0700314ifdef LOCAL_SDK_VERSION
315 # The NDK handles this itself.
316 my_cpp_std_version :=
317endif
318
319ifdef LOCAL_IS_HOST_MODULE
320 ifneq ($(my_clang),true)
321 # The host GCC doesn't support C++14 (and is deprecated, so likely
322 # never will). Build these modules with C++11.
323 my_cpp_std_version := -std=gnu++11
324 endif
325endif
326
327my_cppflags := $(my_cpp_std_version) $(my_cppflags)
328
Tim Murray06659bc2014-08-13 11:53:07 -0700329
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800330# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700331my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
332my_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 -0800333
Ying Wang75e8fcb2014-10-07 13:03:29 -0700334include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700335
Ying Wang285045b2013-08-13 12:35:10 -0700336# Add static HAL libraries
337ifdef LOCAL_HAL_STATIC_LIBRARIES
338$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
339 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800340 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
341 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700342b_lib :=
343endif
344
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100345ifneq ($(strip $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)),)
346 my_linker := $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)
347else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700348 my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)LINKER)
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100349endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700350
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700351include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400352
Alexey Polyudovee27d812016-08-01 17:38:35 -0700353ifneq ($(LOCAL_NO_LIBCOMPILER_RT),true)
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800354# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700355ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800356 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700357endif
Alexey Polyudovee27d812016-08-01 17:38:35 -0700358endif
Stephen Hinesc72f3962012-06-11 14:53:34 -0700359
Jing Yu2dcc8062009-09-21 16:31:50 -0700360####################################################
361## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700362## Please note that we will do option filtering during FDO build.
363## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
364##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700365my_fdo_build :=
366ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
367 ifeq ($(BUILD_FDO_INSTRUMENT),true)
368 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
369 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
370 my_fdo_build := true
371 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
372 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
373 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700374 endif
Shinichiro Hamaji09295a82015-09-24 17:51:20 +0900375 # Disable ccache (or other compiler wrapper) except gomacc, which
376 # can handle -fprofile-use properly.
377 my_cc_wrapper := $(filter $(GOMA_CC),$(my_cc_wrapper))
378 my_cxx_wrapper := $(filter $(GOMA_CC),$(my_cxx_wrapper))
Jing Yu2dcc8062009-09-21 16:31:50 -0700379endif
380
The Android Open Source Project88b60792009-03-03 19:28:42 -0800381###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800382## Explicitly declare assembly-only __ASSEMBLY__ macro for
383## assembly source
384###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800385my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800386
Ying Wangd8d37212014-03-21 16:17:04 -0700387
Jim Huang20d1ba62010-10-14 16:15:56 +0800388###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700389## Define PRIVATE_ variables from global vars
390###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800391ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700392ifdef LOCAL_SDK_VERSION
Colin Cross23ba6122016-07-20 12:22:57 -0700393my_target_global_c_includes :=
394my_target_global_c_system_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800395my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700396else
Colin Cross23ba6122016-07-20 12:22:57 -0700397my_target_global_c_includes := $(SRC_HEADERS) \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700398 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_INCLUDES) \
399 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Colin Cross23ba6122016-07-20 12:22:57 -0700400my_target_global_c_system_includes := $(SRC_SYSTEM_HEADERS) \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700401 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_SYSTEM_INCLUDES) \
402 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_SYSTEM_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800403my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700404endif # LOCAL_SDK_VERSION
405
Ying Wang824344a2014-05-27 13:03:36 -0700406ifeq ($(my_clang),true)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700407my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
408my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
409my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
410my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700411else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700412my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
413my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
414my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
415my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700416endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700417
Colin Crosse25fd792016-07-19 13:19:21 -0700418$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_INCLUDES := $(my_target_global_c_includes)
Colin Cross23ba6122016-07-20 12:22:57 -0700419$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_SYSTEM_INCLUDES := $(my_target_global_c_system_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700420$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800421$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800422$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
423$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
424
Ying Wang7fff9a12014-01-09 14:39:41 -0800425else # LOCAL_IS_HOST_MODULE
426
Colin Cross23ba6122016-07-20 12:22:57 -0700427my_host_global_c_includes := $(SRC_HEADERS) \
428 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_INCLUDES) \
Colin Crosse25fd792016-07-19 13:19:21 -0700429 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Colin Cross23ba6122016-07-20 12:22:57 -0700430my_host_global_c_system_includes := $(SRC_SYSTEM_HEADERS) \
431 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_SYSTEM_INCLUDES) \
432 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_SYSTEM_INCLUDES)
Colin Crosse25fd792016-07-19 13:19:21 -0700433
Ying Wang824344a2014-05-27 13:03:36 -0700434ifeq ($(my_clang),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700435my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
436my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
437my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
438my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
Logan Chiene6f65432013-12-10 19:07:41 +0800439else
Dan Willemsen057aaea2015-08-14 12:59:50 -0700440my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
441my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
442my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
443my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700444endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800445
Colin Crosse25fd792016-07-19 13:19:21 -0700446$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_INCLUDES := $(my_host_global_c_includes)
Colin Cross23ba6122016-07-20 12:22:57 -0700447$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_SYSTEM_INCLUDES := $(my_host_global_c_system_includes)
Logan Chiene6f65432013-12-10 19:07:41 +0800448$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800449$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800450$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
451$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
452endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700453
Dan Albert43e128a2015-01-23 16:12:57 -0800454# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
455# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
456# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
457# clean build of your module after toggling it.
458ifeq ($(NATIVE_COVERAGE),true)
459 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800460 # Note that clang coverage doesn't play nicely with acov out of the box.
461 # Clang apparently generates .gcno files that aren't compatible with
462 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
463 # with `--gcov-tool /usr/bin/gcov-4.6`.
464 #
465 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800466 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800467 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800468 endif
469else
470 my_native_coverage := false
471endif
472
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700473ifeq ($(my_clang),true)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700474 my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)LIBPROFILE_RT)
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700475else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700476 my_coverage_lib := $(call intermediates-dir-for,STATIC_LIBRARIES,libgcov,$(filter AUX,$(my_kind)),,$(LOCAL_2ND_ARCH_VAR_PREFIX))/libgcov.a
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700477endif
478
479$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_COVERAGE_LIB := $(my_coverage_lib)
480
Ying Wang1a081002010-07-13 14:55:47 -0700481###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800482## Define PRIVATE_ variables used by multiple module types
483###########################################################
484$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700485 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800486
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800487ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
488 LOCAL_NO_SYNTAX_CHECK := true
489endif
490
Andrew Hsieh906cb782013-09-10 17:37:14 +0800491ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
492 LOCAL_NO_STATIC_ANALYZER := true
493endif
494
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800495# Clang does not recognize all gcc flags.
496# Use static analyzer only if clang is used.
497ifneq ($(my_clang),true)
498 LOCAL_NO_STATIC_ANALYZER := true
499endif
500
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800501ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
502 my_syntax_arch := host
503else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700504 my_syntax_arch := $($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800505endif
506
Ying Wang6ef65192014-01-15 16:02:16 -0800507ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700508 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800509 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400510 else
Ying Wang6ef65192014-01-15 16:02:16 -0800511 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400512 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700513 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800514endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800515
Andrew Hsieh906cb782013-09-10 17:37:14 +0800516ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800517 my_cc := CCC_CC=$(CLANG) CLANG=$(CLANG) \
518 $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800519else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800520ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800521 my_cc := $(my_cc) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800522endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800523endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800524
Ying Wang6ef65192014-01-15 16:02:16 -0800525$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800526
Ying Wang6ef65192014-01-15 16:02:16 -0800527ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700528 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800529 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400530 else
Ying Wang6ef65192014-01-15 16:02:16 -0800531 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400532 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700533 my_cxx := $(my_cxx_wrapper) $(my_cxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800534endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800535
Andrew Hsieh906cb782013-09-10 17:37:14 +0800536ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800537 my_cxx := CCC_CXX=$(CLANG_CXX) CLANG_CXX=$(CLANG_CXX) \
538 $(SYNTAX_TOOLS_PREFIX)/c++-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800539else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800540ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800541 my_cxx := $(my_cxx) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800542endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800543endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800544
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700545$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker)
Ying Wang6ef65192014-01-15 16:02:16 -0800546$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700547$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800548
549# TODO: support a mix of standard extensions so that this isn't necessary
550LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
551ifeq ($(LOCAL_CPP_EXTENSION),)
552 LOCAL_CPP_EXTENSION := .cpp
553endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800554
555# Certain modules like libdl have to have symbols resolved at runtime and blow
556# up if --no-undefined is passed to the linker.
557ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800558ifeq ($(my_allow_undefined_symbols),)
Dan Willemsen8308f502016-05-18 12:50:53 -0700559 my_ldflags += -Wl,--no-undefined
The Android Open Source Project88b60792009-03-03 19:28:42 -0800560endif
561endif
562
Ying Wangfcdabd42011-04-25 14:22:41 -0700563ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
564$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
565else
566$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
567endif
568
The Android Open Source Project88b60792009-03-03 19:28:42 -0800569###########################################################
570## Define arm-vs-thumb-mode flags.
571###########################################################
572LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700573ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800574arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
575normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
576
Dave Bort95282482009-04-23 18:44:55 -0700577# Read the values from something like TARGET_arm_CFLAGS or
578# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
579# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800580arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
581normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700582ifeq ($(my_clang),true)
Dan Willemsen02268f02016-05-19 14:39:25 -0700583arm_objects_cflags := $(call convert-to-clang-flags,$(arm_objects_cflags))
584normal_objects_cflags := $(call convert-to-clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400585endif
586
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800587else
588arm_objects_mode :=
589normal_objects_mode :=
590arm_objects_cflags :=
591normal_objects_cflags :=
592endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800593
594###########################################################
595## Define per-module debugging flags. Users can turn on
596## debugging for a particular module by setting DEBUG_MODULE_ModuleName
597## to a non-empty value in their environment or buildspec.mk,
598## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
599## debug flags that they want to use.
600###########################################################
601ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
602 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
603else
604 debug_cflags :=
605endif
606
Tim Murraya7aa8002012-10-29 16:06:00 -0700607####################################################
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800608## Keep track of src -> obj mapping
609####################################################
610
611my_tracked_gen_files :=
612my_tracked_src_files :=
613
614###########################################################
615## Stuff source generated from one-off tools
616###########################################################
617$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
618
619my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources)))
620
Dan Willemsen7f016152016-02-29 17:52:39 -0800621$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/%
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800622 @echo "Copy: $@"
623 $(copy-file-to-target)
624
625my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
626
627# Generated sources that will actually produce object files.
628# Other files (like headers) are allowed in LOCAL_GENERATED_SOURCES,
629# since other compiled sources may depend on them, and we set up
630# the dependencies.
Dan Willemsen444c3232016-02-04 14:18:48 -0800631my_gen_src_files := $(filter %.c %$(LOCAL_CPP_EXTENSION) %.S %.s,$(my_generated_sources))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800632
633ALL_GENERATED_SOURCES += $(my_generated_sources)
634
635####################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700636## Compile RenderScript with reflected C++
637####################################################
638
Ying Wangb8e01852014-01-23 15:09:04 -0800639renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700640
641ifneq (,$(renderscript_sources))
642
643renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
644RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
645renderscript_intermediate := $(intermediates)/renderscript
646
Noah Presler4796a8c2015-08-13 17:04:10 -0700647renderscript_target_api :=
648
649ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
650renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
651else
652ifneq (,$(LOCAL_SDK_VERSION))
653# Set target-api for LOCAL_SDK_VERSIONs other than current.
654ifneq (,$(filter-out current system_current, $(LOCAL_SDK_VERSION)))
655renderscript_target_api := $(LOCAL_SDK_VERSION)
656endif
657endif # LOCAL_SDK_VERSION is set
658endif # LOCAL_RENDERSCRIPT_TARGET_API is set
659
660
Tim Murraya7aa8002012-10-29 16:06:00 -0700661ifeq ($(LOCAL_RENDERSCRIPT_CC),)
662LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
663endif
664
665# Turn on all warnings and warnings as errors for RS compiles.
666# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
667renderscript_flags := -Wall -Werror
668renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700669# -m32 or -m64
670renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700671
Ying Wang6ef65192014-01-15 16:02:16 -0800672renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700673 $(TOPDIR)external/clang/lib/Headers \
674 $(TOPDIR)frameworks/rs/scriptc \
675 $(LOCAL_RENDERSCRIPT_INCLUDES)
676
677ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800678renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700679endif
680
Ying Wangb9319562015-04-03 16:15:28 -0700681bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
682 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
683
Ying Wang6ef65192014-01-15 16:02:16 -0800684$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700685$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
686$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
687$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
688$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Noah Presler4796a8c2015-08-13 17:04:10 -0700689$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
Ying Wangb9319562015-04-03 16:15:28 -0700690$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700691$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
692 $(transform-renderscripts-to-cpp-and-bc)
693
Ying Wangb9319562015-04-03 16:15:28 -0700694# include the dependency files (.d/.P) generated by llvm-rs-cc.
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900695$(call include-depfile,$(RenderScript_file_stamp).P,$(RenderScript_file_stamp))
Tim Murraya7aa8002012-10-29 16:06:00 -0700696
697LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
698
699rs_generated_cpps := $(addprefix \
700 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
701 $(notdir $(renderscript_sources)))))
702
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800703$(call track-src-file-gen,$(renderscript_sources),$(rs_generated_cpps))
704
Stephen Hines8ff92522014-06-06 12:51:47 -0700705# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700706$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700707 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800708 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700709
Ying Wang6ef65192014-01-15 16:02:16 -0800710my_c_includes += $(renderscript_intermediate)
711my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700712
713endif
714
715
The Android Open Source Project88b60792009-03-03 19:28:42 -0800716###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700717## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700718###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800719proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700720ifneq ($(proto_sources),)
Ying Wang05f9f352016-05-05 20:02:08 -0700721proto_gen_dir := $(generated_sources_dir)/proto
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900722proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangfaeb6932015-04-07 11:59:34 -0700723
Ying Wang05f9f352016-05-05 20:02:08 -0700724my_rename_cpp_ext :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700725ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
726my_proto_source_suffix := .c
727my_proto_c_includes := external/nanopb-c
Ying Wang05f9f352016-05-05 20:02:08 -0700728my_protoc_flags := --nanopb_out=$(proto_gen_dir) \
Ying Wangfaeb6932015-04-07 11:59:34 -0700729 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900730my_protoc_deps := $(NANOPB_SRCS) $(proto_sources_fullpath:%.proto=%.options)
Ying Wangfaeb6932015-04-07 11:59:34 -0700731else
Ying Wang05f9f352016-05-05 20:02:08 -0700732my_proto_source_suffix := $(LOCAL_CPP_EXTENSION)
733ifneq ($(my_proto_source_suffix),.cc)
734# aprotoc is hardcoded to write out only .cc file.
735# We need to rename the extension to $(LOCAL_CPP_EXTENSION) if it's not .cc.
736my_rename_cpp_ext := true
737endif
Ying Wangfaeb6932015-04-07 11:59:34 -0700738my_proto_c_includes := external/protobuf/src
739my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wang05f9f352016-05-05 20:02:08 -0700740my_protoc_flags := --cpp_out=$(proto_gen_dir)
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900741my_protoc_deps :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700742endif
Ying Wang05f9f352016-05-05 20:02:08 -0700743my_proto_c_includes += $(proto_gen_dir)
Ying Wangfaeb6932015-04-07 11:59:34 -0700744
Ying Wang05f9f352016-05-05 20:02:08 -0700745proto_generated_cpps := $(addprefix $(proto_gen_dir)/, \
Ying Wangfaeb6932015-04-07 11:59:34 -0700746 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700747
Ying Wangead89442014-02-25 11:18:40 -0800748# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
Ying Wang05f9f352016-05-05 20:02:08 -0700749ifndef $(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
750$(proto_generated_cpps): PRIVATE_PROTO_INCLUDES := $(TOP)
751$(proto_generated_cpps): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
752$(proto_generated_cpps): PRIVATE_RENAME_CPP_EXT := $(my_rename_cpp_ext)
753$(proto_generated_cpps): $(proto_gen_dir)/%.pb$(my_proto_source_suffix): %.proto $(my_protoc_deps) $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700754 $(transform-proto-to-cc)
755
Ying Wang05f9f352016-05-05 20:02:08 -0700756$(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
Ying Wangfaeb6932015-04-07 11:59:34 -0700757endif
Ying Wang05f9f352016-05-05 20:02:08 -0700758# Ideally we can generate the source directly into $(intermediates).
759# But many Android.mks assume the .pb.hs are in $(generated_sources_dir).
760# As a workaround, we make a copy in the $(intermediates).
761proto_intermediate_dir := $(intermediates)/proto
762proto_intermediate_cpps := $(patsubst $(proto_gen_dir)/%,$(proto_intermediate_dir)/%,\
763 $(proto_generated_cpps))
764$(proto_intermediate_cpps) : $(proto_intermediate_dir)/% : $(proto_gen_dir)/%
765 @echo "Copy: $@"
766 $(copy-file-to-target)
767 $(hide) cp $(basename $<).h $(basename $@).h
768$(call track-src-file-gen,$(proto_sources),$(proto_intermediate_cpps))
769
770my_generated_sources += $(proto_intermediate_cpps)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700771
Ying Wangfaeb6932015-04-07 11:59:34 -0700772my_c_includes += $(my_proto_c_includes)
773# Auto-export the generated proto source dir.
774my_export_c_include_dirs += $(my_proto_c_includes)
775
776ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700777 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700778else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700779 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700780else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800781 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700782 my_static_libraries += libprotobuf-cpp-full-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800783 else
784 my_shared_libraries += libprotobuf-cpp-full
785 endif
Yabin Cui72a11562016-06-07 19:21:12 -0700786else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),lite-static)
787 my_static_libraries += libprotobuf-cpp-lite
Ying Wanga5fc87a2010-11-02 18:43:16 -0700788else
Dan Albertc3031c72014-11-11 10:42:17 -0800789 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700790 my_static_libraries += libprotobuf-cpp-lite-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800791 else
792 my_shared_libraries += libprotobuf-cpp-lite
793 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700794endif
Ying Wangead89442014-02-25 11:18:40 -0800795endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700796
Ying Wanga5fc87a2010-11-02 18:43:16 -0700797###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700798## Compile the .dbus-xml files to c++ headers
Christopher Wileybc2be462015-07-29 17:14:24 -0700799###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700800dbus_definitions := $(filter %.dbus-xml,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700801dbus_generated_headers :=
802ifneq ($(dbus_definitions),)
Christopher Wileybc2be462015-07-29 17:14:24 -0700803
Christopher Wiley529f1762015-08-14 14:55:32 -0700804dbus_definition_paths := $(addprefix $(LOCAL_PATH)/,$(dbus_definitions))
Christopher Wileybc2be462015-07-29 17:14:24 -0700805dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700806dbus_service_config_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config))
Christopher Wileybc2be462015-07-29 17:14:24 -0700807
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800808# Mark these source files as not producing objects
809$(call track-src-file-obj,$(dbus_definitions) $(dbus_service_config),)
810
Christopher Wiley529f1762015-08-14 14:55:32 -0700811dbus_gen_dir := $(generated_sources_dir)/dbus_bindings
Christopher Wileybc2be462015-07-29 17:14:24 -0700812
Christopher Wiley529f1762015-08-14 14:55:32 -0700813ifdef LOCAL_DBUS_PROXY_PREFIX
814dbus_header_dir := $(dbus_gen_dir)/include/$(LOCAL_DBUS_PROXY_PREFIX)
815dbus_headers := dbus-proxies.h
816else
817dbus_header_dir := $(dbus_gen_dir)
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700818dbus_headers := $(patsubst %.dbus-xml,%.h,$(dbus_definitions))
Christopher Wiley529f1762015-08-14 14:55:32 -0700819endif
820dbus_generated_headers := $(addprefix $(dbus_header_dir)/,$(dbus_headers))
Christopher Wileybc2be462015-07-29 17:14:24 -0700821
822# Ensure that we only define build rules once in multilib builds.
823ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
824$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true
Christopher Wiley529f1762015-08-14 14:55:32 -0700825
826$(dbus_generated_headers): PRIVATE_MODULE := $(LOCAL_MODULE)
827$(dbus_generated_headers): PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_path)
828$(dbus_generated_headers) : $(dbus_service_config_path) $(DBUS_GENERATOR)
829ifdef LOCAL_DBUS_PROXY_PREFIX
830$(dbus_generated_headers) : $(dbus_definition_paths)
831 $(generate-dbus-proxies)
Peter Qiu425e0192015-10-14 16:46:41 -0700832else
833$(dbus_generated_headers) : $(dbus_header_dir)/%.h : $(LOCAL_PATH)/%.dbus-xml
834 $(generate-dbus-adaptors)
835endif # $(LOCAL_DBUS_PROXY_PREFIX)
836endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
Christopher Wiley529f1762015-08-14 14:55:32 -0700837
Peter Qiu425e0192015-10-14 16:46:41 -0700838ifdef LOCAL_DBUS_PROXY_PREFIX
Christopher Wiley529f1762015-08-14 14:55:32 -0700839# Auto-export the generated dbus proxy directory.
840my_export_c_include_dirs += $(dbus_gen_dir)/include
841my_c_includes += $(dbus_gen_dir)/include
842else
Christopher Wiley529f1762015-08-14 14:55:32 -0700843my_export_c_include_dirs += $(dbus_header_dir)
844my_c_includes += $(dbus_header_dir)
845endif # $(LOCAL_DBUS_PROXY_PREFIX)
Christopher Wileybc2be462015-07-29 17:14:24 -0700846
Christopher Wiley529f1762015-08-14 14:55:32 -0700847my_generated_sources += $(dbus_generated_headers)
848
849endif # $(dbus_definitions) non-empty
Christopher Wileybc2be462015-07-29 17:14:24 -0700850
851
852###########################################################
Christopher Wiley2df75d12015-10-14 17:27:24 -0700853## AIDL: Compile .aidl files to .cpp and .h files
854###########################################################
855aidl_src := $(strip $(filter %.aidl,$(my_src_files)))
856aidl_gen_cpp :=
857ifneq ($(aidl_src),)
858
Christopher Wiley257796c2016-01-19 08:58:35 -0800859# Use the intermediates directory to avoid writing our own .cpp -> .o rules.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700860aidl_gen_cpp_root := $(intermediates)/aidl-generated/src
861aidl_gen_include_root := $(intermediates)/aidl-generated/include
862
Christopher Wiley257796c2016-01-19 08:58:35 -0800863# Multi-architecture builds have distinct intermediates directories.
864# Thus we'll actually generate source for each architecture.
865$(foreach s,$(aidl_src),\
866 $(eval $(call define-aidl-cpp-rule,$(s),$(aidl_gen_cpp_root),aidl_gen_cpp)))
Christopher Wiley087f3272016-01-19 09:26:10 -0800867$(foreach cpp,$(aidl_gen_cpp), \
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900868 $(call include-depfile,$(addsuffix .aidl.P,$(basename $(cpp))),$(cpp)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800869$(call track-src-file-gen,$(aidl_src),$(aidl_gen_cpp))
Christopher Wiley2df75d12015-10-14 17:27:24 -0700870
Christopher Wiley2df75d12015-10-14 17:27:24 -0700871$(aidl_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
872$(aidl_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(aidl_gen_include_root)
873$(aidl_gen_cpp) : PRIVATE_AIDL_FLAGS := $(addprefix -I,$(LOCAL_AIDL_INCLUDES))
874
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800875# Add generated headers to include paths.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700876my_c_includes += $(aidl_gen_include_root)
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800877my_export_c_include_dirs += $(aidl_gen_include_root)
Christopher Wiley2df75d12015-10-14 17:27:24 -0700878# Pick up the generated C++ files later for transformation to .o files.
879my_generated_sources += $(aidl_gen_cpp)
880
881endif # $(aidl_src) non-empty
882
883###########################################################
Ying Wang64088f22016-01-11 16:28:45 -0800884## YACC: Compile .y/.yy files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800885###########################################################
886
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000887y_yacc_sources := $(filter %.y,$(my_src_files))
Ying Wang64088f22016-01-11 16:28:45 -0800888y_yacc_cs := $(addprefix \
889 $(intermediates)/,$(y_yacc_sources:.y=.c))
890ifneq ($(y_yacc_cs),)
891$(y_yacc_cs): $(intermediates)/%.c: \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900892 $(TOPDIR)$(LOCAL_PATH)/%.y $(BISON) $(BISON_DATA) \
Ying Wang64088f22016-01-11 16:28:45 -0800893 $(my_additional_dependencies)
894 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800895$(call track-src-file-gen,$(y_yacc_sources),$(y_yacc_cs))
Ying Wang64088f22016-01-11 16:28:45 -0800896
897my_generated_sources += $(y_yacc_cs)
898endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000899
900yy_yacc_sources := $(filter %.yy,$(my_src_files))
901yy_yacc_cpps := $(addprefix \
902 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
Ying Wang64088f22016-01-11 16:28:45 -0800903ifneq ($(yy_yacc_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000904$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900905 $(TOPDIR)$(LOCAL_PATH)/%.yy $(BISON) $(BISON_DATA) \
Ying Wang64088f22016-01-11 16:28:45 -0800906 $(my_additional_dependencies)
907 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800908$(call track-src-file-gen,$(yy_yacc_sources),$(yy_yacc_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000909
Ying Wang64088f22016-01-11 16:28:45 -0800910my_generated_sources += $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800911endif
912
913###########################################################
Ying Wang64088f22016-01-11 16:28:45 -0800914## LEX: Compile .l/.ll files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800915###########################################################
916
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000917l_lex_sources := $(filter %.l,$(my_src_files))
Ying Wang64088f22016-01-11 16:28:45 -0800918l_lex_cs := $(addprefix \
919 $(intermediates)/,$(l_lex_sources:.l=.c))
920ifneq ($(l_lex_cs),)
921$(l_lex_cs): $(intermediates)/%.c: \
922 $(TOPDIR)$(LOCAL_PATH)/%.l
923 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800924$(call track-src-file-gen,$(l_lex_sources),$(l_lex_cs))
Ying Wang64088f22016-01-11 16:28:45 -0800925
926my_generated_sources += $(l_lex_cs)
927endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000928
929ll_lex_sources := $(filter %.ll,$(my_src_files))
930ll_lex_cpps := $(addprefix \
931 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
Ying Wang64088f22016-01-11 16:28:45 -0800932ifneq ($(ll_lex_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000933$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
934 $(TOPDIR)$(LOCAL_PATH)/%.ll
Ying Wang64088f22016-01-11 16:28:45 -0800935 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800936$(call track-src-file-gen,$(ll_lex_sources),$(ll_lex_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000937
Ying Wang64088f22016-01-11 16:28:45 -0800938my_generated_sources += $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800939endif
940
941###########################################################
942## C++: Compile .cpp files to .o.
943###########################################################
944
Jeff Browne33ba4c2011-07-11 22:11:46 -0700945# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -0800946# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -0700947cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
948dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
949cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
950cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800951$(call track-src-file-obj,$(patsubst %,%.arm,$(cpp_arm_sources)),$(cpp_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800952
Ying Wangfb22a422015-03-10 18:03:11 -0700953# For source files starting with ../, we remove all the ../ in the object file path,
954# to avoid object file escaping the intermediate directory.
955dotdot_arm_objects :=
956$(foreach s,$(dotdot_arm_sources),\
957 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -0700958 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -0700959 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800960$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -0700961
962dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
963dotdot_objects :=
964$(foreach s,$(dotdot_sources),\
965 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -0700966 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -0700967 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800968$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -0700969
970cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800971cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800972$(call track-src-file-obj,$(cpp_normal_sources),$(cpp_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800973
Ying Wangfb22a422015-03-10 18:03:11 -0700974$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
975$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
976$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
977$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800978
979cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
980
981ifneq ($(strip $(cpp_objects)),)
982$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700983 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -0800984 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800985 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +0900986$(call include-depfiles-for-objs, $(cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800987endif
988
Ying Wangfb22a422015-03-10 18:03:11 -0700989cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
990
The Android Open Source Project88b60792009-03-03 19:28:42 -0800991###########################################################
992## C++: Compile generated .cpp files to .o.
993###########################################################
994
Ying Wangec6d6262014-01-16 16:21:03 -0800995gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800996gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800997$(call track-gen-file-obj,$(gen_cpp_sources),$(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998
999ifneq ($(strip $(gen_cpp_objects)),)
1000# Compile all generated files as thumb.
1001# TODO: support compiling certain generated files as arm.
1002$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1003$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001004$(gen_cpp_objects): $(intermediates)/%.o: \
Ying Wang05f9f352016-05-05 20:02:08 -07001005 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -08001006 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001007 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001008$(call include-depfiles-for-objs, $(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001009endif
1010
1011###########################################################
1012## S: Compile generated .S and .s files to .o.
1013###########################################################
1014
Ying Wangec6d6262014-01-16 16:21:03 -08001015gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001016gen_S_objects := $(gen_S_sources:%.S=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001017$(call track-gen-file-obj,$(gen_S_sources),$(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001018
1019ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001020$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001021 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001022 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001023$(call include-depfiles-for-objs, $(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001024endif
1025
Ying Wangec6d6262014-01-16 16:21:03 -08001026gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001027gen_s_objects := $(gen_s_sources:%.s=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001028$(call track-gen-file-obj,$(gen_s_sources),$(gen_s_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001029
1030ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001031$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001032 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001033 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001034endif
1035
1036gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001037$(gen_asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001038
1039###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001040## o: Include generated .o files in output.
1041###########################################################
1042
Ying Wangec6d6262014-01-16 16:21:03 -08001043gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001044
1045###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001046## C: Compile .c files to .o.
1047###########################################################
1048
Ying Wangfb22a422015-03-10 18:03:11 -07001049c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
1050dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
1051c_arm_sources := $(filter-out ../%,$(c_arm_sources))
1052c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001053$(call track-src-file-obj,$(patsubst %,%.arm,$(c_arm_sources)),$(c_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001054
Ying Wangfb22a422015-03-10 18:03:11 -07001055# For source files starting with ../, we remove all the ../ in the object file path,
1056# to avoid object file escaping the intermediate directory.
1057dotdot_arm_objects :=
1058$(foreach s,$(dotdot_arm_sources),\
1059 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001060 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001061 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001062$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001063
1064dotdot_sources := $(filter ../%.c, $(my_src_files))
1065dotdot_objects :=
1066$(foreach s, $(dotdot_sources),\
1067 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001068 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001069 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001070$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001071
1072c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001073c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001074$(call track-src-file-obj,$(c_normal_sources),$(c_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001075
Ying Wangfb22a422015-03-10 18:03:11 -07001076$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
1077$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
1078$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1079$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001080
1081c_objects := $(c_arm_objects) $(c_normal_objects)
1082
1083ifneq ($(strip $(c_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001084$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001085 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001086 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001087$(call include-depfiles-for-objs, $(c_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088endif
1089
Ying Wangfb22a422015-03-10 18:03:11 -07001090c_objects += $(dotdot_arm_objects) $(dotdot_objects)
1091
The Android Open Source Project88b60792009-03-03 19:28:42 -08001092###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001093## C: Compile generated .c files to .o.
1094###########################################################
1095
Ying Wangec6d6262014-01-16 16:21:03 -08001096gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001097gen_c_objects := $(gen_c_sources:%.c=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001098$(call track-gen-file-obj,$(gen_c_sources),$(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001099
1100ifneq ($(strip $(gen_c_objects)),)
1101# Compile all generated files as thumb.
1102# TODO: support compiling certain generated files as arm.
1103$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1104$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wang05f9f352016-05-05 20:02:08 -07001105$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001106 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001107 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001108$(call include-depfiles-for-objs, $(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001109endif
1110
1111###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001112## ObjC: Compile .m files to .o
1113###########################################################
1114
Ying Wangb8e01852014-01-23 15:09:04 -08001115objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001116objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001117$(call track-src-file-obj,$(objc_sources),$(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001118
1119ifneq ($(strip $(objc_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001120$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m \
Dan Albert954b5bd2014-11-08 22:20:03 -08001121 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001122 $(transform-$(PRIVATE_HOST)m-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001123$(call include-depfiles-for-objs, $(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001124endif
1125
1126###########################################################
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001127## ObjC++: Compile .mm files to .o
1128###########################################################
1129
1130objcpp_sources := $(filter %.mm,$(my_src_files))
1131objcpp_objects := $(addprefix $(intermediates)/,$(objcpp_sources:.mm=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001132$(call track-src-file-obj,$(objcpp_sources),$(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001133
1134ifneq ($(strip $(objcpp_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001135$(objcpp_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.mm \
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001136 $(my_additional_dependencies)
1137 $(transform-$(PRIVATE_HOST)mm-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001138$(call include-depfiles-for-objs, $(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001139endif
1140
1141###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001142## AS: Compile .S files to .o.
1143###########################################################
1144
Ying Wangb8e01852014-01-23 15:09:04 -08001145asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001146dotdot_sources := $(filter ../%,$(asm_sources_S))
1147asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001148asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001149$(call track-src-file-obj,$(asm_sources_S),$(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001150
Ying Wangfb22a422015-03-10 18:03:11 -07001151dotdot_objects_S :=
1152$(foreach s,$(dotdot_sources),\
1153 $(eval $(call compile-dotdot-s-file,$(s),\
1154 $(my_additional_dependencies),\
1155 dotdot_objects_S)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001156$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_S))
Ying Wangfb22a422015-03-10 18:03:11 -07001157
The Android Open Source Project88b60792009-03-03 19:28:42 -08001158ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001159$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001160 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001161 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji72904772016-03-16 06:40:04 +09001162$(call include-depfiles-for-objs, $(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001163endif
1164
Ying Wangb8e01852014-01-23 15:09:04 -08001165asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001166dotdot_sources := $(filter ../%,$(asm_sources_s))
1167asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001168asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001169$(call track-src-file-obj,$(asm_sources_s),$(asm_objects_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001170
Ying Wangfb22a422015-03-10 18:03:11 -07001171dotdot_objects_s :=
1172$(foreach s,$(dotdot_sources),\
1173 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
1174 $(my_additional_dependencies),\
1175 dotdot_objects_s)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001176$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_s))
Ying Wangfb22a422015-03-10 18:03:11 -07001177
The Android Open Source Project88b60792009-03-03 19:28:42 -08001178ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001179$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001180 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001181 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001182endif
1183
Ying Wangfb22a422015-03-10 18:03:11 -07001184asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001185$(asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001186
1187
Ying Wangfe1e5c32015-03-09 18:57:40 -07001188# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -07001189asm_sources_asm := $(filter %.asm,$(my_src_files))
1190ifneq ($(strip $(asm_sources_asm)),)
1191asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
1192$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -08001193 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -07001194 $(transform-asm-to-o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001195$(call track-src-file-obj,$(asm_sources_asm),$(asm_objects_asm))
Ying Wang7b913ce2014-06-05 19:05:47 -07001196
1197asm_objects += $(asm_objects_asm)
1198endif
Ying Wang7b913ce2014-06-05 19:05:47 -07001199
Jeff Davidson680f0712015-01-08 18:25:30 -08001200
Dan Willemsen6731b492016-06-07 16:55:57 -07001201####################################################
1202## For NDK-built libraries, move LOCAL_SHARED_LIBRARY
1203## references to my_ldlibs, so that we use the NDK
1204## prebuilt library and headers for linking.
1205####################################################
1206ifndef LOCAL_IS_HOST_MODULE
1207my_allowed_ldlibs :=
1208ifdef LOCAL_SDK_VERSION
1209 my_ndk_shared_libraries := $(filter $(addprefix lib,$(NDK_PREBUILT_SHARED_LIBRARIES)),$(my_shared_libraries))
1210 my_shared_libraries := $(filter-out $(my_ndk_shared_libraries),$(my_shared_libraries))
1211 my_ldlibs += $(patsubst lib%,-l%,$(my_ndk_shared_libraries))
1212 my_ndk_shared_libraries :=
1213 my_allowed_ldlibs := $(addprefix -l,$(NDK_PREBUILT_SHARED_LIBRARIES))
1214endif
1215
1216# Sort ldlibs and ldflags between -l and other linker flags
1217# We'll do this again later, since there are still changes happening, but that's fine.
1218my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
1219my_ldlibs := $(filter -l%,$(my_ldlib_flags))
1220my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
1221my_ldlib_flags :=
1222
1223# Move other ldlibs back to shared libraries
1224my_shared_libraries += $(patsubst -l%,lib%,$(filter-out $(my_allowed_ldlibs),$(my_ldlibs)))
1225my_ldlibs := $(filter $(my_allowed_ldlibs),$(my_ldlibs))
1226endif
1227
1228
Jeff Davidson680f0712015-01-08 18:25:30 -08001229##########################################################
1230## Set up installed module dependency
1231## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
1232## they may cusomize their install path with LOCAL_MODULE_PATH
1233##########################################################
1234# Get the list of INSTALLED libraries as module names.
1235ifdef LOCAL_SDK_VERSION
1236 installed_shared_library_module_names := \
1237 $(my_shared_libraries)
1238else
1239 installed_shared_library_module_names := \
1240 $(my_shared_libraries) $(my_system_shared_libraries)
1241endif
1242
1243# The real dependency will be added after all Android.mks are loaded and the install paths
1244# of the shared libraries are determined.
1245ifdef LOCAL_INSTALLED_MODULE
1246ifdef installed_shared_library_module_names
1247$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
1248 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
1249endif
1250endif
1251
1252
Ying Wang5f074802011-11-08 09:31:21 -08001253####################################################
1254## Import includes
1255####################################################
1256import_includes := $(intermediates)/import_includes
1257import_includes_deps := $(strip \
1258 $(foreach l, $(installed_shared_library_module_names), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001259 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes) \
Colin Cross90353fe2014-02-04 14:53:25 -08001260 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001261 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Ying Wang14d02a32015-01-22 15:44:04 -08001262$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
Dan Willemsen1c6dc5b2016-01-06 14:28:36 -08001263$(import_includes) : $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001264 @echo Import includes file: $@
1265 $(hide) mkdir -p $(dir $@) && rm -f $@
1266ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -08001267 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -08001268 cat $$f >> $@; \
1269 done
1270else
1271 $(hide) touch $@
1272endif
1273
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001274####################################################
1275## Verify that NDK-built libraries only link against
1276## other NDK-built libraries
1277####################################################
1278
1279my_link_type := $(intermediates)/link_type
1280ifdef LOCAL_SDK_VERSION
1281$(my_link_type): PRIVATE_LINK_TYPE := ndk
1282$(my_link_type): PRIVATE_ALLOWED_TYPES := ndk
1283else
1284$(my_link_type): PRIVATE_LINK_TYPE := platform
1285$(my_link_type): PRIVATE_ALLOWED_TYPES := (ndk|platform)
1286endif
1287my_link_type_deps := $(strip \
1288 $(foreach l,$(my_whole_static_libraries) $(my_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001289 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/link_type))
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001290ifneq ($(LOCAL_MODULE_CLASS),STATIC_LIBRARIES)
1291my_link_type_deps += $(strip \
1292 $(foreach l,$(my_shared_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001293 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/link_type))
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001294endif
1295$(my_link_type): PRIVATE_DEPS := $(my_link_type_deps)
1296$(my_link_type): PRIVATE_MODULE := $(LOCAL_MODULE)
1297$(my_link_type): PRIVATE_MAKEFILE := $(LOCAL_MODULE_MAKEFILE)
1298$(my_link_type): $(my_link_type_deps)
1299 @echo Check module type: $@
1300 $(hide) mkdir -p $(dir $@) && rm -f $@
1301ifdef my_link_type_deps
1302 $(hide) for f in $(PRIVATE_DEPS); do \
1303 grep -qE '^$(PRIVATE_ALLOWED_TYPES)$$' $$f || \
Dan Willemsenac1fe5c2016-07-12 13:10:31 -07001304 ($(call echo-error,"$(PRIVATE_MAKEFILE): $(PRIVATE_MODULE) ($(PRIVATE_LINK_TYPE)) should not link to $$(basename $${f%_intermediates/link_type}) ($$(cat $$f))"); exit 1) \
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001305 done
1306endif
1307 $(hide) echo $(PRIVATE_LINK_TYPE) >$@
1308
1309
The Android Open Source Project88b60792009-03-03 19:28:42 -08001310###########################################################
1311## Common object handling.
1312###########################################################
1313
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001314my_unused_src_files := $(filter-out $(logtags_sources) $(my_tracked_src_files),$(my_src_files) $(my_gen_src_files))
1315ifneq ($(my_unused_src_files),)
Dan Willemsen9efeb1e2016-06-28 10:22:08 -07001316 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Unused source files: $(my_unused_src_files))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001317endif
1318
The Android Open Source Project88b60792009-03-03 19:28:42 -08001319# some rules depend on asm_objects being first. If your code depends on
1320# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001321normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001322 $(asm_objects) \
1323 $(cpp_objects) \
1324 $(gen_cpp_objects) \
1325 $(gen_asm_objects) \
1326 $(c_objects) \
1327 $(gen_c_objects) \
1328 $(objc_objects) \
Ying Wang05f9f352016-05-05 20:02:08 -07001329 $(objcpp_objects)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001330
1331new_order_normal_objects := $(foreach f,$(my_src_files),$(my_src_file_obj_$(f)))
1332new_order_normal_objects += $(foreach f,$(my_gen_src_files),$(my_src_file_obj_$(f)))
1333
1334ifneq ($(sort $(normal_objects)),$(sort $(new_order_normal_objects)))
1335$(warning $(LOCAL_MODULE_MAKEFILE) Internal build system warning: New object list does not match old)
1336$(info Only in old: $(filter-out $(new_order_normal_objects),$(sort $(normal_objects))))
1337$(info Only in new: $(filter-out $(normal_objects),$(sort $(new_order_normal_objects))))
1338endif
1339
1340ifeq ($(BINARY_OBJECTS_ORDER),soong)
1341normal_objects := $(new_order_normal_objects)
1342endif
1343
1344normal_objects += $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001345
1346all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001347
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001348# Cleanup file tracking
1349$(foreach f,$(my_tracked_gen_files),$(eval my_src_file_gen_$(s):=))
1350my_tracked_gen_files :=
1351$(foreach f,$(my_tracked_src_files),$(eval my_src_file_obj_$(s):=))
1352my_tracked_src_files :=
1353
Colin Cross2d206702014-02-13 13:41:52 -08001354my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001355
Ying Wang848020f2012-08-14 10:13:16 -07001356ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -08001357 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -07001358endif
1359
Dan Willemsen062e30b2016-05-24 13:06:07 -07001360my_outside_includes := $(filter-out $(OUT_DIR)/%,$(filter /%,$(my_c_includes)))
1361ifneq ($(my_outside_includes),)
1362$(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): C_INCLUDES must be under the source or output directories: $(my_outside_includes))
1363endif
1364
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001365# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
1366# use normal_objects here to avoid creating circular dependencies. This assumes
1367# that custom build rules which generate .o files don't consume other generated
1368# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -08001369$(normal_objects) : | $(my_generated_sources)
Colin Cross6b9bddd2015-11-30 17:33:26 -08001370$(all_objects) : $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001371ALL_C_CPP_ETC_OBJECTS += $(all_objects)
1372
The Android Open Source Project88b60792009-03-03 19:28:42 -08001373
1374###########################################################
1375# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001376###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001377
1378###########################################################
1379# The list of libraries that this module will link against are in
1380# these variables. Each is a list of bare module names like "libc libm".
1381#
1382# LOCAL_SHARED_LIBRARIES
1383# LOCAL_STATIC_LIBRARIES
1384# LOCAL_WHOLE_STATIC_LIBRARIES
1385#
1386# We need to convert the bare names into the dependencies that
1387# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1388# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1389# libraries, so that simply building this module doesn't force
1390# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1391# should depend on the INSTALLED versions of the libraries so
1392# that they get installed when this module does.
1393###########################################################
1394# NOTE:
1395# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1396# module without leaving anything out, which is useful for turning
1397# a collection of .a files into a .so file. Linking against a
1398# normal STATIC_LIBRARY will only pull in code/symbols that are
1399# referenced by the module. (see gcc/ld's --whole-archive option)
1400###########################################################
1401
1402# Get the list of BUILT libraries, which are under
1403# various intermediates directories.
1404so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1405a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1406
Ying Wang848020f2012-08-14 10:13:16 -07001407ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001408built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001409 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001410 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001411 $(my_shared_libraries)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001412built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001413
Ying Wangd8d37212014-03-21 16:17:04 -07001414# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001415my_system_shared_libraries_fullpath := \
1416 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001417 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001418 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001419
Dan Albert02bf1382016-07-21 10:04:12 -07001420my_built_ndk_shared_libraries_fullpath := \
1421 $(addprefix $(my_built_ndk_libs)/,\
1422 $(addsuffix $(so_suffix),$(my_generated_ndk_shared_libraries)))
1423
1424built_shared_libraries += \
1425 $(my_built_ndk_shared_libraries_fullpath) \
1426 $(my_system_shared_libraries_fullpath) \
1427
Ying Wang1a081002010-07-13 14:55:47 -07001428else
Ying Wang1a081002010-07-13 14:55:47 -07001429built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001430 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001431 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001432 $(installed_shared_library_module_names)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001433ifdef LOCAL_IS_HOST_MODULE
1434# Disable .toc optimization for host modules: we may run the host binaries during the build process
1435# and the libraries' implementation matters.
1436built_shared_library_deps := $(built_shared_libraries)
1437else
1438built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
1439endif
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001440my_system_shared_libraries_fullpath :=
Ying Wang1a081002010-07-13 14:55:47 -07001441endif
1442
The Android Open Source Project88b60792009-03-03 19:28:42 -08001443built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001444 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001445 $(call intermediates-dir-for, \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001446 STATIC_LIBRARIES,$(lib),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001447
Ying Wang848020f2012-08-14 10:13:16 -07001448ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001449built_static_libraries += $(my_ndk_stl_static_lib)
1450endif
1451
The Android Open Source Project88b60792009-03-03 19:28:42 -08001452built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001453 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001454 $(call intermediates-dir-for, \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001455 STATIC_LIBRARIES,$(lib),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/$(lib)$(a_suffix))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001456
The Android Open Source Project88b60792009-03-03 19:28:42 -08001457# We don't care about installed static libraries, since the
1458# libraries have already been linked into the module at that point.
1459# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001460# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001461
1462installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001463 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001464 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1465
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001466# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001467ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1468LOCAL_RTTI_FLAG := -fno-rtti
1469endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001470
The Android Open Source Project88b60792009-03-03 19:28:42 -08001471###########################################################
1472# Rule-specific variable definitions
1473###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001474
Ying Wang824344a2014-05-27 13:03:36 -07001475ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001476my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001477my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001478my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001479my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1480my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001481my_asflags += $(LOCAL_CLANG_ASFLAGS)
1482my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001483my_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 -08001484my_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 -07001485my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1486my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1487my_asflags += $(LOCAL_CLANG_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_ASFLAGS_$(my_32_64_bit_suffix))
Dan Willemsen02268f02016-05-19 14:39:25 -07001488my_cflags := $(call convert-to-clang-flags,$(my_cflags))
1489my_cppflags := $(call convert-to-clang-flags,$(my_cppflags))
1490my_asflags := $(call convert-to-clang-flags,$(my_asflags))
1491my_ldflags := $(call convert-to-clang-flags,$(my_ldflags))
Dan Austin75e7af12016-04-06 11:18:30 -07001492else
1493# gcc does not handle hidden functions in a manner compatible with LLVM libcxx
1494# see b/27908145
1495my_cflags += -Wno-attributes
Logan Chiene6f65432013-12-10 19:07:41 +08001496endif
1497
Ying Wang45d01432014-10-28 14:50:59 -07001498ifeq ($(my_fdo_build), true)
1499 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1500 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1501 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001502endif
1503
Dan Albertdf3fd1d2015-08-12 14:54:16 -07001504# No one should ever use this flag. On GCC it's mere presence will disable all
1505# warnings, even those that are specified after it (contrary to typical warning
1506# flag behavior). This circumvents CFLAGS_NO_OVERRIDE from forcibly enabling the
1507# warnings that are *always* bugs.
1508my_illegal_flags := -w
1509my_cflags := $(filter-out $(my_illegal_flags),$(my_cflags))
1510my_cppflags := $(filter-out $(my_illegal_flags),$(my_cppflags))
1511my_conlyflags := $(filter-out $(my_illegal_flags),$(my_conlyflags))
1512
Dan Albert5ae31dd2016-01-29 16:51:51 -08001513# We can enforce some rules more strictly in the code we own. my_strict
1514# indicates if this is code that we can be stricter with. If we have rules that
1515# we want to apply to *our* code (but maybe can't for vendor/device specific
1516# things), we could extend this to be a ternary value.
1517my_strict := true
1518ifneq ($(filter external/%,$(LOCAL_PATH)),)
1519 my_strict := false
1520endif
1521
1522# Can be used to make some annotations stricter for code we can fix (such as
1523# when we mark functions as deprecated).
1524ifeq ($(my_strict),true)
1525 my_cflags += -DANDROID_STRICT
1526endif
1527
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001528# Disable clang-tidy if it is not found.
1529ifeq ($(PATH_TO_CLANG_TIDY),)
1530 my_tidy_enabled := false
1531else
1532 # If LOCAL_TIDY is not defined, use global WITH_TIDY
1533 my_tidy_enabled := $(LOCAL_TIDY)
1534 ifeq ($(my_tidy_enabled),)
1535 my_tidy_enabled := $(WITH_TIDY)
1536 endif
1537endif
1538
1539# my_tidy_checks is empty if clang-tidy is disabled.
1540my_tidy_checks :=
1541my_tidy_flags :=
1542ifneq (,$(filter 1 true,$(my_tidy_enabled)))
1543 ifneq ($(my_clang),true)
1544 # Disable clang-tidy if clang is disabled.
1545 my_tidy_enabled := false
1546 else
1547 tidy_only: $(cpp_objects) $(c_objects)
1548 # Set up global default checks
1549 my_tidy_checks := $(WITH_TIDY_CHECKS)
1550 ifeq ($(my_tidy_checks),)
Chih-Hung Hsieh460171a2016-04-21 15:37:24 -07001551 my_tidy_checks := $(call default_global_tidy_checks,$(LOCAL_PATH))
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001552 endif
1553 # Append local clang-tidy checks.
1554 ifneq ($(LOCAL_TIDY_CHECKS),)
1555 my_tidy_checks := $(my_tidy_checks),$(LOCAL_TIDY_CHECKS)
1556 endif
1557 # Set up global default clang-tidy flags, which is none.
1558 my_tidy_flags := $(WITH_TIDY_FLAGS)
1559 # Use local clang-tidy flags if specified.
1560 ifneq ($(LOCAL_TIDY_FLAGS),)
1561 my_tidy_flags := $(LOCAL_TIDY_FLAGS)
1562 endif
Chih-Hung Hsieh870f0872016-06-02 15:20:05 -07001563 # If tidy flags are not specified, default to check all header files.
1564 ifeq ($(my_tidy_flags),)
1565 my_tidy_flags := -header-filter=.*
1566 endif
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001567 endif
1568endif
1569
Dan Willemsen6731b492016-06-07 16:55:57 -07001570# Move -l* entries from ldflags to ldlibs, and everything else to ldflags
1571my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
1572my_ldlibs := $(filter -l%,$(my_ldlib_flags))
1573my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
1574
1575# One last verification check for ldlibs
1576ifndef LOCAL_IS_HOST_MODULE
1577my_allowed_ldlibs :=
1578ifdef LOCAL_SDK_VERSION
1579 my_allowed_ldlibs := $(addprefix -l,$(NDK_PREBUILT_SHARED_LIBRARIES))
1580endif
1581
1582my_bad_ldlibs := $(filter-out $(my_allowed_ldlibs),$(my_ldlibs))
1583ifneq ($(my_bad_ldlibs),)
1584 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Bad LOCAL_LDLIBS entries: $(my_bad_ldlibs))
1585endif
1586endif
1587
The Android Open Source Project88b60792009-03-03 19:28:42 -08001588$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001589$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001590$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001591$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1592$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001593$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1594$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001595$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001596$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001597$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001598$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001599$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001600$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001601$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_CHECKS := $(my_tidy_checks)
1602$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_FLAGS := $(my_tidy_flags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001603
1604# this is really the way to get the files onto the command line instead
1605# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1606$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1607$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1608$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
Ying Wang4aaa1a12016-03-22 18:23:13 -07001609$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(strip $(all_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001610
1611###########################################################
1612# Define library dependencies.
1613###########################################################
1614# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1615all_libraries := \
Ying Wangc01f2dc2015-12-15 10:00:19 -08001616 $(built_shared_library_deps) \
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001617 $(my_system_shared_libraries_fullpath) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001618 $(built_static_libraries) \
1619 $(built_whole_libraries)
1620
The Android Open Source Project88b60792009-03-03 19:28:42 -08001621# Also depend on the notice files for any static libraries that
1622# are linked into this module. This will force them to be installed
1623# when this module is.
1624$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001625
1626###########################################################
1627# Export includes
1628###########################################################
1629export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001630$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001631# Headers exported by whole static libraries are also exported by this library.
Dan Willemsena7808ac2016-03-04 12:40:25 -08001632export_include_deps := $(strip \
1633 $(foreach l,$(my_whole_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001634 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001635# Re-export requested headers from shared libraries.
1636export_include_deps += $(strip \
1637 $(foreach l,$(LOCAL_EXPORT_SHARED_LIBRARY_HEADERS), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001638 $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001639# Re-export requested headers from static libraries.
1640export_include_deps += $(strip \
1641 $(foreach l,$(LOCAL_EXPORT_STATIC_LIBRARY_HEADERS), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001642 $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(my_kind),,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))/export_includes))
Dan Willemsena7808ac2016-03-04 12:40:25 -08001643$(export_includes): PRIVATE_REEXPORTED_INCLUDES := $(export_include_deps)
Ying Wang05f9f352016-05-05 20:02:08 -07001644# By adding $(my_generated_sources) it makes sure the headers get generated
1645# before any dependent source files get compiled.
1646$(export_includes) : $(my_generated_sources) $(export_include_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001647 @echo Export includes file: $< -- $@
Dan Willemsena7808ac2016-03-04 12:40:25 -08001648 $(hide) mkdir -p $(dir $@) && rm -f $@.tmp && touch $@.tmp
Ying Wangfaeb6932015-04-07 11:59:34 -07001649ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001650 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
Colin Cross6b9bddd2015-11-30 17:33:26 -08001651 echo "-I $$d" >> $@.tmp; \
Ying Wang5f074802011-11-08 09:31:21 -08001652 done
Dan Willemsena7808ac2016-03-04 12:40:25 -08001653endif
1654ifdef export_include_deps
1655 $(hide) for f in $(PRIVATE_REEXPORTED_INCLUDES); do \
1656 cat $$f >> $@.tmp; \
1657 done
Ying Wang5f074802011-11-08 09:31:21 -08001658endif
Colin Cross6b9bddd2015-11-30 17:33:26 -08001659 $(hide) if cmp -s $@.tmp $@ ; then \
1660 rm $@.tmp ; \
1661 else \
1662 mv $@.tmp $@ ; \
1663 fi
Colin Cross6b9bddd2015-11-30 17:33:26 -08001664
1665# Kati adds restat=1 to ninja. GNU make does nothing for this.
1666.KATI_RESTAT: $(export_includes)
Ying Wang616e5962012-04-18 17:35:55 -07001667
1668# Make sure export_includes gets generated when you are running mm/mmm
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001669$(LOCAL_BUILT_MODULE) : | $(export_includes) $(my_link_type)