blob: 6cd8d0354e5e7e038d66cff7cbf25c0e2975d685 [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
Dan Albert754790d2016-08-05 16:34:40 -0700102 # Traditionally this has come from android/api-level.h, but with the libc
103 # headers unified it must be set by the build system since we don't have
104 # per-API level copies of that header now.
105 my_cflags += -D__ANDROID_API__=$(my_ndk_api)
106
Dan Albert02bf1382016-07-21 10:04:12 -0700107 my_ndk_source_root := \
108 $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources
109 my_ndk_sysroot := \
110 $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/platforms/android-$(my_ndk_api)/arch-$(my_arch)
111 my_built_ndk := $(SOONG_OUT_DIR)/ndk
112 my_ndk_triple := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_NDK_TRIPLE)
113 my_ndk_sysroot_include := \
114 $(my_built_ndk)/sysroot/usr/include \
115 $(my_built_ndk)/sysroot/usr/include/$(my_ndk_triple) \
116 $(my_ndk_sysroot)/usr/include \
Dan Albert445bc2f2015-12-11 12:49:18 -0800117
118 # x86_64 and and mips64 are both multilib toolchains, so their libraries are
119 # installed in /usr/lib64. Aarch64, on the other hand, is not a multilib
120 # compiler, so its libraries are in /usr/lib.
121 #
122 # Mips32r6 is yet another variation, with libraries installed in libr6.
123 #
124 # For the rest, the libraries are installed simply to /usr/lib.
Dan Albert02bf1382016-07-21 10:04:12 -0700125 ifneq (,$(filter x86_64 mips64,$(my_arch)))
126 my_ndk_libdir_name := lib64
Duane Sand1a074872014-11-08 15:25:18 -0800127 else ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
Dan Albert02bf1382016-07-21 10:04:12 -0700128 my_ndk_libdir_name := libr6
Andrew Hsieh140761af02014-04-25 23:47:10 -0700129 else
Dan Albert02bf1382016-07-21 10:04:12 -0700130 my_ndk_libdir_name := lib
Andrew Hsieh140761af02014-04-25 23:47:10 -0700131 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800132
Dan Albert02bf1382016-07-21 10:04:12 -0700133 my_ndk_platform_dir := \
134 $(my_built_ndk)/platforms/android-$(my_ndk_api)/arch-$(my_arch)
135 my_built_ndk_libs := $(my_ndk_platform_dir)/usr/$(my_ndk_libdir_name)
136 my_ndk_sysroot_lib := $(my_ndk_sysroot)/usr/$(my_ndk_libdir_name)
137
Dmitriy Ivanov3b51f202015-04-23 18:48:52 -0700138 # The bionic linker now has support for packed relocations and gnu style
139 # hashes (which are much faster!), but shipping to older devices requires
Dan Albertee629c92015-12-09 14:52:25 -0800140 # the old style hash. Fortunately, we can build with both and it'll work
141 # anywhere.
Dan Albert8dca15f2015-12-09 16:26:20 -0800142 #
143 # This is not currently supported on MIPS architectures.
144 ifeq (,$(filter mips mips64,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
145 my_ldflags += -Wl,--hash-style=both
146 endif
Dan Albertee629c92015-12-09 14:52:25 -0800147
148 # We don't want to expose the relocation packer to the NDK just yet.
149 LOCAL_PACK_MODULE_RELOCATIONS := false
Dan Albertd3d894d2014-11-14 15:28:49 -0800150
Ying Wangcce4c972011-03-03 18:53:53 -0800151 # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location.
152 # See ndk/docs/CPLUSPLUS-SUPPORT.html
153 my_ndk_stl_include_path :=
154 my_ndk_stl_shared_lib_fullpath :=
Ying Wangcce4c972011-03-03 18:53:53 -0800155 my_ndk_stl_static_lib :=
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800156 my_ndk_stl_cppflags :=
Duane Sand1a074872014-11-08 15:25:18 -0800157 my_cpu_variant := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)CPU_ABI)
Nikola Veljkovicf7385622016-04-06 19:20:02 +0200158 ifeq (mips32r6,$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH_VARIANT))
159 my_cpu_variant := mips32r6
160 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800161 LOCAL_NDK_STL_VARIANT := $(strip $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800162 ifeq (,$(LOCAL_NDK_STL_VARIANT))
163 LOCAL_NDK_STL_VARIANT := system
164 endif
Dan Albert0e2e71d2015-12-09 14:46:13 -0800165 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 -0700166 $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
Ying Wangcce4c972011-03-03 18:53:53 -0800167 endif
168 ifeq (system,$(LOCAL_NDK_STL_VARIANT))
169 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
Dan Albert0e2e71d2015-12-09 14:46:13 -0800170 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800171 else # LOCAL_NDK_STL_VARIANT is not system
172 ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
173 my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
Dan Albert0e2e71d2015-12-09 14:46:13 -0800174 my_system_shared_libraries += libstdc++
Ying Wangcce4c972011-03-03 18:53:53 -0800175 ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
Duane Sand1a074872014-11-08 15:25:18 -0800176 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 -0800177 my_ldlibs += -ldl
Ying Wangcce4c972011-03-03 18:53:53 -0800178 else
Duane Sand1a074872014-11-08 15:25:18 -0800179 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 -0800180 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800181 else # LOCAL_NDK_STL_VARIANT is not stlport_* either
182 ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
Dan Albert658d1e02016-03-22 17:17:40 -0700183 # Pre-r11 NDKs used libgabi++ for libc++'s C++ ABI, but r11 and later use
184 # libc++abi.
Dan Albert09607702016-08-08 17:14:59 -0700185 #
186 # r13 no longer has the inner directory as a side effect of just using
187 # external/libcxx.
188 ifeq (r10,$(LOCAL_NDK_VERSION))
189 my_ndk_stl_include_path := \
190 $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include
Dan Albert658d1e02016-03-22 17:17:40 -0700191 my_ndk_stl_include_path += \
192 $(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include
Dan Albert09607702016-08-08 17:14:59 -0700193 else ifeq (r11,$(LOCAL_NDK_VERSION))
194 my_ndk_stl_include_path := \
195 $(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include
Dan Albert658d1e02016-03-22 17:17:40 -0700196 my_ndk_stl_include_path += \
197 $(my_ndk_source_root)/cxx-stl/llvm-libc++abi/libcxxabi/include
Dan Albert09607702016-08-08 17:14:59 -0700198 else
199 my_ndk_stl_include_path := \
200 $(my_ndk_source_root)/cxx-stl/llvm-libc++/include
201 my_ndk_stl_include_path += \
202 $(my_ndk_source_root)/cxx-stl/llvm-libc++abi/include
203 endif
204 my_ndk_stl_include_path += $(my_ndk_source_root)/android/support/include
205
206 my_libcxx_libdir := \
207 $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)
208
209 ifneq (,$(filter r10 r11,$(LOCAL_NDK_VERSION)))
210 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
211 my_ndk_stl_static_lib := $(my_libcxx_libdir)/libc++_static.a
212 my_ldlibs += -ldl
213 else
214 my_ndk_stl_shared_lib_fullpath := $(my_libcxx_libdir)/libc++_shared.so
215 endif
216 else
217 ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
218 my_ndk_stl_static_lib := \
219 $(my_libcxx_libdir)/libc++_static.a \
220 $(my_libcxx_libdir)/libc++abi.a
221 my_ldlibs += -ldl
222 else
223 my_ndk_stl_shared_lib_fullpath := $(my_libcxx_libdir)/libc++_shared.so
224 endif
225
226 my_ndk_stl_static_lib += $(my_libcxx_libdir)/libandroid_support.a
227 ifneq (,$(filter armeabi armeabi-v7a,$(my_cpu_variant)))
228 my_ndk_stl_static_lib += $(my_libcxx_libdir)/libunwind.a
229 endif
Dan Albert658d1e02016-03-22 17:17:40 -0700230 endif
231
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800232 my_ndk_stl_cppflags := -std=c++11
Dan Albert0e2e71d2015-12-09 14:46:13 -0800233 else # LOCAL_NDK_STL_VARIANT is not c++_* either
234 ifneq (,$(filter gnustl_%, $(LOCAL_NDK_STL_VARIANT)))
Duane Sand1a074872014-11-08 15:25:18 -0800235 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 -0700236 $(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 -0800237 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 -0800238 else # LOCAL_NDK_STL_VARIANT must be none
239 # Do nothing.
240 endif
Ying Wangcce4c972011-03-03 18:53:53 -0800241 endif
242 endif
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800243 endif
Dan Albertc1ca1902016-08-04 14:14:50 -0700244endif
Dan Albert02bf1382016-07-21 10:04:12 -0700245
Dan Albertc1ca1902016-08-04 14:14:50 -0700246ifndef LOCAL_IS_HOST_MODULE
247# For device libraries, move LOCAL_LDLIBS references to my_shared_libraries. We
248# no longer need to use my_ldlibs to pick up NDK prebuilt libraries since we're
249# linking my_shared_libraries by full path now.
250my_allowed_ldlibs :=
251
252# Sort ldlibs and ldflags between -l and other linker flags
253# We'll do this again later, since there are still changes happening, but that's fine.
254my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
255my_ldlibs := $(filter -l%,$(my_ldlib_flags))
256my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
257my_ldlib_flags :=
258
259# Move other ldlibs back to shared libraries
260my_shared_libraries += $(patsubst -l%,lib%,$(filter-out $(my_allowed_ldlibs),$(my_ldlibs)))
261my_ldlibs := $(filter $(my_allowed_ldlibs),$(my_ldlibs))
262endif
263
264ifdef LOCAL_SDK_VERSION
265 my_all_ndk_libraries := \
266 $(NDK_MIGRATED_LIBS) $(addprefix lib,$(NDK_PREBUILT_SHARED_LIBRARIES))
267 my_ndk_shared_libraries := \
268 $(filter $(my_all_ndk_libraries),\
269 $(my_shared_libraries) $(my_system_shared_libraries))
270
271 my_shared_libraries := \
272 $(filter-out $(my_all_ndk_libraries),$(my_shared_libraries))
Dan Albert02bf1382016-07-21 10:04:12 -0700273 my_system_shared_libraries := \
Dan Albertc1ca1902016-08-04 14:14:50 -0700274 $(filter-out $(my_all_ndk_libraries),$(my_system_shared_libraries))
Ying Wang1a081002010-07-13 14:55:47 -0700275endif
276
Dan Albert95994de2014-08-07 18:29:11 -0700277# MinGW spits out warnings about -fPIC even for -fpie?!) being ignored because
278# all code is position independent, and then those warnings get promoted to
279# errors.
Alexey Polyudovcbb038c2016-08-01 17:36:39 -0700280ifneq ($(LOCAL_NO_PIC),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700281ifneq ($($(my_prefix)OS),windows)
Dan Willemsen7fe992c2016-03-02 13:54:51 -0800282ifneq ($(filter EXECUTABLES NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),)
Dan Albert4803ce22014-08-06 12:36:46 -0700283my_cflags += -fpie
284else
285my_cflags += -fPIC
286endif
Dan Albert95994de2014-08-07 18:29:11 -0700287endif
Alexey Polyudovcbb038c2016-08-01 17:36:39 -0700288endif
Dan Albert4803ce22014-08-06 12:36:46 -0700289
Dan Willemsen7a549852015-08-13 17:51:40 -0700290ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen85ac8d22015-08-18 17:47:06 -0700291my_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 -0700292my_static_libraries += $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)OS))
293my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)OS))
294my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)OS))
295my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)OS))
296my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)OS))
297my_ldlibs += $(LOCAL_LDLIBS_$($(my_prefix)OS))
298my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)OS))
299my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)OS))
300my_generated_sources += $(LOCAL_GENERATED_SOURCES_$($(my_prefix)OS))
301endif
302
Ying Wang6feb6d52014-04-17 10:03:35 -0700303my_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 -0700304my_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 -0700305my_shared_libraries += $(LOCAL_SHARED_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_SHARED_LIBRARIES_$(my_32_64_bit_suffix))
306my_cflags += $(LOCAL_CFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CFLAGS_$(my_32_64_bit_suffix))
307my_cppflags += $(LOCAL_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CPPFLAGS_$(my_32_64_bit_suffix))
308my_ldflags += $(LOCAL_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_LDFLAGS_$(my_32_64_bit_suffix))
309my_asflags += $(LOCAL_ASFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_ASFLAGS_$(my_32_64_bit_suffix))
310my_c_includes += $(LOCAL_C_INCLUDES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_C_INCLUDES_$(my_32_64_bit_suffix))
311my_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 -0800312
Dan Willemsenc29172c2015-12-03 22:58:39 -0800313my_missing_exclude_files := $(filter-out $(my_src_files),$(my_src_files_exclude))
314ifneq ($(my_missing_exclude_files),)
315$(warning Files are listed in LOCAL_SRC_FILES_EXCLUDE but not LOCAL_SRC_FILES)
316$(error $(my_missing_exclude_files))
317endif
Colin Crossa04abc82015-06-30 12:21:59 -0700318my_src_files := $(filter-out $(my_src_files_exclude),$(my_src_files))
319
Dan Albertdb905e72014-08-18 11:14:38 -0700320my_clang := $(strip $(LOCAL_CLANG))
Ying Wang824344a2014-05-27 13:03:36 -0700321ifdef LOCAL_CLANG_$(my_32_64_bit_suffix)
Dan Albertdb905e72014-08-18 11:14:38 -0700322my_clang := $(strip $(LOCAL_CLANG_$(my_32_64_bit_suffix)))
Ying Wang824344a2014-05-27 13:03:36 -0700323endif
324ifdef LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Dan Albertdb905e72014-08-18 11:14:38 -0700325my_clang := $(strip $(LOCAL_CLANG_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)))
Ying Wang824344a2014-05-27 13:03:36 -0700326endif
327
Alexey Polyudov7d6b3f12016-06-24 11:22:51 -0700328# if custom toolchain is in use, default is not to use clang, if not explicitly required
329ifneq ($(my_cc)$(my_cxx),)
330 ifeq ($(my_clang),)
331 my_clang := false
332 endif
333endif
Chih-Hung Hsiehd9cd1fa2016-08-02 14:22:06 -0700334# Issue warning if LOCAL_CLANG* is set to false and the local makefile is not found
335# in the exception project list.
336ifeq ($(my_clang),false)
Alexey Polyudov65d7a342016-08-19 08:42:45 -0700337 ifeq ($(call find_in_local_clang_exception_projects,$(LOCAL_MODULE_MAKEFILE))$(LOCAL_IS_AUX_MODULE),)
Chih-Hung Hsieh2ee4c1a2016-08-04 15:35:51 -0700338 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): LOCAL_CLANG is set to false)
Chih-Hung Hsiehd9cd1fa2016-08-02 14:22:06 -0700339 endif
340endif
Alexey Polyudov7d6b3f12016-06-24 11:22:51 -0700341
Tim Murray92d79cb2014-04-04 14:38:29 -0700342# clang is enabled by default for host builds
343# enable it unless we've specifically disabled clang above
344ifdef LOCAL_IS_HOST_MODULE
Dan Willemsen95374772016-03-29 12:34:03 -0700345 ifeq ($($(my_prefix)OS),windows)
346 ifeq ($(my_clang),true)
347 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Clang is not yet supported for windows binaries)
348 endif
349 my_clang := false
350 else
351 ifeq ($(my_clang),)
352 my_clang := true
353 endif
Tim Murray5ca1dc12014-07-24 14:42:53 -0700354 endif
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800355# Add option to make gcc the default for device build
356else ifeq ($(USE_CLANG_PLATFORM_BUILD),false)
Dan Willemsen77288172015-09-09 15:45:21 -0700357 ifeq ($(my_clang),)
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800358 my_clang := false
Dan Willemsen77288172015-09-09 15:45:21 -0700359 endif
Chih-Hung Hsiehb5da9d92016-01-06 11:49:25 -0800360else ifeq ($(my_clang),)
361 my_clang := true
Dan Willemsen77288172015-09-09 15:45:21 -0700362endif
363
Dan Albertc7d307d2015-07-29 15:13:57 -0700364my_cpp_std_version := -std=gnu++14
Dan Albertda637392015-10-26 11:09:24 -0700365
366ifneq ($(my_clang),true)
367 # GCC uses an invalid C++14 ABI (emits calls to
368 # __cxa_throw_bad_array_length, which is not a valid C++ RT ABI).
369 # http://b/25022512
370 my_cpp_std_version := -std=gnu++11
371endif
372
Dan Albertc7d307d2015-07-29 15:13:57 -0700373ifdef LOCAL_SDK_VERSION
374 # The NDK handles this itself.
375 my_cpp_std_version :=
376endif
377
378ifdef LOCAL_IS_HOST_MODULE
379 ifneq ($(my_clang),true)
380 # The host GCC doesn't support C++14 (and is deprecated, so likely
381 # never will). Build these modules with C++11.
382 my_cpp_std_version := -std=gnu++11
383 endif
384endif
385
386my_cppflags := $(my_cpp_std_version) $(my_cppflags)
387
Tim Murray06659bc2014-08-13 11:53:07 -0700388
Colin Crossf4f2fbe2014-02-12 21:15:12 -0800389# arch-specific static libraries go first so that generic ones can depend on them
Ying Wang6feb6d52014-04-17 10:03:35 -0700390my_static_libraries := $(LOCAL_STATIC_LIBRARIES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_STATIC_LIBRARIES_$(my_32_64_bit_suffix)) $(my_static_libraries)
391my_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 -0800392
Ying Wang75e8fcb2014-10-07 13:03:29 -0700393include $(BUILD_SYSTEM)/cxx_stl_setup.mk
Ying Wangd90de322014-05-23 16:42:37 -0700394
Ying Wang285045b2013-08-13 12:35:10 -0700395# Add static HAL libraries
396ifdef LOCAL_HAL_STATIC_LIBRARIES
397$(foreach lib, $(LOCAL_HAL_STATIC_LIBRARIES), \
398 $(eval b_lib := $(filter $(lib).%,$(BOARD_HAL_STATIC_LIBRARIES)))\
Ying Wang6ef65192014-01-15 16:02:16 -0800399 $(if $(b_lib), $(eval my_static_libraries += $(b_lib)),\
400 $(eval my_static_libraries += $(lib).default)))
Ying Wang285045b2013-08-13 12:35:10 -0700401b_lib :=
402endif
403
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100404ifneq ($(strip $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)),)
405 my_linker := $(CUSTOM_$(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)LINKER)
406else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700407 my_linker := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)LINKER)
Nicolas Geoffrayb7c9f322015-09-25 13:54:09 +0100408endif
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700409
Dan Albert4ae5d4b2014-10-31 16:23:08 -0700410include $(BUILD_SYSTEM)/config_sanitizers.mk
Evgeniy Stepanov6cc9c062012-03-30 12:15:12 +0400411
Alexey Polyudovee27d812016-08-01 17:38:35 -0700412ifneq ($(LOCAL_NO_LIBCOMPILER_RT),true)
Shih-wei Liaoc8dfc162013-01-27 01:45:59 -0800413# Add in libcompiler_rt for all regular device builds
Dan Albert30a9c352015-04-09 14:41:06 -0700414ifeq (,$(LOCAL_SDK_VERSION)$(WITHOUT_LIBCOMPILER_RT))
Ying Wang6ef65192014-01-15 16:02:16 -0800415 my_static_libraries += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES)
Stephen Hinesc72f3962012-06-11 14:53:34 -0700416endif
Alexey Polyudovee27d812016-08-01 17:38:35 -0700417endif
Stephen Hinesc72f3962012-06-11 14:53:34 -0700418
Jing Yu2dcc8062009-09-21 16:31:50 -0700419####################################################
420## Add FDO flags if FDO is turned on and supported
Dehao Chen295a6d22014-09-19 10:18:12 -0700421## Please note that we will do option filtering during FDO build.
422## i.e. Os->O2, remove -fno-early-inline and -finline-limit.
423##################################################################
Ying Wang45d01432014-10-28 14:50:59 -0700424my_fdo_build :=
425ifneq ($(filter true always, $(LOCAL_FDO_SUPPORT)),)
426 ifeq ($(BUILD_FDO_INSTRUMENT),true)
427 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_CFLAGS)
428 my_ldflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_INSTRUMENT_LDFLAGS)
429 my_fdo_build := true
430 else ifneq ($(filter true,$(BUILD_FDO_OPTIMIZE))$(filter always,$(LOCAL_FDO_SUPPORT)),)
431 my_cflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_FDO_OPTIMIZE_CFLAGS)
432 my_fdo_build := true
synergydev4a605762013-08-05 02:44:37 -0700433 endif
Shinichiro Hamaji09295a82015-09-24 17:51:20 +0900434 # Disable ccache (or other compiler wrapper) except gomacc, which
435 # can handle -fprofile-use properly.
436 my_cc_wrapper := $(filter $(GOMA_CC),$(my_cc_wrapper))
437 my_cxx_wrapper := $(filter $(GOMA_CC),$(my_cxx_wrapper))
Jing Yu2dcc8062009-09-21 16:31:50 -0700438endif
439
The Android Open Source Project88b60792009-03-03 19:28:42 -0800440###########################################################
Jim Huang20d1ba62010-10-14 16:15:56 +0800441## Explicitly declare assembly-only __ASSEMBLY__ macro for
442## assembly source
443###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800444my_asflags += -D__ASSEMBLY__
Jim Huang20d1ba62010-10-14 16:15:56 +0800445
Ying Wangd8d37212014-03-21 16:17:04 -0700446
Jim Huang20d1ba62010-10-14 16:15:56 +0800447###########################################################
Ying Wang1a081002010-07-13 14:55:47 -0700448## Define PRIVATE_ variables from global vars
449###########################################################
Ying Wang7fff9a12014-01-09 14:39:41 -0800450ifndef LOCAL_IS_HOST_MODULE
Ying Wang848020f2012-08-14 10:13:16 -0700451ifdef LOCAL_SDK_VERSION
Colin Cross23ba6122016-07-20 12:22:57 -0700452my_target_global_c_includes :=
453my_target_global_c_system_includes := $(my_ndk_stl_include_path) $(my_ndk_sysroot_include)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800454my_target_global_cppflags := $(my_ndk_stl_cppflags)
Ying Wang1a081002010-07-13 14:55:47 -0700455else
Colin Cross23ba6122016-07-20 12:22:57 -0700456my_target_global_c_includes := $(SRC_HEADERS) \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700457 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_INCLUDES) \
458 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Colin Cross23ba6122016-07-20 12:22:57 -0700459my_target_global_c_system_includes := $(SRC_SYSTEM_HEADERS) \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700460 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_SYSTEM_INCLUDES) \
461 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_SYSTEM_INCLUDES)
Andrew Hsieh73d800e2014-03-04 17:11:52 +0800462my_target_global_cppflags :=
Ying Wangf4723fa2013-08-15 11:01:10 -0700463endif # LOCAL_SDK_VERSION
464
Ying Wang824344a2014-05-27 13:03:36 -0700465ifeq ($(my_clang),true)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700466my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
467my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
468my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
469my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
Ying Wangda4bf422012-08-16 16:45:01 -0700470else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700471my_target_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
472my_target_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
473my_target_global_cppflags += $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
474my_target_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700475endif # my_clang
Ying Wangda4bf422012-08-16 16:45:01 -0700476
Colin Crosse25fd792016-07-19 13:19:21 -0700477$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_INCLUDES := $(my_target_global_c_includes)
Colin Cross23ba6122016-07-20 12:22:57 -0700478$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_SYSTEM_INCLUDES := $(my_target_global_c_system_includes)
Ying Wang1a081002010-07-13 14:55:47 -0700479$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800480$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CONLYFLAGS := $(my_target_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800481$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(my_target_global_cppflags)
482$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_LDFLAGS := $(my_target_global_ldflags)
483
Ying Wang7fff9a12014-01-09 14:39:41 -0800484else # LOCAL_IS_HOST_MODULE
485
Colin Cross23ba6122016-07-20 12:22:57 -0700486my_host_global_c_includes := $(SRC_HEADERS) \
487 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_INCLUDES) \
Colin Crosse25fd792016-07-19 13:19:21 -0700488 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_INCLUDES)
Colin Cross23ba6122016-07-20 12:22:57 -0700489my_host_global_c_system_includes := $(SRC_SYSTEM_HEADERS) \
490 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)PROJECT_SYSTEM_INCLUDES) \
491 $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)C_SYSTEM_INCLUDES)
Colin Crosse25fd792016-07-19 13:19:21 -0700492
Ying Wang824344a2014-05-27 13:03:36 -0700493ifeq ($(my_clang),true)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700494my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CFLAGS)
495my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CONLYFLAGS)
496my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_CPPFLAGS)
497my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)CLANG_$(my_prefix)GLOBAL_LDFLAGS)
Logan Chiene6f65432013-12-10 19:07:41 +0800498else
Dan Willemsen057aaea2015-08-14 12:59:50 -0700499my_host_global_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CFLAGS)
500my_host_global_conlyflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CONLYFLAGS)
501my_host_global_cppflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_CPPFLAGS)
502my_host_global_ldflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)GLOBAL_LDFLAGS)
Ying Wang824344a2014-05-27 13:03:36 -0700503endif # my_clang
Logan Chiene6f65432013-12-10 19:07:41 +0800504
Colin Crosse25fd792016-07-19 13:19:21 -0700505$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_INCLUDES := $(my_host_global_c_includes)
Colin Cross23ba6122016-07-20 12:22:57 -0700506$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_GLOBAL_C_SYSTEM_INCLUDES := $(my_host_global_c_system_includes)
Logan Chiene6f65432013-12-10 19:07:41 +0800507$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CFLAGS := $(my_host_global_cflags)
Stephen Hines15680292014-11-26 00:53:46 -0800508$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CONLYFLAGS := $(my_host_global_conlyflags)
Logan Chiene6f65432013-12-10 19:07:41 +0800509$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_CPPFLAGS := $(my_host_global_cppflags)
510$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HOST_GLOBAL_LDFLAGS := $(my_host_global_ldflags)
511endif # LOCAL_IS_HOST_MODULE
Ying Wang1a081002010-07-13 14:55:47 -0700512
Dan Albert43e128a2015-01-23 16:12:57 -0800513# To enable coverage for a given module, set LOCAL_NATIVE_COVERAGE=true and
514# build with NATIVE_COVERAGE=true in your enviornment. Note that the build
515# system is not sensitive to changes to NATIVE_COVERAGE, so you should do a
516# clean build of your module after toggling it.
517ifeq ($(NATIVE_COVERAGE),true)
518 ifeq ($(my_native_coverage),true)
Dan Albert343ed672015-01-25 16:20:57 -0800519 # Note that clang coverage doesn't play nicely with acov out of the box.
520 # Clang apparently generates .gcno files that aren't compatible with
521 # gcov-4.8. This can be solved by installing gcc-4.6 and invoking lcov
522 # with `--gcov-tool /usr/bin/gcov-4.6`.
523 #
524 # http://stackoverflow.com/questions/17758126/clang-code-coverage-invalid-output
Dan Albert2c03e042015-01-24 15:14:35 -0800525 my_cflags += --coverage -O0
Dan Albert343ed672015-01-25 16:20:57 -0800526 my_ldflags += --coverage
Dan Albert43e128a2015-01-23 16:12:57 -0800527 endif
528else
529 my_native_coverage := false
530endif
531
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700532ifeq ($(my_clang),true)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700533 my_coverage_lib := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)LIBPROFILE_RT)
Dan Albert7fbbc5d2015-10-08 14:16:39 -0700534else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700535 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 -0700536endif
537
538$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_COVERAGE_LIB := $(my_coverage_lib)
539
Ying Wang1a081002010-07-13 14:55:47 -0700540###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800541## Define PRIVATE_ variables used by multiple module types
542###########################################################
543$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \
Ying Wangdfbe79b2012-03-22 11:26:22 -0700544 $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800545
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800546ifeq ($(strip $(WITH_SYNTAX_CHECK)),)
547 LOCAL_NO_SYNTAX_CHECK := true
548endif
549
Andrew Hsieh906cb782013-09-10 17:37:14 +0800550ifeq ($(strip $(WITH_STATIC_ANALYZER)),)
551 LOCAL_NO_STATIC_ANALYZER := true
552endif
553
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800554# Clang does not recognize all gcc flags.
555# Use static analyzer only if clang is used.
556ifneq ($(my_clang),true)
557 LOCAL_NO_STATIC_ANALYZER := true
558endif
559
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800560ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
561 my_syntax_arch := host
562else
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700563 my_syntax_arch := $($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800564endif
565
Ying Wang6ef65192014-01-15 16:02:16 -0800566ifeq ($(strip $(my_cc)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700567 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800568 my_cc := $(CLANG)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400569 else
Ying Wang6ef65192014-01-15 16:02:16 -0800570 my_cc := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CC)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400571 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700572 my_cc := $(my_cc_wrapper) $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800573endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800574
Andrew Hsieh906cb782013-09-10 17:37:14 +0800575ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800576 my_cc := CCC_CC=$(CLANG) CLANG=$(CLANG) \
577 $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800578else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800579ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800580 my_cc := $(my_cc) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800581endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800582endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800583
Ying Wang6ef65192014-01-15 16:02:16 -0800584$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(my_cc)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800585
Ying Wang6ef65192014-01-15 16:02:16 -0800586ifeq ($(strip $(my_cxx)),)
Dan Albertdb905e72014-08-18 11:14:38 -0700587 ifeq ($(my_clang),true)
Ying Wang6ef65192014-01-15 16:02:16 -0800588 my_cxx := $(CLANG_CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400589 else
Ying Wang6ef65192014-01-15 16:02:16 -0800590 my_cxx := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)CXX)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +0400591 endif
Ying Wangc671a7c2015-07-20 18:40:18 -0700592 my_cxx := $(my_cxx_wrapper) $(my_cxx)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800593endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800594
Andrew Hsieh906cb782013-09-10 17:37:14 +0800595ifneq ($(LOCAL_NO_STATIC_ANALYZER),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800596 my_cxx := CCC_CXX=$(CLANG_CXX) CLANG_CXX=$(CLANG_CXX) \
597 $(SYNTAX_TOOLS_PREFIX)/c++-analyzer
Andrew Hsieh906cb782013-09-10 17:37:14 +0800598else
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800599ifneq ($(LOCAL_NO_SYNTAX_CHECK),true)
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800600 my_cxx := $(my_cxx) -fsyntax-only
Andrew Hsieh6cea59a2013-08-27 17:33:06 +0800601endif
Andrew Hsieh906cb782013-09-10 17:37:14 +0800602endif
Chih-Hung Hsieh765c1ea2016-02-02 11:30:39 -0800603
Evgenii Stepanov8f5e67a2015-07-10 18:06:51 -0700604$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LINKER := $(my_linker)
Ying Wang6ef65192014-01-15 16:02:16 -0800605$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(my_cxx)
Dan Albertb6bb71b2014-08-05 14:44:41 -0700606$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CLANG := $(my_clang)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800607
608# TODO: support a mix of standard extensions so that this isn't necessary
609LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION))
610ifeq ($(LOCAL_CPP_EXTENSION),)
611 LOCAL_CPP_EXTENSION := .cpp
612endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800613
614# Certain modules like libdl have to have symbols resolved at runtime and blow
615# up if --no-undefined is passed to the linker.
616ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),)
Dan Albertb58fb4a2014-11-14 17:15:00 -0800617ifeq ($(my_allow_undefined_symbols),)
Dan Willemsen8308f502016-05-18 12:50:53 -0700618 my_ldflags += -Wl,--no-undefined
The Android Open Source Project88b60792009-03-03 19:28:42 -0800619endif
620endif
621
Ying Wangfcdabd42011-04-25 14:22:41 -0700622ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES))
623$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true
624else
625$(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES :=
626endif
627
The Android Open Source Project88b60792009-03-03 19:28:42 -0800628###########################################################
629## Define arm-vs-thumb-mode flags.
630###########################################################
631LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE))
Ying Wangfaeb6932015-04-07 11:59:34 -0700632ifeq ($($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH),arm)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800633arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm)
634normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb)
635
Dave Bort95282482009-04-23 18:44:55 -0700636# Read the values from something like TARGET_arm_CFLAGS or
637# TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't
638# actually used (although they are usually empty).
Ying Wang6ef65192014-01-15 16:02:16 -0800639arm_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(arm_objects_mode)_CFLAGS)
640normal_objects_cflags := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)$(normal_objects_mode)_CFLAGS)
Dan Albertdb905e72014-08-18 11:14:38 -0700641ifeq ($(my_clang),true)
Dan Willemsen02268f02016-05-19 14:39:25 -0700642arm_objects_cflags := $(call convert-to-clang-flags,$(arm_objects_cflags))
643normal_objects_cflags := $(call convert-to-clang-flags,$(normal_objects_cflags))
Evgeniy Stepanovf50f4c52012-04-05 11:44:37 +0400644endif
645
Chih-Wei Huang0d09e582010-07-09 10:07:52 +0800646else
647arm_objects_mode :=
648normal_objects_mode :=
649arm_objects_cflags :=
650normal_objects_cflags :=
651endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800652
653###########################################################
654## Define per-module debugging flags. Users can turn on
655## debugging for a particular module by setting DEBUG_MODULE_ModuleName
656## to a non-empty value in their environment or buildspec.mk,
657## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the
658## debug flags that they want to use.
659###########################################################
660ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE))
661 debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS)
662else
663 debug_cflags :=
664endif
665
Tim Murraya7aa8002012-10-29 16:06:00 -0700666####################################################
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800667## Keep track of src -> obj mapping
668####################################################
669
670my_tracked_gen_files :=
671my_tracked_src_files :=
672
673###########################################################
674## Stuff source generated from one-off tools
675###########################################################
676$(my_generated_sources): PRIVATE_MODULE := $(my_register_name)
677
678my_gen_sources_copy := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(filter $(generated_sources_dir)/%,$(my_generated_sources)))
679
Dan Willemsen7f016152016-02-29 17:52:39 -0800680$(my_gen_sources_copy): $(intermediates)/% : $(generated_sources_dir)/%
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800681 @echo "Copy: $@"
682 $(copy-file-to-target)
683
684my_generated_sources := $(patsubst $(generated_sources_dir)/%,$(intermediates)/%,$(my_generated_sources))
685
686# Generated sources that will actually produce object files.
687# Other files (like headers) are allowed in LOCAL_GENERATED_SOURCES,
688# since other compiled sources may depend on them, and we set up
689# the dependencies.
Dan Willemsen444c3232016-02-04 14:18:48 -0800690my_gen_src_files := $(filter %.c %$(LOCAL_CPP_EXTENSION) %.S %.s,$(my_generated_sources))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800691
692ALL_GENERATED_SOURCES += $(my_generated_sources)
693
694####################################################
Tim Murraya7aa8002012-10-29 16:06:00 -0700695## Compile RenderScript with reflected C++
696####################################################
697
Ying Wangb8e01852014-01-23 15:09:04 -0800698renderscript_sources := $(filter %.rs %.fs,$(my_src_files))
Tim Murraya7aa8002012-10-29 16:06:00 -0700699
700ifneq (,$(renderscript_sources))
701
702renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
703RenderScript_file_stamp := $(intermediates)/RenderScriptCPP.stamp
704renderscript_intermediate := $(intermediates)/renderscript
705
Noah Presler4796a8c2015-08-13 17:04:10 -0700706renderscript_target_api :=
707
708ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
709renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
710else
711ifneq (,$(LOCAL_SDK_VERSION))
712# Set target-api for LOCAL_SDK_VERSIONs other than current.
Michael Wright0fb087f2015-11-06 15:20:51 +0000713ifneq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
Noah Presler4796a8c2015-08-13 17:04:10 -0700714renderscript_target_api := $(LOCAL_SDK_VERSION)
715endif
716endif # LOCAL_SDK_VERSION is set
717endif # LOCAL_RENDERSCRIPT_TARGET_API is set
718
719
Tim Murraya7aa8002012-10-29 16:06:00 -0700720ifeq ($(LOCAL_RENDERSCRIPT_CC),)
721LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
722endif
723
724# Turn on all warnings and warnings as errors for RS compiles.
725# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
726renderscript_flags := -Wall -Werror
727renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
Ying Wangacaada12014-09-10 16:11:41 -0700728# -m32 or -m64
729renderscript_flags += -m$(my_32_64_bit_suffix)
Tim Murrayf0020c62014-09-10 15:11:01 -0700730
Ying Wang6ef65192014-01-15 16:02:16 -0800731renderscript_includes := \
Tim Murraya7aa8002012-10-29 16:06:00 -0700732 $(TOPDIR)external/clang/lib/Headers \
733 $(TOPDIR)frameworks/rs/scriptc \
734 $(LOCAL_RENDERSCRIPT_INCLUDES)
735
736ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
Ying Wang6ef65192014-01-15 16:02:16 -0800737renderscript_includes := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
Tim Murraya7aa8002012-10-29 16:06:00 -0700738endif
739
Ying Wangb9319562015-04-03 16:15:28 -0700740bc_dep_files := $(addprefix $(renderscript_intermediate)/, \
741 $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
742
Ying Wang6ef65192014-01-15 16:02:16 -0800743$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(renderscript_includes)
Tim Murraya7aa8002012-10-29 16:06:00 -0700744$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
745$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
746$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
747$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate)
Noah Presler4796a8c2015-08-13 17:04:10 -0700748$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
Ying Wangb9319562015-04-03 16:15:28 -0700749$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
Tim Murraya7aa8002012-10-29 16:06:00 -0700750$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
751 $(transform-renderscripts-to-cpp-and-bc)
752
Ying Wangb9319562015-04-03 16:15:28 -0700753# include the dependency files (.d/.P) generated by llvm-rs-cc.
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900754$(call include-depfile,$(RenderScript_file_stamp).P,$(RenderScript_file_stamp))
Tim Murraya7aa8002012-10-29 16:06:00 -0700755
756LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
757
758rs_generated_cpps := $(addprefix \
759 $(renderscript_intermediate)/ScriptC_,$(patsubst %.fs,%.cpp, $(patsubst %.rs,%.cpp, \
760 $(notdir $(renderscript_sources)))))
761
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800762$(call track-src-file-gen,$(renderscript_sources),$(rs_generated_cpps))
763
Stephen Hines8ff92522014-06-06 12:51:47 -0700764# This is just a dummy rule to make sure gmake doesn't skip updating the dependents.
Tim Murraya7aa8002012-10-29 16:06:00 -0700765$(rs_generated_cpps) : $(RenderScript_file_stamp)
Ying Wang81ab8332014-05-28 16:17:09 -0700766 @echo "Updated RS generated cpp file $@."
Ying Wange25b3982015-02-26 18:47:21 -0800767 $(hide) touch $@
Tim Murraya7aa8002012-10-29 16:06:00 -0700768
Ying Wang6ef65192014-01-15 16:02:16 -0800769my_c_includes += $(renderscript_intermediate)
770my_generated_sources += $(rs_generated_cpps)
Tim Murraya7aa8002012-10-29 16:06:00 -0700771
772endif
773
774
The Android Open Source Project88b60792009-03-03 19:28:42 -0800775###########################################################
Ying Wangfaeb6932015-04-07 11:59:34 -0700776## Compile the .proto files to .cc (or .c) and then to .o
Ying Wanga5fc87a2010-11-02 18:43:16 -0700777###########################################################
Ying Wangb8e01852014-01-23 15:09:04 -0800778proto_sources := $(filter %.proto,$(my_src_files))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700779ifneq ($(proto_sources),)
Ying Wang05f9f352016-05-05 20:02:08 -0700780proto_gen_dir := $(generated_sources_dir)/proto
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900781proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources))
Ying Wangfaeb6932015-04-07 11:59:34 -0700782
Ying Wang05f9f352016-05-05 20:02:08 -0700783my_rename_cpp_ext :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700784ifneq (,$(filter nanopb-c nanopb-c-enable_malloc, $(LOCAL_PROTOC_OPTIMIZE_TYPE)))
785my_proto_source_suffix := .c
786my_proto_c_includes := external/nanopb-c
Ying Wang05f9f352016-05-05 20:02:08 -0700787my_protoc_flags := --nanopb_out=$(proto_gen_dir) \
Ying Wangfaeb6932015-04-07 11:59:34 -0700788 --plugin=external/nanopb-c/generator/protoc-gen-nanopb
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900789my_protoc_deps := $(NANOPB_SRCS) $(proto_sources_fullpath:%.proto=%.options)
Ying Wangfaeb6932015-04-07 11:59:34 -0700790else
Ying Wang05f9f352016-05-05 20:02:08 -0700791my_proto_source_suffix := $(LOCAL_CPP_EXTENSION)
792ifneq ($(my_proto_source_suffix),.cc)
793# aprotoc is hardcoded to write out only .cc file.
794# We need to rename the extension to $(LOCAL_CPP_EXTENSION) if it's not .cc.
795my_rename_cpp_ext := true
796endif
Ying Wangfaeb6932015-04-07 11:59:34 -0700797my_proto_c_includes := external/protobuf/src
798my_cflags += -DGOOGLE_PROTOBUF_NO_RTTI
Ying Wang05f9f352016-05-05 20:02:08 -0700799my_protoc_flags := --cpp_out=$(proto_gen_dir)
Shinichiro Hamajia3184dc2016-04-05 17:34:51 +0900800my_protoc_deps :=
Ying Wangfaeb6932015-04-07 11:59:34 -0700801endif
Ying Wang05f9f352016-05-05 20:02:08 -0700802my_proto_c_includes += $(proto_gen_dir)
Ying Wangfaeb6932015-04-07 11:59:34 -0700803
Ying Wang05f9f352016-05-05 20:02:08 -0700804proto_generated_cpps := $(addprefix $(proto_gen_dir)/, \
Ying Wangfaeb6932015-04-07 11:59:34 -0700805 $(patsubst %.proto,%.pb$(my_proto_source_suffix),$(proto_sources_fullpath)))
Ying Wanga5fc87a2010-11-02 18:43:16 -0700806
Ying Wangead89442014-02-25 11:18:40 -0800807# Ensure the transform-proto-to-cc rule is only defined once in multilib build.
Ying Wang05f9f352016-05-05 20:02:08 -0700808ifndef $(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined
809$(proto_generated_cpps): PRIVATE_PROTO_INCLUDES := $(TOP)
810$(proto_generated_cpps): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) $(my_protoc_flags)
811$(proto_generated_cpps): PRIVATE_RENAME_CPP_EXT := $(my_rename_cpp_ext)
812$(proto_generated_cpps): $(proto_gen_dir)/%.pb$(my_proto_source_suffix): %.proto $(my_protoc_deps) $(PROTOC)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700813 $(transform-proto-to-cc)
814
Ying Wang05f9f352016-05-05 20:02:08 -0700815$(my_host)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_proto_defined := true
Ying Wangfaeb6932015-04-07 11:59:34 -0700816endif
Ying Wang05f9f352016-05-05 20:02:08 -0700817# Ideally we can generate the source directly into $(intermediates).
818# But many Android.mks assume the .pb.hs are in $(generated_sources_dir).
819# As a workaround, we make a copy in the $(intermediates).
820proto_intermediate_dir := $(intermediates)/proto
821proto_intermediate_cpps := $(patsubst $(proto_gen_dir)/%,$(proto_intermediate_dir)/%,\
822 $(proto_generated_cpps))
823$(proto_intermediate_cpps) : $(proto_intermediate_dir)/% : $(proto_gen_dir)/%
824 @echo "Copy: $@"
825 $(copy-file-to-target)
826 $(hide) cp $(basename $<).h $(basename $@).h
827$(call track-src-file-gen,$(proto_sources),$(proto_intermediate_cpps))
828
829my_generated_sources += $(proto_intermediate_cpps)
Ying Wanga5fc87a2010-11-02 18:43:16 -0700830
Ying Wangfaeb6932015-04-07 11:59:34 -0700831my_c_includes += $(my_proto_c_includes)
832# Auto-export the generated proto source dir.
833my_export_c_include_dirs += $(my_proto_c_includes)
834
835ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c-enable_malloc)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700836 my_static_libraries += libprotobuf-c-nano-enable_malloc
Ying Wangfaeb6932015-04-07 11:59:34 -0700837else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nanopb-c)
Ying Wang8a0d53e2015-04-08 09:54:34 -0700838 my_static_libraries += libprotobuf-c-nano
Ying Wangfaeb6932015-04-07 11:59:34 -0700839else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full)
Dan Albertc3031c72014-11-11 10:42:17 -0800840 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700841 my_static_libraries += libprotobuf-cpp-full-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800842 else
843 my_shared_libraries += libprotobuf-cpp-full
844 endif
Yabin Cui72a11562016-06-07 19:21:12 -0700845else ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),lite-static)
846 my_static_libraries += libprotobuf-cpp-lite
Ying Wanga5fc87a2010-11-02 18:43:16 -0700847else
Dan Albertc3031c72014-11-11 10:42:17 -0800848 ifdef LOCAL_SDK_VERSION
Dan Alberta187fb52015-09-08 10:47:03 -0700849 my_static_libraries += libprotobuf-cpp-lite-ndk
Dan Albertc3031c72014-11-11 10:42:17 -0800850 else
851 my_shared_libraries += libprotobuf-cpp-lite
852 endif
Ying Wanga5fc87a2010-11-02 18:43:16 -0700853endif
Ying Wangead89442014-02-25 11:18:40 -0800854endif # $(proto_sources) non-empty
Ying Wanga5fc87a2010-11-02 18:43:16 -0700855
Ying Wanga5fc87a2010-11-02 18:43:16 -0700856###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700857## Compile the .dbus-xml files to c++ headers
Christopher Wileybc2be462015-07-29 17:14:24 -0700858###########################################################
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700859dbus_definitions := $(filter %.dbus-xml,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700860dbus_generated_headers :=
861ifneq ($(dbus_definitions),)
Christopher Wileybc2be462015-07-29 17:14:24 -0700862
Christopher Wiley529f1762015-08-14 14:55:32 -0700863dbus_definition_paths := $(addprefix $(LOCAL_PATH)/,$(dbus_definitions))
Christopher Wileybc2be462015-07-29 17:14:24 -0700864dbus_service_config := $(filter %dbus-service-config.json,$(my_src_files))
Christopher Wiley529f1762015-08-14 14:55:32 -0700865dbus_service_config_path := $(addprefix $(LOCAL_PATH)/,$(dbus_service_config))
Christopher Wileybc2be462015-07-29 17:14:24 -0700866
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800867# Mark these source files as not producing objects
868$(call track-src-file-obj,$(dbus_definitions) $(dbus_service_config),)
869
Christopher Wiley529f1762015-08-14 14:55:32 -0700870dbus_gen_dir := $(generated_sources_dir)/dbus_bindings
Christopher Wileybc2be462015-07-29 17:14:24 -0700871
Christopher Wiley529f1762015-08-14 14:55:32 -0700872ifdef LOCAL_DBUS_PROXY_PREFIX
873dbus_header_dir := $(dbus_gen_dir)/include/$(LOCAL_DBUS_PROXY_PREFIX)
874dbus_headers := dbus-proxies.h
875else
876dbus_header_dir := $(dbus_gen_dir)
Christopher Wiley9b17dea2015-08-20 09:08:17 -0700877dbus_headers := $(patsubst %.dbus-xml,%.h,$(dbus_definitions))
Christopher Wiley529f1762015-08-14 14:55:32 -0700878endif
879dbus_generated_headers := $(addprefix $(dbus_header_dir)/,$(dbus_headers))
Christopher Wileybc2be462015-07-29 17:14:24 -0700880
881# Ensure that we only define build rules once in multilib builds.
882ifndef $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
883$(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined := true
Christopher Wiley529f1762015-08-14 14:55:32 -0700884
885$(dbus_generated_headers): PRIVATE_MODULE := $(LOCAL_MODULE)
886$(dbus_generated_headers): PRIVATE_DBUS_SERVICE_CONFIG := $(dbus_service_config_path)
887$(dbus_generated_headers) : $(dbus_service_config_path) $(DBUS_GENERATOR)
888ifdef LOCAL_DBUS_PROXY_PREFIX
889$(dbus_generated_headers) : $(dbus_definition_paths)
890 $(generate-dbus-proxies)
Peter Qiu425e0192015-10-14 16:46:41 -0700891else
892$(dbus_generated_headers) : $(dbus_header_dir)/%.h : $(LOCAL_PATH)/%.dbus-xml
893 $(generate-dbus-adaptors)
894endif # $(LOCAL_DBUS_PROXY_PREFIX)
895endif # $(my_prefix)_$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_dbus_bindings_defined
Christopher Wiley529f1762015-08-14 14:55:32 -0700896
Peter Qiu425e0192015-10-14 16:46:41 -0700897ifdef LOCAL_DBUS_PROXY_PREFIX
Christopher Wiley529f1762015-08-14 14:55:32 -0700898# Auto-export the generated dbus proxy directory.
899my_export_c_include_dirs += $(dbus_gen_dir)/include
900my_c_includes += $(dbus_gen_dir)/include
901else
Christopher Wiley529f1762015-08-14 14:55:32 -0700902my_export_c_include_dirs += $(dbus_header_dir)
903my_c_includes += $(dbus_header_dir)
904endif # $(LOCAL_DBUS_PROXY_PREFIX)
Christopher Wileybc2be462015-07-29 17:14:24 -0700905
Christopher Wiley529f1762015-08-14 14:55:32 -0700906my_generated_sources += $(dbus_generated_headers)
907
908endif # $(dbus_definitions) non-empty
Christopher Wileybc2be462015-07-29 17:14:24 -0700909
910
911###########################################################
Christopher Wiley2df75d12015-10-14 17:27:24 -0700912## AIDL: Compile .aidl files to .cpp and .h files
913###########################################################
914aidl_src := $(strip $(filter %.aidl,$(my_src_files)))
915aidl_gen_cpp :=
916ifneq ($(aidl_src),)
917
Christopher Wiley257796c2016-01-19 08:58:35 -0800918# Use the intermediates directory to avoid writing our own .cpp -> .o rules.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700919aidl_gen_cpp_root := $(intermediates)/aidl-generated/src
920aidl_gen_include_root := $(intermediates)/aidl-generated/include
921
Christopher Wiley257796c2016-01-19 08:58:35 -0800922# Multi-architecture builds have distinct intermediates directories.
923# Thus we'll actually generate source for each architecture.
924$(foreach s,$(aidl_src),\
925 $(eval $(call define-aidl-cpp-rule,$(s),$(aidl_gen_cpp_root),aidl_gen_cpp)))
Christopher Wiley087f3272016-01-19 09:26:10 -0800926$(foreach cpp,$(aidl_gen_cpp), \
Shinichiro Hamaji2e45fd02016-01-25 18:59:43 +0900927 $(call include-depfile,$(addsuffix .aidl.P,$(basename $(cpp))),$(cpp)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800928$(call track-src-file-gen,$(aidl_src),$(aidl_gen_cpp))
Christopher Wiley2df75d12015-10-14 17:27:24 -0700929
Christopher Wiley2df75d12015-10-14 17:27:24 -0700930$(aidl_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
931$(aidl_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(aidl_gen_include_root)
932$(aidl_gen_cpp) : PRIVATE_AIDL_FLAGS := $(addprefix -I,$(LOCAL_AIDL_INCLUDES))
933
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800934# Add generated headers to include paths.
Christopher Wiley2df75d12015-10-14 17:27:24 -0700935my_c_includes += $(aidl_gen_include_root)
Christopher Wileyc7e936f2015-11-19 07:06:01 -0800936my_export_c_include_dirs += $(aidl_gen_include_root)
Christopher Wiley2df75d12015-10-14 17:27:24 -0700937# Pick up the generated C++ files later for transformation to .o files.
938my_generated_sources += $(aidl_gen_cpp)
939
940endif # $(aidl_src) non-empty
941
942###########################################################
Keun Soo Yim3d484752016-02-19 11:06:58 -0800943## Compile the .vts files to .cc (or .c) and then to .o
944###########################################################
945
946vts_src := $(strip $(filter %.vts,$(my_src_files)))
947vts_gen_cpp :=
948ifneq ($(vts_src),)
949
950# Use the intermediates directory to avoid writing our own .cpp -> .o rules.
951vts_gen_cpp_root := $(intermediates)/vts-generated/src
952vts_gen_include_root := $(intermediates)/vts-generated/include
953
954# Multi-architecture builds have distinct intermediates directories.
955# Thus we'll actually generate source for each architecture.
956$(foreach s,$(vts_src),\
957 $(eval $(call define-vts-cpp-rule,$(s),$(vts_gen_cpp_root),vts_gen_cpp)))
958$(foreach cpp,$(vts_gen_cpp), \
959 $(call include-depfile,$(addsuffix .vts.P,$(basename $(cpp))),$(cpp)))
960$(call track-src-file-gen,$(vts_src),$(vts_gen_cpp))
961
962$(vts_gen_cpp) : PRIVATE_MODULE := $(LOCAL_MODULE)
963$(vts_gen_cpp) : PRIVATE_HEADER_OUTPUT_DIR := $(vts_gen_include_root)
964$(vts_gen_cpp) : PRIVATE_VTS_FLAGS := $(addprefix -I,$(LOCAL_VTS_INCLUDES))
965
966# Add generated headers to include paths.
967my_c_includes += $(vts_gen_include_root)
968my_export_c_include_dirs += $(vts_gen_include_root)
969# Pick up the generated C++ files later for transformation to .o files.
970my_generated_sources += $(vts_gen_cpp)
971
972endif # $(vts_src) non-empty
973
974###########################################################
Ying Wangf0ebe162016-01-11 16:28:45 -0800975## YACC: Compile .y/.yy files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800976###########################################################
977
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000978y_yacc_sources := $(filter %.y,$(my_src_files))
Ying Wangf0ebe162016-01-11 16:28:45 -0800979y_yacc_cs := $(addprefix \
980 $(intermediates)/,$(y_yacc_sources:.y=.c))
981ifneq ($(y_yacc_cs),)
982$(y_yacc_cs): $(intermediates)/%.c: \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900983 $(TOPDIR)$(LOCAL_PATH)/%.y $(BISON) $(BISON_DATA) \
Ying Wangf0ebe162016-01-11 16:28:45 -0800984 $(my_additional_dependencies)
985 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800986$(call track-src-file-gen,$(y_yacc_sources),$(y_yacc_cs))
Ying Wangf0ebe162016-01-11 16:28:45 -0800987
988my_generated_sources += $(y_yacc_cs)
989endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000990
991yy_yacc_sources := $(filter %.yy,$(my_src_files))
992yy_yacc_cpps := $(addprefix \
993 $(intermediates)/,$(yy_yacc_sources:.yy=$(LOCAL_CPP_EXTENSION)))
Ying Wangf0ebe162016-01-11 16:28:45 -0800994ifneq ($(yy_yacc_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +0000995$(yy_yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
Shinichiro Hamajib708bc52016-04-05 20:12:48 +0900996 $(TOPDIR)$(LOCAL_PATH)/%.yy $(BISON) $(BISON_DATA) \
Ying Wangf0ebe162016-01-11 16:28:45 -0800997 $(my_additional_dependencies)
998 $(call transform-y-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -0800999$(call track-src-file-gen,$(yy_yacc_sources),$(yy_yacc_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +00001000
Ying Wangf0ebe162016-01-11 16:28:45 -08001001my_generated_sources += $(yy_yacc_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001002endif
1003
1004###########################################################
Ying Wangf0ebe162016-01-11 16:28:45 -08001005## LEX: Compile .l/.ll files to .c/.cpp and then to .o.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001006###########################################################
1007
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +00001008l_lex_sources := $(filter %.l,$(my_src_files))
Ying Wangf0ebe162016-01-11 16:28:45 -08001009l_lex_cs := $(addprefix \
1010 $(intermediates)/,$(l_lex_sources:.l=.c))
1011ifneq ($(l_lex_cs),)
1012$(l_lex_cs): $(intermediates)/%.c: \
1013 $(TOPDIR)$(LOCAL_PATH)/%.l
1014 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001015$(call track-src-file-gen,$(l_lex_sources),$(l_lex_cs))
Ying Wangf0ebe162016-01-11 16:28:45 -08001016
1017my_generated_sources += $(l_lex_cs)
1018endif
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +00001019
1020ll_lex_sources := $(filter %.ll,$(my_src_files))
1021ll_lex_cpps := $(addprefix \
1022 $(intermediates)/,$(ll_lex_sources:.ll=$(LOCAL_CPP_EXTENSION)))
Ying Wangf0ebe162016-01-11 16:28:45 -08001023ifneq ($(ll_lex_cpps),)
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +00001024$(ll_lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \
1025 $(TOPDIR)$(LOCAL_PATH)/%.ll
Ying Wangf0ebe162016-01-11 16:28:45 -08001026 $(transform-l-to-c-or-cpp)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001027$(call track-src-file-gen,$(ll_lex_sources),$(ll_lex_cpps))
Nicolas Geoffray9484e2e2014-03-03 15:57:06 +00001028
Ying Wangf0ebe162016-01-11 16:28:45 -08001029my_generated_sources += $(ll_lex_cpps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001030endif
1031
1032###########################################################
1033## C++: Compile .cpp files to .o.
1034###########################################################
1035
Jeff Browne33ba4c2011-07-11 22:11:46 -07001036# we also do this on host modules, even though
The Android Open Source Project88b60792009-03-03 19:28:42 -08001037# it's not really arm, because there are files that are shared.
Ying Wangfb22a422015-03-10 18:03:11 -07001038cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(my_src_files)))
1039dotdot_arm_sources := $(filter ../%,$(cpp_arm_sources))
1040cpp_arm_sources := $(filter-out ../%,$(cpp_arm_sources))
1041cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001042$(call track-src-file-obj,$(patsubst %,%.arm,$(cpp_arm_sources)),$(cpp_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001043
Ying Wangfb22a422015-03-10 18:03:11 -07001044# For source files starting with ../, we remove all the ../ in the object file path,
1045# to avoid object file escaping the intermediate directory.
1046dotdot_arm_objects :=
1047$(foreach s,$(dotdot_arm_sources),\
1048 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001049 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001050 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001051$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001052
1053dotdot_sources := $(filter ../%$(LOCAL_CPP_EXTENSION),$(my_src_files))
1054dotdot_objects :=
1055$(foreach s,$(dotdot_sources),\
1056 $(eval $(call compile-dotdot-cpp-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001057 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001058 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001059$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001060
1061cpp_normal_sources := $(filter-out ../%,$(filter %$(LOCAL_CPP_EXTENSION),$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001062cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001063$(call track-src-file-obj,$(cpp_normal_sources),$(cpp_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001064
Ying Wangfb22a422015-03-10 18:03:11 -07001065$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
1066$(dotdot_arm_objects) $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
1067$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1068$(dotdot_objects) $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001069
1070cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects)
1071
1072ifneq ($(strip $(cpp_objects)),)
1073$(cpp_objects): $(intermediates)/%.o: \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001074 $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -08001075 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001076 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001077$(call include-depfiles-for-objs, $(cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001078endif
1079
Ying Wangfb22a422015-03-10 18:03:11 -07001080cpp_objects += $(dotdot_arm_objects) $(dotdot_objects)
1081
The Android Open Source Project88b60792009-03-03 19:28:42 -08001082###########################################################
1083## C++: Compile generated .cpp files to .o.
1084###########################################################
1085
Ying Wangec6d6262014-01-16 16:21:03 -08001086gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001087gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001088$(call track-gen-file-obj,$(gen_cpp_sources),$(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001089
1090ifneq ($(strip $(gen_cpp_objects)),)
1091# Compile all generated files as thumb.
1092# TODO: support compiling certain generated files as arm.
1093$(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1094$(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001095$(gen_cpp_objects): $(intermediates)/%.o: \
Ying Wang05f9f352016-05-05 20:02:08 -07001096 $(intermediates)/%$(LOCAL_CPP_EXTENSION) \
Dan Albert954b5bd2014-11-08 22:20:03 -08001097 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001098 $(transform-$(PRIVATE_HOST)cpp-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001099$(call include-depfiles-for-objs, $(gen_cpp_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001100endif
1101
1102###########################################################
1103## S: Compile generated .S and .s files to .o.
1104###########################################################
1105
Ying Wangec6d6262014-01-16 16:21:03 -08001106gen_S_sources := $(filter %.S,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001107gen_S_objects := $(gen_S_sources:%.S=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001108$(call track-gen-file-obj,$(gen_S_sources),$(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001109
1110ifneq ($(strip $(gen_S_sources)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001111$(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001112 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001113 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001114$(call include-depfiles-for-objs, $(gen_S_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001115endif
1116
Ying Wangec6d6262014-01-16 16:21:03 -08001117gen_s_sources := $(filter %.s,$(my_generated_sources))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001118gen_s_objects := $(gen_s_sources:%.s=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001119$(call track-gen-file-obj,$(gen_s_sources),$(gen_s_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001120
1121ifneq ($(strip $(gen_s_objects)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001122$(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001123 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001124 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001125endif
1126
1127gen_asm_objects := $(gen_S_objects) $(gen_s_objects)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001128$(gen_asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001129
1130###########################################################
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001131## o: Include generated .o files in output.
1132###########################################################
1133
Ying Wangec6d6262014-01-16 16:21:03 -08001134gen_o_objects := $(filter %.o,$(my_generated_sources))
Torne (Richard Coles)aace2022013-02-21 14:01:35 +00001135
1136###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001137## C: Compile .c files to .o.
1138###########################################################
1139
Ying Wangfb22a422015-03-10 18:03:11 -07001140c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(my_src_files)))
1141dotdot_arm_sources := $(filter ../%,$(c_arm_sources))
1142c_arm_sources := $(filter-out ../%,$(c_arm_sources))
1143c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001144$(call track-src-file-obj,$(patsubst %,%.arm,$(c_arm_sources)),$(c_arm_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001145
Ying Wangfb22a422015-03-10 18:03:11 -07001146# For source files starting with ../, we remove all the ../ in the object file path,
1147# to avoid object file escaping the intermediate directory.
1148dotdot_arm_objects :=
1149$(foreach s,$(dotdot_arm_sources),\
1150 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001151 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001152 dotdot_arm_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001153$(call track-src-file-obj,$(patsubst %,%.arm,$(dotdot_arm_sources)),$(dotdot_arm_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001154
1155dotdot_sources := $(filter ../%.c, $(my_src_files))
1156dotdot_objects :=
1157$(foreach s, $(dotdot_sources),\
1158 $(eval $(call compile-dotdot-c-file,$(s),\
Ying Wang05f9f352016-05-05 20:02:08 -07001159 $(my_additional_dependencies),\
Ying Wangfb22a422015-03-10 18:03:11 -07001160 dotdot_objects)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001161$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects))
Ying Wangfb22a422015-03-10 18:03:11 -07001162
1163c_normal_sources := $(filter-out ../%,$(filter %.c,$(my_src_files)))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001164c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001165$(call track-src-file-obj,$(c_normal_sources),$(c_normal_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001166
Ying Wangfb22a422015-03-10 18:03:11 -07001167$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode)
1168$(dotdot_arm_objects) $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags)
1169$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1170$(dotdot_objects) $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001171
1172c_objects := $(c_arm_objects) $(c_normal_objects)
1173
1174ifneq ($(strip $(c_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001175$(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001176 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001177 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001178$(call include-depfiles-for-objs, $(c_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001179endif
1180
Ying Wangfb22a422015-03-10 18:03:11 -07001181c_objects += $(dotdot_arm_objects) $(dotdot_objects)
1182
The Android Open Source Project88b60792009-03-03 19:28:42 -08001183###########################################################
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001184## C: Compile generated .c files to .o.
1185###########################################################
1186
Ying Wangec6d6262014-01-16 16:21:03 -08001187gen_c_sources := $(filter %.c,$(my_generated_sources))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001188gen_c_objects := $(gen_c_sources:%.c=%.o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001189$(call track-gen-file-obj,$(gen_c_sources),$(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001190
1191ifneq ($(strip $(gen_c_objects)),)
1192# Compile all generated files as thumb.
1193# TODO: support compiling certain generated files as arm.
1194$(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode)
1195$(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
Ying Wang05f9f352016-05-05 20:02:08 -07001196$(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c \
Dan Albert954b5bd2014-11-08 22:20:03 -08001197 $(my_additional_dependencies)
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001198 $(transform-$(PRIVATE_HOST)c-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001199$(call include-depfiles-for-objs, $(gen_c_objects))
Jack Paleviche7b3e2c2009-05-04 14:32:44 -07001200endif
1201
1202###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001203## ObjC: Compile .m files to .o
1204###########################################################
1205
Ying Wangb8e01852014-01-23 15:09:04 -08001206objc_sources := $(filter %.m,$(my_src_files))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001207objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001208$(call track-src-file-obj,$(objc_sources),$(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001209
1210ifneq ($(strip $(objc_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001211$(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m \
Dan Albert954b5bd2014-11-08 22:20:03 -08001212 $(my_additional_dependencies)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001213 $(transform-$(PRIVATE_HOST)m-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001214$(call include-depfiles-for-objs, $(objc_objects))
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001215endif
1216
1217###########################################################
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001218## ObjC++: Compile .mm files to .o
1219###########################################################
1220
1221objcpp_sources := $(filter %.mm,$(my_src_files))
1222objcpp_objects := $(addprefix $(intermediates)/,$(objcpp_sources:.mm=.o))
Dan Willemsen62f2e562016-02-01 18:55:23 -08001223$(call track-src-file-obj,$(objcpp_sources),$(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001224
1225ifneq ($(strip $(objcpp_objects)),)
Ying Wang05f9f352016-05-05 20:02:08 -07001226$(objcpp_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.mm \
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001227 $(my_additional_dependencies)
1228 $(transform-$(PRIVATE_HOST)mm-to-o)
Shinichiro Hamaji4037c422016-03-03 18:12:52 +09001229$(call include-depfiles-for-objs, $(objcpp_objects))
Scott James Remnantdd86e5a2015-09-17 15:40:49 -07001230endif
1231
1232###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001233## AS: Compile .S files to .o.
1234###########################################################
1235
Ying Wangb8e01852014-01-23 15:09:04 -08001236asm_sources_S := $(filter %.S,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001237dotdot_sources := $(filter ../%,$(asm_sources_S))
1238asm_sources_S := $(filter-out ../%,$(asm_sources_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001239asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001240$(call track-src-file-obj,$(asm_sources_S),$(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001241
Ying Wangfb22a422015-03-10 18:03:11 -07001242dotdot_objects_S :=
1243$(foreach s,$(dotdot_sources),\
1244 $(eval $(call compile-dotdot-s-file,$(s),\
1245 $(my_additional_dependencies),\
1246 dotdot_objects_S)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001247$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_S))
Ying Wangfb22a422015-03-10 18:03:11 -07001248
The Android Open Source Project88b60792009-03-03 19:28:42 -08001249ifneq ($(strip $(asm_objects_S)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001250$(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \
Dan Albert954b5bd2014-11-08 22:20:03 -08001251 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001252 $(transform-$(PRIVATE_HOST)s-to-o)
Shinichiro Hamaji72904772016-03-16 06:40:04 +09001253$(call include-depfiles-for-objs, $(asm_objects_S))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001254endif
1255
Ying Wangb8e01852014-01-23 15:09:04 -08001256asm_sources_s := $(filter %.s,$(my_src_files))
Ying Wangfb22a422015-03-10 18:03:11 -07001257dotdot_sources := $(filter ../%,$(asm_sources_s))
1258asm_sources_s := $(filter-out ../%,$(asm_sources_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001259asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001260$(call track-src-file-obj,$(asm_sources_s),$(asm_objects_s))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001261
Ying Wangfb22a422015-03-10 18:03:11 -07001262dotdot_objects_s :=
1263$(foreach s,$(dotdot_sources),\
1264 $(eval $(call compile-dotdot-s-file-no-deps,$(s),\
1265 $(my_additional_dependencies),\
1266 dotdot_objects_s)))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001267$(call track-src-file-obj,$(dotdot_sources),$(dotdot_objects_s))
Ying Wangfb22a422015-03-10 18:03:11 -07001268
The Android Open Source Project88b60792009-03-03 19:28:42 -08001269ifneq ($(strip $(asm_objects_s)),)
Evgeniy Stepanovb71e2df2012-03-20 18:00:16 +04001270$(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \
Dan Albert954b5bd2014-11-08 22:20:03 -08001271 $(my_additional_dependencies)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001272 $(transform-$(PRIVATE_HOST)s-to-o-no-deps)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001273endif
1274
Ying Wangfb22a422015-03-10 18:03:11 -07001275asm_objects := $(dotdot_objects_S) $(dotdot_objects_s) $(asm_objects_S) $(asm_objects_s)
Dan Willemsen45d38c02016-01-15 16:38:46 -08001276$(asm_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001277
1278
Ying Wangfe1e5c32015-03-09 18:57:40 -07001279# .asm for x86/x86_64 needs to be compiled with yasm.
Ying Wang7b913ce2014-06-05 19:05:47 -07001280asm_sources_asm := $(filter %.asm,$(my_src_files))
1281ifneq ($(strip $(asm_sources_asm)),)
1282asm_objects_asm := $(addprefix $(intermediates)/,$(asm_sources_asm:.asm=.o))
1283$(asm_objects_asm): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.asm \
Dan Albert954b5bd2014-11-08 22:20:03 -08001284 $(my_additional_dependencies)
Ying Wang7b913ce2014-06-05 19:05:47 -07001285 $(transform-asm-to-o)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001286$(call track-src-file-obj,$(asm_sources_asm),$(asm_objects_asm))
Ying Wang7b913ce2014-06-05 19:05:47 -07001287
1288asm_objects += $(asm_objects_asm)
1289endif
Ying Wang7b913ce2014-06-05 19:05:47 -07001290
Jeff Davidson680f0712015-01-08 18:25:30 -08001291
1292##########################################################
1293## Set up installed module dependency
1294## We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for
1295## they may cusomize their install path with LOCAL_MODULE_PATH
1296##########################################################
1297# Get the list of INSTALLED libraries as module names.
1298ifdef LOCAL_SDK_VERSION
1299 installed_shared_library_module_names := \
1300 $(my_shared_libraries)
1301else
1302 installed_shared_library_module_names := \
1303 $(my_shared_libraries) $(my_system_shared_libraries)
1304endif
1305
1306# The real dependency will be added after all Android.mks are loaded and the install paths
1307# of the shared libraries are determined.
1308ifdef LOCAL_INSTALLED_MODULE
1309ifdef installed_shared_library_module_names
1310$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
1311 $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(sort $(installed_shared_library_module_names)))
1312endif
1313endif
1314
1315
Ying Wang5f074802011-11-08 09:31:21 -08001316####################################################
1317## Import includes
1318####################################################
1319import_includes := $(intermediates)/import_includes
1320import_includes_deps := $(strip \
1321 $(foreach l, $(installed_shared_library_module_names), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001322 $(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 -08001323 $(foreach l, $(my_static_libraries) $(my_whole_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001324 $(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 -08001325$(import_includes): PRIVATE_IMPORT_EXPORT_INCLUDES := $(import_includes_deps)
Dan Willemsen1c6dc5b2016-01-06 14:28:36 -08001326$(import_includes) : $(import_includes_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001327 @echo Import includes file: $@
1328 $(hide) mkdir -p $(dir $@) && rm -f $@
1329ifdef import_includes_deps
Ying Wang14d02a32015-01-22 15:44:04 -08001330 $(hide) for f in $(PRIVATE_IMPORT_EXPORT_INCLUDES); do \
Ying Wang5f074802011-11-08 09:31:21 -08001331 cat $$f >> $@; \
1332 done
1333else
1334 $(hide) touch $@
1335endif
1336
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001337####################################################
1338## Verify that NDK-built libraries only link against
1339## other NDK-built libraries
1340####################################################
1341
1342my_link_type := $(intermediates)/link_type
1343ifdef LOCAL_SDK_VERSION
1344$(my_link_type): PRIVATE_LINK_TYPE := ndk
1345$(my_link_type): PRIVATE_ALLOWED_TYPES := ndk
1346else
1347$(my_link_type): PRIVATE_LINK_TYPE := platform
1348$(my_link_type): PRIVATE_ALLOWED_TYPES := (ndk|platform)
1349endif
1350my_link_type_deps := $(strip \
1351 $(foreach l,$(my_whole_static_libraries) $(my_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001352 $(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 -07001353ifneq ($(LOCAL_MODULE_CLASS),STATIC_LIBRARIES)
1354my_link_type_deps += $(strip \
1355 $(foreach l,$(my_shared_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001356 $(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 -07001357endif
1358$(my_link_type): PRIVATE_DEPS := $(my_link_type_deps)
1359$(my_link_type): PRIVATE_MODULE := $(LOCAL_MODULE)
1360$(my_link_type): PRIVATE_MAKEFILE := $(LOCAL_MODULE_MAKEFILE)
1361$(my_link_type): $(my_link_type_deps)
1362 @echo Check module type: $@
1363 $(hide) mkdir -p $(dir $@) && rm -f $@
1364ifdef my_link_type_deps
1365 $(hide) for f in $(PRIVATE_DEPS); do \
1366 grep -qE '^$(PRIVATE_ALLOWED_TYPES)$$' $$f || \
Dan Willemsenac1fe5c2016-07-12 13:10:31 -07001367 ($(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 -07001368 done
1369endif
1370 $(hide) echo $(PRIVATE_LINK_TYPE) >$@
1371
1372
The Android Open Source Project88b60792009-03-03 19:28:42 -08001373###########################################################
1374## Common object handling.
1375###########################################################
1376
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001377my_unused_src_files := $(filter-out $(logtags_sources) $(my_tracked_src_files),$(my_src_files) $(my_gen_src_files))
1378ifneq ($(my_unused_src_files),)
Dan Willemsen9efeb1e2016-06-28 10:22:08 -07001379 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Unused source files: $(my_unused_src_files))
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001380endif
1381
The Android Open Source Project88b60792009-03-03 19:28:42 -08001382# some rules depend on asm_objects being first. If your code depends on
1383# being first, it's reasonable to require it to be assembly
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001384normal_objects := \
Ying Wangdfbe79b2012-03-22 11:26:22 -07001385 $(asm_objects) \
1386 $(cpp_objects) \
1387 $(gen_cpp_objects) \
1388 $(gen_asm_objects) \
1389 $(c_objects) \
1390 $(gen_c_objects) \
1391 $(objc_objects) \
Ying Wang05f9f352016-05-05 20:02:08 -07001392 $(objcpp_objects)
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001393
1394new_order_normal_objects := $(foreach f,$(my_src_files),$(my_src_file_obj_$(f)))
1395new_order_normal_objects += $(foreach f,$(my_gen_src_files),$(my_src_file_obj_$(f)))
1396
1397ifneq ($(sort $(normal_objects)),$(sort $(new_order_normal_objects)))
1398$(warning $(LOCAL_MODULE_MAKEFILE) Internal build system warning: New object list does not match old)
1399$(info Only in old: $(filter-out $(new_order_normal_objects),$(sort $(normal_objects))))
1400$(info Only in new: $(filter-out $(normal_objects),$(sort $(new_order_normal_objects))))
1401endif
1402
1403ifeq ($(BINARY_OBJECTS_ORDER),soong)
1404normal_objects := $(new_order_normal_objects)
1405endif
1406
1407normal_objects += $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES))
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001408
1409all_objects := $(normal_objects) $(gen_o_objects)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001410
Dan Willemsen3bb168f2016-01-19 20:07:08 -08001411# Cleanup file tracking
1412$(foreach f,$(my_tracked_gen_files),$(eval my_src_file_gen_$(s):=))
1413my_tracked_gen_files :=
1414$(foreach f,$(my_tracked_src_files),$(eval my_src_file_obj_$(s):=))
1415my_tracked_src_files :=
1416
Colin Cross2d206702014-02-13 13:41:52 -08001417my_c_includes += $(TOPDIR)$(LOCAL_PATH) $(intermediates) $(generated_sources_dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001418
Ying Wang848020f2012-08-14 10:13:16 -07001419ifndef LOCAL_SDK_VERSION
Ying Wang6ef65192014-01-15 16:02:16 -08001420 my_c_includes += $(JNI_H_INCLUDE)
Ying Wangbce4b752010-07-22 15:51:56 -07001421endif
1422
Dan Willemsen062e30b2016-05-24 13:06:07 -07001423my_outside_includes := $(filter-out $(OUT_DIR)/%,$(filter /%,$(my_c_includes)))
1424ifneq ($(my_outside_includes),)
1425$(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): C_INCLUDES must be under the source or output directories: $(my_outside_includes))
1426endif
1427
Torne (Richard Coles)a5afbe82013-08-29 15:36:34 +01001428# all_objects includes gen_o_objects which were part of LOCAL_GENERATED_SOURCES;
1429# use normal_objects here to avoid creating circular dependencies. This assumes
1430# that custom build rules which generate .o files don't consume other generated
1431# sources as input (or if they do they take care of that dependency themselves).
Ying Wangec6d6262014-01-16 16:21:03 -08001432$(normal_objects) : | $(my_generated_sources)
Colin Cross6b9bddd2015-11-30 17:33:26 -08001433$(all_objects) : $(import_includes)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001434ALL_C_CPP_ETC_OBJECTS += $(all_objects)
1435
The Android Open Source Project88b60792009-03-03 19:28:42 -08001436
1437###########################################################
1438# Standard library handling.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001439###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001440
1441###########################################################
1442# The list of libraries that this module will link against are in
1443# these variables. Each is a list of bare module names like "libc libm".
1444#
1445# LOCAL_SHARED_LIBRARIES
1446# LOCAL_STATIC_LIBRARIES
1447# LOCAL_WHOLE_STATIC_LIBRARIES
1448#
1449# We need to convert the bare names into the dependencies that
1450# we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE.
1451# LOCAL_BUILT_MODULE should depend on the BUILT versions of the
1452# libraries, so that simply building this module doesn't force
1453# an install of a library. Similarly, LOCAL_INSTALLED_MODULE
1454# should depend on the INSTALLED versions of the libraries so
1455# that they get installed when this module does.
1456###########################################################
1457# NOTE:
1458# WHOLE_STATIC_LIBRARIES are libraries that are pulled into the
1459# module without leaving anything out, which is useful for turning
1460# a collection of .a files into a .so file. Linking against a
1461# normal STATIC_LIBRARY will only pull in code/symbols that are
1462# referenced by the module. (see gcc/ld's --whole-archive option)
1463###########################################################
1464
1465# Get the list of BUILT libraries, which are under
1466# various intermediates directories.
1467so_suffix := $($(my_prefix)SHLIB_SUFFIX)
1468a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX)
1469
Ying Wang848020f2012-08-14 10:13:16 -07001470ifdef LOCAL_SDK_VERSION
The Android Open Source Project88b60792009-03-03 19:28:42 -08001471built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001472 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001473 $(addsuffix $(so_suffix), \
Ying Wang6ef65192014-01-15 16:02:16 -08001474 $(my_shared_libraries)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001475built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001476
Ying Wangd8d37212014-03-21 16:17:04 -07001477# Add the NDK libraries to the built module dependency
Ying Wangcce4c972011-03-03 18:53:53 -08001478my_system_shared_libraries_fullpath := \
1479 $(my_ndk_stl_shared_lib_fullpath) \
Andrew Hsieh140761af02014-04-25 23:47:10 -07001480 $(addprefix $(my_ndk_sysroot_lib)/, \
Ying Wangd8d37212014-03-21 16:17:04 -07001481 $(addsuffix $(so_suffix), $(my_system_shared_libraries)))
Ying Wang1a081002010-07-13 14:55:47 -07001482
Dan Albertc1ca1902016-08-04 14:14:50 -07001483# We need to preserve the ordering of LOCAL_SHARED_LIBRARIES regardless of
1484# whether the libs are generated or prebuilt, so we simply can't split into two
1485# lists and use addprefix.
1486my_ndk_shared_libraries_fullpath := \
1487 $(foreach _lib,$(my_ndk_shared_libraries),\
1488 $(if $(filter $(NDK_MIGRATED_LIBS),$(_lib)),\
1489 $(my_built_ndk_libs)/$(_lib)$(so_suffix),\
1490 $(my_ndk_sysroot_lib)/$(_lib)$(so_suffix)))
Dan Albert02bf1382016-07-21 10:04:12 -07001491
1492built_shared_libraries += \
Dan Albertc1ca1902016-08-04 14:14:50 -07001493 $(my_ndk_shared_libraries_fullpath) \
Dan Albert02bf1382016-07-21 10:04:12 -07001494 $(my_system_shared_libraries_fullpath) \
1495
Ying Wang1a081002010-07-13 14:55:47 -07001496else
Ying Wang1a081002010-07-13 14:55:47 -07001497built_shared_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001498 $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang1a081002010-07-13 14:55:47 -07001499 $(addsuffix $(so_suffix), \
Ying Wangd8d37212014-03-21 16:17:04 -07001500 $(installed_shared_library_module_names)))
Ying Wangc01f2dc2015-12-15 10:00:19 -08001501ifdef LOCAL_IS_HOST_MODULE
1502# Disable .toc optimization for host modules: we may run the host binaries during the build process
1503# and the libraries' implementation matters.
1504built_shared_library_deps := $(built_shared_libraries)
1505else
1506built_shared_library_deps := $(addsuffix .toc, $(built_shared_libraries))
1507endif
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001508my_system_shared_libraries_fullpath :=
Ying Wang1a081002010-07-13 14:55:47 -07001509endif
1510
The Android Open Source Project88b60792009-03-03 19:28:42 -08001511built_static_libraries := \
Ying Wang6ef65192014-01-15 16:02:16 -08001512 $(foreach lib,$(my_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001513 $(call intermediates-dir-for, \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001514 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 -08001515
Ying Wang848020f2012-08-14 10:13:16 -07001516ifdef LOCAL_SDK_VERSION
Ying Wangcce4c972011-03-03 18:53:53 -08001517built_static_libraries += $(my_ndk_stl_static_lib)
1518endif
1519
The Android Open Source Project88b60792009-03-03 19:28:42 -08001520built_whole_libraries := \
Colin Cross90353fe2014-02-04 14:53:25 -08001521 $(foreach lib,$(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001522 $(call intermediates-dir-for, \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001523 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 -08001524
The Android Open Source Project88b60792009-03-03 19:28:42 -08001525# We don't care about installed static libraries, since the
1526# libraries have already been linked into the module at that point.
1527# We do, however, care about the NOTICE files for any static
Steve Blockd14d3b42012-03-01 11:34:41 +00001528# libraries that we use. (see notice_files.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001529
1530installed_static_library_notice_file_targets := \
Colin Cross90353fe2014-02-04 14:53:25 -08001531 $(foreach lib,$(my_static_libraries) $(my_whole_static_libraries), \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001532 NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib))
1533
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001534# Default is -fno-rtti.
Doug Kwane3c3c6d2011-06-07 10:55:48 -07001535ifeq ($(strip $(LOCAL_RTTI_FLAG)),)
1536LOCAL_RTTI_FLAG := -fno-rtti
1537endif
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001538
The Android Open Source Project88b60792009-03-03 19:28:42 -08001539###########################################################
1540# Rule-specific variable definitions
1541###########################################################
Logan Chiene6f65432013-12-10 19:07:41 +08001542
Ying Wang824344a2014-05-27 13:03:36 -07001543ifeq ($(my_clang),true)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001544my_cflags += $(LOCAL_CLANG_CFLAGS)
Stephen Hines15680292014-11-26 00:53:46 -08001545my_conlyflags += $(LOCAL_CLANG_CONLYFLAGS)
Dan Albertd2fa96d2014-11-28 14:00:12 -08001546my_cppflags += $(LOCAL_CLANG_CPPFLAGS)
Dan Albertd1600412015-06-10 16:33:43 -07001547my_cflags_no_override += $(GLOBAL_CLANG_CFLAGS_NO_OVERRIDE)
1548my_cppflags_no_override += $(GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE)
Chih-Hung Hsieh9aa69a62014-09-04 17:15:47 -07001549my_asflags += $(LOCAL_CLANG_ASFLAGS)
1550my_ldflags += $(LOCAL_CLANG_LDFLAGS)
Chih-Hung Hsieh619fdb82014-09-26 17:13:48 -07001551my_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 -08001552my_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 -07001553my_cppflags += $(LOCAL_CLANG_CPPFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_CPPFLAGS_$(my_32_64_bit_suffix))
1554my_ldflags += $(LOCAL_CLANG_LDFLAGS_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) $(LOCAL_CLANG_LDFLAGS_$(my_32_64_bit_suffix))
1555my_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 -07001556my_cflags := $(call convert-to-clang-flags,$(my_cflags))
1557my_cppflags := $(call convert-to-clang-flags,$(my_cppflags))
1558my_asflags := $(call convert-to-clang-flags,$(my_asflags))
1559my_ldflags := $(call convert-to-clang-flags,$(my_ldflags))
Dan Austin75e7af12016-04-06 11:18:30 -07001560else
1561# gcc does not handle hidden functions in a manner compatible with LLVM libcxx
1562# see b/27908145
1563my_cflags += -Wno-attributes
Logan Chiene6f65432013-12-10 19:07:41 +08001564endif
1565
Ying Wang45d01432014-10-28 14:50:59 -07001566ifeq ($(my_fdo_build), true)
1567 my_cflags := $(patsubst -Os,-O2,$(my_cflags))
1568 fdo_incompatible_flags := -fno-early-inlining -finline-limit=%
1569 my_cflags := $(filter-out $(fdo_incompatible_flags),$(my_cflags))
Dehao Chen295a6d22014-09-19 10:18:12 -07001570endif
1571
Dan Albertdf3fd1d2015-08-12 14:54:16 -07001572# No one should ever use this flag. On GCC it's mere presence will disable all
1573# warnings, even those that are specified after it (contrary to typical warning
1574# flag behavior). This circumvents CFLAGS_NO_OVERRIDE from forcibly enabling the
1575# warnings that are *always* bugs.
1576my_illegal_flags := -w
1577my_cflags := $(filter-out $(my_illegal_flags),$(my_cflags))
1578my_cppflags := $(filter-out $(my_illegal_flags),$(my_cppflags))
1579my_conlyflags := $(filter-out $(my_illegal_flags),$(my_conlyflags))
1580
Dan Albert5ae31dd2016-01-29 16:51:51 -08001581# We can enforce some rules more strictly in the code we own. my_strict
1582# indicates if this is code that we can be stricter with. If we have rules that
1583# we want to apply to *our* code (but maybe can't for vendor/device specific
1584# things), we could extend this to be a ternary value.
1585my_strict := true
1586ifneq ($(filter external/%,$(LOCAL_PATH)),)
1587 my_strict := false
1588endif
1589
1590# Can be used to make some annotations stricter for code we can fix (such as
1591# when we mark functions as deprecated).
1592ifeq ($(my_strict),true)
1593 my_cflags += -DANDROID_STRICT
1594endif
1595
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001596# Disable clang-tidy if it is not found.
1597ifeq ($(PATH_TO_CLANG_TIDY),)
1598 my_tidy_enabled := false
1599else
1600 # If LOCAL_TIDY is not defined, use global WITH_TIDY
1601 my_tidy_enabled := $(LOCAL_TIDY)
1602 ifeq ($(my_tidy_enabled),)
1603 my_tidy_enabled := $(WITH_TIDY)
1604 endif
1605endif
1606
1607# my_tidy_checks is empty if clang-tidy is disabled.
1608my_tidy_checks :=
1609my_tidy_flags :=
1610ifneq (,$(filter 1 true,$(my_tidy_enabled)))
1611 ifneq ($(my_clang),true)
1612 # Disable clang-tidy if clang is disabled.
1613 my_tidy_enabled := false
1614 else
1615 tidy_only: $(cpp_objects) $(c_objects)
1616 # Set up global default checks
1617 my_tidy_checks := $(WITH_TIDY_CHECKS)
1618 ifeq ($(my_tidy_checks),)
Chih-Hung Hsieh460171a2016-04-21 15:37:24 -07001619 my_tidy_checks := $(call default_global_tidy_checks,$(LOCAL_PATH))
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001620 endif
1621 # Append local clang-tidy checks.
1622 ifneq ($(LOCAL_TIDY_CHECKS),)
1623 my_tidy_checks := $(my_tidy_checks),$(LOCAL_TIDY_CHECKS)
1624 endif
1625 # Set up global default clang-tidy flags, which is none.
1626 my_tidy_flags := $(WITH_TIDY_FLAGS)
1627 # Use local clang-tidy flags if specified.
1628 ifneq ($(LOCAL_TIDY_FLAGS),)
1629 my_tidy_flags := $(LOCAL_TIDY_FLAGS)
1630 endif
Chih-Hung Hsieh870f0872016-06-02 15:20:05 -07001631 # If tidy flags are not specified, default to check all header files.
1632 ifeq ($(my_tidy_flags),)
1633 my_tidy_flags := -header-filter=.*
1634 endif
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001635 endif
1636endif
1637
Dan Willemsen6731b492016-06-07 16:55:57 -07001638# Move -l* entries from ldflags to ldlibs, and everything else to ldflags
1639my_ldlib_flags := $(my_ldflags) $(my_ldlibs)
1640my_ldlibs := $(filter -l%,$(my_ldlib_flags))
1641my_ldflags := $(filter-out -l%,$(my_ldlib_flags))
1642
1643# One last verification check for ldlibs
1644ifndef LOCAL_IS_HOST_MODULE
1645my_allowed_ldlibs :=
1646ifdef LOCAL_SDK_VERSION
1647 my_allowed_ldlibs := $(addprefix -l,$(NDK_PREBUILT_SHARED_LIBRARIES))
1648endif
1649
1650my_bad_ldlibs := $(filter-out $(my_allowed_ldlibs),$(my_ldlibs))
1651ifneq ($(my_bad_ldlibs),)
1652 $(error $(LOCAL_MODULE_MAKEFILE): $(LOCAL_MODULE): Bad LOCAL_LDLIBS entries: $(my_bad_ldlibs))
1653endif
1654endif
1655
The Android Open Source Project88b60792009-03-03 19:28:42 -08001656$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS)
Ying Wang6ef65192014-01-15 16:02:16 -08001657$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(my_asflags)
Stephen Hines15680292014-11-26 00:53:46 -08001658$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(my_conlyflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001659$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(my_cflags)
1660$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(my_cppflags)
Dan Albertd1600412015-06-10 16:33:43 -07001661$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS_NO_OVERRIDE := $(my_cflags_no_override)
1662$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS_NO_OVERRIDE := $(my_cppflags_no_override)
Doug Kwan9a8ecf92011-05-10 21:50:58 -07001663$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001664$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags)
Ying Wang6ef65192014-01-15 16:02:16 -08001665$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(my_c_includes)
Ying Wang5f074802011-11-08 09:31:21 -08001666$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes)
Ying Wang6ef65192014-01-15 16:02:16 -08001667$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(my_ldflags)
Dan Albertb05f2ca2014-09-12 14:46:57 -07001668$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(my_ldlibs)
Chih-Hung Hsieha9a55c72016-03-31 16:30:23 -07001669$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_CHECKS := $(my_tidy_checks)
1670$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TIDY_FLAGS := $(my_tidy_flags)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001671
1672# this is really the way to get the files onto the command line instead
1673# of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work
1674$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries)
1675$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries)
1676$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries)
Ying Wang4aaa1a12016-03-22 18:23:13 -07001677$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(strip $(all_objects))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001678
1679###########################################################
1680# Define library dependencies.
1681###########################################################
1682# all_libraries is used for the dependencies on LOCAL_BUILT_MODULE.
1683all_libraries := \
Ying Wangc01f2dc2015-12-15 10:00:19 -08001684 $(built_shared_library_deps) \
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +09001685 $(my_system_shared_libraries_fullpath) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001686 $(built_static_libraries) \
1687 $(built_whole_libraries)
1688
The Android Open Source Project88b60792009-03-03 19:28:42 -08001689# Also depend on the notice files for any static libraries that
1690# are linked into this module. This will force them to be installed
1691# when this module is.
1692$(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets)
Ying Wang5f074802011-11-08 09:31:21 -08001693
1694###########################################################
1695# Export includes
1696###########################################################
1697export_includes := $(intermediates)/export_includes
Ying Wangfaeb6932015-04-07 11:59:34 -07001698$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(my_export_c_include_dirs)
Christopher Wileyff1c3f22016-04-11 12:40:36 -07001699# Headers exported by whole static libraries are also exported by this library.
Dan Willemsena7808ac2016-03-04 12:40:25 -08001700export_include_deps := $(strip \
1701 $(foreach l,$(my_whole_static_libraries), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001702 $(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 -07001703# Re-export requested headers from shared libraries.
1704export_include_deps += $(strip \
1705 $(foreach l,$(LOCAL_EXPORT_SHARED_LIBRARY_HEADERS), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001706 $(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 -07001707# Re-export requested headers from static libraries.
1708export_include_deps += $(strip \
1709 $(foreach l,$(LOCAL_EXPORT_STATIC_LIBRARY_HEADERS), \
Alexey Polyudovccdc3112016-08-01 17:41:49 -07001710 $(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 -08001711$(export_includes): PRIVATE_REEXPORTED_INCLUDES := $(export_include_deps)
Ying Wang05f9f352016-05-05 20:02:08 -07001712# By adding $(my_generated_sources) it makes sure the headers get generated
1713# before any dependent source files get compiled.
1714$(export_includes) : $(my_generated_sources) $(export_include_deps)
Ying Wang5f074802011-11-08 09:31:21 -08001715 @echo Export includes file: $< -- $@
Dan Willemsena7808ac2016-03-04 12:40:25 -08001716 $(hide) mkdir -p $(dir $@) && rm -f $@.tmp && touch $@.tmp
Ying Wangfaeb6932015-04-07 11:59:34 -07001717ifdef my_export_c_include_dirs
Ying Wang5f074802011-11-08 09:31:21 -08001718 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
Colin Cross6b9bddd2015-11-30 17:33:26 -08001719 echo "-I $$d" >> $@.tmp; \
Ying Wang5f074802011-11-08 09:31:21 -08001720 done
Dan Willemsena7808ac2016-03-04 12:40:25 -08001721endif
1722ifdef export_include_deps
1723 $(hide) for f in $(PRIVATE_REEXPORTED_INCLUDES); do \
1724 cat $$f >> $@.tmp; \
1725 done
Ying Wang5f074802011-11-08 09:31:21 -08001726endif
Colin Cross6b9bddd2015-11-30 17:33:26 -08001727 $(hide) if cmp -s $@.tmp $@ ; then \
1728 rm $@.tmp ; \
1729 else \
1730 mv $@.tmp $@ ; \
1731 fi
Colin Cross6b9bddd2015-11-30 17:33:26 -08001732
1733# Kati adds restat=1 to ninja. GNU make does nothing for this.
1734.KATI_RESTAT: $(export_includes)
Ying Wang616e5962012-04-18 17:35:55 -07001735
1736# Make sure export_includes gets generated when you are running mm/mmm
Dan Willemsenb097fbe2016-06-07 14:25:14 -07001737$(LOCAL_BUILT_MODULE) : | $(export_includes) $(my_link_type)